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

/* =========================

   MAIN VISUAL

========================= */

.mv {
    position: relative;
    padding: 150px 48px 96px;
    background: #fff;
    overflow: hidden;
}

.mv-inner {
    position: relative;
    max-width: 1280px;
    height: 700px;
    margin: 0 auto;
}

/* 左側のコピー */

.mv-copy {
    position: absolute;
    left: 6%;
    top: 78px;
    z-index: 5;
    width: 44%;
}

.mv-label {
    margin-bottom: 48px;
    font-size: 11px;
    letter-spacing: .52em;
    color: var(--accent);
}

.mv-title {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: clamp(48px, 4.6vw, 72px);
    line-height: 1.35;
    letter-spacing: .12em;
    font-weight: 300;
    color: #111;
}

/* 右側のメイン写真 */

.mv-main-photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    height: 410px;
    z-index: 1;
    overflow: hidden;
    background: #eee;
}

/* 左下のサブ写真 */

.mv-sub-photo {
    position: absolute;
    left: 0;
    top: 250px;
    width: 32%;
    height: 300px;
    z-index: 2;
    overflow: hidden;
    background: #eee;
}

/* 説明テキスト */

.mv-text-box {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 530px;
    padding: 34px 40px;
    z-index: 6;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
}

.mv-text-box .place {
    margin-bottom: 22px;
    font-size: 11px;
    line-height: 2;
    letter-spacing: .38em;
    color: var(--accent);
}

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

.scroll-text {
    position: absolute;
    right: -10px;
    bottom: 120px;
    writing-mode: vertical-rl;
    font-size: 10px;
    letter-spacing: .32em;
    color: #aaa;
}

/*
.mv-line {
    position: absolute;
    left: 36%;
    bottom: 0;
    width: 44%;
    height: 1px;
    background: #ddd;
}*/

/* =========================
   COMMON
========================= */

section {
    padding: 112px 48px;
}

.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;
    font-weight: 400;
}

.body-text p + p {
    margin-top: 32px;
}

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

/* =========================
   PHILOSOPHY
========================= */

.philosophy-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    /*    gap: 64px;*/
    align-items: start;
}

/* =========================
   MENU
========================= */

.menu-category {
    max-width: 860px;
    margin: 0 auto 56px;
}

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

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

.menu-list {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.menu-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 20px 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 {
    max-width: 860px;
    margin: 40px auto 0;
    padding: 30px 36px;
    background: #fff;
    font-size: 13px;
    line-height: 2.25;
    letter-spacing: .08em;
    color: #777;
}

/* =========================
   BUTTON
========================= */

.view-more-wrap {
    text-align: center;
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: .32em;
    color: #555;
    cursor: pointer;
}

.view-more::after {
    content: "";
    display: block;
    width: 64px;
    height: 1px;
    background: #ccc;
    transition: .3s;
}

.view-more:hover::after {
    width: 96px;
    background: var(--accent);
}

/* =========================
   GALLERY
========================= */

.gallery-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(188, 164, 141, .16);
}

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

/* =========================
   NEWS / BLOG
========================= */

.news-blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.news-item,
.blog-item {
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
    margin-bottom: 28px;
}

.date {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: .22em;
    color: var(--accent);
}

.item-title {
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
}

.blog-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding-bottom: 32px;
}

.blog-thumb {
    height: 96px;
    overflow: hidden;
    background: #eee;
}

.blog-text {
    margin-top: 12px;
    font-size: 12px;
    line-height: 2;
    letter-spacing: .06em;
    color: #777;
}

/* =========================
   VOICE
========================= */

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.voice-card {
    padding: 32px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(188, 164, 141, .08);
}

.voice-num {
    margin-bottom: 24px;
    font-size: 11px;
    letter-spacing: .28em;
    color: var(--accent);
}

.voice-card p:last-child {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: .08em;
    color: #666;
}

/* =========================
   ACCESS
========================= */

.access-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
}

.map-placeholder {
    height: 320px;
    background: #dedede;
    overflow: hidden;
}

.access-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    line-height: 2.4;
    letter-spacing: .1em;
    color: #666;
}

.access-info .name {
    margin-bottom: 24px;
    font-size: 18px;
    letter-spacing: .18em;
    color: var(--text);
}

/* =========================
   RESERVE
========================= */

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

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

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

.reserve-box p {
    max-width: 680px;
    margin: 28px auto 0;
    font-size: 14px;
    line-height: 2.3;
    letter-spacing: .08em;
    color: #666;
}

.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;
}

/* =========================
   FOOTER
========================= */

.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-size: 20px;
    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);
    height: fit-content;
    align-items: center;
}

/* =========================
   RESPONSIVE
========================= */

@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;
    }

    .mv {
        padding: 120px 24px 22px;
    }

    .mv-inner {
        height: auto;
    }

    .mv-copy,
    .mv-main-photo,
    .mv-sub-photo,
    .mv-text-box,
    .scroll-text,
    .mv-line {
        position: static;
    }

    .mv-copy {
        margin-bottom: 32px;
    }

    .mv-label {
        margin-bottom: 28px;
        font-size: 10px;
    }

    .mv-title {
        font-size: clamp(32px, 13vw, 38px);
        line-height: 1.25;
    }

    .mv-main-photo {
        width: 100%;
        height: 360px;
        margin-bottom: 24px;
    }

    .mv-sub-photo {
        width: 72%;
        height: 240px;
        margin-top: -88px;
        margin-left: 0;
        position: relative;
        z-index: 2;
    }

    .mv-text-box {
        width: calc(100% - 24px);
        margin: -40px 0 0 auto;
        padding: 30px 28px;
        position: sticky;
        z-index: 3;
    }

    .scroll-text {
        display: none;
    }

    .mv-line {
        width: 100%;
        margin-top: 48px;
    }

    section {
        padding: 48px 24px;
    }

    .philosophy-grid,
    .news-blog-grid,
    .access-grid {
        grid-template-columns: 1fr;
    }

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

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

    .menu-row .cat {
        font-size: 10px;
    }

    .voice-grid {
        grid-template-columns: 1fr;
    }

    .gallery-wrap {
        gap: 8px;
        padding: 8px;
    }

    .blog-item {
        grid-template-columns: 100px 1fr;
    }

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

    .reserve-box h2 {
        font-size: 26px;
    }

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


@media screen and (max-width: 767px) {
    .mv {
        overflow: hidden;
    }

    .mv-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mv-main-photo {
        display: none;
    }

    .mv-sub-photo {
        position: relative;
        width: 86%;
        margin: 0 auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .mv-sub-photo img {
        width: 100%;
        height: auto;
        display: block;
    }

    .mv-text-box {
        position: relative;
        width: 86%;
        box-sizing: border-box;
        /*        margin: 24px auto 0;*/
        padding: 32px 22px;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        background: #fff;
    }

    .mv-text-box .place {
        font-size: 11px;
        letter-spacing: 0.24em;
        white-space: normal;
    }

    .mv-text-box p:last-child {
        font-size: 13px;
        line-height: 2;
    }
}
