:root {
        --accent: #bca48d;
        --text: #2f2f2f;
        --sub: #777;
        --line: #e8e3de;
        --bg-soft: #fbfaf8;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", Georgia, serif;
        color: var(--text);
        background: #fff;
        line-height: 1.8;
        font-weight: 400;
        letter-spacing: .04em;
        -webkit-font-smoothing: antialiased;
        font-feature-settings: "palt"1;
    }

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

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

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(255, 255, 255, .88);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid #f2efeb;
    }

    .header-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 20px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-small {
        font-size: 10px;
        letter-spacing: .38em;
        color: #aaa;
    }

    .logo-main {
        margin-top: 4px;
        font-family: "Cormorant Garamond", "Noto Serif JP", serif;
        font-size: 22px;
        letter-spacing: .18em;
        font-weight: 400;
    }

    .global-nav {
        display: flex;
        align-items: center;
        gap: 32px;
        font-size: 12px;
        letter-spacing: .28em;
        color: #666;
    }

    .reserve-link {
        border: 1px solid #bca58d;
        background: #bca58d;
        color: #fff;
        padding: 8px 20px;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    }

    /* ハンバーガーボタン（PCでは非表示） */
    .nav-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        padding: 0;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 1.5px;
        background: #6b5d4d;
        transition: transform .3s ease, opacity .3s ease;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(9.25px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-9.25px) rotate(-45deg);
    }

    .page {
        min-height: 100vh;
        border-bottom: 1px solid #f0ece8;
    }

    .page-hero {
        padding: 180px 48px 96px;
        background: #fff;
    }

    .page-hero-inner {
        max-width: 1120px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .78fr 1.22fr;
        gap: 72px;
        align-items: end;
    }

    .page-kicker {
        margin-bottom: 24px;
        font-size: 11px;
        letter-spacing: .5em;
        color: var(--accent);
    }

    .page-title {
        font-family: "Cormorant Garamond", "Noto Serif JP", serif;
        font-size: clamp(52px, 7vw, 104px);
        line-height: 1;
        letter-spacing: .14em;
        font-weight: 300;
    }

    .page-lead {
        max-width: 560px;
        font-size: 14px;
        line-height: 2;
        letter-spacing: .09em;
        color: #666;
    }

    .page-visual {
        max-width: 1120px;
        height: 360px;
        margin: 64px auto 0;
        overflow: hidden;
        background: #eee;
    }

    section.content-section {
        padding: 104px 48px 128px;
    }

    .container {
        max-width: 1120px;
        margin: 0 auto;
    }

    .section-title {
        margin-bottom: 48px;
        text-align: center;
    }

    .section-title .jp {
        margin-bottom: 16px;
        font-size: 11px;
        letter-spacing: .62em;
        color: #aaa;
    }

    .section-title h2 {
        font-family: "Cormorant Garamond", "Noto Serif JP", serif;
        font-size: 34px;
        letter-spacing: .36em;
        font-weight: 300;
    }

    .body-text {
        font-size: 14px;
        line-height: 2.55;
        letter-spacing: .09em;
        color: #666;
    }

    .soft-bg {
        background: var(--bg-soft);
    }

    .menu-category {
        margin-bottom: 48px;
    }

    .menu-category:last-child {
        margin-bottom: 0;
    }

    .menu-category-title {
        /*
        margin-bottom: 32px;padding-bottom: 18px;
*/
        border-bottom: 1px solid var(--line);
        font-family: "Cormorant Garamond", "Noto Serif JP", serif;
        font-size: 34px;
        letter-spacing: .24em;
        font-weight: 300;
        color: var(--accent);
    }

    .menu-list {
        border-top: 1px solid var(--line);
    }

    .menu-row {
        display: grid;
        grid-template-columns: 86px 1fr auto;
        gap: 24px;
        align-items: center;
        padding: 22px 0;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
        letter-spacing: .08em;
    }

    .menu-row .cat {
        font-size: 11px;
        letter-spacing: .28em;
        color: var(--accent);
    }

    .menu-note {
        margin-top: 56px;
        /*        padding: 0px 40px;*/
        background: var(--bg-soft);
        font-size: 13px;
        line-height: 2.25;
        letter-spacing: .08em;
        color: #777;
    }

    .staff-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 56px;
    }

    .staff-card:nth-child(even) {
        margin-top: 72px;
    }

    .staff-photo {
        /*        height: 430px;*/
        overflow: hidden;
        background: #eee;
    }

    .staff-info {
        padding-top: 30px;
    }

    .staff-role {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: .34em;
        color: var(--accent);
    }

    .staff-name {
        /*        margin-bottom: 20px;*/
        font-size: 24px;
        letter-spacing: .18em;
        font-weight: 400;
    }

    .staff-text {
        font-size: 13px;
        line-height: 2.35;
        letter-spacing: .08em;
        color: #666;
    }

    .gallery-filter {
        margin-bottom: 56px;
        display: flex;
        justify-content: center;
        gap: 28px;
        flex-wrap: wrap;
        font-size: 11px;
        letter-spacing: .28em;
        color: #777;
    }

    .gallery-filter span:first-child {
        color: var(--accent);
    }

    .gallery-page-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .gallery-page-item {
        aspect-ratio: 1 / 1;
        overflow: hidden;
        background: #eee;
    }

    .gallery-page-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .gallery-page-item:hover img {
        transform: scale(1.04);
    }

    .access-detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: start;
    }

    .access-photo {
        height: 460px;
        overflow: hidden;
        background: #eee;
    }

    .access-table {
        border-top: 1px solid var(--line);
    }

    .access-table dl {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 24px;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
        line-height: 2.1;
        letter-spacing: .08em;
    }

    .access-table dt {
        color: var(--accent);
        font-size: 11px;
        letter-spacing: .28em;
    }

    .map-box {
        position: relative;
        height: 360px;
        margin-top: 80px;
        overflow: hidden;
        background: #e8e5df;
    }



    .map-label {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 14px 24px;
        background: rgba(255, 255, 255, .9);
        color: #777;
        font-size: 11px;
        letter-spacing: .28em;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    }

    .access-route {
        margin-top: 64px;
        /*        padding: 48px;*/
        background: var(--bg-soft);
    }

    .access-route h3 {
        margin-bottom: 20px;
        font-family: "Cormorant Garamond", "Noto Serif JP", serif;
        font-size: 28px;
        letter-spacing: .24em;
        font-weight: 300;
    }

    .reserve-area {
        padding: 96px 48px 120px;
        background: #fff;
    }

    .reserve-box {
        max-width: 1120px;
        margin: 0 auto;
        padding: 56px 80px;
        border: 1px solid rgba(188, 164, 141, .45);
        text-align: center;
    }

    .reserve-box .en {
        margin-bottom: 22px;
        font-size: 11px;
        letter-spacing: .52em;
        color: var(--accent);
    }

    .reserve-box h2 {
        font-size: 22px;
        line-height: 1.8;
        letter-spacing: .22em;
        font-weight: 400;
    }

    .reserve-button {
        display: inline-block;
        margin-top: 34px;
        padding: 14px 100px;
        border: 1px solid #222;
        background: transparent;
        color: #222;
        font-size: 12px;
        letter-spacing: .34em;
        transition: .3s;
    }

    .reserve-button:hover {
        border-color: #9f866d;
        background: #9f866d;
        color: #fff;
    }

    .site-footer {
        padding: 56px 48px;
        background: #222;
        color: #fff;
    }

    .footer-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }

    .footer-logo {
        font-family: "Cormorant Garamond", "Noto Serif JP", serif;
        font-size: 24px;
        letter-spacing: .16em;
    }

    .footer-sub {
        margin-top: 16px;
        font-size: 11px;
        letter-spacing: .32em;
        color: rgba(255, 255, 255, .45);
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        font-size: 10px;
        letter-spacing: .24em;
        color: rgba(255, 255, 255, .55);
    }

    @media (max-width: 900px) {
        .header-inner {
            padding: 18px 24px;
        }

        .nav-toggle {
            display: flex;
            position: fixed;
            top: 22px;
            right: 22px;
            z-index: 300;
        }

        .global-nav {
            display: flex;
            position: fixed;
            top: 0;
            right: 0;
            width: 74%;
            max-width: 320px;
            height: 100vh;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 30px;
            padding: 80px 44px;
            background: rgba(255, 255, 255, .97);
            backdrop-filter: blur(14px);
            box-shadow: -8px 0 30px rgba(0, 0, 0, .06);
            font-size: 14px;
            transform: translateX(100%);
            transition: transform .35s ease;
            z-index: 200;
        }

        .global-nav.is-open {
            transform: translateX(0);
        }

        .global-nav .reserve-link {
            margin-top: 6px;
        }

        .page-hero {
            padding: 140px 24px 0px;
        }

        .page-hero-inner,
        .staff-grid,
        .access-detail-grid {
            grid-template-columns: 1fr;
            gap: 80px;
        }

        .page-visual,
        .staff-photo,
        .access-photo {
            height: 320px;
        }

        section.content-section,
        .reserve-area {
            padding: 40px 24px;
        }

        .menu-row {
            grid-template-columns: 1fr;
            gap: 6px;
        }

        .staff-card:nth-child(even) {
            margin-top: 0;
        }

        .gallery-page-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .access-table dl {
            grid-template-columns: 1fr;
            gap: 8px;
        }

        .reserve-box {
            padding: 44px 24px;
        }

        .footer-inner {
            flex-direction: column;
        }
    }

