@charset "UTF-8";

/* === インタビュー INDEX === */
.filter-button-wrap {
    background: #F2F6F6;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1%;
    padding: 20px 0;
}

.button-group .button {
    width: 15%;
    color: var(--main-color);
    border: 1px solid #0F846E;
    background: #FFF;
    cursor: pointer;
}

.button-group .button.is-checked {
    color: #FFF;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
}

.interview-index-content {
    padding: 80px 0 0;
}

.interview-index {
    position: relative;
    margin: 50px auto
}

.gutter-sizer {
    width: 2%;
}

.grid-item {
    box-sizing: border-box;
    width: calc((100% - 6%) / 4);
    margin-bottom: 4%;
}

.interview-index li .txt {
    padding: 10px 0 0;
}

.interview-index li .txt .name-label {
    display: flex;
    align-items: center;
}

.interview-index li .txt .name-label span:nth-child(1) {
    font-size: 1.2rem;
}

.interview-index li .txt .name-label span:nth-child(2) {
    color: var(--main-color);
    font-family: var(--en-font);
    font-size: 15px;
    font-weight: 600;
    padding-left: 15px;
}

.interview-index li .txt .job-label span:nth-child(1) {
    font-size: 0.9rem;
    color: #FFF;
    display: inline-block;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    line-height: 1.4em;
    padding: 3px 10px;
    margin-right: 15px;
}

.interview-index li .txt .job-label {
    font-size: 15px;
}

.talk-index-content {
    padding: 50px 0 80px;
}

.talk-index-content .title {
    text-align: center;
    color: var(--main-color);
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 20px;
}

.talk-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.talk-index li {
    width: 49%;
}

.talk-index li .txt p {
    text-align: center;
    font-size: 1.2rem;
    padding: 10px 0 0;
}


/* スマホ用レスポンシブ対応 */
@media screen and (max-width: 1023px) {
    .grid-item {
        box-sizing: border-box;
        width: calc((100% - 4%) / 3);
        margin-bottom: 4%;
    }
}

@media screen and (max-width: 768px) {

    .button-group {
        padding: 15px 0;
    }

    .button-group .button {
        width: 18%;
        color: var(--main-color);
        border: 1px solid #0F846E;
        background: #FFF;
        cursor: pointer;
    }

    .button-group .button.is-checked {
        color: #FFF;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    }

    .interview-index-content {
        padding: 40px 0 0;
    }

    .interview-index {
        position: relative;
        margin: 50px auto
    }

    .gutter-sizer {
        width: 2%;
    }

    .grid-item {
        box-sizing: border-box;
        width: calc((100% - 2%) / 2);
        margin-bottom: 3%;
    }

    .interview-index li .txt {
        padding: 5px 0 0;
    }

    .interview-index li .txt .name-label {
        display: flex;
        align-items: center;
    }

    .interview-index li .txt .name-label span:nth-child(1) {
        font-size: min(4vw, 0.9rem);
    }

    .interview-index li .txt .name-label span:nth-child(2) {
        color: var(--main-color);
        font-family: var(--en-font);
        font-size: 11px;
        font-weight: 600;
        padding-left: 10px;
    }

    .interview-index li .txt .job-label span:nth-child(1) {
        font-size: min(3.3vw, 0.8rem);
        padding: 2px 5px;
        margin-right: 10px;
    }

    .interview-index li .txt .job-label {
        font-size: 12px;
    }


    .talk-index-content {
        padding: 20px 0 0;
    }


    .talk-index-content .title {
        text-align: center;
        color: var(--main-color);
        font-family: var(--en-font);
        font-size: 24px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .talk-index {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .talk-index li {
        width: 100%;
        margin-bottom: 20px;
    }

    .talk-index li .txt p {
        text-align: center;
        font-size: 0.9rem;
        padding: 5px 0 0;
    }
}


.interview-main {
    width: 100%;
    position: relative;
    z-index: 1;

}

.interview-main .main-visual {
    width: 100%;
    position: relative;
    z-index: -1;
    overflow: hidden;
}

.interview-main .mv-content {
    position: absolute;
    display: inline-block;
    bottom: 30px;
    left: 5%;
    z-index: 4;
}

.interview-main .mv-content .wipe-group {
    position: relative;
    filter: drop-shadow(0 0 10px rgba(10, 98, 101, 0.25));
}

.interview-main .mv-content .wipe-group .wipe {
    width: 100%;
    background: #FFF;
    padding: 30px 30px 60px;
    min-width: 500px;
    position: relative;
    transition-delay: 1s;
    transition-duration: 3s;
}

.interview-main .mv-content .wipe-group .wipe .title {
    font-family: var(--en-font);
    color: #00B8FF;
    font-weight: 600;
    font-size: 16px;
}

.interview-main .mv-content .wipe-group .wipe .hero-txt {
    font-size: min(4vw, 1.6rem);
    line-height: 1.6em;
    padding-bottom: 15px;
}

.interview-main .name-label {
    display: flex;
    align-items: center;
}

.interview-main .name-label span:nth-child(1) {
    font-size: 1.2rem;
}

.interview-main .name-label span:nth-child(2) {
    color: var(--main-color);
    font-family: var(--en-font);
    font-size: 15px;
    font-weight: 600;
    padding-left: 15px;
}

.interview-main .job-label span:nth-child(1) {
    font-size: 0.9rem;
    color: #FFF;
    display: inline-block;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    line-height: 1.4em;
    padding: 3px 10px;
    margin-right: 15px;
}

/* 装飾（三角形） */
.mv-triangle-left {
    background: #FFF;
    width: 12vw;
    height: 100%;
    top: 0;
    left: -5vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 3;
    position: absolute;
    transition: all .8s .5s ease-out;
}

.mv-triangle-left.eon {
    opacity: 1;
    left: 0;
}

.mv-triangle-left2 {
    background: rgba(0, 145, 157, 0.6);
    width: 14vw;
    height: 100%;
    top: 0;
    left: -6vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 2;
    position: absolute;
    transition: all .8s .55s ease-in-out;
}

.mv-triangle-left2.eon {
    opacity: 1;
    left: 0;
}

.mv-triangle-right {
    background: #FFF;
    width: 12vw;
    height: 100%;
    top: 0;
    right: -5vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 3;
    position: absolute;
    transition: all .8s .5s ease-out;
}

.mv-triangle-right.eon {
    opacity: 1;
    right: 0;
}

.mv-triangle-right2 {
    background: rgba(32, 159, 239, 0.6);
    width: 14vw;
    height: 100%;
    top: 0;
    right: -6vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 2;
    position: absolute;
    transition: all .8s .55s ease-in-out;
}

.mv-triangle-right2.eon {
    opacity: 1;
    right: 0;
}


.split-section {
    display: flex;
    position: relative;
    width: 100%;
}

.image-area {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.image-area img {
    object-fit: cover;
    height: 100%;
    display: block;
}

.layout-text-text {
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
}

.layout-text-left .text-area {
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
}

.layout-text-left .image-area {
    max-height: 600px;
}

.layout-image-left-crop {
    padding: 40px 0;
}

.layout-image-left-crop .image-area {
    justify-content: flex-end;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 70px 0 70px 50px;
}

.layout-image-left-crop .image-area img {
    object-fit: contain;
    max-width: 560px;
}

.layout-image-full .image-area {
    width: 100%;
    height: 100%;
    position: absolute;
}

.layout-image-full .image-area img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.text-area {
    width: 50%;
    display: flex;
    padding: 70px 50px;
    justify-content: flex-start;
}

.text-content {
    width: 100%;
    max-width: 500px;
}

.layout-text-text .text-area:nth-of-type(1) {
    justify-content: flex-end;
}

.layout-text-text .text-area {
    align-items: flex-start;
}

.layout-text-left .text-area {
    justify-content: flex-end;
}

.layout-text-text .text-area,
.layout-image-full .text-area,
.layout-text-left .text-area {
    z-index: 2;
    color: #FFF;
}

.layout-image-full .text-area {
    justify-content: flex-end;
    padding: 0;
}

.text-content h2 {
    position: relative;
    display: flex;
    align-items: center;
    font-size: min(2.1vw, 1.6rem);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6em;
}

.text-content h2 span {
    font-family: var(--en-font);
    font-size: 40px;
    font-weight: 600;
    display: inline-block;
    padding-right: 20px;
    color: var(--main-color);
}

.layout-text-text .text-area h2 span,
.layout-image-full .text-area h2 span,
.layout-text-left .text-area h2 span {
    color: #FFF;
}

.layout-image-full .text-area .text-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 70px 50px;
    max-width: 560px;
    min-height: 750px;
}

.layout-image-left .text-area {
    justify-content: flex-start;
}

.back-button {
    width: 80%;
    margin: 80px auto;
    max-width: 530px;
    background: #000;
    position: relative;
    transition: all .5s;
}

.back-button p {
    color: #FFF;
    text-align: center;
    font-size: min(4vw, 1.2rem);
    padding: 20px 0;
}

.back-button::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url(../img/common_img/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.back-button:hover {
    background: #262626;
}


@media (max-width: 768px) {
    .interview-main .main-visual {
        width: 100%;
        position: relative;
        z-index: -1;
        overflow: hidden;
    }

    .interview-main .main-visual img {
        min-height: 330px;
        object-fit: cover;
    }

    .interview-main .main-visual.sp-fukuzumi img {
        object-position: 80% center;
    }

    .interview-main .main-visual.sp-kondo img {
        object-position: 80% center;
    }

    .interview-main .main-visual.sp-kasahara img {
        object-position: 80% center;
    }

    .interview-main .main-visual.sp-yonemoto img {
        object-position: 80% center;
    }

    /* テキストコンテンツ */
    .interview-main .mv-content {
        position: relative;
        display: block;
        bottom: 20px;
        left: 0;
        z-index: 4;
    }

    .interview-main .mv-content .wipe-group .wipe {
        width: 90%;
        left: 5%;
        background: #FFF;
        padding: 20px 20px 20px;
        min-width: auto;
        position: relative;
        transition-delay: 1s;
        transition-duration: 3s;
    }

    .interview-main .mv-content .wipe-group .wipe .title {
        font-family: var(--en-font);
        color: #00B8FF;
        font-weight: 600;
        font-size: 13px;
    }

    .interview-main .mv-content .wipe-group .wipe .hero-txt {
        font-size: min(4vw, 1.6rem);
        line-height: 1.6em;
        padding-bottom: 15px;
    }

    .interview-main .name-label {
        display: flex;
        align-items: center;
    }

    .interview-main .name-label span:nth-child(1) {
        font-size: 1.1rem;
    }

    .interview-main .name-label span:nth-child(2) {
        color: var(--main-color);
        font-family: var(--en-font);
        font-size: 14px;
        font-weight: 600;
        padding-left: 10px;
    }

    .interview-main .job-label span:nth-child(1) {
        font-size: 0.7rem;
        color: #FFF;
        display: inline-block;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        line-height: 1.4em;
        padding: 3px 5px;
        margin-right: 10px;
    }

    .split-section {
        flex-direction: column-reverse;
    }

    .layout-text-left {
        flex-direction: column;
    }

    .layout-image-left-crop {
        padding: 0;
    }

    .layout-image-full .image-area {
        position: relative
    }

    .image-area,
    .text-area {
        width: 100%;
        height: auto;
    }

    .text-area {
        padding: 60px 8%;
        justify-content: center !important;
    }

    .text-content {
        max-width: 100%;
    }

    .text-content h2 {
        font-size: min(4.6vw, 1.1rem);
        margin-bottom: 20px;
    }

    .text-content h2 span {
        font-size: 30px;
        padding-right: 10px;
    }

    .layout-text-text .text-area:nth-of-type(1) {
        padding-top: 0;
    }

    .layout-image-full .text-area .text-content {
        background: rgba(0, 0, 0, 0.9);
        padding: 60px 8%;
        max-width: 100%;
        min-height: auto;
    }

    .layout-image-left-crop .image-area {
        justify-content: center;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0 10% 60px;
    }

    .layout-image-left-crop .image-area img {
        object-fit: contain;
        max-width: 400px;
    }

    .back-button {
        width: 50%;
        margin: 30px auto;
        max-width: 300px;
        background: #000;
        position: relative;
        transition: all .5s;
    }

    .back-button p {
        color: #FFF;
        text-align: center;
        font-size: min(4vw, 1rem);
        padding: 10px 0;
    }
}