@charset "utf-8";
.sec_mv {
    margin-bottom: 50px;
}
/* Intro Section */
.interview_intro_box {
    border: 16px solid var(--sub18-color);
    padding: 40px;
    text-align: center;
    margin-bottom: 80px;
}

.junior_theme .interview_intro_box{
    border: 16px solid var(--sub21-color);
}

.intro_portraits {
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.interview_intro_box h2{
    font-size: 28px;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.junior_theme .interview_intro_box h2{
     color: var(--sub1-color);
}

.intro_portraits .portrait {
    width: 320px;
}

.intro_portraits img {
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Question Styling */
.interview_block{
     margin-bottom: 140px;
}
.interview_wrap{
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    align-items: flex-start; 
    border: none;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}

.interview_wrap .mod_info{
    width: 60%;
}

.interview_wrap.no_image .mod_info,
.interview_wrap.no_image .img_mod{
    width: 100%;
}


.interview_wrap .img_mod{
    width: 40%;
    text-align: center;
    margin-top: 50px;
}

.interview_wrap.wrap02 .mod_info,
.interview_wrap.wrap02 .img_mod{
    width: 50%;
}

.interview_wrap .img_mod img{
    max-width: 320px;
}

.interview_wrap .img_mod.middle img{
    max-width: 500px;
}

.interview_wrap .img_mod.last img{
    max-width: 800px;
}

.q_title {
    color: var(--sub12-color);
    font-size: 22px;
    font-weight: 700;
    padding: 0 0 8px 118px;
    margin-bottom: 25px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    border-bottom: 5px solid var(--sub27-color);
}

.q_title span {
    color: var(--sub27-color);
    font-size: 140px;
    font-family: "futura-pt", sans-serif;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 18%;
    transform: translateY(-50%);
    z-index: -1;    
}

.junior_theme .q_title{
    border-bottom: 5px solid var(--sub21-color);
}

.junior_theme .q_title span{
    color: var(--sub21-color);
}

.q_title span.oneline{
    top: -42%;
}

/* Answer Badges */
.a_badge,
.b_badge {
    display: inline-block;
    padding: 2px 30px 2px 15px;
    color: var(--sub3-color);
    font-weight: bold;
    margin-bottom: 10px;
    border-radius: 3px;
}

.a_badge {
 background: url("../images/senior/interview/bg_ttl_sub_interview.png");
 -webkit-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
}

.junior_theme .a_badge {
 background: url("../images/junior/interview/bg_ttl_sub_interview.png");
 -webkit-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
}

.b_badge {
 background: url("../images/senior/interview/bg_ttl_sub_interview02.png");
 -webkit-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
}

.junior_theme .b_badge {
 background: url("../images/junior/interview/bg_ttl_sub_interview02.png");
 -webkit-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
}

.a_content .text_base {
    line-height: 2;
    margin-bottom: 35px;
}

.mb0{
    margin-bottom: 0 !important;
}


.interview_full_img {
    margin-top: 30px;
    width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .interview_intro_box {
        border: 1.25vw solid var(--sub18-color);
        padding: 3.125vw;
        margin-bottom: 6.25vw;
    }

    .interview_intro_box h2 {
        font-size: 2.188vw;
        margin-bottom: 1.563vw;
    }

    .intro_portraits .portrait {
        width: 25vw;
    }

    .interview_block {
        margin-bottom: 10.938vw;
    }

    .q_title span {
        font-size: 10.938vw;
        margin-right: 1.172vw;
        left: 0;
        top: 18%;
        transform: translateY(-50%);
        z-index: -1;
    }

    .q_title {
        padding: 0 0 0.625vw 9.219vw;
        margin-bottom: 1.953vw;
        border-bottom: 0.391vw solid var(--sub27-color);
    }

    .interview_wrap .img_mod{
        margin-top: 2vw;
    }

    .interview_wrap .img_mod img {
        max-width: 25vw;
    }

    .interview_wrap .img_mod.middle img{
        max-width: 39.063vw;
    }

    .interview_wrap .img_mod.last img{
        max-width: 62.5vw;
    }

    .a_content .text_base {
        margin-bottom: 2.734vw;
    }
}
/* Responsive */
@media only screen and (max-width: 767px) {
    .sec_mv {
        margin-bottom: .5rem;
    }
    /* Intro Section */
    .interview_intro_box {
        padding: .40rem;
        margin-bottom: 1.40rem;
    }

    .intro_portraits {
        gap: .40rem;
        margin-top: .30rem;
    }

    .interview_intro_box h2{
        font-size: .35rem;
        line-height: 1.4;
        margin-bottom: .2rem;
    }

    .intro_portraits .portrait {
        width: 3.2rem;
    }

    .intro_portraits img {
        border-radius: .05rem;
        margin-bottom: .10rem;
    }

    /* Question Styling */
    .interview_block{
         margin-bottom: 2rem;
    }
    .interview_wrap{
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        align-items: center; 
        border: none;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }

    .interview_wrap.reverse{
        -webkit-flex-direction: column-reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .interview_wrap .mod_info{
        width: 100%;
    }

    .interview_wrap.no_image .mod_info,
    .interview_wrap.no_image .img_mod{
        width: 100%;
    }


    .interview_wrap .img_mod{
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .interview_wrap.wrap02 .mod_info,
    .interview_wrap.wrap02 .img_mod{
        width: 100%;       
    }

    .interview_wrap .img_mod{
         margin: .5rem 0
    }

    .interview_wrap .img_mod img{
        max-width: 80%;
    }

    .interview_wrap .img_mod.middle img{
        max-width: 90%;
    }

    .interview_wrap .img_mod.last img{
        max-width: 90%;
    }

    .q_title {
        color: var(--sub12-color);
        font-weight: 400;
        font-size: .35rem;
        padding: 0 0 8px 1.18rem;
        margin-bottom: .25rem;
        line-height: 1.7;
        position: relative;
        z-index: 2;
        border-bottom: .05rem solid var(--sub27-color);
    }

    .junior_theme .q_title {
        border-bottom:  .05rem solid var(--sub21-color);
    }

    .q_title span {
        color: var(--sub27-color);
        font-size: 1.8rem;
        left: 0;
        top: 0;
        transform: translateY(-50%);
        z-index: -1;    
    }

    .q_title span.oneline{
        top: -4%;
    }

    /* Answer Badges */
    .a_badge,
    .b_badge {
        display: inline-block;
        padding: .02rem .3rem .02rem .15rem;
        font-weight: bold;
        margin-bottom: .1rem;
        border-radius: .03rem;
    }

    .a_content .text_base {
        line-height: 2;
        margin-bottom: .35rem;
    }

    .mb0{
        margin-bottom: 0 !important;
    }


    .interview_full_img {
        margin-top: .30rem;
        width: 100%;
    }
}