html,
body {
    margin: 0;
    padding: 0;
    font-family: noto sans jp, sans-serif;
    color: var(--main-color);
}

body.is-loaded .page-preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.is-loaded .page-inner {
    opacity: 1;
    transform: translateY(0);
}

a {
    color: inherit;
    text-decoration: none;
}

body.is-modal-open {
    overflow: hidden;
}

:root {
    --main-color: #3C1411;
    --sub-color: #7D6866;
    --light-color: #CDB9B0;
    --bg-gradient: linear-gradient(180deg,
            rgba(243, 237, 232, 1) 0%,
            rgba(244, 235, 219, 1) 100%);
    --gallery-img-width: calc(210px * (100vw / 1280));
    --gallery-img-height: 140px;
}

@media (min-width: 1280px) {
    :root {
        --gallery-img-width: calc((100vw - (30px * 4)) / 5);
    }
}

@media (min-width: 769px) {
    :root {
        --gallery-img-height: 190px;
    }
}

.page-preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: grid;
    place-items: center;
    z-index: 1100;
    transition: opacity 0.5s ease;
}

.page-preloader__logo {
    width: 120px;
    height: auto;
    animation: logo-fade 1.8s ease-in-out infinite;
}

@keyframes logo-fade {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.page-inner {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

header.header {
    display: flex;
    justify-content: space-between;
    height: 110px;
    align-items: center;
    padding: 0 40px;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        top: 66vh;
        left: 0;
        width: 570px;
        height: 1800px;
        z-index: -1;
        background: var(--bg-gradient);
    }

    &::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 500px;
        height: 60vh;
        z-index: -1;
        background: var(--bg-gradient);
    }

    img.header-logo {
        position: relative;
        top: 8px;
    }

}

.menu-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.menu-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.menu-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.menu-modal.is-open .menu-modal__overlay {
    opacity: 1;
}

.menu-modal__content {
    position: relative;
    width: min(480px, 100%);
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px 20px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
    transform: translateY(12px) scale(0.98);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-modal.is-open .menu-modal__content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.menu-modal__title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
}

.menu-modal__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.menu-modal__links a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f4ede3;
    color: var(--main-color);
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-modal__links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.menu-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: #f4ede3;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.menu-modal__close:hover {
    transform: scale(1.06);
    background: #eadfcf;
}

.menu-modal__close .material-icons {
    color: var(--main-color);
    font-size: 22px;
}

.menu-modal .contact-box {
    width: 100%;
    padding: 20px 16px;
    margin: 0;
    background: #f7f2ea;
    box-shadow: none;
    box-sizing: border-box;

    .contact-tel-link {
        .contact-link-box {
            background-color: var(--sub-color);
            color: #fff;
            font-family: 'Jost';
            font-size: 24px;
            letter-spacing: 1px;
        }
    }

    .contact-mail-link {
        .contact-link-box {
            background-color: #fff;
            color: var(--sub-color);
            font-family: 'noto sans jp', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
        }
    }

}

.menu-modal .contact-text {
    margin-bottom: 24px;
    margin-top: 16px;
    text-align: center;
}

.menu-modal .contact-a-flex {
    flex-direction: column;
    gap: 14px;
}

.menu-modal .contact-link-box {
    border-radius: 8px;
    width: 100%;
    max-width: 210px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid;
    padding: 20px;
    margin-bottom: 8px;
    margin: 0 auto 8px;
}



.header-right {
    display: flex;
    align-items: center;
    gap: 100px;
}

.header-menu-toggle {
    cursor: pointer;
}

a.header-tel-link {
    text-decoration: none;
    color: var(--sub-color);
    font-family: "Jost", sans-serif;
    letter-spacing: 2px;

}

.header-tel {
    align-items: center;
    display: flex;
    gap: 10px;
    font-family: "Jost", sans-serif;
    font-size: 24px;
    letter-spacing: 2px;

}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fv {
    padding: 0 130px;
}

.fv-img {

    text-align: center;


    .fv-img-sub-text {
        font-family: "jost", sans-serif;
        font-size: 16px;
        color: var(--light-color);
        transform: rotate(90deg);
    }

    .fv-img-left-text {
        position: absolute;
        left: -150px;
        top: 40%;
    }

    .fv-img-right-text {
        position: absolute;
        right: -97px;
        bottom: 2vh;
    }

    .fv-slider {
        width: 100%;
        height: calc(100vh - 340px);
    }

    .fv-slide {
        position: relative;
        height: 100%;
    }

    .fv-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 0 130px 0 0;
    }

    /* slick.js が生成する要素の高さを合わせる */
    .slick-list,
    .slick-track,
    .slick-slide {
        height: 100%;
    }

    .fv-img-scroll-bar {
        position: absolute;
        bottom: -16vh;
        width: 1px;
        height: 120px;
        background: transparent;
        right: -70px;
        transform: rotate(180deg);
        overflow: hidden;

        &::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 120px;
            background: var(--light-color);
            transform-origin: bottom;
            animation: scroll-bar-pulse 3.4s ease-in-out infinite;
        }
    }
}

@keyframes scroll-bar-pulse {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    60% {
        transform: scaleY(1);
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        transform: scaleY(0);
        opacity: 0;
    }
}

.fv-content {
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
    height: 190px;
    padding: 30px 0 0 0;

    .fv-content-left {

        p {
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: bold;
            font-size: 16px;
            line-height: 1.8;
            margin-left: 30px;
            position: relative;

            &::before {
                content: "";
                position: absolute;
                left: 0;
                bottom: -25px;
                width: 480px;
                height: 1px;
                border-bottom: 1px solid var(--light-color);
            }
        }
    }

    .fv-content-right {

        text-align: right;

        h1 {
            font-family: "Lexend Deca", sans-serif;
            font-size: 48px;
            font-weight: 600;
            margin: 0;
            letter-spacing: 2px;

            span.fv-h1-jptext {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: bold;
                font-size: 14px;
                position: absolute;
                right: 150px;
                top: 71px;
                line-height: 1.4em;
            }
        }
    }
}

.is-pc {
    display: block;
}

.is-pc-flex {
    display: flex;
}

.is-sp {
    display: none;
}

.horizontal-gallery {
    width: 100%;
    overflow: hidden;
    margin: 48px auto 0;
    padding: 24px 0;
    position: relative;
}

.horizontal-gallery__track {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    animation: horizontal-loop 28s linear infinite;
}

.horizontal-gallery__item {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.horizontal-gallery__item:nth-child(even) {
    transform: translateY(24px);
}

.horizontal-gallery__item img {
    display: block;
    width: var(--gallery-img-width);
    height: var(--gallery-img-height);
    object-fit: cover;
    border-radius: 8px;
}

@keyframes horizontal-loop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


.concept {
    padding: 80px 0 140px;
    background-image: url(img/concept-bg.jpg);
    background-size: cover;
    margin: 160px 0 80px;

    .concept-inner {
        max-width: 630px;
        margin: auto;
        color: #fff;

        h2 {
            font-family: "Lexend Deca", sans-serif;
            font-size: 63px;
            font-weight: 600;
            letter-spacing: 0.3rem;

            span {
                display: block;
                font-size: 19px;
                font-family: zen kaku gothic new, sans-serif;
            }
        }

        .concept-text {
            margin-top: 24px;
            /* font-family: zen kaku gothic new, sans-serif; */
            font-family: noto sans jp, sans-serif;
            font-size: 16px;
            line-height: 2.2;
            letter-spacing: 0.05rem;
        }
    }
}

.schedule {
    max-width: 1080px;
    box-sizing: border-box;
    margin: 140px auto;
    padding: 80px 90px;
    background: #fff;
    box-shadow: 2px 4px 54px 0px rgba(125, 96, 83, 0.1);
    border-radius: 0px 30px 0px 0px;



    .schedule-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    h2 {
        font-family: "Lexend Deca", sans-serif;
        font-size: 44.61px;
        font-weight: 600;
        letter-spacing: 0.3rem;
        margin: 0;
    }

    .calendar-responsive {
        position: relative;
        margin: 30px auto;
        padding-top: 55%;
        /* 高さ比率（600 / 800 = 75%） */
    }

    .calendar-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.access {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 0 80px;
    font-size: 15px;

    .access-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;

        h2 {
            font-family: "Lexend Deca", sans-serif;
            font-size: 53px;
            font-weight: 600;
            letter-spacing: 0.3rem;
            margin: 0;
        }
    }

    .access-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;

        .access-text-box {

            line-height: 1.7;

            &+.access-text-box {
                margin-top: 24px;
            }

            h3 {
                margin-bottom: 4px;
                font-size: 15px;

            }
        }
    }
}

.contact {

    background: var(--bg-gradient);

    h2 {
        font-family: "Lexend Deca", sans-serif;
        font-size: 43px;
        font-weight: 600;
        letter-spacing: 0.3rem;
        margin: 0;
    }

    .contact-subtitle {
        /* font-family: "Zen Kaku Gothic New", sans-serif; */
        font-size: 16px;
        margin-top: 8px;
        font-weight: bold;
    }

    .contact-inner {
        max-width: 1080px;
        margin: auto;
        padding: 100px 0;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 100px;
    }

    .contact-box {
        background-color: #fff;
        /* width: 700px; */
        padding: 32px 64px;
        border-radius: 8px;

        .contact-text {
            font-size: 14px;
            text-align: center;
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .contact-tel-link {
            .contact-tel-box {
                background-color: var(--sub-color);
                color: #fff;
                font-family: jost, sans-serif;
                font-size: 23.45px;
                letter-spacing: 2px;
            }
        }

        .contact-mail-link {
            font-size: 19px;
            font-family: zen kaku gothic new, sans-serif;
            font-weight: bold;
            color: var(--sub-color);

            .contact-link-box {
                border: 1px solid var(--sub-color);
            }
        }

        .contact-link-box {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            gap: 8px;
            width: 255px;
            height: 50px;
            border-radius: 4px;
        }

        .contact-a-flex {
            display: flex;
            justify-content: center;
            gap: 32px;
        }
    }
}

footer {
    background-color: #664C41;
    color: #fff;
    text-align: center;
    padding: 24px 0;
    font-size: 14px;

    .footer-text {
        margin-top: 20px;
    }

    .footer-inner {
        max-width: 1080px;
        margin: auto;
        padding: 40px 0 120px;
    }

    .footer-left {
        font-size: 12px;
        line-height: 1.8;
    }

}

.wrapper {
    max-width: 1080px;
    margin: auto;
}

.food {

    h1 {
        font-family: jost, sans-serif;
        font-size: 66.72px;
        font-weight: 600;

        span {
            display: block;
            font-family: zen kaku gothic new, sans-serif;
            font-size: 16px;
        }
    }
}

.food-link {
    width: 280px;
    height: 100px;
    background-image: url('img/drink-link-bg.png');
    background-size: contain;
    background-position: center;
    border-radius: 0 10px 0 0;
    color: #fff;
    top: -100px;
    right: 20px;

    &.--food-link-foods {
        background-image: url('img/food-link-bg.png');
    }
}

.food-link-ttl {
    font-family: jost, sans-serif;
    font-size: 34px;
    font-weight: 500;
    padding: 16px 20px 0 20px;
    height: 100%;

    span {
        display: block;
        font-family: zen kaku gothic new, sans-serif;
        font-size: 14px;
        font-weight: bold;
    }
}

.food-link-icon {
    position: absolute;
    bottom: 26px;
    right: 16px;
}

.food-link-under {
    a.relative.food-link-box {
        width: 538px;
        height: 194px;
        background-image: url('img/drink-link-bg-big.png');
        display: block;
        color: #fff;
        margin: 48px auto 48px;

        &.--food-link-box-food {
            background-image: url('img/top-menu-link-food.png');
            border-radius: 0 32px 0 0;
        }
    }

    .food-link-ttl {
        font-size: 63px;

        span {
            font-size: 20px;
        }
    }

    .food-link-icon {
        img {
            width: 35px;
            height: 35px;
        }
    }
}

.back-top {
    text-align: center;
    background-color: var(--sub-color);
    color: #fff;
    width: 230px;
    height: 45px;
    display: grid;
    place-content: center;
    border-radius: 4px;
    font-family: 'Zen Kaku Gothic New';
    font-weight: bold;
    margin: 84px auto 68px;

    a {
        font-size: 14px;
        color: #fff;
    }
}

.food-menu {
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    padding: 80px 90px;
    box-shadow: 2px 4px 35px 5px rgba(80, 42, 39, 0.1);
}

.food-menu-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 64px;
}

.food-menu-gray {
    background-color: #F2F2F2;
    margin: 32px 0;
    padding: 24px 32px;
}

.food-menu-item {

    font-family: zen old mincho, serif;
    display: flex;
    justify-content: space-between;
}

.food-menu-ttl {
    font-family: zen old mincho, serif;
    font-size: 17px;
}

.food-menu-en {
    font-family: zen old mincho, serif;
    font-size: 13px;
    color: #35663D;
}

.food-menu-price {
    font-family: zen old mincho, serif;
    color: #BC2321;
    font-size: 18px;
}

.kids-list,
.kids-list-en {
    font-size: 14px;

    ul {

        display: flex;
        flex-wrap: wrap;
        margin: 8px 0 0 0;
        padding-left: 20px;
        gap: 0 32px;

        li {}
    }
}

span.cake {
    display: block;
    font-size: 14px;
}

.food-menu-price.--cake {
    width: 90px;
    text-align: right;
}

.kids-list-en {
    font-size: 13px;
}

.food-menu-price--kids {
    width: 196px;
    text-align: right;
}

.food-menu-desc {
    font-size: 13px;
    margin: 8px 0;
    padding-right: 30px;
    box-sizing: border-box;
}

.food-appetizer-jp {
    ul {
        font-family: zen old mincho, serif;
        display: grid;
        grid-template-columns: 1fr 1fr;
        font-size: 14px;
    }
}

.food-appetizer-en {
    ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
    }
}

.food-appetizer {
    display: flex;
    gap: 48px;
    margin-top: 24px;
}

hr.food-menu-separator {
    margin: 40px 0;
    border: 1px solid #eee;
}

.drink-flex {
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
}

.drink-ttl {
    background: linear-gradient(90.45deg,
            rgba(112, 99, 94, 1) 0%,
            rgba(255, 255, 255, 1) 100%);
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 12px;
    margin-bottom: 16px;
}

.food-menu-item+.drink-ttl {
    margin-top: 24px;
}

.drink-flex {
    .food-menu-item {
        margin-left: 8px;

        &+.food-menu-item {
            margin-top: 8px;
        }
    }

    hr.food-menu-separator {
        margin: 24px 0;
        border: 1px solid #eee;
    }
}

.drink-text-jp {
    font-family: zen old mincho, serif;
    margin-top: 16px;
    font-size: 14px;
    margin-left: 8px;
}

.drink-text-en {
    font-family: zen old mincho, serif;
    color: #35663D;
    margin-top: 8px;
    font-size: 13px;
    margin-left: 8px;
    margin-bottom: 24px;
}

.menu {
    max-width: 950px;
    margin: auto;
    padding: 80px 0 0;

    h2 {
        font-family: "Lexend Deca", sans-serif;
        font-size: 53.61px;
        font-weight: 600;
        letter-spacing: 0.3rem;

        span {
            display: block;
            font-family: zen kaku gothic new, sans-serif;
            font-size: 16px;
        }
    }

    .menu-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .menu-right {
        padding-top: 50px;
    }

}

.menu {
    .food-link-box {
        width: 538px;
        height: 194px;
        background-image: url(img/top-menu-link-food.png);
        display: block;
        color: #fff;
        border-radius: 0 32px 0 0;

        &.food-link-box--drink {
            background-image: url(img/top-menu-link-drink.png);
        }

        &+.food-link-box {
            margin-top: 16px;
        }
    }

    .food-link-ttl {
        font-family: "Lexend Deca", sans-serif;
        font-size: 48px;
        letter-spacing: 0.1rem;
        font-weight: 500;
        padding: 24px 32px;
        height: 100%;

        span {
            font-size: 24px;
        }
    }

    .food-link-icon {

        bottom: 26px;
        right: 40px;

        img {
            width: 34px;
            height: 34px;
        }
    }

}



@media (max-width: 768px) {

    .calendar-responsive {
        padding-top: 110%;
    }

    .is-pc,
    .is-pc-flex {
        display: none;
    }

    .is-sp {
        display: block;
    }

    :root {
        --gallery-img-width: calc(140px * (100vw / 390));
        --gallery-img-height: 92px;
    }

    header.header {
        height: 64px;
        padding: 0;

        &::before {
            width: 130px;
            height: 640px;
            top: 100vh;
        }

        &::after {
            width: 140px;
            height: 55svh;
        }

        .header-menu-toggle {
            margin-right: 20px;
            margin-top: 20px;

            img {
                width: 40px;
            }
        }

    }

    a.header-top {
        width: 90px;
        height: 95px;
        display: grid;
        place-content: center;
        background: #fff;
        position: relative;
        z-index: 1;

    }

    img.header-logo {
        width: 46px;
    }

    .fv-content {
        display: block;
        padding: 16px 0 32px;
        height: auto;

        p {
            text-align: center;
        }
    }

    .header-right {
        gap: 40px;
    }

    .horizontal-gallery {
        margin: 24px auto 0;
        padding: 16px 0 32px;
    }

    .horizontal-gallery__track {
        gap: 24px;
        animation-duration: 24s;
    }

    .fv {
        padding: 0;

        .fv-content {
            & .fv-content-left {
                & p {

                    font-size: 13px;

                    &::before {
                        display: none;
                    }
                }
            }

            .fv-tel.is-sp {
                display: flex;
                align-items: center;
                background: var(--sub-color);
                width: 230px;
                height: 45px;
                border-radius: 4px;
                margin: 20px auto 0;
                padding: 8px 16px;
                box-sizing: border-box;
                gap: 12px;

                a.header-tel-link {
                    color: #fff;
                    font-size: 20px;
                }
            }

        }

        .fv-content {
            & .fv-content-right {

                h1 {
                    text-align: center;
                    font-size: 34px;
                    letter-spacing: 1px;

                    span.fv-h1-padding {
                        margin-left: 13px;
                    }

                    span.fv-h1-jptext {
                        position: static !important;
                        display: block;
                        margin-top: 8px;
                    }

                }

            }
        }

        .fv-img {
            .fv-slider {
                width: calc(100vw - 70px);
                height: calc(100vh - 340px);
            }

            .fv-img-scroll-bar {
                right: 35px;
            }

            .fv-img-right-text {
                position: absolute;
                right: 9px;
                bottom: 7%;
            }

            .fv-img-left-text {
                left: inherit;
                right: -54px;
                top: 50%;
            }
        }
    }

    .concept {
        margin: 70px 0;

        .concept-inner {

            padding: 0 24px;

            h2 {
                font-size: 42px;
                font-weight: 600;
                letter-spacing: 0.3rem;

                span {
                    display: block;
                    font-size: 16px;
                    font-family: zen kaku gothic new, sans-serif;
                }
            }

            .concept-text {
                margin-top: 24px;
                /* font-family: zen kaku gothic new, sans-serif; */
                font-size: 14px;
                line-height: 2.2;
            }

        }

    }

    .schedule {
        max-width: 980px;
        margin: 0;
        padding: 40px 20px;
        box-shadow: none;

        .schedule-header {
            display: grid;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 10px;
        }

        .calendar-responsive {
            height: 240px;

            iframe {
                height: 420px;
            }
        }
    }

    .food-menu-2col {
        grid-template-columns: 1fr;
        gap: 16px;

        /* Keep left-column items first, then right-column items on mobile */
        .food-menu-item:nth-child(odd) {
            order: 1;
        }

        .food-menu-item:nth-child(even) {
            order: 2;
        }
    }

    .access {
        padding: 60px 0;
        background: linear-gradient(180deg,
                rgba(243, 237, 232, 0.5) 0%,
                rgba(244, 235, 219, 0.5) 100%);

        .access-header {
            display: grid;
            justify-content: center;
            align-items: center;
            text-align: center;
            margin-bottom: 24px;
            gap: 10px;

            h2 {
                font-size: 34.61px;
                letter-spacing: 0.2rem;
            }
        }

        .access-text-box {
            h3 {
                font-size: 15px;
            }
        }

        .access-text-ttl {
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 32px;
        }

        .access-body {
            display: flex;
            flex-direction: column;
            gap: 40px;

            .access-right {
                order: -1;
            }

            .access-left {
                order: 2;
                padding: 0 48px;
                font-size: 14px;
                line-height: 1.9;
                letter-spacing: 0.01rem;
            }
        }
    }

    .contact {

        background: #fff;

        .contact-inner {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 64px 0;
        }

        .contact-heading {
            text-align: center;

            h2 {
                font-size: 34.61px;
            }
        }


        .contact-box {

            padding: 16px 24px;

            .contact-a-flex {
                display: flex;
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
            }
        }
    }

    .food-menu {
        padding: 40px 32px;
    }

    .food-link {
        width: 150px;
        height: 70px;
    }

    .food-link-under {
        a.relative.food-link-box {
            width: 280px;
            height: 135px;
            border-radius: 0 24px 0 0;
        }
    }

    .food-menu-ttl {
        font-size: 15px;
    }

    .food-menu-price {
        font-size: 16px;
        width: 80px;
        text-align: right;
    }

    .food-menu-gray {
        .food-menu-ttl {
            font-size: 14px;
        }
    }

    .kids-list,
    .kids-list-en {
        font-size: 13px;
        width: 61vw;
    }

    .food-appetizer {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 24px;
    }

    .food {
        h1 {
            font-family: jost, sans-serif;
            font-size: 46.72px;
            padding: 0 24px;
        }
    }

    .food-link-ttl {
        font-size: 24px;
        padding: 8px 8px 0;
        height: 100%;

        span {
            font-size: 12px;
        }
    }

    .food-link-icon {
        bottom: 8px;
        right: 16px;

        img {
            width: 14px;
        }
    }

    .food-link {
        top: -70px;
    }

    .food-link-under {
        .food-link-ttl {
            font-size: 40px;
        }
    }

    .food-link-under {
        & .food-link-ttl {
            span {
                font-size: 14px;
            }
        }
    }

    .back-top {
        margin: 60px auto 48px;
    }

    .drink-flex {
        grid-template-columns: 1fr;
    }

    .menu {
        .menu-inner {
            grid-template-columns: 1fr;
        }
    }

    .menu {

        padding: 0 0 0 24px;
        margin-bottom: 80px;

        & .food-link-ttl {
            span {
                font-size: 18px;
            }
        }

        h2 {
            margin: 0;
            font-size: 42px;
            line-height: 1.2;
        }

        .food-link-ttl {
            font-size: 40px;
        }

        .food-link-box {
            width: 330px;
            height: 173px;
            border-radius: 24px 0 0 0;
        }

        .menu-right {
            padding-top: 50px;
            display: flex;
            flex-wrap: wrap;
            justify-content: end;
        }

    }

    .schedule {
        h2 {
            font-size: 34.61px;
        }
    }

}