@charset "UTF-8";

/*
変数定義
----------------------------------------------------------- */
:root {
    --navy: #0f1d35;
    --navy-deep: #060f1f;
    --navy-soft: #1a2f4f;
    --washi: #f1e4c8;
    --washi-light: #f7ecd4;
    --washi-dark: #e0cea5;
    --washi-bright: #faf2dc;
    --vermillion: #b3322a;
    --vermillion-deep: #8a2018;
    --vermillion-bright: #c94838;
    --gold: #c9a449;
    --gold-light: #e0c277;
    --gold-deep: #9d7e2e;
    --ink: #1a1208;
    --ink-soft: #3a2a18;
    --ink-light: #5a4a38;
    --header-height: 72px;
}

/*
ベース
----------------------------------------------------------- */
html,
body {
    overflow-x: clip;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Shippori Mincho B1', serif;
    background: var(--washi);
    color: var(--ink);
    line-height: 1.85;
    padding-top: var(--header-height);
}
img {
    max-width: 100%;
    display: block;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0, transparent 2px, rgba(58, 42, 24, 0.018) 2px, rgba(58, 42, 24, 0.018) 3px),
        repeating-linear-gradient(-45deg, transparent 0, transparent 2px, rgba(58, 42, 24, 0.018) 2px, rgba(58, 42, 24, 0.018) 3px);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: multiply;
}

/*
レイアウト
----------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 15px;
}

/*
ローディング
----------------------------------------------------------- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-deep);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
}
#loading.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.loading-logo {
    opacity: 0;
    transition: opacity 0.6s ease;
}
.loading-logo.is-visible {
    opacity: 1;
}
.loading-logo img {
    width: 100px;
}

/*
header
----------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
}
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(6, 15, 31, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 164, 73, 0.2);
    transition: background 0.4s ease;
}
.header-inner {
    height: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    font-family: 'Yuji Syuku', serif;
    color: var(--washi);
    font-size: 19px;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    gap: 14px;
}
.pine-mini {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/*
グローバルナビ
----------------------------------------------------------- */
.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-link {
    color: var(--washi);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.25em;
    position: relative;
    transition: color 0.3s;
    font-family: 'Yuji Syuku', serif;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s;
    transform: translateX(-50%);
}
.nav-link:hover {
    color: var(--gold-light);
}
.nav-link:hover::after {
    width: 100%;
}

/*
オーバーレイ・ハンバーガー（PCでは非表示）
----------------------------------------------------------- */
.nav-overlay,
.menu {
    display: none;
}

/*
ページトップボタン
----------------------------------------------------------- */
.pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: var(--vermillion);
    border-radius: 50%;
    border: 1px solid var(--vermillion);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: background 0.3s, opacity 0.5s, visibility 0.5s;
}
.pagetop.is-visible {
    opacity: 1;
    visibility: visible;
}
.pagetop::before {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    border-top: 3px solid var(--washi);
    border-right: 3px solid var(--washi);
    top: calc(50% - 3px);
    left: calc(50% - 5px);
    rotate: -45deg;
}
.pagetop:hover {
    background: var(--gold);
}

/*
HERO
----------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy-deep);
    background-image: radial-gradient(ellipse at top, #1a2f4f 0%, var(--navy) 40%, var(--navy-deep) 100%);
    padding-top: 60px;
    padding-bottom: 40px;
    padding-inline: 24px;
    overflow: hidden;
    z-index: 3;
}
.hero-bg-kanji {
    position: absolute;
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(400px, 60vw, 900px);
    color: var(--vermillion);
    opacity: 0.04;
    line-height: 0.8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
}
.cloud {
    position: absolute;
    opacity: 0.08;
    color: var(--gold);
    pointer-events: none;
}
.cloud svg {
    width: 100%;
    height: 100%;
}
.cloud-1 { top: 8%; left: -60px; width: 300px; }
.cloud-2 { top: 12%; right: -40px; width: 240px; transform: scaleX(-1); }
.cloud-3 { bottom: 12%; left: 4%; width: 220px; opacity: 0.06; }
.cloud-4 { bottom: 8%; right: 6%; width: 200px; opacity: 0.06; transform: scaleX(-1); }
.hero-frame {
    display: none;
}
.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
}
.pine-crest {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    object-fit: contain;
    display: block;
    animation: crestFade 1.4s ease-out;
}
@keyframes crestFade {
    from { opacity: 0; transform: scale(0.7) rotate(-20deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--gold);
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(15px, 1.9vw, 20px);
    letter-spacing: 0.5em;
    margin-bottom: 28px;
    animation: fadeIn 1.4s ease-out 0.2s backwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.hero-title {
    font-family: 'Yuji Syuku', serif;
    color: var(--washi);
    font-size: clamp(56px, 11vw, 160px);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 36px;
    text-shadow: 0 0 60px rgba(201, 164, 73, 0.2), 0 0 120px rgba(179, 50, 42, 0.15);
    display: inline-block;
    animation: titleReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}
.hero-title-en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: clamp(13px, 1.6vw, 18px);
    letter-spacing: 0.6em;
    font-weight: 300;
    margin-top: 18px;
    opacity: 0.8;
    animation: fadeIn 1.4s ease-out 0.7s backwards;
}
.vertical-text {
    position: absolute;
    writing-mode: vertical-rl;
    color: var(--washi-light);
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(13px, 1.4vw, 17px);
    letter-spacing: 0.45em;
    opacity: 0.85;
    z-index: 10;
}
.vertical-text.left {
    top: 80px;
    left: 50px;
    animation: fadeInLeft 1.6s ease-out 0.6s backwards;
}
.vertical-text.right {
    top: 80px;
    right: 50px;
    animation: fadeInRight 1.6s ease-out 0.6s backwards;
}
.hero-photo {
    max-width: 820px;
    margin: 32px auto 36px;
    position: relative;
    animation: fadeIn 1.6s ease-out 0.9s backwards;
    border: 1px solid rgba(201, 164, 73, 0.2);
    padding: 12px;
}
.hero-photo::before,
.hero-photo::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    z-index: 2;
    pointer-events: none;
}
.hero-photo::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.hero-photo::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.hero-photo-frame {
    background: var(--washi);
    padding: 16px;
    box-shadow: 0 0 0 1px var(--gold), 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 100px rgba(201, 164, 73, 0.12);
    position: relative;
}
.hero-photo-frame::before,
.hero-photo-frame::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid var(--gold);
}
.hero-photo-frame::before { top: 7px; left: 7px; border-right: none; border-bottom: none; }
.hero-photo-frame::after { bottom: 7px; right: 7px; border-left: none; border-top: none; }
.hero-photo-img {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}
.hero-photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.15) contrast(1.06);
    animation: kenBurns 12s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.photo-caption {
    margin-top: 14px;
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.4em;
    opacity: 0.7;
}
.hero-tagline {
    color: var(--washi-light);
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 2.4;
    margin-bottom: 80px;
    animation: fadeIn 1.6s ease-out 1.1s backwards;
}
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.5em;
    z-index: 10;
    animation: fadeInOnly 1.4s ease-out 1.6s backwards;
}
@keyframes fadeInOnly {
    from { opacity: 0; }
    to { opacity: 1; }
}
.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 12px auto 0;
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.4) translateY(20px); opacity: 0.3; }
}

/*
OPEN
----------------------------------------------------------- */
.open-section {
    position: relative;
    background: var(--vermillion);
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: 24px;
    color: var(--washi);
    text-align: center;
    overflow: hidden;
    z-index: 3;
}
.open-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px);
    pointer-events: none;
}
.open-section::after {
    content: '開店';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Yuji Syuku', serif;
    font-size: 400px;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
}
.open-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.open-eyebrow {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(14px, 1.5vw, 17px);
    letter-spacing: 0.6em;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--washi);
}
.open-eyebrow::before,
.open-eyebrow::after {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--washi-light);
}
.open-date-line {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(22px, 7vw, 80px);
    letter-spacing: 0.06em;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--washi-bright);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    white-space: nowrap;
}
.open-date-line .day-circle {
    display: inline-grid;
    place-items: center;
    box-sizing: border-box;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    border: 2px solid var(--washi-bright);
    font-size: 0.4em;
    line-height: 1;
    margin-left: 0.2em;
    vertical-align: 0.35em;
    padding-left: 5px;
}
.open-big-label {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(64px, 12vw, 140px);
    letter-spacing: 0.2em;
    line-height: 1;
    color: var(--washi-bright);
    margin-top: 16px;
    margin-bottom: 32px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.4);
}
.open-note {
    font-size: clamp(13px, 1.5vw, 16px);
    letter-spacing: 0.15em;
    opacity: 0.9;
    line-height: 2;
}

/*
セクション共通
----------------------------------------------------------- */
:where(#timeline, #story, #pride, #menu, #info) {
    scroll-margin-top: var(--header-height);
}
.sec-01,
.sec-02,
.sec-03,
.sec-04,
.sec-05 {
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    padding-inline: 24px;
    z-index: 3;
}
.sec-eyebrow {
    font-family: 'Yuji Syuku', serif;
    color: var(--vermillion);
    font-size: 14px;
    letter-spacing: 0.6em;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.sec-eyebrow::before,
.sec-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--vermillion);
    opacity: 0.5;
}
.sec-ttl {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(38px, 5.5vw, 64px);
    color: var(--ink);
    text-align: center;
    margin-bottom: 72px;
    letter-spacing: 0.1em;
    line-height: 1.3;
}
.sec-ttl .small {
    font-size: 0.3em;
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink-soft);
    letter-spacing: 0.4em;
    margin-top: 16px;
    opacity: 0.6;
    font-weight: 300;
}

/*
sec-01 TIMELINE
----------------------------------------------------------- */
.sec-01 {
    background: var(--washi);
    overflow: hidden;
}
.sec-01::before {
    content: '歴史';
    position: absolute;
    top: 60px;
    right: 5%;
    font-family: 'Yuji Syuku', serif;
    font-size: 220px;
    color: var(--vermillion);
    opacity: 0.04;
    line-height: 1;
    writing-mode: vertical-rl;
}
.timeline-counter {
    text-align: center;
    margin-top: 64px;
    margin-bottom: 72px;
}
.counter-num {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(100px, 18vw, 200px);
    color: var(--vermillion);
    line-height: 1;
    display: inline-block;
    position: relative;
}
.counter-num::after {
    content: '年';
    font-size: 0.35em;
    vertical-align: 0.8em;
    margin-left: 12px;
    color: var(--ink-soft);
}
.counter-label {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(15px, 1.8vw, 19px);
    letter-spacing: 0.5em;
    color: var(--ink-soft);
    margin-top: 8px;
}
.timeline-track {
    position: relative;
}
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
    transform: translateY(-50%);
}
.timeline-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}
.timeline-item {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 240px;
    padding-bottom: 170px;
}
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-bottom: 0;
    padding-top: 160px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--vermillion);
    border: 3px solid var(--washi);
    box-shadow: 0 0 0 1px var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.timeline-year {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(20px, 2.4vw, 28px);
    color: var(--vermillion);
    margin-bottom: 6px;
}
.timeline-era {
    font-size: 11px;
    color: var(--ink-light);
    letter-spacing: 0.3em;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}
.timeline-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.7;
}

/*
sec-02 STORY
----------------------------------------------------------- */
.sec-02 {
    background: var(--washi-light);
    overflow: hidden;
}
.sec-02::before {
    content: '物語';
    position: absolute;
    top: 40px;
    left: 5%;
    font-family: 'Yuji Syuku', serif;
    font-size: 220px;
    color: var(--navy);
    opacity: 0.04;
    line-height: 1;
    writing-mode: vertical-rl;
}
.sec-02-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sec-02-txt {
    font-size: 16px;
    line-height: 2.5;
    color: var(--ink-soft);
}
.sec-02-txt p {
    margin-bottom: 24px;
}
.sec-02-txt .lead {
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: 36px;
    letter-spacing: 0.05em;
    font-family: 'Yuji Syuku', serif;
}
.sec-02-txt .drop {
    display: inline-block;
    font-family: 'Yuji Syuku', serif;
    font-size: 64px;
    color: var(--vermillion);
    line-height: 1;
    margin-right: 8px;
    float: left;
    margin-top: 8px;
}
.sec-02-quote {
    margin-top: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-inline: 28px;
    border-left: 3px solid var(--vermillion);
    background: rgba(179, 50, 42, 0.04);
    position: relative;
}

.sec-02-quote p {
    font-family: 'Yuji Syuku', serif;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.9;
}
.sec-02-quote cite {
    font-size: 12px;
    color: var(--ink-light);
    letter-spacing: 0.2em;
    font-style: normal;
}
.sec-02-quote .source {
    font-size: 10px;
    color: var(--ink-light);
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-top: 6px;
    display: block;
}
.sec-02-img {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--navy);
    padding: 14px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}
.sec-02-img::before {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 2;
}
.sec-02-img-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.sec-02-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}
.sec-02-img:hover .sec-02-img-inner img {
    transform: scale(1.08);
}
.sec-02-stamp {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 100px;
    height: 100px;
    background: var(--vermillion);
    color: var(--washi);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: 'Yuji Syuku', serif;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    border: 3px double var(--washi);
    z-index: 5;
    transform: rotate(-12deg);
    box-shadow: 0 8px 24px rgba(179, 50, 42, 0.5);
}

/*
sec-03 PRIDE
----------------------------------------------------------- */
.sec-03 {
    background: var(--washi);
    overflow: hidden;
}
.sec-03::before {
    content: '矜持';
    position: absolute;
    bottom: 40px;
    left: 4%;
    font-family: 'Yuji Syuku', serif;
    font-size: 220px;
    color: var(--vermillion);
    opacity: 0.04;
    line-height: 1;
    writing-mode: vertical-rl;
}
.sec-03-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sec-03-item {
    background: var(--washi-bright);
    border: 1px solid rgba(58, 42, 24, 0.15);
    padding-top: 36px;
    padding-bottom: 32px;
    padding-inline: 24px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.sec-03-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: var(--vermillion);
}
.sec-03-item-num-jp {
    font-family: 'Yuji Syuku', serif;
    font-size: 14px;
    color: var(--vermillion);
    letter-spacing: 0.4em;
    margin-bottom: 8px;
}
.sec-03-item-num-big {
    font-family: 'Yuji Syuku', serif;
    font-size: 80px;
    color: var(--vermillion);
    line-height: 1;
    margin-bottom: 24px;
    opacity: 0.9;
}
.sec-03-item-ttl {
    font-family: 'Yuji Syuku', serif;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.15em;
}
.sec-03-item-en {
    font-size: 11px;
    color: var(--vermillion);
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
}
.sec-03-item-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
}
.sec-03-item-desc {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 2;
}
.sec-03-item-origin {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed rgba(58, 42, 24, 0.2);
    font-size: 11px;
    color: var(--ink-light);
    letter-spacing: 0.1em;
}

/*
sec-04 MENU
----------------------------------------------------------- */
.sec-04 {
    background: var(--washi-light);
    overflow: hidden;
}
.sec-04::before {
    content: '献立';
    position: absolute;
    top: 40px;
    right: 5%;
    font-family: 'Yuji Syuku', serif;
    font-size: 220px;
    color: var(--navy);
    opacity: 0.04;
    line-height: 1;
    writing-mode: vertical-rl;
}
.sec-04-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 96px;
    background: var(--washi-bright);
    padding-top: 48px;
    padding-bottom: 48px;
    padding-inline: 48px;
    border: 1px solid rgba(58, 42, 24, 0.12);
    position: relative;
}
.sec-04-featured::before {
    content: '看板';
    position: absolute;
    top: -16px;
    left: 40px;
    background: var(--vermillion);
    color: var(--washi);
    font-family: 'Yuji Syuku', serif;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-inline: 20px;
    font-size: 14px;
    letter-spacing: 0.3em;
}
.sec-04-featured-img {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.sec-04-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.sec-04-featured:hover .sec-04-featured-img img {
    transform: scale(1.05);
}
.sec-04-featured-body {
    padding-inline: 16px;
}
.sec-04-featured-name {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(32px, 4vw, 44px);
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.08em;
}
.sec-04-featured-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: var(--vermillion);
    letter-spacing: 0.4em;
    margin-bottom: 20px;
}
.sec-04-featured-price {
    font-family: 'Yuji Syuku', serif;
    color: var(--vermillion);
    font-size: 32px;
    margin-bottom: 24px;
}
.sec-04-featured-price small {
    font-size: 14px;
    color: var(--ink-light);
    letter-spacing: 0.15em;
    margin-left: 8px;
}
.sec-04-featured-desc {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 2;
    margin-bottom: 24px;
}
.sec-04-featured-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.sec-04-featured-tag {
    font-size: 11px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-inline: 12px;
    background: var(--navy);
    color: var(--washi);
    letter-spacing: 0.2em;
}
.menu-category {
    margin-bottom: 80px;
}
.menu-category:last-of-type {
    margin-bottom: 0;
}
.menu-cat-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}
.menu-cat-head::before,
.menu-cat-head::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--vermillion), transparent);
    opacity: 0.4;
    max-width: 200px;
}
.menu-cat-ttl {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(22px, 2.8vw, 30px);
    color: var(--navy);
    letter-spacing: 0.2em;
    text-align: center;
}
.menu-cat-ttl .en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.35em;
    color: var(--vermillion);
    letter-spacing: 0.4em;
    margin-top: 6px;
    opacity: 0.7;
}
.menu-list {
    list-style: none;
    background: var(--washi-bright);
    padding-top: 24px;
    padding-bottom: 24px;
    padding-inline: 36px;
    border: 1px solid rgba(58, 42, 24, 0.12);
}
.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(58, 42, 24, 0.18);
    align-items: baseline;
}
.menu-item:last-child {
    border-bottom: none;
}
.menu-item-name {
    font-family: 'Shippori Mincho B1', serif;
    font-size: clamp(15px, 1.7vw, 18px);
    color: var(--ink);
    letter-spacing: 0.05em;
}
.menu-item-name .badge {
    display: inline-block;
    font-size: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-inline: 8px;
    background: var(--vermillion);
    color: var(--washi);
    letter-spacing: 0.2em;
    margin-left: 10px;
    vertical-align: 2px;
}
.menu-item-price {
    font-family: 'Yuji Syuku', serif;
    font-size: clamp(17px, 1.9vw, 20px);
    color: var(--vermillion);
    white-space: nowrap;
}
.menu-item-price .yen {
    font-size: 0.7em;
    margin-right: 2px;
}
.menu-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 80px;
}
.menu-2col .menu-category {
    margin-bottom: 0;
}
.menu-note {
    text-align: center;
    margin-top: 32px;
    font-size: 12px;
    color: var(--ink-light);
    letter-spacing: 0.1em;
    line-height: 1.8;
}

/*
sec-05 INFO
----------------------------------------------------------- */
.sec-05 {
    background: var(--washi-light);
    overflow: hidden;
}
.sec-05-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.sec-05-table {
    width: 100%;
    border-collapse: collapse;
}
.sec-05-table tr {
    border-bottom: 1px solid rgba(58, 42, 24, 0.2);
}
.sec-05-table tr:first-child {
    border-top: 1px solid rgba(58, 42, 24, 0.2);
}
.sec-05-table th,
.sec-05-table td {
    padding-top: 22px;
    padding-bottom: 22px;
    padding-inline: 12px;
    text-align: left;
    font-size: 15px;
    vertical-align: top;
}
.sec-05-table th {
    font-family: 'Yuji Syuku', serif;
    color: var(--vermillion);
    width: 140px;
    letter-spacing: 0.25em;
    font-weight: normal;
}
.sec-05-table td {
    color: var(--ink);
    line-height: 1.9;
}
.sec-05-table .tba {
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-inline: 10px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    letter-spacing: 0.2em;
    font-family: 'Yuji Syuku', serif;
}
.sec-05-side {
    padding: 32px;
    background: var(--washi-bright);
    border: 1px solid rgba(58, 42, 24, 0.15);
}
.sec-05-side h3 {
    font-family: 'Yuji Syuku', serif;
    font-size: 20px;
    color: var(--vermillion);
    margin-bottom: 20px;
    letter-spacing: 0.15em;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(179, 50, 42, 0.2);
}
.sec-05-shop {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(58, 42, 24, 0.2);
}
.sec-05-shop:last-child {
    border-bottom: none;
}
.sec-05-shop h4 {
    font-family: 'Yuji Syuku', serif;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}
.sec-05-shop p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.85;
}
.sec-05-shop-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--vermillion);
    letter-spacing: 0.3em;
    margin-bottom: 6px;
}

/*
footer
----------------------------------------------------------- */
.footer {
    background: var(--navy-deep);
    color: var(--washi-light);
    padding-top: 80px;
    padding-inline: 24px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    border-top: 1px solid rgba(201, 164, 73, 0.2);
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(201, 164, 73, 0.15);
}
.footer-brand .pine-mini {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}
.footer-name {
    font-family: 'Yuji Syuku', serif;
    font-size: 28px;
    color: var(--washi);
    margin-bottom: 6px;
    letter-spacing: 0.2em;
}
.footer-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.4em;
    margin-bottom: 24px;
}
.footer-address {
    font-size: 13px;
    line-height: 1.9;
    opacity: 0.75;
}
.footer-col h4 {
    font-family: 'Yuji Syuku', serif;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 164, 73, 0.3);
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 12px;
}
.footer-col a {
    color: var(--washi-light);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.1em;
    opacity: 0.75;
    transition: opacity 0.3s, color 0.3s;
}
.footer-col a:hover {
    opacity: 1;
    color: var(--gold-light);
}
.footer-sns {
    display: flex;
    gap: 12px;
}
.footer-sns a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 164, 73, 0.4);
    display: grid;
    place-items: center;
    color: var(--gold);
    transition: all 0.3s;
    border-radius: 50%;
    text-decoration: none;
}
.footer-sns a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-3px);
}
.footer-sns i {
    font-size: 16px;
}
.footer-sns-note {
    margin-top: 20px;
    font-size: 11px;
    opacity: 0.5;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    opacity: 0.4;
    letter-spacing: 0.15em;
}

/*
アニメーション
----------------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes titleReveal {
    from { opacity: 0; transform: translateY(50px); letter-spacing: 0.3em; filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); letter-spacing: 0.04em; filter: blur(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal-left.in {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal-right.in {
    opacity: 1;
    transform: translateX(0);
}

/*
レスポンシブ tablet
----------------------------------------------------------- */
/*
レスポンシブ tablet
----------------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .sec-02-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/*
レスポンシブ tablet + mobile 共通
----------------------------------------------------------- */
@media screen and (max-width: 1199px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: var(--navy-deep);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: var(--header-height);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        /* header-innerのflexから切り離す */
        flex: none;
        max-width: none;
        margin: 0;
    }
    body.open .nav {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
    }
    .nav-link {
        display: block;
        width: 100%;
        height: 55px;
        line-height: 55px;
        padding-inline: 32px;
        border-bottom: 1px solid rgba(201, 164, 73, 0.15);
        font-size: 15px;
    }
    .nav-link::after {
        display: none;
    }
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    body.open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }
    .menu {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
    }
    .menu span {
        display: block;
        height: 2px;
        background: var(--gold);
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.4s ease-in-out;
        border-radius: 2px;
    }
    .menu span:nth-child(1) { top: 4px; }
    .menu span:nth-child(2) { top: 14px; }
    .menu span:nth-child(3) { top: 24px; }
    body.open .menu span:nth-child(1) { top: 14px; rotate: 135deg; }
    body.open .menu span:nth-child(2) { width: 0; left: 50%; }
    body.open .menu span:nth-child(3) { top: 14px; rotate: -135deg; }
}

/*
レスポンシブ mobile
----------------------------------------------------------- */
@media screen and (max-width: 767px) {
    :root {
        --header-height: 60px;
    }
    .sec-01,
    .sec-02,
    .sec-03,
    .sec-04,
    .sec-05 {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-inline: 0;
    }
    .open-section {
        padding-top: 48px;
        padding-bottom: 48px;
        padding-inline: 16px;
    }
    .hero-title {
        font-size: clamp(42px, 11vw, 72px);
    }
    .sec-ttl {
        font-size: clamp(28px, 7vw, 38px);
        margin-bottom: 48px;
    }
    .vertical-text {
        display: none;
    }
    .timeline-track {
        padding-top: 0;
        padding-bottom: 0;
    }
    .timeline-line {
        left: 24px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
        background: linear-gradient(to bottom, transparent, var(--gold) 5%, var(--gold) 95%, transparent);
        transform: none;
    }
    .timeline-list {
        grid-template-columns: 1fr;
        gap: 0;
        height: auto;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        display: block;
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 64px;
        padding-right: 0;
        text-align: left;
        margin-bottom: 40px;
    }
    .timeline-item::before {
        top: 4px;
        left: 16px;
        transform: translateX(0);
    }
    .sec-02-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .sec-03-list {
        grid-template-columns: 1fr;
    }
    .sec-04-featured {
        grid-template-columns: 1fr;
        padding-inline: 24px;
        gap: 32px;
    }
    .menu-2col {
        grid-template-columns: 1fr;
    }
    .sec-05-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .pagetop {
        bottom: 20px;
        right: 10px;
    }
}
@media screen and (max-width: 500px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}