:root {
  --cream: #ede8df;
  --navy: #1a2857;
  --navy-dark: #111b40;
  --rust: #8b3a0f;
  --gold: #c8a832;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Shippori Mincho', serif;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { font-family: inherit; }

.serif { font-family: 'Yuji Syuku', serif; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 52px; }
.stack-row { display: flex; align-items: center; gap: 80px; }

/* ── Reveal-on-scroll ── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal-d1].visible { transition-delay: .12s; }
[data-reveal-d2].visible { transition-delay: .24s; }
[data-reveal-d3].visible { transition-delay: .36s; }
[data-reveal] img, [data-reveal-d1] img, [data-reveal-d2] img, [data-reveal-d3] img {
  transform: translateY(20px) scale(0.93);
  transition: transform 1s .2s cubic-bezier(.22,.61,.36,1);
}
[data-reveal].visible img, [data-reveal-d1].visible img, [data-reveal-d2].visible img, [data-reveal-d3].visible img { transform: none; }

/* ── Nav ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,40,87,.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 52px;
}
.site-nav.is-fixed { position: fixed; left: 0; right: 0; }
.nav-logo { font-family: 'Yuji Syuku', serif; font-size: 26px; letter-spacing: .08em; color: var(--navy); }
.nav-back { display: flex; align-items: center; gap: 10px; color: rgba(26,40,87,.45); font-size: 11px; letter-spacing: .12em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 11px; letter-spacing: .14em; color: rgba(26,40,87,.45); }
.nav-links a.is-cta { color: var(--rust); border-bottom: 1px solid rgba(139,58,15,.35); padding-bottom: 1px; }
.nav-toggle { display: none; background: none; border: none; padding: 6px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg line { transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .35s ease; }
#nav-spacer { height: 0; }
.mobile-menu {
  display: flex; flex-direction: column; background: var(--cream);
  border-bottom: 1px solid rgba(26,40,87,.1); padding: 0 20px;
  position: fixed; left: 0; right: 0; z-index: 99;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,.61,.36,1), opacity .35s ease, padding .45s cubic-bezier(.22,.61,.36,1);
}
.mobile-menu a {
  font-size: 13px; letter-spacing: .1em; color: rgba(26,40,87,.6); padding: 14px 0;
  border-bottom: 1px solid rgba(26,40,87,.08);
  opacity: 0; transform: translateY(-8px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,.61,.36,1);
}
.mobile-menu a.is-cta { color: var(--rust); border-bottom: none; }

@media (min-width: 769px) { .nav-toggle, .mobile-menu { display: none !important; } }
@media (max-width: 768px) {
  .wrap { padding: 0 20px !important; }
  .site-nav { padding: 12px 20px !important; }
  .nav-links { display: none !important; }
  .nav-toggle { display: flex !important; }
  .grid-stack { grid-template-columns: 1fr !important; }
}

/* ── Buttons ── */
.btn { display: inline-block; padding: 16px 54px; font-size: 11.5px; letter-spacing: .3em; }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-gold-fill { background: var(--gold); color: var(--navy); }
.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold); padding: 15px 40px; font-size: 11.5px; letter-spacing: .26em; }
.btn-outline-navy { border: 1px solid var(--navy); color: var(--navy); padding: 15px 40px; font-size: 11.5px; letter-spacing: .24em; display: inline-flex; align-items: center; gap: 10px; }
.btn-outline-cream { border: 1px solid rgba(237,232,223,.28); color: rgba(237,232,223,.6); padding: 16px 40px; font-size: 12px; letter-spacing: .3em; }

/* ── Section headers ── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-label { font-size: 10px; letter-spacing: .4em; margin-bottom: 13px; color: var(--rust); }
.section-label.on-dark { color: var(--gold); }
.section-title { font-size: 38px; letter-spacing: .07em; color: var(--navy); }
.section-title.on-dark { color: var(--cream); }

/* ── Grids ── */
.menu-grid, .drink-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.dish-card { text-align: center; }
.dish-card img { width: 100%; display: block; }
.dish-name { font-size: 17px; letter-spacing: .1em; color: var(--navy); margin-bottom: 5px; margin-top: 22px; }
.dish-price { font-size: 10.5px; color: var(--rust); letter-spacing: .14em; margin-bottom: 11px; }
.dish-desc { font-size: 13px; line-height: 2.1; color: rgba(26,40,87,.5); }
.dish-card.on-dark .dish-name { color: var(--cream); }
.dish-card.on-dark .dish-price { color: var(--gold); }
.dish-card.on-dark .dish-desc { color: rgba(237,232,223,.45); }

/* ── Sections ── */
.hero-section { background: var(--cream); min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }
.hero-scrim { display: none; position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-body { position: relative; z-index: 2; width: 100%; padding-top: 80px; padding-bottom: 80px; }
.hero-tag { font-size: 10px; letter-spacing: .42em; color: var(--rust); margin-bottom: 24px; }
.hero-title { font-family: 'Yuji Syuku', serif; font-size: clamp(76px,10vw,128px); line-height: .88; letter-spacing: .04em; color: var(--navy); }
.hero-menu-lines { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.hero-menu-lines span { font-size: 13px; letter-spacing: .24em; color: rgba(26,40,87,.55); }
.hero-desc { margin: 28px 0 0; font-size: 14.5px; line-height: 2.5; color: rgba(26,40,87,.6); max-width: 360px; }

@media (max-width: 768px) {
  .menu-grid, .drink-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .gallery-grid { grid-template-columns: repeat(2,1fr) !important; }
  .shop-grid, .photo-grid { grid-template-columns: 1fr !important; }
  .stack-row { flex-direction: column !important; gap: 40px !important; }
  .stack-row > * { width: 100% !important; flex: none !important; }
  .hero-scrim { display: block !important; background: linear-gradient(to bottom, rgba(237,232,223,.94) 0%, rgba(237,232,223,.9) 45%, rgba(237,232,223,.72) 75%, rgba(237,232,223,.55) 100%) !important; }
}

/* ── Store hero (dark, full-bleed photo) ── */
.store-hero { background: var(--navy); min-height: 100vh; display: flex; align-items: center; overflow: hidden; position: relative; }
.store-hero-bg { position: absolute; inset: 0; z-index: 0; }
.store-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.store-hero-scrim { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,40,87,.85) 0%, rgba(26,40,87,.6) 55%, rgba(26,40,87,.2) 100%); }
.store-hero-body { position: relative; z-index: 2; width: 100%; padding-top: 80px; padding-bottom: 80px; }
.store-hero-tag { font-size: 9.5px; letter-spacing: .42em; color: var(--gold); margin-bottom: 16px; }
.store-hero-title { font-family: 'Yuji Syuku', serif; font-size: clamp(48px,8vw,96px); line-height: .9; letter-spacing: .04em; color: var(--cream); }
.store-hero-desc { margin: 28px 0 0; font-size: 14.5px; line-height: 2.5; color: rgba(237,232,223,.75); max-width: 400px; }
.store-hero-hours { margin-top: 28px; display: flex; flex-direction: column; gap: 7px; }
.store-hero-hours span { font-size: 12px; letter-spacing: .2em; color: rgba(237,232,223,.55); }

.dark-band { background: var(--navy); padding: 15px 0; display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap; }
.dark-band.deep { background: var(--navy-dark); }
.dark-band span.tag { font-size: 10px; letter-spacing: .28em; color: var(--gold); }
.dark-band span.sep { color: rgba(200,168,50,.25); font-size: 16px; }

.access-card { display: block; border: 1px solid rgba(26,40,87,.12); padding: 32px; transition: border-color .2s, box-shadow .2s; }
.access-card:hover { border-color: rgba(139,58,15,.4); box-shadow: 0 4px 24px rgba(26,40,87,.08); }
.access-card .code { font-size: 9px; letter-spacing: .3em; color: var(--rust); margin-bottom: 8px; }
.access-card .name { font-family: 'Yuji Syuku', serif; font-size: 22px; letter-spacing: .08em; color: var(--navy); margin-bottom: 12px; padding-bottom: 16px; border-bottom: 1px solid rgba(26,40,87,.1); }
.access-card p { font-size: 12.5px; line-height: 2; color: rgba(26,40,87,.55); margin: 0 0 16px; }
.access-row { display: flex; flex-direction: column; gap: 13px; }
.access-row .r { display: flex; gap: 12px; }
.access-row .r .k { font-size: 10px; letter-spacing: .08em; color: var(--rust); min-width: 34px; padding-top: 2px; }
.access-row .r .v { font-size: 12.5px; line-height: 1.9; color: rgba(26,40,87,.58); }
.access-row .r .v.note { font-size: 11px; line-height: 1.9; color: rgba(26,40,87,.38); margin-top: 4px; }
.access-row .maplink { border-bottom: 1px solid rgba(26,40,87,.2); cursor: pointer; }

.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item { display: flex; gap: 28px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid rgba(26,40,87,.1); }
.news-item:last-child { border-bottom: none; }
.news-meta { flex-shrink: 0; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.news-date { font-size: 11px; letter-spacing: .1em; color: rgba(26,40,87,.45); }
.news-cat { font-size: 10px; letter-spacing: .1em; color: var(--rust); border: 1px solid rgba(139,58,15,.3); padding: 2px 8px; }
.news-cat.all { color: var(--navy); border-color: rgba(26,40,87,.25); }
.news-body { flex: 1; }
.news-title { font-size: 14px; letter-spacing: .08em; color: var(--navy); margin-bottom: 4px; }
.news-excerpt { font-size: 12.5px; line-height: 2; color: rgba(26,40,87,.55); }

.site-footer { background: var(--navy); padding: 40px 52px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: 'Yuji Syuku', serif; font-size: 24px; letter-spacing: .08em; color: var(--cream); }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 10.5px; letter-spacing: .12em; color: rgba(237,232,223,.38); }
.footer-links a.current { color: var(--gold); }
.footer-ig { display: flex; align-items: center; gap: 9px; font-size: 11.5px; letter-spacing: .14em; color: var(--gold); border: 1px solid var(--gold); padding: 10px 22px; }
.footer-copy { font-size: 10px; letter-spacing: .1em; color: rgba(237,232,223,.22); }

/* ── Forms (recruitment) ── */
.oshima-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.oshima-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.oshima-form label { display: block; font-size: 10px; letter-spacing: .18em; color: var(--gold); margin-bottom: 8px; }
.oshima-form input, .oshima-form select, .oshima-form textarea {
  width: 100%; background: rgba(237,232,223,.06); border: 1px solid rgba(200,168,50,.2);
  padding: 13px 16px; font-size: 13px; color: var(--cream); outline: none; font-family: 'Shippori Mincho', serif;
}
.oshima-form select { background: var(--navy-dark); appearance: none; }
.oshima-form textarea { resize: vertical; line-height: 1.9; }
.oshima-form .required { color: var(--rust); }
.oshima-form button { width: 100%; background: transparent; border: 1px solid var(--gold); padding: 18px; font-size: 12px; letter-spacing: .3em; color: var(--gold); cursor: pointer; margin-top: 8px; }
.oshima-form button:hover { background: rgba(200,168,50,.1); }
.oshima-form-notice { max-width: 600px; margin: 0 auto 24px; padding: 16px 20px; font-size: 13px; text-align: center; border: 1px solid var(--gold); color: var(--gold); }
.oshima-form-notice.error { border-color: var(--rust); color: #e8b089; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; }

/* ── Pagination ── */
.oshima-pagination { display: flex; justify-content: center; gap: 12px; margin-top: 48px; }
.oshima-pagination a, .oshima-pagination span { font-size: 12px; letter-spacing: .1em; padding: 10px 16px; border: 1px solid rgba(26,40,87,.15); color: var(--navy); }
.oshima-pagination span.current { background: var(--navy); color: var(--cream); }

.svg-arrow { display: inline-flex; }

/* ══════════════════════════════════════════════════════════
   トップページ「暖簾をくぐる」リニューアル（front-page.php専用）
   ここから下のクラスは front-page.php でのみ使用される。
   ══════════════════════════════════════════════════════════ */

/* Nav: transparent over the hero, solid once scrolled */
.nav-transparent { background: transparent; border-bottom-color: transparent; }
.nav-transparent.scrolled { background: rgba(237,232,223,.93); border-bottom-color: rgba(26,40,87,.1); backdrop-filter: blur(10px); }
.nav-logo-tagline { font-family: 'Shippori Mincho', serif; font-size: 9px; letter-spacing: .34em; color: rgba(26,40,87,.45); }
.nav-link-home { font-size: 11px; letter-spacing: .14em; color: rgba(26,40,87,.55); transition: color .25s; }
.nav-link-home:hover { color: var(--rust); }
.nav-cta-solid { font-size: 11px; letter-spacing: .2em; color: var(--cream); background: var(--rust); padding: 10px 22px; transition: background .3s; }
.nav-cta-solid:hover { background: var(--navy); }

/* Hero v2 */
#hero-title span { display: inline-block; }
.hero-offer { writing-mode: vertical-rl; font-size: 13px; letter-spacing: .3em; color: rgba(26,40,87,.62); border-left: 1px solid rgba(139,58,15,.3); padding-left: 13px; height: 152px; }
.btn-hero:hover { background: var(--rust) !important; }
.hero-link { font-size: 11.5px; letter-spacing: .22em; color: rgba(26,40,87,.6); border-bottom: 1px solid rgba(26,40,87,.25); padding-bottom: 3px; transition: color .3s, border-color .3s; }
.hero-link:hover { color: var(--rust); border-color: rgba(139,58,15,.5); }
@keyframes cue-drop { 0% { top: -45%; } 65%, 100% { top: 110%; } }
.scroll-cue-track { width: 1px; height: 52px; background: rgba(26,40,87,.15); position: relative; overflow: hidden; }
.scroll-cue-drip { position: absolute; left: 0; top: -45%; width: 1px; height: 45%; background: var(--rust); animation: cue-drop 2.3s cubic-bezier(.6,.1,.3,.9) infinite; }

/* Marquee */
@keyframes mq-roll { to { transform: translateX(-50%); } }
.marquee-track { display: flex; width: max-content; animation: mq-roll 36s linear infinite; }
.mq-item { font-family: 'Yuji Syuku', serif; font-size: 25px; letter-spacing: .14em; color: var(--navy); white-space: nowrap; }
.mq-dot { width: 5px; height: 5px; background: var(--rust); border-radius: 50%; flex: none; }

/* Ghost text (background watermark characters) */
.ghost, .ghost-num { pointer-events: none; user-select: none; font-family: 'Yuji Syuku', serif; line-height: 1; }

/* Section marker (vertical chapter label on the left edge) */
.section-marker { position: absolute; left: 36px; top: 120px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.section-marker span.label { writing-mode: vertical-rl; font-family: 'Yuji Syuku', serif; font-size: 12px; letter-spacing: .3em; }
.section-marker span.rule { width: 1px; height: 72px; background: rgba(26,40,87,.18); }
@media (max-width: 1300px) { .section-marker { display: none !important; } }

/* Hanko stamps */
[data-stamp] { opacity: 0; transform: scale(1.8) rotate(10deg); }
[data-stamp].stamped { opacity: 1; transform: scale(1) rotate(var(--rot, 3deg)); transition: opacity .45s cubic-bezier(.3,1.5,.4,1) .3s, transform .45s cubic-bezier(.3,1.5,.4,1) .3s; }
.stamp-badge { font-family: 'Yuji Syuku', serif; letter-spacing: .16em; border-radius: 3px; }

/* Editorial menu rows */
.menu-row-photo { transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.menu-row-photo:hover { transform: rotate(0deg) scale(1.015) !important; }

/* Drinks v2 (tilted photo + hanging paper tag) */
.drink-tilt { transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.drink-tilt:hover { transform: rotate(0deg) translateY(-8px) !important; }

/* Invert-on-hover outline buttons (sake event / reserve buttons) */
.btn-invert-navy:hover { background: var(--navy) !important; color: var(--cream) !important; }
.btn-invert-gold:hover { background: var(--gold) !important; color: var(--navy-dark) !important; }

/* Gallery v2 zoom */
.gallery-zoom { overflow: hidden; }
.gallery-zoom img { transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.gallery-zoom:hover img { transform: scale(1.07); }

/* Access card v2 (photo top + hanging vertical tag + hover lift) */
.access-card-v2 { display: block; background: #f5f0e6; border: 1px solid rgba(26,40,87,.12); color: inherit; transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s, border-color .45s; }
.access-card-v2:hover { transform: translateY(-7px); box-shadow: 0 26px 50px -20px rgba(26,40,87,.3); border-color: rgba(139,58,15,.45); }
.access-tag-v2 { position: absolute; left: 20px; bottom: -18px; writing-mode: vertical-rl; background: var(--navy); color: var(--cream); font-family: 'Yuji Syuku', serif; font-size: 15px; letter-spacing: .18em; padding: 17px 9px; box-shadow: 0 8px 22px rgba(26,40,87,.35); }

/* Footer v2 */
.footer-link-home { font-size: 12px; letter-spacing: .1em; color: rgba(237,232,223,.5); transition: color .25s; }
.footer-link-home:hover { color: var(--cream); }
.back-to-top { font-size: 10px; letter-spacing: .24em; color: rgba(237,232,223,.35); transition: color .25s; }
.back-to-top:hover { color: var(--gold); }

/* Fixed side reserve tab */
#side-reserve { position: fixed; right: 0; top: 42%; z-index: 95; writing-mode: vertical-rl; background: var(--navy); color: var(--cream); font-size: 11px; letter-spacing: .3em; padding: 22px 11px; transition: background .3s; }
#side-reserve:hover { background: var(--rust); }

/* Noren (curtain) entrance overlay */
@keyframes noren-logo { 0% { opacity: 0; transform: translateY(16px); } 20% { opacity: 1; transform: none; } 62% { opacity: 1; } 88% { opacity: 0; } 100% { opacity: 0; } }
@keyframes noren-left { 0%, 52% { transform: none; } 100% { transform: translateX(-102%); } }
@keyframes noren-right { 0%, 52% { transform: none; } 100% { transform: translateX(102%); } }
@keyframes noren-wrap { 0%, 85% { opacity: 1; } 100% { opacity: 0; } }
#noren { position: fixed; inset: 0; z-index: 300; pointer-events: none; overflow: hidden; animation: noren-wrap 2.3s ease forwards; }
#noren .panel-left { position: absolute; top: 0; bottom: 0; left: 0; width: 50.5%; background: var(--navy); animation: noren-left 2.1s cubic-bezier(.7,0,.25,1) forwards; box-shadow: inset -40px 0 60px -40px rgba(0,0,0,.4); }
#noren .panel-right { position: absolute; top: 0; bottom: 0; right: 0; width: 50.5%; background: var(--navy); animation: noren-right 2.1s cubic-bezier(.7,0,.25,1) forwards; box-shadow: inset 40px 0 60px -40px rgba(0,0,0,.4); }
#noren .noren-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; animation: noren-logo 2.1s ease forwards; }

@media (prefers-reduced-motion: reduce) {
  #noren { display: none !important; }
  [data-reveal], [data-reveal-d1], [data-reveal-d2] { opacity: 1 !important; transform: none !important; }
  [data-stamp] { opacity: 1 !important; transform: none !important; }
  #hero-illust { transform: none !important; }
}

@media (max-width: 768px) {
  #side-reserve { display: none !important; }
  .v-head-vertical { writing-mode: horizontal-tb !important; height: auto !important; font-size: 30px !important; line-height: 1.9 !important; }
  .ghost { font-size: 150px !important; }
  .ghost-num { font-size: 104px !important; top: -44px !important; }
  .mq-item { font-size: 19px !important; }
  .hero-offer { height: 122px !important; font-size: 11.5px !important; }
  .footer-top-v2 { flex-direction: column !important; gap: 44px !important; }
}
