@charset "UTF-8";

body {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background-size: contain;
        background-repeat: repeat;
        background-image: url(../../common/img/line-bg.png);
        width: 100%;
        height: 120vh;
        z-index: -1;
        
        @media screen and (max-width: 767px) {
            background-image: url(../../common/img/line-bg-sp.png);
          
        }
    }
}

/* mv */
.staff-mv {
    margin-top: 9rem;
    clip-path: ellipse(100% 100% at 50% 0%);
    overflow: hidden;
    margin-bottom: 5rem;

    @media screen and (max-width: 1111px) {
        clip-path: none;
    }

    @media screen and (max-width: 767px) {
      margin-top: 5rem;
      margin-bottom: 0;
    }

    .mv-wrapper{
        display: flex;
        color: #fff;

        @media screen and (max-width: 767px) {
          flex-direction: column;
        }
        .mv-img-box{
            flex: 0 0 50vw;

            @media screen and (max-width: 1111px) {

                & img {
                    height: 400px;
                    width: 100%;
                    object-fit: cover;
                }
              
            }

        
        }
        .mv-text-box{
            margin-left: -2px;
            padding-top: 20rem;
            padding-right: 25rem;
            padding-left: 15rem;
            background: linear-gradient(to right, #22234B, #646573);

            @media screen and (max-width: 1111px) {
                padding: 13rem;
            }

            @media screen and (max-width: 767px) {
              padding: 4rem 2rem;
              margin-top: -50px;
            padding-top: 8rem;
            }
        
            .main-title{
                font-size: 4.7rem;
                font-weight: bold;
                line-height: 1.5;
                margin-bottom: 4rem;
                 font-family: "Zen Kaku Gothic New", sans-serif;

                @media screen and (max-width: 767px) {
                  font-size: 2.7rem;
                  margin-bottom: 3rem;
                }
            
            }
            .desc-box{
                font-weight: 500;
                font-size: 3.3rem;
                display: flex;
                gap: 2.3rem;
                align-items: center;
                margin-bottom: 5rem;

                @media screen and (max-width: 767px) {
                  font-size: 2rem;
                  margin-bottom: 3rem;
                }
            
                .year{
                    font-size: 1.6rem;

                    @media screen and (max-width: 767px) {
                      font-size: 1.4rem;
                    }
                
                }
                .name{
                    font-family: "Oswald", sans-serif;
                    text-transform: uppercase;
                
                }
            }
            .profile-box{
                border: 1px solid currentColor;
                border-radius: 1rem;
                padding: 4rem 5rem;

                @media screen and (max-width: 767px) {
                  padding: 2rem;
                }
            
                .title{
                    font-size: 2.2rem;
                    font-weight: 500;
                    font-family: "Oswald", sans-serif;
                    margin-bottom: 1.3rem;
                    text-transform: uppercase;

                    @media screen and (max-width: 767px) {
                      font-size: 1.8rem;
                    }
                
                }
                .profile-content{
                    font-size: 1.6rem;
                    line-height: 1.8;
                    font-weight: 400;
                    font-family: "Zen Kaku Gothic New", sans-serif;

                    @media screen and (max-width: 767px) {
                      font-size: 1.4rem;
                    }
                
                }
            }
        }
}

}

.edit-area.staff {
    .common-page-title {
        writing-mode: vertical-rl;
    font-size: 3.6rem;
    font-weight: bold;
    letter-spacing: 10px;

    @media screen and (max-width: 767px) {
      font-size: 2.8rem;
      letter-spacing: 5px;
      writing-mode: horizontal-tb;
    }
    }

    .sec-interview {
        @media screen and (max-width: 767px) {
          padding: 6rem 0;
        }
    }

    /* interview */
    .int-list {
        display: flex;
        flex-direction: column;
        /* gap: 15rem; */

        @media screen and (max-width: 767px) {
          gap: 6rem;
        }

        .int-item {
            display: flex;
            gap: 8rem;

            @media screen and (max-width: 767px) {
              flex-direction: column;
              gap: 3rem;
            }

            &:nth-child(even) {
                justify-content: flex-end;
                .img-box {
                order: 1;

                    @media screen and (max-width: 767px) {
                    order: 0;
                    }
                }

                .text-box {
                    order: 0;
                    flex: 0 0 66rem;

                    @media screen and (max-width: 767px) {
                      order: 1;
                      flex: 0 0 100%;
                    }
                }

            } 

            &:nth-child(odd) {
                .text-box {
                    flex: 0 0 52rem;

                    @media screen and (max-width: 767px) {
                      flex: 0 0 100%;
                    }
                }
            }

            &:nth-child(2) {
                margin-top: 15rem;
                @media screen and (max-width: 767px) {
                  margin-top: 0;
                }
                .img-box {
                    flex: 0 0 50rem;

                }
            }
            &:last-child {
                margin-top: 9.5rem;

                @media screen and (max-width: 767px) {
                  margin-top: 0;
                }
            }
            .img-box{
                overflow: hidden;
                border-radius: 1rem;
                background: #F3F3F3;
                flex: 0 0 71rem;
                /* height: 48rem; */

                @media screen and (max-width: 767px) {
                  flex: 0 0 auto;
                  height: 30rem;
                }

                & img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: top;
                }

            }

            .text-box{

                .label{
                    display: inline-block;
                    color: #fff;
                    font-size: 1.8rem;
                    font-weight: 500;
                    padding: 1.4rem;
                     background: linear-gradient(to bottom right, #7A5B3A, #DDCEBF);
                     margin-bottom: 1.8rem;
                     border-radius: 4px;

                     @media screen and (max-width: 767px) {
                       font-size: 1.6rem;
                     }
                
                }
                .catch{
                    font-size: 2.8rem;
                    margin-bottom: 3.3rem;
                    line-height: 1.5;
                    color: #7A5B3A;
                    font-weight: 500;

                    @media screen and (max-width: 767px) {
                      font-size: 2rem;
                    }
                }
                .main-content {
                    font-size: 1.6rem;
                    line-height: 1.8;

                    @media screen and (max-width: 767px) {
                      font-size: 1.4rem;
                    }
                    
                }
            }

        }
    }

    .sec-staff-tasks {
        padding: 19rem 0;
        background-color: #F3F3F3;

        @media screen and (max-width: 767px) {
          padding: 6rem 0;
        }

        .inner {
            display: flex;
            gap: 14rem;

            @media screen and (max-width: 767px) {
              flex-direction: column;
              gap: 5rem;
            }

            .tasks{
                display: flex;
                flex-direction: column;
                gap: 6rem;

                .task-item{
                    display: flex;
                    gap: 9rem;
                    align-items: flex-start;

                    @media screen and (max-width: 767px) {
                      flex-direction: column;
                      gap: 2rem;
                    }
                
                    .time-box{
                        font-size: 4.7rem;
                        /* font-weight: 500; */
                        position: relative;
                        padding-left: 2.7rem;
                        font-family: "Oswald", sans-serif;

                        @media screen and (max-width: 767px) {
                          font-size: 2.4rem;
                        }

                        &::after {
                            position: absolute;
                            content: '';
                            width: 14px;
                            height: 14px;
                            background: #1e39ac;
                            top: 50%;
                            left: 0;
                            transform: translateY(-50%);
                        }
                    
                    }
                    .task-content-box{
                        background-color: #fff;
                        padding: 6rem;
                        flex: 1;
                        display: flex;
                        gap: 9rem;

                        @media screen and (max-width: 767px) {
                          flex-direction: column;
                          gap: 3rem;
                          padding: 3rem;
                          width: 100%;
                        }
                    
                        .task-content-text-box{
                            flex: 1;
                        
                            .task-title{
                                font-size: 2rem;
                                font-weight: bold;
                                color: #1e39ac;
                                margin-bottom: 2rem;
                                line-height: 1.6;
                            
                            }
                            .task-main-content{
                                font-size: 1.6rem;
                                line-height: 1.8;
                            
                            }
                        }
                        .task-img-box{
                            /* flex: 0 0 36rem; */
                            /* height: 21.5rem; */
                            /* background: #F3F3F3; */

                            @media screen and (max-width: 767px) {
                              flex: 0 0 auto;
                            }
                            
                            & img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                object-position: top;
                            }
                        
                        }
                    }
                }
}
        }

    }
}

.sec-private {
     background: linear-gradient(to right, #22234B, #646573);
     color: #fff;
     padding: 8rem 0;

     @media screen and (max-width: 767px) {
       padding: 6rem 0;
     }

    .private-title {
        font-size: 2.1rem;
        font-weight: 500;
        font-family: "Oswald", sans-serif;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
    }
}

.sec-senior {
    padding: 12rem 0;

}

.sec-senior, .sec-private {

    .inner {
        display: flex;
        gap: 13rem;
        padding: 0 10rem;

        @media screen and (max-width: 767px) {
          flex-direction: column;
          gap: 5rem;
          padding: 0;
        }

        .title-box{

        }
        .content-box{
            flex: 1;

            .title-box {
                font-size: 2.8rem;
                font-weight: bold;
                margin-bottom: 3rem;

                @media screen and (max-width: 767px) {
                  font-size: 2rem;
                  margin-bottom: 2rem;
                }
            }
        
            .comment-text{
                line-height: 1.8;
                font-size: 1.6rem;

                @media screen and (max-width: 767px) {
                  font-size: 1.4rem;
                }
            
            }
        }
        .comment-img{
            flex: 0 0 38rem;
            height: 25rem;
            border-radius: 1rem;
            overflow: hidden;
            @media screen and (max-width: 767px) {
              flex: 0 0 auto;
            }

            & img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: top;
            }
        
        }
    }

}