@charset "utf-8";

.h_area_img strong {
    position: absolute;
    top: 61%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1700px;
    max-width: 100%;
    padding: 0 20px;
    font-size: 5.2rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.538;
    color: #FFF;
    max-height: 100%;
}

/*------------ セクション ------------*/
.interview_sec {
    counter-reset: num;
    margin-bottom: 136px;
}

.interview_sec:last-child {
    margin-bottom: 0;
}

/*------------ 英字 見出し ------------*/
.interview_ttl_en {
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: #0996E9;
    text-align: right;
    margin-bottom: 39px;
}

.interview_ttl_en span {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    max-height: 100%;
}

.interview_ttl_en p {
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0;
}

/*------------ カラム ------------*/

.interview_box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 70px;
}

.interview_box_img {
    width: 45.454%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.interview_info {
    position: absolute;
    bottom: 0;
    font-weight: 500;
    line-height: 1.5;
    color: #FFF;
    padding: 0 30px 29px 32px;
}

.interview_info span {
    display: block;
    font-size: 2.2rem;
}

/*  */
.interview_box_txt {
    width: 50%;
}

.interview_head {
    margin-bottom: 30px;
}

.interview_head h2 {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.65;
    color: #0996E9;
    padding-left: 29px;
    margin: 0 0 15px;
    position: relative;
    counter-increment: num;
}

.interview_head h2::before {
    position: absolute;
    content: "Q" counter(num)".";
    top: 2px;
    left: 0;
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-weight: 500;
}

.interview_head h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.785;
    margin: 0;
}


.interview_head h3 span {
    position: relative;
}

.interview_head h3 span::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    background: #86E0E2;
    bottom: 9px;
    left: 0;
    z-index: -5;
}

.interview_box_txt p {
    line-height: 1.875;
    margin-bottom: 0;
}

/*------------ 両側はみだす画像 ------------*/
.interview_img_wide {
    width: 100vw;
    min-width: 1280px;
    margin: 80px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 40px;
    overflow: hidden;
}

.interview_img_wide img {
    width: 100%;
}

/*------------ カラム（オフの日） ------------*/
.holiday_box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.holiday_box_txt {
    width: 37.636%;
}

.holiday_box_img {
    width: 59.909%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.holiday_img {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.holiday_img img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .h_area_img strong {
        top: 61%;
        font-size: 1.8rem;
        font-size: clamp(1.8rem, 4.7vw, 3rem);
        letter-spacing: 0.05em;
        letter-spacing: 0.1em;
    }

    /*------------ セクション ------------*/
    .interview_sec {
        margin-bottom: 45px;
    }

    /*------------ 英字 見出し ------------*/
    .interview_ttl_en {
        margin-bottom: 20px;
    }

    .interview_ttl_en span {
        font-size: 1.8rem;
    }

    .interview_ttl_en p {
        font-size: 3rem;
    }

    /*------------ カラム ------------*/

    .interview_box {
        flex-direction: column-reverse;
        justify-content: unset;
        margin-bottom: 25px;
    }

    .interview_box>div:last-child {
        margin-bottom: 15px
    }

    .interview_box_img {
        width: auto;
        margin-right: auto;
        margin-left: auto;
    }

    .interview_info {
        padding: 0 18px 10px 18px;
    }

    .interview_info span {
        font-size: 1.6rem;
    }

    /*  */
    .interview_box_txt {
        width: 100%;
    }

    .interview_head {
        margin-bottom: 11px;
    }

    .interview_head h2 {
        font-size: 1.3rem;
        padding-left: 25px;
        margin: 0 0 2px;
    }

    .interview_head h2::before {
        top: 1px;
    }

    .interview_head h3 {
        font-size: 1.8rem;
        font-size: clamp(1.8rem, 4.2vw, 3rem);
        letter-spacing: 0.05em;
    }

    .interview_head h3 span::after {
        height: 3px;
        bottom: 7px;
    }

    /*------------ 両側はみだす画像 ------------*/
    .interview_img_wide {
        min-width: auto;
        margin: 30px 0;
        border-radius: 20px;
    }

    /*------------ カラム（オフの日） ------------*/
    .holiday_box {
        flex-direction: column;
        justify-content: unset;
    }

    .holiday_box_txt {
        width: 100%;
    }

    .holiday_box_img {
        width: 100%;
    }

    .holiday_img {
        width: 48%;
    }
	
	.interview_img_wide img {
		object-fit: cover;
        min-height: 200px;
	}
}