@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #0a0d0d;
    --black02: rgba(0, 0, 0, 0.5);
    --red01: #e8161c;
    --orange01: #fe8300;
    --yellow01: #f8e43b;
    --beige01: #fef1c5;
    --beige02: #eddabb;


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

    /* 書式 */
    --notoSans: "Noto Sans JP", sans-serif;
    --kalnia: "Kalnia", serif;

    /* 文字サイズ */
    --font17: clamp(13px, 0.37vw + 11.8px, 17px);
    --font19: clamp(14.53px, 0.414vw + 13.2px, 19px);
    --font21: clamp(16.06px, 0.457vw + 14.7px, 21px);
    --font23: clamp(17.59px, 0.501vw + 16.1px, 23px);
    --font24: clamp(18.35px, 0.522vw + 16.8px, 24px);
    --font28: clamp(21.41px, 0.609vw + 19.6px, 28px);
    --font36: clamp(27.53px, 0.783vw + 25.2px, 36px);
    --font30: clamp(22.94px, 0.653vw + 21.0px, 30px);
    --font32: clamp(24.47px, 0.696vw + 22.4px, 32px);

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

    /* 行間 */
    --lineHight175: 1.75;
    --lineHight200: 2.0;

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

    /* トランジションの変数　 */
    --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: 768px) {
    :root {
        --opacity07: 1;
    }

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


}



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


.contents {
    color: var(--black);
    font-family: var(--notoSans);
    font-weight: var(--weight700);
    font-size: var(--font17);
    line-height: var(--lineHight120);
    overflow: hidden;

    * {
        box-sizing: border-box;
    }

    a,
    .hamburger,
    .btn,
    .pagiBtn,
    .aco-click {
        transition: var(--transitionBase01);

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

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

    img {
        display: block;
        width: 100%;
        height: auto;
    }
}



.section {
    position: relative;
}

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

    padding: 140px 0 120px;
}

.section__ttl {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--font36);
    line-height: 1.15;
    text-align: center;

    .en {
        font-family: var(--kalnia);
        font-size: 1.8em;
        color: var(--red01);
        font-weight: var(--weight500);
    }

    .ja {
        font-weight: var(--weight900);
    }
}


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

.under-line01 {
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 0.4em;
    text-decoration-color: var(--orange01);
}

.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.block768 {
    display: none;
}

.push {
    display: inline-block;
}

.bg-orange {
    background-color: var(--orange01);
    color: var(--white);
    padding: 0.12em 0.1em 0.15em;
    line-height: 1;
    display: inline-block;
}

.bg-beige {
    background-color: var(--beige02);
    color: var(--black);
    padding: 0.12em 0.1em 0.15em;
    line-height: 1;
    display: inline-block;
}

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

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



@media screen and (max-width:768px) {
    .contents {
        position: relative;
    }

    .block768 {
        display: block;
    }

    .none768 {
        display: none;
    }
}

@media screen and (max-width:480px) {
    .section__ttl {
        font-size: max(3vw, 20px);
    }
}




/*******************************************
btn
*******************************************/
.btn-outer {
    width: min(100%, 400px);
    height: 70px;
    margin: 0 auto;
}

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

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

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

.btn-yellow {
    background-color: var(--yellow01);
    color: var(--black);

    &::before {
        background-color: var(--black);
    }
}



@media screen and (max-width: 768px) {
    .btn-outer {
        width: min(100%, 300px);
        height: 50px;
    }
}



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

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

    display: none;


    a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        border-radius: var(--borderRadiusCircle);
        background-color: var(--black);
        border: 1px solid var(--black);

        &::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);
        }
    }

}


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




/*******************************************
entryBtn
*******************************************/


.entryBtnBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.entryBtn {
    width: calc((100% - 40px)/2);
    height: 125px;

    .btn {
        border-radius: 15px;
        font-size: var(--font30);
        text-align: center;
        line-height: 1.33;

        .big {
            font-size: 1.35em;
        }

        &>span {
            position: relative;

            &::before {
                position: absolute;
                content: "";
                position: absolute;
                background-image: url(../img/common/icon01.svg);
                background-repeat: no-repeat;
                background-size: contain;
                top: 50%;
                left: 0;
                transform: translate(-125%, -50%);
                width: 3.2em;
                aspect-ratio: 96/64;
            }
        }

    }
}

.entryBtn02 {
    .btn {
        &>span::before {
            background-image: url(../img/common/icon02.svg);
        }
    }
}

.entryBtnBox-fixed {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: min(4.16em, 100px);
    flex-direction: column;
    gap: 15px;
    font-size: var(--font24);
    z-index: 40;
    transition: var(--transitionBase01);
    opacity: 0;
    visibility: hidden;

    .entryBtn {
        width: 100%;
        height: 100%;
        aspect-ratio: 100/250;
    }

    .btn {
        writing-mode: vertical-rl;
        font-size: 1em;
        text-align: left;

        &::before {
            bottom: 5%;
            top: auto;
            right: 50%;
            transform: translateX(60%);
        }

        &>span {
            transform: translateY(5%);

            &::before {
                top: 0;
                left: 50%;
                transform: translate(-50%, -125%);
                width: 2.79em;
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .entryBtnBox-fixed {
        font-size: 1.8vw;
    }
}

@media screen and (max-width: 768px) {
    .entryBtn {
        height: 100px;
    }

    .entryBtnBox {
        flex-direction: column;
        gap: 15px;
        width: min(100%, 400px);
        margin-left: auto;
        margin-right: auto;

        .entryBtn {
            width: 100%;
        }
    }

    .entryBtnBox-fixed {
        font-size: min(3.5vw, 16px);
        top: auto;
        right: 50%;
        bottom: 2%;
        transform: translateX(50%);
        flex-direction: row;
        width: min(90%, 600px);
        height: 60px;
        gap: 10px;


        .entryBtn {
            aspect-ratio: initial;
        }

        .btn {
            writing-mode: initial;

            &::before {
                bottom: auto;
                right: 5%;
                top: 50%;
                transform: translateY(-50%);
            }

            &>span {
                transform: initial;

                &::before {
                    top: 50%;
                    left: 0;
                    transform: translate(-106%, -50%);
                }
            }
        }
    }


}

@media screen and (max-width: 480px) {
    .entryBtnBox:not(.entryBtnBox-fixed) {
        width: min(100%, 300px);

        .entryBtn {
            height: 70px;
        }

        .btn {
            font-size: var(--font19);
        }
    }
}



/*******************************************
header
*******************************************/
.header {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 35px;
    z-index: 95;
    transition: var(--transitionBase01);
}

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

.header__logo {
    width: clamp(50px, 10.9375vw, 175px);
    aspect-ratio: 1;
    background-color: var(--white);
    border-radius: 0 0 var(--borderRadius20) var(--borderRadius20);

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;

        span {
            width: 68%;
        }
    }
}

.hamburger {
    position: relative;
    display: block;
    width: 60px;
    aspect-ratio: 1;
    cursor: pointer;
    z-index: 100;
    background-color: var(--black);


    display: none;

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

        &:nth-of-type(1) {
            top: 30%;
        }

        &:nth-of-type(2) {
            top: 50%;
        }

        &:nth-of-type(3) {
            top: 70%;
        }
    }
}

.headerNav {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 95;
    transform: translateX(100%);
    background-color: var(--black02);
    backdrop-filter: blur(10px);
    transition: var(--transitionBase01);
    opacity: 0;
    visibility: hidden;
    transform: none;
}

.headerNav__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: min(50%, 500px);
    height: 100%;
    padding: clamp(50px, 10svh, 100px) 5% 2vh;
    margin-left: auto;
    background-color: var(--white);
    transform: translateX(101%);
    transition: var(--transitionBase02);
}

.headerNav__item {
    margin: 0 0 5svh;

    &:nth-last-child(2) {
        margin: 0;
    }

    &:last-child {
        margin: 8svh 0 0;
    }
}

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




.active {

    .line {
        background-color: var(--white);

        &:nth-of-type(1) {
            top: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
        }

        &:nth-of-type(2) {
            opacity: 0;
        }

        &:nth-of-type(3) {
            top: 50%;
            transform: translate(-50%, -50%) rotate(-45deg);
        }
    }

    .headerNav {
        opacity: 1;
        visibility: visible;
    }

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



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

    .header {
        position: absolute;
        padding-left: 10px;
    }

    .bg-white {
        backdrop-filter: initial;
    }

    .hamburger {
        position: fixed;
        top: 0;
        right: 1%;
        width: 50px;
    }

}

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

    .header {
        padding-left: 5px;
    }


    .hamburger {
        width: 40px;
    }

    .headerNav__list {
        width: 70%;
    }
}




/*******************************************
mv
*******************************************/
.mv {
    position: relative;
    margin-top: max(-10.9375vw, -175px);
    font-size: 3vw;
}

.mv__ttl {
    position: absolute;
    left: 38.5%;
    bottom: 8%;
    font-weight: var(--weight900);
    font-size: 1em;
    line-height: 1.6875;
    z-index: 3;

    .under-line {
        text-decoration: underline;
        text-decoration-thickness: 0.083em;
        text-underline-offset: 0.3em;
        text-decoration-color: var(--orange01);
    }

    .first {
        position: relative;

        &::before {
            position: absolute;
            content: "";
            background-image: url(../img/common/parts01.svg);
            background-repeat: no-repeat;
            background-size: contain;
            width: 1.75em;
            top: 0;
            right: 0;
            transform: translate(70%, -55%);
            aspect-ratio: 84/82;
        }
    }
}

.mv__bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: var(--kalnia);
    z-index: 2;
    font-size: 2.5em;
    font-weight: var(--weight500);

    &:first-letter {
        color: var(--red01);
    }
}

.mv__img {
    position: absolute;
}

.mv__img01 {
    top: 33%;
    left: 0;
    width: 3.667em;
    z-index: 1;
}

.mv__img02 {
    top: 20%;
    left: 8.5%;
    width: 4.5em;
}

.mv__img03 {
    top: 38%;
    left: 14.5%;
    width: 6.563em;
    z-index: 1;
}

.mv__img04 {
    top: 54.5%;
    left: 26%;
    width: 3.813em;
    z-index: 2;
}

.mv__img05 {
    top: 0;
    left: 26%;
    width: 4.521em;
}

.mv__img06 {
    top: 9%;
    left: 37.5%;
    width: 8.063em;
}

.mv__img07 {
    top: 44.5%;
    left: 50%;
    width: 4.583em;
}

.mv__img08 {
    top: 9%;
    left: 64%;
    width: 4.708em;
}

.mv__img09 {
    top: 33%;
    left: 69.5%;
    width: 4.115em;
    z-index: 1;
}

.mv__img10 {
    top: 16%;
    left: 79.5%;
    width: 4.115em;
}

.mv__img11 {
    top: 3%;
    left: 89%;
    width: 2.563em;
}

.mv__img12 {
    top: 32.5%;
    left: 84%;
    width: 5.438em;
}

@media screen and (max-width:768px) {
    .mv {
        font-size: 6vw;
        margin-top: 0;
    }

    .mv__ttl {
        padding: 0 0.1em;
        width: 100%;
        left: 0;
        bottom: 35%;
        font-size: 1.5em;

        .first,
        .middle,
        .last {
            display: block;
        }

        .first {
            width: fit-content;

            &::before {
                background-image: url(../img/common/parts02.svg);
                transform: translate(70%, -27%);
            }
        }

        .middle {
            text-align: center;
        }

        .last {
            text-align: right;
        }
    }

    .mv__bottom {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.9),
            0 0 20px rgba(255, 255, 255, 0.7),
            0 0 40px rgba(255, 255, 255, 0.5);
        ;
    }

    .mv__img01 {
        width: 3em;
        top: 81%;
        left: 6%;
    }

    .mv__img02 {
        width: 4em;
        top: 66%;
        left: -3%;
    }

    .mv__img03 {
        width: 5.5em;
        top: 73%;
        left: 19%;
        z-index: 0;
    }

    .mv__img04 {
        width: 3.313em;
        top: 23%;
        left: 1%;
    }

    .mv__img05 {
        left: 10%;
        width: 4.021em;
    }

    .mv__img06 {
        left: 25%;
        width: 6.6em;
        z-index: 1;
        top: 11%;
    }

    .mv__img07 {
        top: 24%;
        left: 74%;
        width: 4.083em;
        z-index: 1;
    }

    .mv__img08 {
        top: 2%;
        left: 56%;
        width: 4.208em;
        z-index: 0;
    }

    .mv__img09 {
        top: 8%;
        left: 78%;
        width: 3.615em;
    }

    .mv__img10 {
        top: 82%;
        left: 55%;
        width: 3.615em;
    }

    .mv__img11 {
        top: 81%;
        left: 80%;
        width: 3em;
        z-index: 2;
    }

    .mv__img12 {
        top: 69%;
        left: 71%;
        width: 4.2em;
    }
}


/*******************************************
about
*******************************************/
.about {
    .section__inner {
        padding: 0;
    }

    .section__ttl {
        color: var(--white);

        .en {
            color: var(--white);
        }
    }
}

.section__ttlBox-about {
    position: relative;
    width: min(100%, 670px);
    aspect-ratio: 670/198;
    padding-top: 1.3em;
    margin: 0 auto;
    background-image: url(../img/about/ttl-bg.png);
    background-size: contain;
    background-repeat: no-repeat;

}

p.about__txt {
    width: min(100%, 777px);
    margin: 0 auto 0.5em;
    text-align: center;
    font-size: var(--font21);
    line-height: var(--lineHight200);
    margin-top: max(3.1%, 20px);
}

.about__imgBox {
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.about__imgBoxInner {
    position: relative;
    width: min(100%, 1600px);
    aspect-ratio: 1600/368;
    margin: 0 auto;
}

.about__img {
    position: absolute;
}

.about__img01 {
    top: 0;
    left: 0;
    width: 25.25%;
}

.about__img02 {
    bottom: 0;
    left: 19%;
    width: 21.88%;
}

.about__img03 {
    top: 24%;
    right: 19%;
    width: 27.63%;
    z-index: 1;
}

.about__img04 {
    top: 0;
    right: 0;
    width: 28.06%;
}

.entryBtnBox-about {
    margin-top: max(8.1%, 30px);
}

@media screen and (max-width:768px) {
    .section__ttlBox-about {
        position: relative;
    }

}

@media screen and (max-width:500px) {
    .section__ttlBox-about {
        padding-top: 0.3em;
    }
}

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


        .section__ttl {
            font-size: 5.7vw;
        }
    }

    .about__imgBoxInner {
        position: relative;
        width: min(100%, 1600px);
        aspect-ratio: 480/200;
        margin: 0 auto;
    }

    .about__img {
        width: 37%;
    }

    .about__img01 {
        top: 10%;
    }

    .about__img02 {
        left: 10%;
    }

    .about__img03 {
        top: auto;
        bottom: 15%;
        right: 11%;
    }
}


/*******************************************
point
*******************************************/

.bg-gra {
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -1%);
}

.point {
    background-image: url(../img/lunch/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;

    .section__inner {
        padding: clamp(100px, 12%, 180px) 0;
    }

    .section__ttl {
        line-height: 1.3;
        width: fit-content;
        margin: 0 auto;

        .en {
            font-size: 1.94em;
            transform: translateX(-2%);

            .sub {
                display: inline-block;
                font-size: 0.42em;
                border-bottom: 1px solid var(--red01);
                margin-left: 0.6em;
                padding-bottom: 0.1em;
                transform: translateY(-22%);
            }
        }

        &::before {
            position: absolute;
            content: "";
            background-image: url(../img/lunch/ttl-parts.png);
            background-repeat: no-repeat;
            background-size: contain;
            width: 10.19em;
            aspect-ratio: 367/212;
            bottom: 0;
            right: 0;
            transform: translate(97%, 24%);
        }
    }
}

.pointList {
    display: flex;
    margin: clamp(30px, 9%, 80px) auto 0;
}

.pointList__item {
    width: calc(100% / 3);

}

.pointList__top {
    position: relative;

    .number {
        position: absolute;
        top: 0;
        left: 0;
        font-size: var(--font32);
        font-family: var(--kalnia);
        color: var(--orange01);
        font-weight: var(--weight500);
        transform: translate(7%, 8%);
    }
}

.pointList__detail {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 25px;
    font-size: var(--font28);

    dt {
        font-size: 1em;
        text-align: center;
        line-height: 1.285;
        font-weight: var(--weight900);
        margin-bottom: 15px;

        .bg-orange {
            padding-bottom: 0.25em;
        }
    }

    dd {
        p {
            text-align: center;
        }
    }
}



@media screen and (max-width:1024px) {
    .point {
        .section__ttl {
            &::before {
                width: 5em;
                transform: translate(97%, 0%);
            }
        }

        .section__inner {
            padding: max(20%, 80px) 0 max(23%, 100px);
        }
    }

    .pointList {
        width: min(100%, 400px);
        flex-direction: column;
        gap: 30px;
    }

    .pointList__item {
        width: 100%;
    }

    .pointList__detail {
        margin-top: 15px;

        dt {
            margin-bottom: 10px;
        }
    }
}

@media screen and (max-width:768px) {
    .point {
        background-attachment: initial;

        .section__ttl {
            &::before {
                width: 4em;
                top: 0;
                left: 50%;
                right: auto;
                bottom: auto;
                transform: translate(-50%, -100%);
            }
        }
    }


}

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

        .section__ttl {
            .en {
                font-size: 1.7em;
            }
        }
    }

    .pointList {
        width: min(100%, 300px);
        flex-direction: column;
        gap: 30px;
    }

    .pointList__top {
        width: min(100%, 250px);
        margin: 0 auto;

        .number {
            font-size: 20px;
        }
    }
}



/*******************************************
night
*******************************************/
.night {
    background-image: url(../img/night/bg.png);
    margin-top: clamp(-120px, -8%, -95px);

    .section__inner {
        padding: clamp(150px, 13%, 205px) 0;
    }

    .section__ttl {
        .en {
            color: var(--yellow01);

            .sub {
                border-bottom: 1px solid var(--yellow01);
            }
        }

        .ja {
            color: var(--white);
        }

        &::before {
            background-image: url(../img/night/ttl-parts.png);
            left: 0;
            right: auto;
            transform: translate(-93%, 6%);
        }
    }

    .pointList__detail {
        color: var(--white);
    }

    .pointList__top {
        .number {
            color: var(--beige02);
        }
    }


}

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

            &::before {
                transform: translate(-93%, 0%);
            }
        }
    }
}

@media screen and (max-width:768px) {
    .night {
        .section__inner {
            padding: max(29%, 165px) 0;
        }

        .section__ttl {

            &::before {
                left: 50%;
                transform: translate(-50%, -100%);
                z-index: 2;
            }
        }
    }
}


/*******************************************
search
*******************************************/
.search {
    background-color: transparent;
    width: 150%;
    margin-left: calc(((150 - 100) / 2) * -1%);
    margin-top: clamp(-120px, -8%, -80px);
    z-index: 1;


    .section__inner {
        width: min(100vw, 1100px);
        padding: clamp(50px, 4.5%, 105px) 0 clamp(50px, 6%, 150px);
    }
}

.search02 {
    margin-top: clamp(-120px, -8%, -100px);

    .search__inner {
        background-color: var(--beige02);
        background-image: url(../img/search/bg-line.svg);
        background-size: 177.63%;
        background-repeat: no-repeat;
        background-position: center;
    }
}

.search__inner {
    background-color: var(--beige01);
    border-radius: 100% / 65%;
}

.searchBox {
    margin-bottom: max(7.7%, 40px);

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

.search__ttl {
    position: relative;
    font-size: var(--font36);
    font-weight: var(--black);
    text-align: center;
    padding-bottom: max(0.55em, 10px);
    margin: 0 auto max(3.64%, 20px);

    &::before {
        position: absolute;
        content: "";
        width: max(2.08em, 40px);
        height: 4px;
        background-color: var(--black);
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }

}


.searchLogo__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.searchLogo__item {
    background-color: var(--white);
    width: calc((100% - 50px)/6);
    aspect-ratio: 1;

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;

        .img {
            display: block;
            width: min(80%, 140px);
        }
    }
}

.searchBtn__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 15px;
}

.searchBtn__item {
    width: calc((100% - 30px)/3);
    height: 70px;

    &:first-child {
        margin-right: 0.1px;
    }
}

@media screen and (max-width:1024px) {
    .search__inner {
        border-radius: 100% / 50%;
    }


}

@media screen and (max-width:768px) {
    .searchBtn__list {
        width: min(100%, 300px);
        margin: 0 auto;
        gap: 10px;
    }

    .searchBtn__item {
        width: 100%;

        &:first-child {
            margin-right: 0;
        }
    }
}

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

    .search02 {

        .search__inner {
            background-size: 245%;
        }
    }

    .searchLogo__item {
        width: calc((100% - 30px)/4);
    }

    .search__inner {
        border-radius: 100% / 20%;
    }

    .search__ttl {
        font-size: 20px;
    }

    .searchBtn {
        width: min(100%, 250px);
    }

    .searchBtn__item {
        height: 50px;
    }
}

/*******************************************
question
*******************************************/

.question {
    .section__inner {
        padding: clamp(50px, 4.7%, 75px) 0 clamp(50px, 6.6%, 105px);
    }
}

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

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

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

    &::after {
        transform: translateY(-50%) rotate(90deg);
    }
}

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

.aco-container.open {
    .aco-click {
        &::before {
            transform: translateY(-50%) rotate(180deg);
        }

        &::after {
            transform: translateY(-50%) rotate(360deg);
        }
    }
}

.questionDetail {
    margin: 50px auto 0;
    width: min(100%, 920px);
}


.questionDetail__item {
    margin-bottom: 40px;
    font-size: var(--font23);

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

    dt,
    .dd-inner {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 15px;

        p {
            flex: 1;

        }
    }

    dt {
        background-color: var(--red01);
        padding-right: 1.6em;

        p {
            font-size: 1em;
            padding-top: 0.3em;
            color: var(--white);
        }
    }

    dd {
        p {
            padding-top: 0.5em;
        }
    }

    .q-icon,
    .a-icon {
        position: relative;
        font-size: 1em;
        width: 2.09em;
        aspect-ratio: 1;
        border-radius: var(--borderRadiusCircle);
        background-color: var(--white);
        margin-right: 15px;

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

    .a-icon {
        background-color: var(--black);

        &::before {
            content: "A";
            color: var(--white);
        }
    }




}


@media screen and (max-width:480px) {
    .questionDetail__item {
        font-size: 15px;
        margin-bottom: 20px;

        dt,
        .dd-inner {
            padding: 10px 5px;
        }

        dt {
            padding-right: 1.5em;

            &::before,
            &::after {
                width: 1em;
            }

            p {
                padding-top: 0.1em;
            }
        }

        dd {
            p {
                padding-top: 0.25em;
            }
        }

        .q-icon,
        .a-icon {
            width: 1.8em;
            margin-right: 5px;
        }
    }
}


/*******************************************
entry
*******************************************/
.entry {
    padding: 0 0 clamp(50px, 5%, 80px);

    .section__inner {
        position: relative;
        width: min(100%, 1400px);
        padding: clamp(40px, 8.44%, 135px) 0 clamp(40px, 7.6%, 120px);
    }
}

.bg-entry {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    img {
        object-fit: cover;
        height: 100%;
    }
}

.btn-outer-entry {
    margin: clamp(30px, 9%, 120px) auto 0;
    height: 90px;

    .btn {
        font-size: var(--font23);
    }
}

@media screen and (max-width:480px) {
    .btn-outer-entry {
        width: min(100%, 250px);
        height: 60px;

        .btn {
            font-size: 15px;
        }
    }
}



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