/* =========================================================
   酒処 月 — 公開用スタイルシート
   カラー / タイポグラフィ / レイアウト
   ========================================================= */

:root {
  --ink: #0b121c;
  --ink-deep: #080c13;
  --ink-soft: #0c1420;
  --gold: #c9ad6c;
  --gold-light: #d6c590;
  --gold-bright: #e7d9b3;
  --cream: #ece4d2;
  --cream-bright: #f4eedf;
  --text: #cdc4b1;
  --text-muted: #a89f8c;
  --text-dim: #8a8270;
  --washi: #e8dcc6;
  --serif: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  --sans: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, sans-serif;
  --wrap: clamp(22px, 5vw, 76px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }

a { color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; }

img { max-width: 100%; }

/* ---------- 和紙テクスチャ オーバーレイ ---------- */
.washi-grain,
.washi-mottle {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  mix-blend-mode: soft-light;
}
.washi-grain {
  opacity: .42;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='260'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
}
.washi-mottle {
  opacity: .5;
  background-size: cover;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.013' numOctaves='2' seed='7' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23m)' opacity='0.6'/></svg>");
}

/* ---------- リビール アニメーション ---------- */
@keyframes tsukiFade {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.reveal { opacity: 0; transform: translateY(30px); filter: blur(6px); will-change: opacity, transform, filter; }
.reveal.is-in { animation: tsukiFade 1.6s cubic-bezier(.16, .82, .29, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; filter: none; animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 汎用 ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
}
.kicker.center { justify-content: center; }
.kicker .num { font-family: var(--serif); font-size: 14px; letter-spacing: .2em; color: var(--gold); }
.kicker .rule { width: 28px; height: 1px; background: rgba(201, 173, 108, .5); }
.kicker .en { font-size: 11px; letter-spacing: .34em; color: #7e7663; }

.section { position: relative; z-index: 3; padding: clamp(100px, 16vh, 200px) var(--wrap); }
.section .inner { max-width: 1220px; margin: 0 auto; }

.lead { font-family: var(--serif); color: #cdb985; letter-spacing: .1em; margin: 0 0 28px; font-size: clamp(14px, 1.5vw, 18px); }
.body-text { font-size: 15px; line-height: 2.5; color: var(--text-muted); margin: 0; letter-spacing: .04em; text-wrap: pretty; }

.cta-line { transition: color .35s ease; text-decoration: none; }
.cta-line:hover { color: var(--gold-bright) !important; }

.map-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: .1em; color: #cdb985;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 173, 108, .4); padding-bottom: 1px;
}

/* ---------- 写真ラッパ / プレースホルダ ---------- */
.photo-wrap { overflow: hidden; border-radius: 2px; position: relative; }
.photo { transition: transform 1.1s cubic-bezier(.19, .9, .32, 1); width: 100%; display: block; object-fit: cover; }
.photo-wrap:hover .photo { transform: scale(1.045); }

.photo-placeholder {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(201,173,108,.04) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #131b29, #0d1421);
  border: 1px solid rgba(201, 173, 108, .14);
  color: #6b6552; font-size: 12.5px; letter-spacing: .2em;
  font-family: var(--serif);
}

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 28px var(--wrap);
  background: rgba(11, 18, 28, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(201, 173, 108, 0);
  transition: background .55s ease, backdrop-filter .55s ease, border-color .55s ease, padding .5s ease;
}
.site-header.scrolled {
  background: rgba(9, 13, 21, .84);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(201, 173, 108, .16);
  padding-top: 17px; padding-bottom: 17px;
}
.header-inner {
  max-width: 1340px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 14px; }
.brand .name { font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: .26em; color: var(--cream); }

.desktop-nav { display: flex; align-items: center; gap: 32px; font-size: 13.5px; letter-spacing: .1em; color: #b3aa97; }
.nav-link { position: relative; color: inherit; text-decoration: none; transition: color .3s ease; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.19, .9, .32, 1);
}
.nav-link:hover { color: var(--gold-bright); }
.nav-link:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px;
  color: var(--gold-light); text-decoration: none;
  padding-left: 24px; border-left: 1px solid rgba(201, 173, 108, .28);
}
.header-cta .label { font-size: 9.5px; letter-spacing: .22em; color: var(--text-dim); }
.header-cta .tel { font-family: var(--serif); font-size: 17px; letter-spacing: .05em; }

.burger {
  display: none; flex-direction: column; gap: 6px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(201, 173, 108, .4); border-radius: 2px; cursor: pointer;
}
.burger .line { width: 20px; height: 1.5px; background: #cdc4b1; display: block; transition: transform .35s ease, opacity .25s ease; }
.menu-open .burger .line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-open .burger .line:nth-child(2) { opacity: 0; }
.menu-open .burger .line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* モバイルドロワー */
.drawer {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(8, 12, 19, .97); backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity .45s ease;
}
.menu-open .drawer { opacity: 1; pointer-events: auto; }
.drawer-inner { padding: 120px clamp(28px, 8vw, 48px) 40px; display: flex; flex-direction: column; }
.drawer a.d-link {
  font-family: var(--serif); font-size: 22px; letter-spacing: .08em; color: var(--cream);
  text-decoration: none; padding: 18px 0; border-bottom: 1px solid rgba(201, 173, 108, .14);
}
.drawer .d-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 8px; color: var(--gold-light); text-decoration: none; }
.drawer .d-cta .label { font-size: 10.5px; letter-spacing: .24em; color: var(--text-dim); }
.drawer .d-cta .tel { font-family: var(--serif); font-size: 29px; letter-spacing: .05em; }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden; background: #0a0f17;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
}
/* 右側メインのオーバーレイ：左はクリア、右に向かって濃くなる */
.hero-overlay-x { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,12,20,0) 0%, rgba(8,12,20,0) 30%, rgba(8,12,20,.42) 58%, rgba(8,12,20,.78) 80%, rgba(8,12,20,.97) 100%); }
/* 縦方向は下端のみページ色へなじませる（上部・全体は暗くしない） */
.hero-overlay-y { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,12,20,0) 0%, rgba(8,12,20,0) 52%, rgba(8,11,17,.4) 82%, var(--ink) 100%); }
.hero-side {
  position: absolute; z-index: 5; left: var(--wrap); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.hero-side span.txt { font-family: var(--serif); writing-mode: vertical-rl; font-size: 12.5px; letter-spacing: .5em; color: #bcb39e; }
.hero-side span.tail { width: 1px; height: 78px; background: linear-gradient(180deg, rgba(201,173,108,.65), rgba(201,173,108,0)); }
.hero-content { position: relative; z-index: 5; width: 100%; max-width: 1340px; margin: 0 auto; padding: 0 var(--wrap) clamp(64px, 12vh, 134px); }
.hero-content .copy { max-width: 840px; margin-left: clamp(0px, 6vw, 124px); }
.hero h1 {
  font-size: clamp(38px, 5.8vw, 80px); line-height: 1.42; letter-spacing: .08em;
  color: var(--cream-bright); text-shadow: 0 4px 48px rgba(0,0,0,.7), 0 2px 16px rgba(0,0,0,.55);
}
.hero p {
  font-size: clamp(14px, 1.4vw, 17px); line-height: 2.3; color: #d3cab8;
  margin: 34px 0 0; max-width: 540px; letter-spacing: .08em; text-shadow: 0 2px 18px rgba(0,0,0,.6);
}

/* =========================================================
   セクション背景
   ========================================================= */
.sec-about  { background: radial-gradient(95% 60% at 78% -5%, rgba(201,173,108,.06), transparent 55%), radial-gradient(120% 85% at 18% 35%, rgba(52,70,104,.11), transparent 60%), linear-gradient(180deg, #0c1422, #0a0f19); }
.sec-menu   { background: radial-gradient(85% 50% at 50% 0%, rgba(58,76,110,.09), transparent 55%), linear-gradient(180deg, #0a0f18, #080c13); border-top: 1px solid rgba(201,173,108,.08); }
.sec-drink  { background: radial-gradient(95% 60% at 22% -5%, rgba(201,173,108,.06), transparent 55%), radial-gradient(120% 85% at 82% 38%, rgba(52,70,104,.11), transparent 60%), linear-gradient(180deg, #0b1120, #0a0f19); }
.sec-interior { background: radial-gradient(90% 55% at 50% -5%, rgba(52,70,104,.12), transparent 58%), radial-gradient(70% 50% at 88% 75%, rgba(201,173,108,.045), transparent 60%), linear-gradient(180deg, #0c1422, #0a0f19); }
.sec-info   { background: radial-gradient(85% 50% at 50% 0%, rgba(58,76,110,.09), transparent 55%), linear-gradient(180deg, #0a0f18, #080c13); border-top: 1px solid rgba(201,173,108,.08); }
.sec-access { background: radial-gradient(90% 55% at 72% -5%, rgba(52,70,104,.11), transparent 58%), linear-gradient(180deg, #0b1120, #0a0f19); padding: clamp(88px, 13vh, 160px) var(--wrap); }
.sec-cta    { position: relative; background: radial-gradient(60% 50% at 50% 8%, rgba(201,173,108,.07), transparent 55%), linear-gradient(180deg, #0a0f18, #080c13); overflow: hidden; text-align: center; border-top: 1px solid rgba(201,173,108,.08); padding: clamp(110px, 18vh, 210px) var(--wrap); }

/* 2カラム */
.two-col { display: grid; gap: clamp(48px, 7vw, 112px); align-items: center; }
.sec-about .two-col   { grid-template-columns: 1fr 1.08fr; max-width: 1220px; margin: 0 auto; }
.sec-drink .two-col   { grid-template-columns: 1fr 1fr; max-width: 1220px; margin: 0 auto; gap: clamp(48px, 7vw, 104px); }
.sec-access .two-col  { grid-template-columns: 0.82fr 1.18fr; max-width: 1220px; margin: 0 auto; gap: clamp(40px, 6vw, 84px); }

/* About 画像コラージュ */
.about-photos { display: grid; grid-template-columns: 1.04fr 0.78fr; gap: clamp(14px, 1.6vw, 20px); align-items: start; }
.about-photos .raise { transform: translateY(clamp(48px, 9vw, 104px)); }
.about-photos .ph-tall { height: clamp(300px, 46vh, 440px); }
.about-photos .ph-taller { height: clamp(360px, 56vh, 520px); }

.section-head-center { text-align: center; margin-bottom: clamp(56px, 9vh, 96px); }
.section-head-center h2 { font-size: clamp(28px, 3.8vw, 46px); letter-spacing: .16em; margin: 0 0 26px; color: var(--cream); }
.section-head-center .note { font-size: 13.5px; line-height: 2.2; color: var(--text-dim); margin: 0 auto; max-width: 600px; letter-spacing: .04em; text-wrap: pretty; }
.h2-block { font-size: clamp(25px, 3.2vw, 40px); line-height: 1.78; letter-spacing: .08em; margin: 0 0 38px; color: var(--cream); }

/* =========================================================
   お品書き
   ========================================================= */
.menu-list { display: flex; flex-direction: column; gap: clamp(52px, 9vh, 96px); }
.menu-row { display: grid; grid-template-columns: minmax(240px, 0.76fr) 1.24fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.menu-photo { height: clamp(300px, 42vh, 440px); }
.menu-photo .grad { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 52%, rgba(8,11,17,.62) 100%); }
.menu-photo .cat-tag { position: absolute; left: clamp(16px, 2vw, 24px); bottom: clamp(16px, 2vw, 24px); display: flex; align-items: center; gap: 16px; pointer-events: none; }
.menu-photo .badge {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(201,173,108,.7);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 19px; color: var(--gold-light); letter-spacing: .02em;
}
.menu-photo .cat-name { font-family: var(--serif); font-size: clamp(17px, 1.8vw, 21px); color: var(--cream-bright); letter-spacing: .26em; text-shadow: 0 1px 12px rgba(0,0,0,.75); }

.tanzaku-area { position: relative; }
.tanzaku-rail { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, rgba(201,173,108,.55), rgba(201,173,108,.28) 72%, rgba(201,173,108,0)); }
.tanzaku-row { display: flex; flex-wrap: wrap; align-items: flex-start; gap: clamp(14px, 1.7vw, 26px); }
.tanzaku { display: flex; flex-direction: column; align-items: center; }
.tanzaku .string { width: 1px; height: 18px; background: rgba(201,173,108,.5); }
.strip {
  background: #ece2cb; border: 1px solid rgba(150,110,55,.16); border-radius: 1px;
  padding: 16px 10px 22px; box-shadow: 0 3px 14px rgba(0,0,0,.28);
  font-family: var(--serif); font-size: clamp(13px, 1.3vw, 15.5px); color: #342e26;
  letter-spacing: .1em; line-height: 2;
  writing-mode: vertical-rl; text-orientation: upright;
  transition: transform .55s cubic-bezier(.19,.9,.32,1), box-shadow .55s ease;
}
.tanzaku:hover .strip { transform: translateY(-4px); box-shadow: 0 11px 26px rgba(0,0,0,.34); }
.menu-disclaimer { text-align: center; font-size: 12px; color: #5f6677; margin: clamp(52px, 8vh, 76px) 0 0; letter-spacing: .18em; }

/* =========================================================
   お飲み物
   ========================================================= */
.drink-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.drink-photos .raise { transform: translateY(28px); }
.drink-photos .ph { height: clamp(250px, 38vh, 380px); }
.drink-groups { margin: 38px 0 0; padding: 32px 0 0; border-top: 1px solid rgba(201,173,108,.18); display: flex; flex-direction: column; gap: 26px; }
.drink-group .g-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.drink-group .g-label { font-family: var(--serif); font-size: 13px; letter-spacing: .22em; color: #cdb985; }
.drink-group .g-rule { flex: 1; height: 1px; background: rgba(201,173,108,.14); }
.drink-items { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 56px); }
.drink-items li { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 11px 2px; border-bottom: 1px solid rgba(201,173,108,.1); }
.drink-items .d-name { font-family: var(--serif); font-size: clamp(15px, 1.6vw, 18px); color: #e3dac7; letter-spacing: .12em; }
.drink-items .d-en { font-size: 9.5px; letter-spacing: .24em; color: #897f6a; transform: translateY(-2px); }

/* =========================================================
   初めての方へ（和紙ライト）
   ========================================================= */
.sec-welcome {
  position: relative; z-index: 3; overflow: hidden; padding: clamp(100px, 16vh, 200px) var(--wrap);
  background:
    radial-gradient(130% 90% at 8% -5%, rgba(255,252,244,.7), transparent 50%),
    radial-gradient(110% 80% at 100% 105%, rgba(176,138,62,.12), transparent 52%),
    radial-gradient(90% 70% at 60% 50%, rgba(231,219,196,.5), transparent 70%),
    var(--washi);
  color: #2c2620;
}
.welcome-washi {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; mix-blend-mode: multiply;
  opacity: .5; background-size: cover;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='640' height='640'><filter id='wm'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='3' seed='31' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.55  0 0 0 0 0.46  0 0 0 0 0.30  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23wm)'/></svg>");
}
.sec-welcome .inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.welcome-head { text-align: center; max-width: 720px; margin: 0 auto clamp(56px, 8vh, 84px); }
.welcome-head .symbol { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 30px; }
.welcome-head .symbol .ln-l { width: clamp(40px, 6vw, 72px); height: 1px; background: linear-gradient(90deg, transparent, rgba(176,138,62,.6)); }
.welcome-head .symbol .ln-r { width: clamp(40px, 6vw, 72px); height: 1px; background: linear-gradient(90deg, rgba(176,138,62,.6), transparent); }
.welcome-head .symbol .dot { width: 7px; height: 7px; border-radius: 50%; background: #caa24e; }
.welcome-head h2 { font-size: clamp(26px, 3.6vw, 44px); letter-spacing: .08em; margin: 0 0 30px; color: #221d18; }
.welcome-head p { font-size: 15px; line-height: 2.5; color: #5c5547; margin: 0; letter-spacing: .04em; text-wrap: pretty; }

.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.2vw, 28px); }
.welcome-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f7f0de, #eee3cc);
  border: 1px solid rgba(160,127,60,.2); border-radius: 16px;
  padding: clamp(32px, 3.6vw, 46px); box-shadow: 0 20px 46px rgba(120,90,40,.1);
}
.welcome-card .c-head { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(26px, 3vw, 38px); }
.welcome-card .c-head .moon { width: 22px; height: 22px; }
.welcome-card .c-head .ln { width: 34px; height: 1px; background: rgba(176,138,62,.55); }
.welcome-card h3 { font-weight: 500; font-size: clamp(20px, 2.1vw, 23px); margin: 0 0 14px; color: #221d18; letter-spacing: .06em; }
.welcome-card p { max-width: 62%; font-size: 14px; line-height: 2.05; color: #665e4f; margin: 0; letter-spacing: .03em; }
.welcome-card .ph-thin { position: absolute; right: clamp(24px, 3vw, 42px); bottom: clamp(22px, 3vw, 38px); font-size: clamp(48px, 5vw, 62px); color: #c2a056; opacity: .8; }

/* =========================================================
   店内のご案内
   ========================================================= */
.room-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.room-grid .ph { height: clamp(300px, 46vh, 440px); }
.room-grid .room-label { position: absolute; left: 20px; bottom: 18px; font-family: var(--serif); font-size: 13.5px; letter-spacing: .22em; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.75); }
.room-feature { grid-column: span 2; padding: 34px clamp(28px, 3vw, 40px); border: 1px solid rgba(201,173,108,.18); border-radius: 2px; display: flex; align-items: center; background: var(--ink-soft); }
.room-feature ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px 44px; width: 100%; }
.room-feature li { display: flex; align-items: baseline; gap: 13px; font-size: 13.5px; color: #b3aa97; letter-spacing: .04em; white-space: nowrap; }
.room-feature li .mark { color: var(--gold); font-size: 9px; }

/* =========================================================
   店舗情報
   ========================================================= */
.sec-info .inner { max-width: 900px; }
.info-list { margin: 0; border-top: 1px solid rgba(201,173,108,.16); }
.info-list .row { display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: baseline; padding: 20px 8px; border-bottom: 1px solid rgba(201,173,108,.1); }
.info-list dt { font-family: var(--serif); font-size: 13.5px; letter-spacing: .2em; color: var(--text-dim); margin: 0; }
.info-list dd { font-size: 14.5px; color: #cfc7b6; line-height: 1.9; margin: 0; letter-spacing: .04em; }
.info-note { text-align: center; font-size: 13.5px; line-height: 2.1; color: var(--text-dim); margin: 34px auto 0; max-width: 560px; letter-spacing: .03em; }

/* =========================================================
   アクセス
   ========================================================= */
.access-rows { margin: 0; border-top: 1px solid rgba(201,173,108,.16); }
.access-rows .row { display: flex; align-items: baseline; gap: 18px; padding: 15px 2px; border-bottom: 1px solid rgba(201,173,108,.1); }
.access-rows .k { flex: none; width: 42px; font-family: var(--serif); font-size: 14px; letter-spacing: .16em; color: #cdb985; }
.access-rows .v { font-size: 14px; color: #cfc7b6; line-height: 1.9; letter-spacing: .04em; }
.map-frame { border-radius: 2px; overflow: hidden; border: 1px solid rgba(201,173,108,.18); }
.map-frame iframe { width: 100%; height: clamp(300px, 44vh, 440px); border: 0; display: block; filter: grayscale(.3) contrast(1.04) brightness(.92); }

/* =========================================================
   最終CTA
   ========================================================= */
.cta-moon { position: absolute; top: clamp(48px, 9vh, 90px); left: 50%; transform: translateX(-50%); width: 96px; height: 96px; border-radius: 50%; background: radial-gradient(circle at 42% 38%, #efe6cd, #d9c088 60%, #bfa463 92%); box-shadow: 0 0 60px 6px rgba(217,193,134,.12); opacity: .85; }
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding-top: clamp(96px, 16vh, 168px); }
.cta-inner h2 { font-size: clamp(32px, 4.8vw, 58px); letter-spacing: .12em; margin: 0 0 32px; color: var(--cream-bright); }
.cta-inner p { font-size: 15px; line-height: 2.4; color: var(--text-muted); margin: 0 0 56px; letter-spacing: .04em; text-wrap: pretty; }
.cta-tel { display: inline-flex; flex-direction: column; align-items: center; gap: 22px; text-decoration: none; color: var(--cream); }
.cta-tel .label { font-size: 10.5px; letter-spacing: .38em; color: var(--text-dim); }
.cta-tel .tel-row { display: flex; align-items: center; gap: 26px; }
.cta-tel .num { font-family: var(--serif); font-size: clamp(32px, 5.4vw, 52px); letter-spacing: .08em; color: var(--gold-bright); }
.cta-tel .ln-l { width: clamp(28px, 7vw, 72px); height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.cta-tel .ln-r { width: clamp(28px, 7vw, 72px); height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* =========================================================
   フッター
   ========================================================= */
.site-footer { position: relative; z-index: 3; background: #070b11; padding: clamp(52px, 8vh, 76px) var(--wrap); border-top: 1px solid rgba(201,173,108,.12); }
.footer-inner { max-width: 1220px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand .name { font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: .24em; color: var(--cream); }
.footer-addr { font-size: 13px; line-height: 2.1; color: #7e7a6c; margin: 0; letter-spacing: .04em; font-style: normal; }
.footer-addr a { color: var(--gold); text-decoration: none; letter-spacing: .06em; }
.copyright { font-size: 11px; color: #535a6b; margin: 0; letter-spacing: .1em; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 880px) {
  .desktop-nav { display: none !important; }
  .burger { display: flex !important; }
  .two-col { grid-template-columns: 1fr !important; }
  .hero-side { display: none !important; }
  .room-grid { grid-template-columns: 1fr 1fr !important; }
  .room-feature { grid-column: span 2 !important; }
  .welcome-grid { grid-template-columns: 1fr !important; }
  .menu-row { grid-template-columns: minmax(0, 1fr) !important; }
  .tanzaku-area { min-width: 0 !important; }
  /* 短冊は全7アイテムを1行に収める。余白・paddingを詰めてはみ出し防止 */
  .tanzaku-row { display: grid !important; grid-template-columns: repeat(7, minmax(0, 1fr)) !important; justify-items: center !important; gap: 6px !important; }
  .tanzaku { width: 100% !important; }
  .strip { padding: 12px 4px 14px !important; letter-spacing: .04em !important; }
  .welcome-card p { max-width: 100%; }
  /* スマホでは右側オーバーレイを弱める */
  .hero-overlay-x { background: linear-gradient(90deg, rgba(8,12,20,0) 0%, rgba(8,12,20,.05) 55%, rgba(8,12,20,.2) 82%, rgba(8,12,20,.42) 100%) !important; }
}
@media (max-width: 540px) {
  .room-grid { grid-template-columns: 1fr !important; }
  .room-feature { grid-column: auto !important; }
  .hero-img { object-position: 6% 40% !important; }
  .drink-items { grid-template-columns: 1fr; }
  .info-list .row { grid-template-columns: 92px 1fr; gap: 16px; }
  /* 狭い画面でも短冊7アイテムを1行に維持 */
  .tanzaku-row { gap: 4px !important; }
  .strip { padding: 10px 3px 12px !important; font-size: 12px !important; letter-spacing: .02em !important; }
}
