/* index.php */

section {
    padding-inline: 24px;

    @media (max-width: 750px) {

        padding-inline: 5.333vw;
    }

}

.sec-contents_inner {
    max-width: var(--contents-width);
    width: 100%;
    margin-inline: auto;
}

/* sec-mainvisual */
.sec-mainvisual {
    position: relative;
    padding-block-end: 80px;
    overflow: hidden;

    &::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 46px;
        height: 530px;
        aspect-ratio: 23 / 265;
        background-image: url(../img/img__mv-text.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    & .sec-contents_inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 72px;
        max-width: 1190px;
        width: 100%;
        margin-inline: auto;
        translate: clamp(0px, calc((100vw - 1190px) / 2), 55px) 0;


        & .mainvisual-contents {
            max-width: 370px;
            width: 100%;
            font-family: var(--font-mincho);

            & .lead {
                font-size: clamp(1.125rem, 1.074rem + 0.22vw, 1.25rem);
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 1.6px;
            }

            & .title {
                font-size: clamp(2.188rem, 1.858rem + 1.41vw, 3rem);
                font-weight: 500;
                line-height: 150%;
                letter-spacing: 3.84px;
                margin-block: 16px;
            }

            & .caption {
                display: inline-flex;
                justify-content: flex-start;
                align-items: center;
                gap: 8px;
                color: #766658;
                font-size: clamp(0.875rem, 0.824rem + 0.22vw, 1rem);
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 1.28px;


                &::before {
                    content: "";
                    display: block;
                    width: 40px;
                    height: 1px;
                    background-color: #766658;
                }
            }

            & .button-mainvisual {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: linear-gradient(282deg, var(--btn-color-start) 0.94%, var(--btn-color-end) 99.79%);
                border-radius: var(--common-border-radius);
                font-size: 19px;
                font-weight: 700;
                color: #FFF;
                line-height: 100%;
                letter-spacing: 1.52px;
                margin-block-start: 32px;
                transition: --btn-color-start 0.3s ease, --btn-color-end 0.3s ease;

                &:hover {
                    --btn-color-start: #F1C450;
                    --btn-color-end: #E68A33;
                }

                & a {
                    width: 100%;
                    padding: 24px 32px;

                    &::after {
                        content: "";
                        display: block;
                        position: absolute;
                        top: 50%;
                        right: 20px;
                        translate: 0 -50%;
                        background-image: url(../img/arrow__wht.svg);
                        background-size: contain;
                        background-position: center;
                        background-repeat: no-repeat;
                        width: 23px;
                        height: 9px;
                        scale: 1.1;
                    }
                }
            }
        }

        & img {
            max-width: 748px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }

    @media (max-width: 750px) {

        padding-block-end: 40px;


        &::before {
            scale: 0.75;
            transform-origin: left bottom;
        }

        & .sec-contents_inner {
            flex-direction: column-reverse;
            gap: 32px;
            translate: 0 0;

            & .mainvisual-contents {
                text-align: center;

                & .lead {
                    /* font-size: 18px; */
                    margin-block-start: 32px;
                }

                & .title {
                    /* font-size: 35px; */
                    margin-block: 16px 8px;
                }

                & .caption {
                    /* font-size: 14px; */

                    &::before {
                        width: 32px;
                    }

                    &::after {
                        content: "";
                        display: block;
                        width: 32px;
                        height: 1px;
                        background-color: #766658;
                    }
                }

                & .button-mainvisual {
                    font-size: 17px;
                }
            }

            & img {
                aspect-ratio: 34 / 30;
            }
        }
    }

    @media (max-width: 430px) {}
}

/* sec-news */
.sec-news {
    background-color: #fff;
    padding-block: 80px;

    & .news-contents {
        display: grid;
        grid-template-columns: max-content 1fr;
        gap: 128px;

        & hgroup {

            h2 {
                font-size: 26px;
                letter-spacing: 2.08px;
            }
        }

        & .news-contents_item {
            border-top: 1px solid var(--common-border-color);

            & li {
                border-bottom: 1px solid #DFDFDF;

                & .news-contents_link {
                    position: relative;
                    display: block;
                    padding-block: 20px;
                    padding-inline: 10px;
                    transition: background 0.3s ease;

                    &:hover {
                        background: #FDFCEC;
                    }

                    &::after {
                        content: "";
                        display: block;
                        position: absolute;
                        top: 50%;
                        right: 10px;
                        translate: 0 -50%;
                        width: 6px;
                        height: 6px;
                        border-right: 1px solid #4A3F35;
                        border-bottom: 1px solid #4A3F35;
                        rotate: -45deg;
                    }

                    & .news-contents_date {
                        font-size: 15px;
                        font-weight: 500;
                        color: #B6B6B6;
                        line-height: 100%;
                        letter-spacing: 1.2px;
                    }

                    & .news-contents_title {
                        font-size: 15px;
                        font-weight: 500;
                        line-height: 100%;
                        letter-spacing: 1.2px;
                        margin-block-start: 16px;
                    }
                }
            }
        }

    }

    & .button-news {
        background: #FAF6EC;
        border-radius: var(--common-border-radius);
        max-width: fit-content;
        font-size: 14px;
        font-weight: 700;
        color: #766658;
        line-height: 100%;
        letter-spacing: 1.12px;
        margin-inline: auto 0;
        margin-block-start: 32px;

        & a {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 8px;
            padding: 24px;

            &::after {
                content: "";
                display: block;
                background-image: url(../img/arrow__brn.svg);
                background-size: contain;
                background-position: center;
                background-repeat: no-repeat;
                width: 23px;
                height: 9px;
            }
        }

    }

    @media (max-width: 750px) {

        padding-block: 64px;

        & .news-contents {
            grid-template-columns: 1fr;
            gap: 40px;

            & hgroup {

                h2 {
                    font-size: 24px;
                }
            }

            & .news-contents_item {

                & li {

                    & .news-contents_link {

                        & .news-contents_date {
                            font-size: 14px;
                        }

                        & .news-contents_title {
                            font-size: 14px;
                        }
                    }
                }
            }
        }

        & .button-news {
            font-size: 13px;

            & a {
                padding: 20px 16px;
            }
        }
    }
}

/* sec-about */
.sec-about {
    position: relative;
    padding-block: 104px;
    overflow: hidden;

    &::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 235px;
        height: 125px;
        background-image: url(../img/img__about-text.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 2;
    }

    &::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 37.692vw;
        aspect-ratio: 245 / 261;
        background-image: url(../img/img__about-bg.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left top;
        z-index: -1;
    }

    & .about-contents {
        position: relative;
        display: flex;
        gap: 64px;
        max-width: 969px;
        width: 100%;
        margin-inline: auto;
        z-index: 1;

        & img {
            max-width: 435px;
            width: 100%;
            height: auto;
            object-fit: cover;
            flex-shrink: 0;
        }

        & .about-contents_items {

            & hgroup {

                margin-block-end: 10px;
            }

            & p {
                font-size: 16px;
                font-weight: 500;
                line-height: 180%;
                letter-spacing: 1.28px;

                &:not(:last-child) {
                    margin-block-end: 8px;
                }
            }
        }
    }

    @media (max-width: 750px) {

        padding-block: 64px 0;
        padding-inline: 0;

        &::before {
            content: none;
        }

        &::after {
            /* top: -64px;
            left: 0;
            width: 218px;
            height: 232px; */
            width: 58.133vw;
        }

        & .about-contents {
            flex-direction: column;
            gap: 40px;

            & img {
                max-width: fit-content;
                width: 83.733vw;
                margin-inline: auto 0;
            }

            & .about-contents_items {

                padding-inline: 5.333vw;

                & p {
                    font-size: 15px;
                }
            }
        }
    }
}

/* sec-reason */
.sec-reason {
    position: relative;
    padding-block: 64px 104px;
    z-index: 1;

    &::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 508px;
        background-image: url(../img/img__reason-bg.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
    }

    & hgroup {
        text-align: center;

        & h2 {
            font-size: clamp(20.00px, calc(1.62vw + 13.92px), 35.00px);
        }
    }

    & .reason-contents {
        counter-reset: num;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-block-start: 84px;

        & .reason-contents_item {
            counter-increment: num;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 24px;
            background: #fff;
            border-radius: 8px;
            padding: 40px 32px;

            &::before {
                content: counter(num, decimal-leading-zero);
                position: absolute;
                top: -3rem;
                left: -1rem;
                display: flex;
                justify-content: center;
                align-items: center;
                background-image: url(../img/label__reason.svg);
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                width: 100px;
                height: 100px;
                color: #817468;
                font-family: var(--font-en);
                font-size: 32px;
                font-weight: 400;
                line-height: 100%;
                letter-spacing: 2.56px;
            }

            & h3 {
                font-size: 24px;
                font-family: var(--font-mincho);
                font-weight: 500;
                text-align: center;
                line-height: 150%;
                letter-spacing: 1.92px;
            }

            & img {
                width: auto;
                height: 110px;
                margin-inline: auto;
            }

            & p {
                font-size: 14px;
                font-weight: 400;
                line-height: 180%;
                letter-spacing: 1.12px;
            }
        }
    }

    & .reason-contents_text {
        font-size: 16px;
        font-style: normal;
        text-align: center;
        font-weight: 500;
        line-height: 180%;
        letter-spacing: 1.28px;
        margin-block-start: 24px;
    }

    @media (max-width: 750px) {

        padding-block: 64px;

        & .reason-contents {
            grid-template-columns: 1fr;
            gap: 40px;

            & .reason-contents_item {
                padding: 32px;

                &::before {
                    top: -2rem;
                    width: 70px;
                    height: 70px;
                    font-size: 24px;
                }

                & h3 {
                    font-size: 21px;
                }
            }
        }

        & .reason-contents_text {
            font-size: 15px;
            text-align: left;
        }
    }
}

/* sec-results */
.sec-results {
    background-color: #fff;
    padding-block: 104px;

    & hgroup {
        text-align: center;
    }

    & .results-contents {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 24px;
        margin-block-start: 64px;

        & .results-contents_item {
            position: relative;
            background: var(--common-bg-color);
            border-radius: var(--common-border-radius);

            & .results-contents_balloon {
                position: absolute;
                top: 0;
                left: 50%;
                translate: -50% -50%;
                background: var(--common-accent-color);
                border-radius: 100vmax;
                width: max-content;
                font-size: 19px;
                font-weight: 500;
                color: #FFF;
                line-height: 150%;
                text-align: center;
                white-space: nowrap;
                letter-spacing: 1.52px;
                padding: 8px 16px;

                &::after {
                    content: '';
                    position: absolute;
                    left: calc(50% + 30%);
                    bottom: -17px;
                    translate: -50% 0;
                    display: block;
                    background: var(--common-accent-color);
                    width: 22px;
                    height: 18px;
                    clip-path: polygon(100% 0, 35% 0, 0 100%);

                }
            }

            & .results-contents_title {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 8px;
                font-family: var(--font-mincho);
                font-size: 20px;
                font-weight: 600;
                line-height: 150%;
                letter-spacing: 1.6px;
                padding: 32px 24px 16px 24px;

                &::before {
                    content: '';
                    display: block;
                    background-color: #F2C85B;
                    border-radius: 50%;
                    width: 10px;
                    height: 10px;
                }
            }

            & .results-contents_text {
                font-size: 16px;
                font-weight: 500;
                line-height: 180%;
                letter-spacing: 1.28px;
                padding: 24px;

                & em {
                    color: var(--common-accent-color);
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 180%;
                    letter-spacing: 1.28px;
                }
            }
        }
    }

    @media (max-width: 750px) {

        padding-block: 64px;

        & .results-contents {
            grid-template-columns: 1fr;
            gap: 40px;
            margin-block-start: 48px;

            & .results-contents_item {

                & .results-contents_balloon {
                    font-size: 15px;
                }

                & .results-contents_title {
                    font-size: 18px;
                }

                & .results-contents_text {
                    font-size: 15px;
                }
            }
        }
    }
}

/* sec-menu */
.sec-menu {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    z-index: 1;

    &::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 61.23vw;
        height: auto;
        aspect-ratio: 796 / 755;
        background-image: url(../img/img__menu-deco_pc.png);
        background-size: 50%;
        background-repeat: no-repeat;
        background-position: top left;
        z-index: -1;
    }

    &::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 61.23vw;
        height: 100%;
        background-color: #FFFDE7;
        z-index: -2;
    }

    & .sec-contents_inner {
        position: relative;
        z-index: 1;
        padding-block: 104px;

        &::before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            right: calc(50% - 50vw - 4px);
            width: 57px;
            height: 525px;
            aspect-ratio: 19 / 175;
            background-image: url(../img/img__menu-text.svg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

        & .menu-header_group {
            display: grid;
            grid-template-columns: 1fr max-content;
            align-items: flex-end;

            & .button-reservation {
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: linear-gradient(282deg, var(--btn-color-start) 0.94%, var(--btn-color-end) 99.79%);
                border-radius: var(--common-border-radius);
                font-size: 13px;
                font-weight: 500;
                color: #fff;
                line-height: 100%;
                letter-spacing: 1.04px;
                transition: --btn-color-start 0.3s ease, --btn-color-end 0.3s ease;

                &:hover {
                    --btn-color-start: #F1C450;
                    --btn-color-end: #E68A33;
                }

                & a {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 8px;
                    padding: 24px;

                    &::after {
                        content: "";
                        display: block;
                        background-image: url(../img/arrow__wht.svg);
                        background-size: contain;
                        background-position: center;
                        background-repeat: no-repeat;
                        width: 23px;
                        height: 9px;
                    }
                }
            }
        }

        .menu-contents {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: auto;
            gap: 48px;
            margin-block-start: 40px;

            & .menu-contents_item {

                & img {
                    border-radius: var(--common-border-radius);
                    aspect-ratio: 258 / 125;
                    width: 100%;
                    height: auto;
                    object-fit: cover;
                }

                & h3 {
                    border-bottom: 1px solid #EBA461;
                    font-size: 23px;
                    font-weight: 700;
                    font-family: var(--font-mincho);
                    color: #E17623;
                    line-height: 150%;
                    letter-spacing: 1.84px;
                    padding-block: 24px;
                    margin-block-end: 24px;
                }

                & .menu-contents_details {
                    display: grid;
                    grid-template-columns: max-content max-content;
                    gap: 16px;

                    & dl {

                        & dt {
                            border-radius: 100vmax;
                            background: #EA9D3F;
                            display: inline-flex;
                            padding: 2px 10px;
                            justify-content: center;
                            align-items: center;
                            gap: 8px;
                            color: #FFF;
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 180%;
                            letter-spacing: 1.28px;
                        }

                        & dd {
                            font-size: 18px;
                            font-weight: 500;
                            line-height: 180%;
                            letter-spacing: 1.44px;
                        }
                    }
                }

                & .menu-contents_text {
                    margin-block-start: 16px;

                    & dl {

                        & dt {
                            border-radius: 100vmax;
                            background: #EA9D3F;
                            display: inline-flex;
                            padding: 2px 10px;
                            justify-content: center;
                            align-items: center;
                            gap: 8px;
                            color: #FFF;
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 180%;
                            letter-spacing: 1.28px;
                        }

                        & dd {
                            position: relative;
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 180%;
                            letter-spacing: 1.28px;
                            margin-block-start: 8px;

                            & .js-text-hidden {
                                display: none;
                                /* 初期状態は非表示 */
                                opacity: 0;
                                transform: translateY(6px);
                                /* 少し下からスタート */

                                &.is-active {
                                    display: inline;
                                    /* 展開時にインラインテキストとして結合 */
                                    opacity: 1;
                                    transform: translateY(0);
                                    /* 元の位置へふわっと浮き上がる */
                                    transition: opacity 0.5s ease, transform 0.5s ease;
                                }
                            }

                            &.is-collapsed {

                                & .button-more {
                                    position: absolute;
                                    bottom: 0;
                                    right: 0;
                                }
                            }

                            &.is-expanded {
                                padding-bottom: 0;

                                & .button-more {
                                    display: flex;
                                    justify-content: flex-end;
                                    width: fit-content;
                                    margin-left: auto;

                                    &::after {
                                        rotate: -135deg;
                                    }
                                }
                            }

                            & .button-more {
                                position: relative;
                                display: inline-flex;
                                align-items: center;
                                gap: 4px;
                                color: #E68A33;
                                font-size: 14px;
                                font-weight: 500;
                                line-height: 180%;
                                letter-spacing: 1.12px;
                                cursor: pointer;

                                &::before {
                                    content: "";
                                    display: block;
                                    width: 100%;
                                    height: 1px;
                                    background-color: #E68A33;
                                    position: absolute;
                                    bottom: 1px;
                                    left: 0;
                                }

                                &::after {
                                    content: "";
                                    display: block;
                                    width: 6px;
                                    height: 6px;
                                    border-right: 1px solid #E68A33;
                                    border-bottom: 1px solid #E68A33;
                                    rotate: 45deg;
                                    translate: -1px 0;
                                    transition: rotate 0.3s ease;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 750px) {

        &::before {
            background-image: url(../img/img__menu-deco_sp.png);
            background-size: 100%;
            aspect-ratio: 21 / 43;
            width: 50.133vw;
        }

        &::after {
            width: 50.133vw;
        }

        & .sec-contents_inner {

            padding-block: 64px;

            &::before {
                content: none;
            }

            & .menu-header_group {
                grid-template-columns: 1fr;

                & .button-reservation {
                    width: fit-content;
                    margin-block-start: 32px;

                    & a {
                        padding: 20px 16px;
                    }
                }
            }

            & .menu-contents {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
                gap: 40px;

                & .menu-contents_item {

                    & h3 {
                        font-size: 20px;
                        padding-block: 16px;
                        margin-block-end: 16px;
                    }

                    & .menu-contents_details {

                        & dl {

                            & dt {
                                font-size: 15px;
                                letter-spacing: 1.2px;
                            }

                            & dd {
                                font-size: 17px;
                                letter-spacing: 1.36px;

                                & span {
                                    font-size: 13px;
                                }
                            }
                        }
                    }

                    & .menu-contents_text {

                        & dl {

                            & dt {
                                font-size: 15px;
                                letter-spacing: 1.2px;
                            }

                            & dd {
                                font-size: 15px;
                                letter-spacing: 1.2px;

                                & .button-more {
                                    font-size: 13px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

/* sec-review */
.sec-review {
    padding-block: 104px;

    & .review-contents_review {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        max-width: 1080px;
        width: 100%;
        margin-inline: auto;
        margin-block-start: 36px;
    }

    @media (max-width: 750px) {
        padding-block: 64px;

    }
    
}

/* sec-trainer */
.sec-trainer {
    position: relative;
    z-index: 2;

    & .sec-trainer_inner {
        position: relative;
        width: 100%;
        background-color: #fff;
        border-radius: 8px;
        padding-block: 80px;
        padding-inline: 24px;

        &::before {
            content: "";
            display: block;
            position: absolute;
            top: 50px;
            right: -1px;
            width: 78px;
            height: 210px;
            aspect-ratio: 13 / 135;
            background-image: url(../img/img__trainer-text_pc.svg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }


        & hgroup {
            text-align: center;
        }

        & .trainer-contents_trainer {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            max-width: 976px;
            width: 100%;
            margin-inline: auto;
            margin-block-start: 56px;

            & .trainer-contents_image {

                position: relative;
                max-width: 320px;
                width: 100%;
                height: auto;
                z-index: 1;

                &::before {
                    content: "";
                    display: block;
                    width: 320px;
                    height: 100%;
                    aspect-ratio: 16 / 15;
                    background: linear-gradient(151deg, #FAEDCB 1.3%, #FFF 82.01%);
                    position: absolute;
                    top: -26px;
                    left: -51px;
                    z-index: -1;
                }

                & img {
                    width: 320px;
                    height: 100%;
                    aspect-ratio: 16 / 15;
                    object-fit: cover;
                    margin-inline: auto 0;
                }
            }

            & .trainer-contents_info {
                max-width: 616px;
                width: 100%;

                & .trainer-contents_name {
                    font-family: var(--font-mincho);
                    font-size: 24px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 150%;
                    letter-spacing: 1.92px;
                    margin-block-end: 24px;

                    & span {
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        gap: 8px;
                        font-size: 15px;
                        font-weight: 500;
                        color: var(--common-accent-color);
                        line-height: 150%;
                        letter-spacing: 1.2px;
                        margin-block-end: 8px;

                        &::before {
                            content: '';
                            display: block;
                            background-color: #F2C85B;
                            border-radius: 50%;
                            width: 10px;
                            height: 10px;
                        }
                    }

                    & small {
                        font-size: 20px;
                        letter-spacing: 1.6px;
                    }
                }

                & .trainer-contents_details {
                    background: #FAF6EC;
                    border-radius: 8px;
                    font-size: 15px;
                    font-weight: 400;
                    line-height: 140%;
                    letter-spacing: 1.2px;
                    padding: 24px;

                    & dl {
                        display: grid;
                        grid-template-columns: max-content 1fr;
                        row-gap: 24px;
                        column-gap: 16px;
                        align-items: flex-start;

                        & dt {
                            background-color: #fff;
                            border-radius: var(--common-border-radius);
                            text-align: center;
                            font-family: var(--font-mincho);
                            font-size: 18px;
                            font-weight: 500;
                            line-height: 150%;
                            letter-spacing: 1.44px;
                            padding: 4px 8px;
                        }
                    }
                }
            }
        }

        & .trainer-contents_message {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            margin-block-start: 32px;

            & .trainer-contents_message-text {
                max-width: 620px;
                width: 100%;

                & h3 {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    font-family: var(--font-mincho);
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 150%;
                    letter-spacing: 1.44px;

                    &::after {
                        content: "";
                        display: block;
                        width: 160px;
                        height: 1px;
                        background-color: #4A3F35;
                    }
                }

                & p {
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 180%;
                    letter-spacing: 1.12px;
                    margin-block-start: 16px;
                }
            }

            & .trainer-contents_message-image {
                max-width: 420px;
                width: 100%;
            }
        }
    }

    @media (max-width: 750px) {

        & .sec-trainer_inner {
            padding-block: 50px 40px;
            padding-inline: 0;

            &::before {
                content: "";
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 168px;
                height: 62px;
                aspect-ratio: 84 / 31;
                background-image: url(../img/img__trainer-text_sp.svg);
            }


            & .trainer-contents_trainer {
                flex-direction: column;

                & .trainer-contents_image {

                    max-width: 100%;

                    &::before {
                        top: -2rem;
                        left: 4.267vw;
                        width: 74.667vw;
                        height: auto;
                        aspect-ratio: 70 / 66;
                    }

                    & img {
                        width: 74.667vw;
                        height: auto;
                        aspect-ratio: 14 / 13;
                        margin-inline: auto 4.267vw;
                    }
                }

                & .trainer-contents_info {

                    max-width: calc(100% - (4.267vw * 2));
                    margin-inline: 4.267vw;

                    & .trainer-contents_name {
                        font-size: 20px;

                        & span {
                            font-size: 14px;
                        }

                        & small {
                            font-size: 14px;
                        }
                    }

                    & .trainer-contents_details {

                        padding: 4.267vw;

                        & dl {
                            grid-template-columns: 1fr;
                            row-gap: 16px;

                            & dt {
                                font-size: 15px;
                                letter-spacing: 1.2px;
                            }

                            & dd {
                                font-size: 14px;
                                letter-spacing: 1.12px;

                                & ul {

                                    & li {
                                        text-indent: hanging 1em;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            & .trainer-contents_message {
                padding-inline: 4.267vw;

                & .trainer-contents_message-text {

                    & h3 {
                        font-size: 17px;
                        letter-spacing: 1.36px;
                        display: grid;
                        grid-template-columns: max-content 1fr;
                        column-gap: 8px;

                        &::after {
                            width: 100%;
                        }
                    }
                }

                & .trainer-contents_message-image {
                    max-width: 100%;
                }
            }
        }

        & .trainer-contents_message {
            flex-direction: column;
        }
    }
}

/* sec-access */
.sec-access {
    position: relative;
    padding-block: 104px;
    z-index: 1;

    &::after {
        content: "";
        display: block;
        position: absolute;
        top: -16.62vw;
        bottom: 0;
        /* 終了位置（.sec-accessの底ぴったりに合わせる） */
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, #FAEDCB 0%, #FFF 100%);
        z-index: -1;
    }

    & .access-contents {

        display: grid;
        grid-template-columns: minmax(0, 562px) minmax(0, 470px);
        justify-content: space-between;
        gap: 40px;

        @media (max-width: 750px) {

            & dt {
                font-size: 15px;
                font-weight: 500;
                color: var(--common-accent-color);
                line-height: 150%;
                letter-spacing: 1.2px;
            }

            grid-template-columns: 1fr;
            gap: 56px;
        }

        & .access-contents-left {

            width: 100%;

            & .access-contents_address {
                display: grid;
                grid-template-columns: max-content 1fr;
                row-gap: 16px;
                margin-block-start: 40px;

                & .access-contents_item {
                    grid-column: span 2;
                    display: grid;
                    grid-template-columns: subgrid;
                    column-gap: 24px;
                    align-items: flex-start;
                    border-bottom: 1px solid rgba(74, 63, 53, 0.23);
                    padding-bottom: 16px;
                }

                & dt {
                    font-size: 15px;
                    font-weight: 500;
                    color: var(--common-accent-color);
                    line-height: 150%;
                    letter-spacing: 1.2px;
                }

                & dd {
                    font-size: 15px;
                    font-weight: 400;
                    line-height: 150%;
                    letter-spacing: 1.2px;
                }
            }
        }

        & .access-contents-right {

            width: 100%;

            display: flex;
            flex-direction: column;
            gap: 24px;

            & .access-contents_video {
                width: 100%;

                & video {
                    width: 100%;
                    height: 100%;
                    aspect-ratio: 1 / 1;
                    object-fit: cover;
                    cursor: pointer;
                }
            }

            & .access-contents_map {
                width: 100%;
                aspect-ratio: 470 / 250;

                & iframe {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                & .access-contents_map-text {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 8px;
                    font-size: 13px;
                    font-weight: 400;
                    line-height: 150%;
                    letter-spacing: 1.04px;
                    margin-block-start: 8px;

                    &::before {
                        content: "";
                        display: block;
                        width: 13px;
                        height: 18px;
                        background-image: url(../img/icn__mark.svg);
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                    }
                }
            }
        }
    }

    @media (max-width: 750px) {
        padding-block: 40px 64px;

        &::after {
            top: -91.733vw;
        }
    }
}

/* sec-faq */
.sec-faq {
    padding-block: 104px;

    & hgroup {
        text-align: center;
        margin-block-end: 40px;
    }

    & .accordion-contents {

        &:not(:last-child) {
            margin-block-end: 40px;
        }

        & h3 {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 8px;
            font-family: var(--font-mincho);
            font-size: 24px;
            font-weight: 600;
            line-height: 150%;
            letter-spacing: 1.92px;

            &::before {
                content: '';
                display: block;
                background-color: #E68A33;
                border-radius: 50%;
                width: 10px;
                height: 10px;
            }
        }

        & .accordion {

            margin-block-start: 24px;
            cursor: pointer;

            & .accordion-summary {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 24px;
                background-color: #fff;
                font-size: 16px;
                font-family: var(--font-mincho);
                font-weight: 500;
                line-height: 150%;
                letter-spacing: 1.28px;
                padding: 32px 24px;
                width: 100%;
                cursor: pointer;
                text-align: left;
                transition: background 0.3s ease;

                &:hover {
                    /* background: #FDFCEC; */
                }

                &::before {
                    content: "Q.";
                    color: var(--common-accent-color);
                    font-family: var(--font-en);
                    font-size: 28px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 100%;
                    letter-spacing: 2.24px;
                    flex-shrink: 0;
                }

                & .accordion-icon {
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
                    border: 1px solid #4A3F35;
                    aspect-ratio: 1 / 1;
                    width: 30px;
                    height: 30px;
                    margin-inline: auto 0;
                    flex-shrink: 0;

                    &::before,
                    &::after {
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        translate: -50% -50%;
                        width: 8px;
                        height: 1px;
                        background-color: #4A3F35;
                        transition: rotate 0.3s ease;
                    }

                    &::after {
                        rotate: -90deg;
                    }

                }
            }

            & .accordion-content {
                display: grid;
                grid-template-rows: 0fr;
                transition: grid-template-rows 0.3s ease;
            }

            & .accordion-text_inner {
                overflow: hidden;
            }

            /* & summary::-webkit-details-marker {
                display: none;
            }

            &::details-content {
                height: 0;
                opacity: 0;
                overflow: hidden;
                transition: height 0.3s ease, opacity 0.3s ease, content-visibility 0.3s allow-discrete;
            }

            &[open]::details-content {
                height: auto;
                opacity: 1;
            }

            &[open] {
                & .accordion-icon {
                    &::after {
                        rotate: 0deg;
                    }
                }
            } */

            & .accordion-text {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 24px;
                background-color: #FDFCEC;
                font-size: 15px;
                font-weight: 400;
                line-height: 150%;
                letter-spacing: 1.2px;
                padding: 32px 24px;

                &::before {
                    content: "A.";
                    color: #766658;
                    font-family: var(--font-en);
                    font-size: 28px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 100%;
                    letter-spacing: 2.24px;
                    flex-shrink: 0;
                }
            }

            &.is-open {
                & .accordion-summary {
                    & .accordion-icon::after {
                        rotate: 0deg;
                        /* アイコンをマイナスにする */
                    }
                }

                & .accordion-content {
                    grid-template-rows: 1fr;
                    /* コンテンツの高さ分まで広がる */
                }
            }
        }
    }

    @media (max-width: 750px) {

        padding-block: 64px;

        & .accordion-contents {

            & h3 {
                color: var(--text, #4A3F35);
                font-size: 18px;
                letter-spacing: 1.44px;
            }

            & .accordion {

                & .accordion-summary {
                    gap: 16px;
                    font-size: 15px;
                    padding: 16px;

                    &::before {
                        font-size: 24px;
                    }

                    & .accordion-icon {
                        width: 20px;
                        height: 20px;
                    }
                }

                & .accordion-text {
                    gap: 16px;
                    font-size: 15px;
                    padding: 16px;

                    &::before {
                        font-size: 24px;
                    }
                }
            }
        }
    }
}

/* sec-instagram */
.sec-instagram {
    padding-block: 104px;
    background: #fff;

    & .instagram-contents {
        margin-block: 40px;
    }

    & .button-instagram {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: fit-content;
        width: 100%;
        border-radius: var(--common-border-radius);
        background: linear-gradient(270deg, #E9B329 0%, #E96490 100%);
        font-size: 14px;
        font-weight: 700;
        color: #FFF;
        line-height: 100%;
        letter-spacing: 1.12px;
        margin-inline: auto 0;
        margin-block-start: 40px;
        transition: opacity 0.3s ease;

        &:hover {
            opacity: 0.6;
        }

        & a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            width: 100%;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.12px;
            padding: 24px;
        }
    }

    @media (max-width: 750px) {
        padding-block: 64px;
    }
}

/* sec-reservation */
.sec-reservation {
    background-image: url(../img/bg__contact.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: var(--font-mincho);
    text-align: center;
    padding-block: 48px;

    & .sec-reservation_inner {
        max-width: var(--contents-width);
        width: 100%;
        margin-inline: auto;

        & .caption {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 22px;
            font-weight: 600;
            color: #FFF;
            line-height: 150%;
            letter-spacing: 1.76px;

            &::before,
            &::after {
                content: "";
                display: block;
                width: 2px;
                height: 24px;
                background-color: #fff;
            }

            &::before {
                rotate: -20deg;
            }

            &::after {
                rotate: 20deg;
            }
        }

        & .group-details {

            display: flex;
            justify-content: center;
            align-items: baseline;
            gap: 8px;
            margin-block-start: 10px;

            & .details {
                font-size: 34px;
                font-weight: 700;
                color: #FFF;
                text-align: center;
                line-height: 100%;
                letter-spacing: 2.72px;

            }

            & dd {

                & .emphasis {
                    font-size: 52px;
                    font-weight: 900;
                    color: #FFF;
                    letter-spacing: 4.16px;
                }

                & .small {
                    font-size: 32px;
                    font-weight: 700;
                    color: #FFF;
                    letter-spacing: 2.56px;
                }

                & .price {
                    font-size: 52px;
                    font-weight: 900;
                    font-style: normal;
                    color: #FDFF95;
                    letter-spacing: 4.16px;
                    margin-inline: 8px 0;

                    & .yen {
                        font-size: 24px;
                        font-weight: 900;
                        color: #FDFF95;
                        letter-spacing: 1.92px;
                    }
                }
            }
        }

        & .button-reservation {
            position: relative;
            max-width: 500px;
            width: 100%;
            margin-inline: auto;
            margin-block: 32px 40px;

            & a {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 8px;
                background: linear-gradient(180deg, #FFF 0%, #FEFFCE 100%);
                border-radius: var(--common-border-radius);
                font-size: 24px;
                font-weight: 600;
                line-height: 100%;
                letter-spacing: 1.92px;
                padding: 28px 32px;

                &::before {
                    content: "";
                    display: block;
                    background-image: url(../img/icn__reserve.svg);
                    background-size: contain;
                    background-position: center;
                    background-repeat: no-repeat;
                    width: 38px;
                    height: 38px;
                }

                &::after {
                    content: "";
                    display: block;
                    position: absolute;
                    top: 50%;
                    right: 20px;
                    translate: 0 -50%;
                    background-image: url(../img/arrow__brn.svg);
                    background-size: contain;
                    background-position: center;
                    background-repeat: no-repeat;
                    width: 23px;
                    height: 9px;
                    scale: 1.2;
                }
            }
        }

        & .corporate {
            margin-block-start: 16px;

            & a {
                display: inline-block;
                font-size: 30px;
                font-weight: 700;
                color: #FDFF95;
                line-height: 100%;
                letter-spacing: 2.4px;
                text-decoration: underline;
                text-underline-offset: 4px;
                text-decoration-color: #FDFF95;
                text-decoration-thickness: 1px;
                transition: opacity 0.3s ease;

                &:hover {
                    opacity: 0.6;
                }
            }
        }
    }

    @media (max-width: 750px) {

        & .sec-reservation_inner {

            & .caption {
                font-size: 16px;
                letter-spacing: 1.28px;
            }

            & .group-details {

                flex-direction: column;
                align-items: center;
                gap: 10px;

                & .details {
                    font-size: 20px;
                    letter-spacing: 1.6px;

                }

                & dd {
                    & .emphasis {
                        font-size: 34px;
                        letter-spacing: 2.72px;
                    }

                    & .small {
                        font-size: 24px;
                        letter-spacing: 1.92px;
                    }

                    & .price {
                        font-size: 34px;
                        letter-spacing: 2.72px;

                        & .yen {
                            font-size: 24px;
                            letter-spacing: 1.92px
                        }
                    }

                }
            }


            & .button-reservation {

                & a {
                    font-size: 18px;
                    letter-spacing: 1.44px;
                    padding: 16px 32px;
                }
            }

            & .corporate {
                margin-block-start: 8px;

                & a {
                    font-size: 22px;
                }
            }
        }
    }
}