@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #464646;
    --black02: rgba(0, 0, 0, 0.5);
    --pink01: #eb76a9;
    --pink02: #ffedeb;
    --orange01: #ffa546;
    --beige01: #ffeed3;
    --beige02: #fff5e0;
    --beige03: rgba(255, 245, 225, 0.9);
    --gray: #e9e9e9;



    --gra01: linear-gradient(90deg, var(--pink01), var(--orange01));
    --gra02: linear-gradient(0deg, var(--pink01), var(--orange01));


    /* ぼかし */
    --blur: blur(10px);

    /* 書式 */
    --notoSans: "Noto Sans JP", sans-serif;
    --zenKaku: "Zen Kaku Gothic New", sans-serif;

    /* 文字サイズ */
    --font14: 1.4rem;
    --font17: 1.7rem;
    --font19: 1.9rem;
    --font21: 2.1rem;
    --font23: 2.3rem;
    --font24: 2.4rem;
    --font26: 2.6rem;
    --font28: 2.8rem;
    --font36: 3.6rem;
    --font60: 6rem;

    /* ウェイト */
    --weight500: 500;
    --weight700: 700;

    /* 行間 */
    --lineHight161: 1.61;
    --lineHight175: 1.75;
    --lineHight179: 1.79;
    --lineHight20: 2.0;

    /* 文字間 */
    --fontSpace050: 0.05em;
    --fontSpace100: 0.1em;

    /* トランジションの変数　 */
    --transitionBase01: all 0.3s ease-in-out;
    --transitionBase02: all 0.5s ease-in-out;

    /* 角丸の変数　 */
    --borderRadius01: 500px;
    --borderRadius10: 10px;
    --borderRadius20: 20px;
    --borderRadius30: 30px;
    --borderRadiusCircle: 50%;

    --opacity07: .7;

}




@media screen and (max-width: 1024px) {
    :root {
        --font14: 1.3rem;
        --font17: 1.6rem;
        --font19: 1.8rem;
        --font21: 2rem;
        --font23: 2.2rem;
        --font24: 2.3rem;
        --font26: 2.5rem;
        --font28: 2.7rem;
        --font36: 3.3rem;
        --font60: 5rem;
    }
}


@media screen and (max-width: 768px) {
    :root {
        --font17: 1.5rem;
        --font19: 1.7rem;
        --font21: 1.9rem;
        --font23: 2.1rem;
        --font24: 2.2rem;
        --font26: 2.4rem;
        --font28: 2.5rem;
        --font36: 3rem;
        --font60: 4rem;



        --opacity07: 1;
    }


}

@media screen and (max-width: 480px) {
    :root {
        --font14: 1.2rem;
        --font17: 1.4rem;
        --font19: 1.6rem;
        --font21: 1.8rem;
        --font23: 2rem;
        --font24: 2.1rem;
        --font26: 2.2rem;
        --font28: 2.3rem;
        --font36: 2.6rem;
        --font60: 3rem;

        --borderRadius20: 10px;
        --borderRadius30: 15px;
    }
}


@media screen and (max-width: 375px) {
    :root {
        --font60: 2.7rem;

        --borderRadius20: 10px;
        --borderRadius30: 15px;
    }
}



/*******************************************
common
*******************************************/

body {
    color: var(--black);
    font-family: var(--zenKaku);
    font-weight: var(--weight500);
    font-size: var(--font17);
}

p {
    text-align: justify;
    font-size: var(--font17);
    line-height: var(--lineHight175);
}

.section {
    position: relative;
}

.section__inner {
    position: relative;
    width: min(100%, 980px);
    margin: 0 auto;

    padding: 100px 0;
}

.section__ttl {
    position: relative;
    width: fit-content;
    margin: 0 auto max(5.9%, 30px);
    font-size: var(--font60);
    text-align: center;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/common/heart-orange.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 1.967em;
        aspect-ratio: 118/156;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -45%);
    }

    .ja {
        display: block;
        position: relative;
        background: var(--gra01);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: var(--weight700);
        line-height: 1.44;
    }

    .en {
        position: absolute;
        width: 20.17%;
        bottom: -20%;
        right: -14%;
    }
}

.facility,
.interview {
    .section__ttl::before {
        background-image: url(../img/common/heart-white.png);
    }
}

.bg-design {
    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/common/bg-pink.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        border-radius: 4.285714285714286vw;
    }
}

.marker {
    background: linear-gradient(transparent 90%, var(--yellow01) 90%);
    padding-bottom: 5px;
}

.thin {
    letter-spacing: -0.5em;
}

.block365,
.block375,
.block480,
.block768 {
    display: none;
}


.aco-container {
    transition: var(--transitionBase02);
    overflow: hidden;
}

.aco-click {
    position: relative;
    cursor: pointer;
    transition: var(--transitionBase02);
}

.aco-box {
    max-height: 0;
    transition: var(--transitionBase02);
}


.push {
    display: inline-block;
}

.thin90 {
    display: inline-block;
    transform: scale(0.9);
}


.color-pink {
    color: var(--pink01);
}


@media screen and (max-width:1024px) {
    .push1024 {
        display: inline-block;
    }

    .none1024 {
        display: none;
    }

    .section__inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width:768px) {
    .push768 {
        display: inline-block;
    }

    .none768 {
        display: none;
    }

    .block768 {
        display: block;
    }
}



@media screen and (max-width:480px) {
    .push480 {
        display: inline-block;
    }

    .none480 {
        display: none;
    }

    .block480 {
        display: block;
    }
}

@media screen and (max-width:375px) {
    .block375 {
        display: block;
    }
}

@media screen and (max-width:365px) {
    .block365 {
        display: block;
    }
}



/*******************************************
btn
*******************************************/
.btn-outer {
    width: min(100%, 260px);
    height: 60px;
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    background-color: var(--pink01);
    font-size: var(--font17);
    letter-spacing: var(--fontSpace050);
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius01);
    transition: var(--transitionBase01);
    cursor: pointer;
    font-weight: var(--weight700);

    &:hover {
        opacity: var(--opacity07);
    }
}

.arrow {
    position: absolute;
    background-image: url(../img/common/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    right: 5%;
    width: 1em;
    aspect-ratio: 12/9;
    transform: translateY(-50%);
}







/*******************************************
entryBox
*******************************************/
.entryBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/*******************************************
追従ボタン
*******************************************/
.main__inner {
    position: relative;
}

.topReturn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: 60px;
    aspect-ratio: 1;
    opacity: 0;
    visibility: hidden;
    z-index: 30;
    transition: var(--transitionBase01);



    &.show {
        opacity: 1;
        visibility: visible;
    }


    a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        border-radius: var(--borderRadiusCircle);
        background-image: var(--gra01);
        transition: var(--transitionBase01);

        &::before,
        &:after {
            position: absolute;
            content: "";
            top: 50%;
            left: 50%;
            width: 30%;
            height: 2px;
            background-color: var(--white);
            transition: var(--transitionBase01);
        }

        &::before {
            transform: translate(-83%, -50%) rotate(-45deg);
        }

        &::after {
            transform: translate(-17%, -50%) rotate(45deg);
        }

        &:hover {
            opacity: var(--opacity07);
        }
    }

}


@media screen and (max-width: 768px) {
    .topReturn {
        width: 40px;
        height: 40px;
        bottom: calc(2% + 65px);
    }
}


/*******************************************
header
*******************************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100px;
    transition: var(--transitionBase01);
    padding: 0 20px;
    z-index: 50;
}

.bg-white {
    background-color: var(--white);
}

.header__logo {
    width: 260px;

    a {
        transition: var(--transitionBase01);

        &:hover {
            opacity: var(--opacity07);
        }
    }
}

.headerNav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: var(--transitionBase02);
    background-color: var(--black02);
}

.headerNav__list {
    width: min(50%, 600px);
    height: 100%;
    background-color: var(--white);
    margin-left: auto;
    display: flex;
    flex-direction: column;
    padding: clamp(40px, 10vh, 200px) 20px 0;
    transition: var(--transitionBase01);
}

.headerNav__item:not(.entryBox-nav) {
    margin-bottom: clamp(20px, 5vh, 80px);

    &:nth-child(5) {
        margin-bottom: 0;
    }

    a {
        font-size: 25px;
        font-weight: var(--weight700);
        transition: var(--transitionBase01);

        &:hover {
            color: var(--pink01);
        }
    }
}

.entryBox-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: clamp(25px, 7vh, 100px);

    .btn-outer {
        max-width: 300px;
        width: calc((100% - 15px)/2);
    }
}

.entryBox-fixed {
    flex: 1;
    justify-content: flex-end;
    margin-right: 25px;
}

.hamburger {
    position: relative;
    width: 70px;
    aspect-ratio: 1;
    background-color: var(--orange01);
    border-radius: var(--borderRadiusCircle);
    cursor: pointer;
    transition: var(--transitionBase01);
    z-index: 100;

    &:hover {
        opacity: var(--opacity07);
    }
}

.line {
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transitionBase01);

    &:nth-child(1) {
        top: 33%;
    }

    &:nth-child(3) {
        top: 67%;
    }
}

/* ハンバーガー開いた後 */
.header.active {
    .headerNav {
        opacity: 1;
        visibility: visible;
    }

    .headerNav__list {
        transform: translateX(0);
    }
}

@media screen and (max-width:1024px) {
    .header {
        position: relative;
        height: 80px;
    }

    .bg-white {
        background-color: initial;
    }

    .headerNav__list {
        width: 100%;

    }

    .headerNav__item:not(.entryBox-nav) {
        text-align: center;

        a {
            font-size: 18px;

            &:hover {
                color: var(--black);
            }
        }
    }


    .entryBox-fixed {
        flex: initial;
        margin: 0;
        position: fixed;
        bottom: 2%;
        left: 50%;
        transform: translateX(-50%);
        width: min(95%, 600px);
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transitionBase01);

        .btn-outer {
            width: calc((100% - 15px)/2);
        }

        &.show {
            opacity: 1;
            visibility: visible;
        }
    }

    .hamburger {
        position: fixed;
        top: 40px;
        right: 10px;
        transform: translateY(-50%);
        width: 60px;
    }


}



@media screen and (max-width:480px) {
    .header {
        height: 60px;
        padding: 0 0 0 5px;
    }

    .header__logo {
        width: 200px;

        a {
            transition: var(--transitionBase01);

            &:hover {
                opacity: var(--opacity07);
            }
        }
    }

    .entryBox-nav {
        flex-direction: column;
        gap: 10px;

        .btn-outer {
            width: min(100%, 200px);
        }
    }

    .entryBox-fixed {
        gap: 5px;

        .btn-outer {
            width: calc((100% - 5px)/2);
        }

    }

    .hamburger {
        top: 30px;
        right: 5px;
        width: 40px;
    }
}




/*******************************************
mv
*******************************************/
.mv {
    position: relative;
    margin-top: 100px;
}

.mv__txtBox {
    position: absolute;
    bottom: 25%;
    right: 1%;
    width: 52.57vw;
    font-size: 5.64vw;
    font-weight: var(--weight700);

    .ttl {
        position: relative;
        background-image: var(--gra01);
        color: var(--white);
        border-radius: 0.329em;
        width: 95.11%;
        text-align: center;
        line-height: 1.38;
    }

    .txt {
        width: 56.52%;
        font-size: 0.29em;
        text-align: center;
        background-color: var(--white);
        margin-left: auto;
        border-radius: 0.87em;
        line-height: 2.1;
        margin-top: -0.68%;
    }
}

@media screen and (max-width:1024px) {
    .mv {
        margin-top: 0;
    }
}

@media screen and (max-width:768px) {
    .mv__txtBox {
        left: 0;
        right: auto;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        font-size: 10.286458333333332vw;
        width: 100%;

        .ttl {
            margin: 0 auto;
        }

        .txt {
            font-size: 0.35em;
            width: 65%;

        }
    }
}




/*******************************************
mind
*******************************************/

.mind {
    .section__inner {
        padding: clamp(30px, 4.64%, 65px) 0 clamp(40px, 6.79%, 95px);
    }

    .section__ttl {
        margin-bottom: max(5.4%, 10px);
    }
}

.mind__txtBox {
    .txt {
        font-size: var(--font19);
        line-height: var(--lineHight179);
        text-align: center;
        margin-bottom: max(4.08%, 15px);

        &:last-child {
            margin-bottom: 0;
        }
    }
}

.mind__parts {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(100px, 18.357142857142858vw, 257px);
    transform: translate(40%, 7%);
}

@media screen and (max-width:1200px) {
    .mind__parts {
        transform: translate(5%, 7%);
    }
}

@media screen and (max-width:1024px) {
    .mind__parts {
        width: max(15%, 80px);
        transform: translate(-5%, 30%);
    }
}

@media screen and (max-width:768px) {
    .mind__parts {
        transform: translate(-5%, 50%);
    }
}

@media screen and (max-width:535px) {
    .mind {
        & .section__ttl {
            .en {
                bottom: -45%;
                right: -5%;
            }
        }
    }
}

@media screen and (max-width:358px) {
    .mind__parts {
        transform: translate(-5%, 5%);
    }
}



/*******************************************
loop
*******************************************/
/*スライドの動き等速 */
.loopSwiper__list {
    transition-timing-function: linear;

    .swiper-slide {
        max-width: 356px;

        img {
            border-radius: var(--borderRadius20);
        }
    }

    .swiper-slide02 {
        margin-top: clamp(10px, 6.12%, 60px);
    }
}

/*******************************************
ページネーション
*******************************************/
.paginationFlex {
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: max(10%, 30px);
    gap: 10px;
}

.pagiDot {
    width: fit-content !important;

    .swiper-pagination-bullet-active {
        background-color: transparent;
        background-image: var(--gra01);
        opacity: 1;
    }
}

.pagiBtn {
    position: relative;
    width: 40px;
    aspect-ratio: 1;
    background-image: var(--gra01);
    border-radius: var(--borderRadiusCircle);
    cursor: pointer;

    &::before,
    &::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        background-color: var(--white);
        width: 30%;
        height: 2px;
    }

    &::before {
        transform-origin: bottom right;
        transform: translate(-65%, -33%) rotate(45deg);
    }

    &::after {
        transform-origin: top right;
        transform: translate(-65%, -67%) rotate(-45deg);
    }

}

.prevBtn {
    transform: rotate(180deg);
}

@media screen and (max-width:768px) {
    .paginationFlex {
        display: flex;
    }
}


/*******************************************
clickBox
*******************************************/
.clickBox {
    position: relative;
    background-color: var(--white);
    border-radius: var(--transitionBase02);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transitionBase01);
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: var(--borderRadius20);

    &:hover {
        opacity: var(--opacity07);
    }
}

.btn-outer-clickBox {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 50px;
    width: min(100%, 192px);

    .btn {
        font-size: var(--font14);
        border-radius: var(--borderRadius20) 0 0 0;
    }
}

@media screen and (max-width:480px) {
    .btn-outer-clickBox {
        width: min(100%, 160px);
        height: 40px;
    }
}


/*******************************************
facility
*******************************************/
.facility {
    margin-top: max(-12.86%, -180px);

    .section__inner {
        padding: clamp(80px, 17.86%, 250px) 0 clamp(50px, 8.57%, 120px);
    }

    .section__ttl {
        .ja {
            letter-spacing: var(--fontSpace100);
        }

        .en {
            width: 2.733em;
            bottom: -65%;
            right: -60%;
        }

    }
}

.facilitySwiper__list {
    gap: 50px 30px;

    .swiper-slide {
        width: calc((100% - 30px)/2);
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .swiper-slide02 {
        width: calc((100% - 60px)/3);
    }
}

.facilitySwiper__item {
    flex-grow: 1;
}

.facilitySwiper__detail {
    padding: 20px 20px 65px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;


    dt {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: var(--font26);
        line-height: 1.23;
        text-align: center;
    }

    dd {
        margin-top: 15px;

        .txt {
            margin-top: 10px;
        }
    }
}

.facilitySwiper__label {
    display: block;
    font-size: var(--font14);
    width: 7.143em;
    text-align: center;
    letter-spacing: var(--fontSpace050);
    background-color: var(--beige01);
    line-height: 1.86;
}


@media screen and (max-width:850px) {
    .facilitySwiper__detail {
        dt {
            font-size: 22px;
        }
    }
}


@media screen and (max-width:480px) {
    .facilitySwiper__detail {
        padding: 20px 10px 55px;
    }
}

@media screen and (max-width:365px) {
    .facilitySwiper__detail {
        padding: 20px 10px 55px;

        dt {
            font-size: 5.7894736842105265vw;
        }

        dd {
            .txt {
                margin-top: 5px;
            }
        }
    }
}


/*******************************************
number
*******************************************/

.number {
    .section__inner {
        padding: clamp(50px, 9%, 120px) 0 clamp(50px, 9%, 115px);
    }

    .section__ttl {
        margin: 0 auto max(9%, 30px);

        .en {
            width: 3.466em;
            bottom: 0;
            right: 0;
            transform: translate(78%, 60%);
        }
    }
}

.number__parts01 {
    position: absolute;
    width: clamp(100px, 25vw, 356px);
    top: 3.5%;
    left: 0;
    transform: translateX(-69%);
}


.numberSwiper__list {
    gap: 60px 30px;

    .swiper-slide {
        width: calc((100% - 60px)/3);
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .swiper-slide02 {
        .numberDetail__main {
            .txtBox {
                background-color: var(--beige02);
            }
        }
    }
}



.numberDetail {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    dt {
        color: var(--pink01);
        text-align: center;
        font-size: var(--font28);
        line-height: 1.5;
    }

}

.numberDetail__main {
    display: flex;
    flex-direction: column;
    align-items: center;

    .data {
        font-size: 131px;
        font-weight: var(--weight700);
        line-height: 1;

        .small {
            font-size: 0.5038em;
        }
    }

    .txtBox {
        margin-top: 15px;
        border-radius: var(--borderRadius20);
        background-color: var(--pink02);
        height: 160.5px;
        width: 100%;
        padding: 30px 5px 0;
    }

    .txt {
        line-height: var(--lineHight161);
        font-size: var(--font21);
        text-align: center;
        font-weight: var(--weight500);
    }
}

.numberDetail02 {
    margin-top: 60px;

    .numberDetail__main {

        .txtBox {
            display: flex;
            justify-content: flex-start;
            height: auto;
            padding: 30px 20px 25px;

            .img {
                width: min(100%, 304px);
                margin: 0 28px 0 0;

                img {
                    border-radius: var(--borderRadius10);
                }
            }
        }

        .txt {
            flex: 1;

            p {
                font-size: var(--font21);
                text-align: left;
                margin-bottom: 5px;

                &:last-child {
                    margin-bottom: 0;
                }
            }

            .color-pink {
                font-weight: 900;
            }

            .big {
                font-size: 2em;
                line-height: 1;
            }
        }
    }
}

@media screen and (max-width:1200px) {
    .number__parts01 {
        position: absolute;
        width: max(20vw, 80px);
        top: -3%;
        left: 5px;
        transform: none;
    }
}

@media screen and (max-width:1065px) {
    .number {

        .section__ttl {

            .en {
                transform: translate(50%, 60%);
            }
        }
    }
}


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



    .numberDetail {
        flex-grow: 1;

        dt {
            flex-grow: 1;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .data {
            font-size: 80px;
        }
    }
}

@media screen and (max-width:768px) {
    .number {
        .section__ttl {
            .en {
                transform: translate(30%, 75%);
            }
        }
    }

    .numberDetail {
        dt {
            height: auto;
        }

        .data {
            font-size: 60px;
        }
    }

    .numberDetail__main {
        flex-grow: 1;
        height: 100%;

        .txtBox {
            height: 100%;
            padding: 20px 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    .numberDetail02 {
        .numberDetail__main {
            .txtBox {
                flex-direction: column;
                align-items: center;

                .img {
                    margin: 0 0 10px;
                }
            }

            .txt {
                width: min(100%, 600px);
                margin: 0 auto;
            }
        }
    }
}

@media screen and (max-width: 570px) {
    .number {
        .section__ttl {
            .en {
                transform: translate(10%, 80%);

            }
        }
    }
}

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

    .numberDetail02 {
        margin-top: 40px;

        .numberDetail__main {
            .txtBox {
                padding: 30px 5%;
            }
        }
    }

}

@media screen and (max-width: 399px) {
    .number {
        .section__ttl {
            .en {
                transform: translate(10%, 60%);
            }
        }
    }

    .number__parts01 {
        top: -1%;
    }


}



/*******************************************
interview
*******************************************/
.interview {

    &::before {
        background-image: url(../img/common/bg-orange.jpg);
    }

    .section__inner {
        padding: clamp(40px, 9%, 125px)0;
    }

    .section__ttl {

        margin: 0 auto max(8%, 30px);

        .en {
            width: 2.55em;
            right: 0;
            bottom: 0;
            transform: translate(125%, 58%);
        }
    }
}

.interviewSwiper__list {
    gap: 70px 35px;
    justify-content: initial !important;

    .swiper-slide {
        max-width: 428px;
        width: calc((min(100%, 894px) - 35px)/2);
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .swiper-slide02 {
        margin-left: auto;
    }
}

.interviewSwiper__item {
    background-color: var(--white);
    flex-grow: 1;
}


.interviewSwiper__detail {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 35px 20px;

    dt {
        font-size: var(--font21);
        margin-bottom: 15px;
    }

    dd {
        font-size: var(--font19);
        letter-spacing: var(--fontSpace050);
        margin-top: auto;
    }
}

@media screen and (max-width: 850px) {
    .interview {

        .section__ttl {
            .en {
                transform: translate(50%, 80%);
            }
        }
    }
}

@media screen and (max-width: 565px) {
    .interview {

        .section__ttl {
            .en {
            transform: translate(30%, 80%);
            }
        }
    }
}

@media screen and (max-width:480px) {
    .interview {

        .section__ttl {
            .en {
           transform: translate(30%, 80%);
            }
        }
    }

    .interviewSwiper__detail {
        padding: 25px 15px;
    }
}

@media screen and (max-width:375px) {
    .interview {

        .section__ttl {
            .en {
    transform: translate(30%, 80%);
            }
        }
    }
}




/*******************************************
modal
*******************************************/
/* 共通
ーーーーーーーーーーーーーーーーーーー */
.no-scroll {
    overflow: hidden;

    body {
        overflow: scroll;
    }
}

.modal {
    /* 背景 */
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: auto;
    background-color: var(--beige03);
    z-index: -100;
    overflow: auto;
    transition: var(--transitionBase02);
}

.modalBox-outer {
    /* 最大幅*/
    position: absolute;
    height: auto;
    top: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
    transition: var(--transitionBase02);
    padding: clamp(40px, 10%, 140px) 0;
    z-index: -100;
}

.modalBox {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    height: auto;
    border-radius: var(--borderRadius20);
}

.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;

    .show.modalBox-outer {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        z-index: 1001;
    }
}

.modal__inner {
    /* モーダル中身のインナー */
    width: min(100%, 850px);
    margin: 0 auto;
    padding: 65px 0;
}

.modalClose-top {
    position: absolute;
    content: "";
    width: 60px;
    aspect-ratio: 1;
    background-image: var(--gra01);
    top: 0;
    right: 0;
    border-radius: var(--borderRadiusCircle);
    transform: translate(50%, -50%);
    z-index: 10;
    transition: var(--transitionBase02);

    &::before,
    &::after {
        position: absolute;
        content: "";
        width: 50%;
        height: 2px;
        top: 50%;
        left: 50%;
        background-color: var(--white);
        transition: var(--transitionBase02);
    }

    &::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    &::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    &:hover {
        opacity: var(--opacity07);

    }
}

.btn-outer-modal {
    width: min(100%, 260px);
    margin: max(8%, 40px) auto 0;

    .btn {

        &::before,
        &::after {
            position: absolute;
            content: "";
            width: 10%;
            height: 2px;
            top: 50%;
            right: 5%;
            background-color: var(--white);
            transition: var(--transitionBase);
        }

        &::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        &::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }
    }
}



@media screen and (max-width:1024px) {
    .modal__inner {
        padding: 80px 15px;
    }

    .modalClose-top {
        top: 10px;
        right: 10px;
        transform: none;
    }
}

@media screen and (max-width:880px) {
    .modal__inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}


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


    .modalClose-top {
        width: 40px;

        &:hover {
            background-color: var(--blue01);

            &::before,
            &::after {
                background-color: var(--white);
            }

        }
    }

}









/* 共通
ーーーーーーーーーーーーーーーーーーー */
.modalMv {
    position: relative;
    margin: 0 auto max(8.81%, 35px);
}

.modalMv__txtBox {
    position: absolute;
    width: 100%;
    top: 10%;
    left: 0;
}

.modalMv__ttl {

    p {
        background-image: var(--gra01);
        color: var(--white);
        font-size: var(--font36);
        border-radius: var(--borderRadius10);
        width: fit-content;
        margin-bottom: 0.34em;
        line-height: 1.4;
        padding: 0 0.5em;
        font-weight: var(--weight700);

        &:last-child {
            margin-bottom: 0;
        }
    }

    .sp {
        display: none;
    }

}

.modalMv__img {
    width: 61.767%;
    margin-left: auto;

    img {
        border-radius: var(--borderRadius20);
    }
}

.modalMv__detail {
    margin-top: 35px;

    p {
        font-size: var(--font21);
        line-height: 1.38;
    }

    .name {
        display: inline-block;
        font-size: var(--font26);
        margin-top: 20px;

        .big {
            font-size: 1.3077em;
        }
    }
}

.modal__q {
    font-size: var(--font23);

    dt {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 10px;
        font-weight: var(--weight500);

        p {
            flex: 1;
            font-size: var(--font23);
            line-height: 1.217;
            text-align: left;
        }
    }

    dd {
        margin-bottom: max(6.396%, 30px);
        background-color: var(--beige02);
        padding: 20px;
        border-radius: var(--borderRadius10);

        &:last-child {
            margin-bottom: 0;
        }
    }
}

.q-icon {
    position: relative;
    display: block;
    width: 1.74em;
    aspect-ratio: 1;
    transform: translateY(-15%);
    background-color: var(--pink01);
    border-radius: var(--borderRadiusCircle);

    &::before {
        position: absolute;
        content: "Q";
        font-size: 1.0434em;
        color: var(--white);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -55%);
        font-weight: var(--weight500);
    }
}

@media screen and (max-width: 768px) {
    .modalMv {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        width: min(100%, 600px);
        margin-left: auto;
        margin-right: auto;
    }

    .modalMv__txtBox {
        position: initial;
    }

    .modalMv__img {
        width: min(100%, 400px);
        margin: 0 0 max(5%, 15px) 0;

        img {
            border-radius: var(--borderRadius10);
        }
    }

    .modalMv__detail {
        margin-top: max(3%, 15px);
    }

    .modal__q {
        dd {
            padding: 15px 10px;
        }
    }
}

@media screen and (max-width: 480px) {
    .modal__inner {
        padding-top: 60px;
    }

    .modalMv__ttl {
        p {
            font-size: min(6.875vw, 30px);
            border-radius: 5px;
        }

        .pc {
            display: none;
        }

        .sp {
            display: block;
        }
    }

    .modalMv__detail {
        .name {
            margin-top: 10px;
            font-size: 18px;
        }
    }

    .modal-interview04 {
        .modalMv__ttl {
            p {
                font-size: min(6.3vw, 30px);
            }
        }
    }

    .btn-outer-modal {
        width: min(100%, 200px);
        height: 50px;
    }
}




/* 共通↑↑↑
ーーーーーーーーーーーーーーーーーーー */




/*******************************************
sp時　スライダー
*******************************************/

.resetSwiper__list {
    flex-wrap: wrap;
    justify-content: space-between;
}

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

    .resetSwiper {
        width: min(100%, 350px);
        overflow: visible;
    }

    .resetSwiper__list {
        flex-wrap: nowrap;
        justify-content: initial;
        gap: 0;

        .swiper-slide {
            width: auto;
        }

        .swiper-slide02 {
            width: auto;
        }
    }

}

/*******************************************
search
*******************************************/
.search {
    .section__inner {
        padding: clamp(50px, 10%, 130px) 0 clamp(50px, 9%, 120px);
    }

    .section__ttl {
        margin: 0 auto max(10%, 30px);

        .en {
            width: 4.4em;
            bottom: -101%;
            right: -82%;
        }
    }
}

.searchFlex {
    width: min(100%, 816px);
    gap: 45px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}

.searchFlex__item {
    width: calc((100% - 45px)/2);
}

.btn-outer-search {
    width: 100%;
    height: 96px;

    .btn {
        background-color: var(--pink01);
        border-radius: var(--borderRadius20);
        font-size: var(--font24);
        letter-spacing: var(--fontSpace050);
    }

    .arrow {
        transition: var(--transitionBase02);
        transform: translateY(-50%) rotate(90deg);
    }
}

.searchList {
    border: 3px solid var(--pink01);
    border-radius: var(--borderRadius20);
}

.searchList__item {
    border-bottom: 3px solid var(--pink01);

    &:last-child {
        border: none;
    }

    a {
        display: inline-block;
        width: 100%;
        transition: var(--transitionBase01);
        line-height: 1.2;
        text-align: center;
        font-size: var(--font24);
        color: var(--pink01);
        padding: 20px 5px;
        font-weight: var(--weight700);

        &:hover {
            opacity: var(--opacity07);
        }
    }
}

.aco-container.open {
    .btn-outer-search {

        .arrow {
            transform: translateY(-50%) rotate(270deg);
        }
    }

}


.search__insta {
    width: min(100%, 816px);
    margin: max(12.2449%, 40px) auto 0;
    transition: var(--transitionBase01);

    &:hover {
        opacity: var(--opacity07);
    }
}

.search__parts {
    position: absolute;
    top: 0;
    right: 0;
    width: min(24.4vw, 341px);
    transform: translate(57%, 14%);
}

@media screen and (max-width:1200px) {
    .search__parts {
        width: max(20vw, 80px);
        transform: translate(16%, 70%);
    }
}

@media screen and (max-width:1024px) {
    .search__parts {
        transform: translate(-10%, -23%);
    }
}

@media screen and (max-width:768px) {
    .searchFlex {
        gap: 30px;
        flex-direction: column;
        align-items: center;
        width: min(100%, 400px);
    }

    .searchFlex__item {
        width: 100%;
    }

    .btn-outer-search {
        height: 70px;
    }
}

@media screen and (max-width:480px) {
    .search {
        .section__ttl {
            .en {
                width: 3em;
                bottom: -65%;
                right: -57%;
            }
        }
    }

    .searchFlex {
        width: min(100%, 300px);
        gap: 20px;
    }

    .searchList__item {
        a {
            font-size: 19px;
            padding: 15px 5px;
        }
    }

    .btn-outer-search {
        height: 60px;
    }

}



/*******************************************
footer
*******************************************/

.footer {
    background-color: var(--orange01);
    padding: 50px 0;
    position: relative;
    font-size: 12px;
    color: var(--white);
    font-weight: var(--weight500);
}

.footer-nav {
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    gap: 30px;

    a {
        position: relative;

        &:hover {
            opacity: var(--opacity07);
        }
    }

    a:not(:first-child):before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--white);
        top: 50%;
        left: -14px;
        transform: translate(50%, -50%);
    }
}


.copyright {
    text-align: center;
    font-size: 12px;
}



@media screen and (max-width:1024px) {
    .footer {
        padding-bottom: 100px;
    }
}


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

    .footer {
        .inner {
            padding: 0 15px;
        }
    }

    .footer-nav {
        flex-wrap: wrap;
        column-gap: 30px;
        row-gap: 10px;


        & a:last-child::before {
            display: none;
        }

        & a:not(:first-child):before {
            left: -14px;
        }
    }
}


@media screen and (max-width:480px) {
    .footer {
        padding-top: 30px;
    }
}