/* ============================================================
   forum — イタリアンビストロ
   Direction: Editorial Magazine × Luxury Refined
   「選んだスタイルをいかに徹底するか」

   01 Typography First   — Raleway 100 × Shippori Mincho
   02 Color Commitment   — #09090B + amber #D4911E only
   03 Motion as Language — Staggered char drop on hero
   04 Break the Grid     — 非対称・オーバーラップ・対角
   05 Texture & Depth    — SVG Grain overlay
   06 Intentional Vision — すべてが「夜の公園」に答える
   ============================================================ */

/* ── Variables ── */
:root {
  --bg:         #09090B;
  --bg-2:       #0E0D10;
  --bg-3:       #141318;

  --light:      #F2EDE4;
  --light-2:    rgba(242,237,228,.78);  /* 本文・説明文 */
  --light-3:    rgba(242,237,228,.48);  /* サブラベル・キャプション */
  --light-4:    rgba(242,237,228,.25);  /* 極小フッター等 */

  --amber:      #D4911E;
  --amber-2:    rgba(212,145,30,.14);

  --border:     rgba(242,237,228,.12);
  --border-2:   rgba(242,237,228,.22);

  --en:         'Raleway', sans-serif;
  --jp:         'Shippori Mincho', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--light);
  font-family: var(--en), var(--jp);
  font-weight: 200;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul, dl { list-style: none; }

/* ── Grain texture (Principle 05) ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ── Section num ── */
.section-num {
  display: block;
  font-family: var(--en);
  font-weight: 100;
  font-size: .6rem;
  letter-spacing: .4em;
  color: var(--amber);
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 28px;
  font-family: var(--en);
  font-weight: 200;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--light-2);
  transition: border-color .3s, color .3s, background .3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { border-color: var(--amber); color: var(--amber); }
.btn--lg { padding: 18px 40px; font-size: .75rem; }
.btn-arrow {
  font-size: .9rem;
  font-weight: 100;
  transition: transform .3s;
}
.btn:hover .btn-arrow { transform: translate(2px,-2px); }

/* ── Park Clock ── */
.park-clock {
  position: absolute;
  top: 36px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .8s 1.8s cubic-bezier(.16,1,.3,1) forwards;
}
.clock-city {
  font-family: var(--en);
  font-weight: 200;
  font-size: .55rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--light-3);
}
.clock-face {
  font-family: var(--en);
  font-weight: 100;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: .12em;
  color: var(--light);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
}
.clock-sep {
  color: var(--amber);
  opacity: .7;
  animation: sepBlink 1s step-end infinite;
}
@keyframes sepBlink {
  0%, 100% { opacity: .7; }
  50%       { opacity: .15; }
}
.clock-status {
  font-family: var(--en);
  font-weight: 200;
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
}
.clock-status.open  { color: #7EC8A0; }
.clock-status.closed { color: var(--light-3); }

/* ── Reveal (Principle 03) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }
.delay-4 { transition-delay: .6s; }

/* ── Section ── */
.section { padding: 140px 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 28px 48px;
  gap: 40px;
  transition: background .5s, padding .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9,9,11,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom-color: var(--border);
}
.site-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.logo-img {
  display: block;
  mix-blend-mode: screen;  /* 黒背景を透過、白ロゴだけ残す */
}
.site-logo .logo-img {
  height: 52px;
  width: auto;
}
.header-nav {
  display: flex;
  gap: 36px;
}
.header-nav a {
  font-family: var(--en);
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--light-3);
  transition: color .3s;
}
.header-nav a:hover { color: var(--light); }
.header-reserve {
  font-family: var(--en);
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--light-2);
  border: 1px solid var(--border);
  padding: 8px 20px;
  transition: border-color .3s, color .3s;
}
.header-reserve:hover { border-color: var(--amber); color: var(--amber); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--light);
}

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 100vw);
  height: 100dvh;
  background: var(--bg-2);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 60px 40px 48px;
  border-left: 1px solid var(--border);
  transition: right .45s cubic-bezier(.16,1,.3,1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 22px; right: 22px;
  background: none;
  border: 1px solid var(--border);
  color: var(--light-2);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, color .3s;
}
.mobile-nav-close:hover { border-color: var(--border-2); color: var(--light); }
.mobile-nav-links { display: flex; flex-direction: column; margin-top: 20px; }
.mobile-nav-link {
  font-family: var(--en);
  font-weight: 100;
  font-size: 2.4rem;
  letter-spacing: .05em;
  color: var(--light-2);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color .3s;
}
.mobile-nav-link:hover { color: var(--light); }
.mobile-nav-reserve {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--border-2);
  color: var(--light-2);
  font-family: var(--en);
  font-weight: 200;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: border-color .3s, color .3s;
}
.mobile-nav-reserve:hover { border-color: var(--amber); color: var(--amber); }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO  (Principle 04: Break the Grid)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding: 0 48px 52px;
}

.hero-glow {
  position: absolute;
  width: 800px; height: 500px;
  bottom: 0; left: 10%;
  background: radial-gradient(ellipse, rgba(212,145,30,.07) 0%, transparent 65%);
  pointer-events: none;
}

/* 縦書きメタ — 左側固定 */
.hero-meta {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-weight: 200;
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--light-3);
  animation: fadeInLeft 1.4s 1s cubic-bezier(.16,1,.3,1) both;
}
.hero-meta-sep { opacity: .3; }
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateY(-50%) rotate(180deg) translateX(-12px); }
  to   { opacity: 1; transform: translateY(-50%) rotate(180deg) translateX(0); }
}

/* メインロゴ — 左下寄せ (Principle 04) */
.hero-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
  padding-left: 80px;
}

.hero-title-wrap { overflow: hidden; }

.hero-title {
  margin: 0;
  line-height: 1;
}
.hero-logo {
  width: clamp(220px, 38vw, 520px);
  height: auto;
  opacity: 0;
  animation: charDrop 1.1s cubic-bezier(.16,1,.3,1) .3s forwards;
}
@keyframes charDrop {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* コンセプト行 */
.hero-concept-line {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp .8s 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-rule {
  display: block;
  height: 1px;
  width: 0;
  background: var(--border-2);
  animation: ruleExpand .9s 1.3s ease forwards;
}
@keyframes ruleExpand { to { width: 80px; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.hero-concept-text {
  font-family: var(--jp);
  font-weight: 400;
  font-size: clamp(.85rem, 1.4vw, 1.05rem);
  letter-spacing: .25em;
  color: var(--light-2);
}
.hero-concept-hours {
  display: none; /* mobile only */
}

/* 右下：予約 (グリッド破壊：独立したポジション) */
.hero-cta {
  position: absolute;
  right: 48px;
  bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  opacity: 0;
  animation: fadeUp .8s 1.4s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-hours {
  font-family: var(--en);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--light-3);
}

/* ── Hero 写真パネル (Break the Grid) ── */
.hero-photo-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-photo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(9,9,11,.6) 40%, rgba(9,9,11,.3) 100%);
  z-index: 1;
}
.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55) saturate(.7);
}

/* mobile-only hero bottom-right block */
.hero-bottom-right { display: none; }

/* スクロール */
.hero-scroll {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  animation: fadeInLeft 1s 1.6s ease both;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border-2), transparent);
  animation: scrollFloat 2.8s ease-in-out infinite;
}
@keyframes scrollFloat {
  0%,100% { transform: scaleY(1); opacity: .6; }
  50%      { transform: scaleY(.5); opacity: .2; }
}

/* ============================================================
   CONCEPT  (Principle 04: 非対称、オーバーラップ)
   ============================================================ */
.concept-section { padding: 160px 0; }

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 80vh;
}

/* 左：巨大な見出しが縦に伸びる */
.concept-heading-col {
  padding: 0 0 0 48px;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.concept-heading {
  font-family: var(--jp);
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 1.25;
  letter-spacing: .04em;
  color: var(--light);
  margin-top: 16px;
}

/* 右：写真 + テキスト */
.concept-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
}

/* 写真ブロック — オーバーラップテキスト */
.concept-image {
  position: relative;
  overflow: hidden;
}
.concept-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.75) saturate(.8);
}
/* legacy placeholder fallback */
.concept-ph {
  aspect-ratio: 4/3;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-label {
  font-family: var(--en);
  font-weight: 100;
  font-size: .55rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--light-3);
}

/* 写真オーバーレイ文字 (Principle 04: オーバーラップ) */
.concept-overlay-text {
  position: absolute;
  bottom: -18px;
  left: -1px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 10px 24px;
}
.concept-overlay-text p {
  font-family: var(--en);
  font-weight: 100;
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: lowercase;
  color: var(--amber);
}

/* 本文 */
.concept-body {
  padding: 60px 48px 60px 48px;
  border-top: 1px solid var(--border);
  margin-top: 18px;
}
.concept-body p {
  font-family: var(--jp);
  font-weight: 400;
  font-size: .92rem;
  color: var(--light-2);
  line-height: 2.2;
  margin-bottom: 20px;
}
.concept-body p:last-of-type { margin-bottom: 36px; }
.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-family: var(--en);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--light-3);
  border: 1px solid var(--border);
  padding: 5px 14px;
}

/* ============================================================
   MENU  (Principle 04: 非対称ヘッダー)
   ============================================================ */
.menu-section { padding: 0 0 140px; }

.menu-header {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 100px 48px 60px;
  border-bottom: 1px solid var(--border);
}
.menu-heading {
  font-family: var(--en);
  font-weight: 100;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: .08em;
  line-height: .9;
  color: var(--light);
}
.menu-heading-jp {
  font-family: var(--jp);
  font-weight: 400;
  font-size: .88rem;
  color: var(--light-2);
  line-height: 1.9;
  padding-bottom: 8px;
}

/* ── Menu Carousel (GSAP infinite strip) ── */
.menu-carousel {
  width: 100%;
  overflow: hidden;
}
.menu-carousel-track {
  display: flex;
  height: clamp(200px, 28vw, 360px);
  will-change: transform;
}
.menu-carousel-slide {
  width: calc(100vw / 3.5);
  flex-shrink: 0;
  height: 100%;
  overflow: hidden;
}
.menu-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.85) saturate(.82);
}

/* ── Menu Board: sticky vertical layout ── */
.menu-board {
  width: 100%;
}

/* カテゴリブロック 1行 */
.menu-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-top: 1px solid var(--border-2);
  min-height: 40vh;
}
.menu-block:last-child {
  border-bottom: 1px solid var(--border-2);
}

/* 左：Sticky カテゴリラベル */
.menu-label {
  position: sticky;
  top: 70px;       /* ヘッダー高さ分オフセット */
  align-self: start;
  height: fit-content;
  padding: 52px 48px 52px 0;
  border-right: 1px solid var(--border);
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-cat {
  font-family: var(--en);
  font-weight: 100;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: .04em;
  text-transform: lowercase;
  color: var(--light);
  line-height: .95;
}
.menu-from {
  font-family: var(--en);
  font-weight: 200;
  font-size: .62rem;
  letter-spacing: .25em;
  color: var(--amber);
}

/* 右：料理リスト */
.menu-items {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
}
.menu-item {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .25s;
  outline: none;
}
.menu-item:first-child .menu-item-header { padding-top: 52px; }
.menu-item:last-child  { border-bottom: none; }
.menu-item:last-child .menu-item-header  { padding-bottom: 52px; }
.menu-item:last-child.open .menu-item-header  { padding-bottom: 20px; }
.menu-item.open { background: rgba(242,237,228,.03); }

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  padding: 28px 0;
}
.menu-item-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.menu-item-toggle {
  font-family: var(--en);
  font-weight: 100;
  font-size: 1.1rem;
  color: var(--light-3);
  transition: transform .4s cubic-bezier(.16,1,.3,1), color .3s;
  line-height: 1;
  display: block;
  width: 16px;
  text-align: center;
}
.menu-item.open .menu-item-toggle {
  transform: rotate(45deg);
  color: var(--amber);
}

/* アコーディオン詳細パネル */
.menu-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16,1,.3,1), opacity .4s;
  opacity: 0;
}
.menu-item.open .menu-detail {
  max-height: 120px;
  opacity: 1;
}
.menu-item.open .menu-detail--photo {
  max-height: 220px;
}
.menu-detail--photo {
  display: flex;
  align-items: center;
  gap: 24px;
}
.d-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(.88) saturate(.82);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.d-en {
  font-family: var(--en);
  font-weight: 200;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  padding-bottom: 24px;
}
.menu-detail--photo .d-en { padding-bottom: 0; margin-bottom: 24px; }
.menu-item:last-child.open .d-en { padding-bottom: 36px; }
.menu-item:last-child.open .menu-detail--photo .d-en { padding-bottom: 0; margin-bottom: 36px; }

.d-name {
  font-family: var(--jp);
  font-size: 1rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1.5;
}
.d-desc {
  font-family: var(--jp);
  font-size: .75rem;
  font-weight: 400;
  color: var(--light-3);
  display: block;
  margin-top: 4px;
}
.d-price {
  font-family: var(--en);
  font-weight: 200;
  font-size: .9rem;
  letter-spacing: .06em;
  color: var(--light-2);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  font-family: var(--jp);
  font-weight: 400;
  font-size: .72rem;
  color: var(--light-4);
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   INFO  (Principle 04: 巨大数字が空間を支配)
   ============================================================ */
.info-section { padding: 0; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* 左：写真 + 23 オーバーレイ */
.info-big {
  position: relative;
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.info-photo-wrap {
  position: absolute;
  inset: 0;
}
.info-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.55) saturate(.85);
}
.info-big-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 48px;
  background: linear-gradient(to top, rgba(9,9,11,.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.info-big-num {
  font-family: var(--en);
  font-weight: 100;
  font-size: clamp(6rem, 16vw, 14rem);
  line-height: .85;
  letter-spacing: -.02em;
  color: var(--light);
  display: block;
  user-select: none;
}
.info-big-label {
  font-family: var(--en);
  font-weight: 200;
  font-size: .62rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  padding-top: 12px;
}

/* 右：コンテンツ */
.info-content {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-heading {
  font-family: var(--jp);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--light);
  margin-bottom: 48px;
}

.info-dl { margin-bottom: 48px; }
.info-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:first-child { border-top: 1px solid var(--border); }
dt {
  font-family: var(--en);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 3px;
}
dd {
  font-family: var(--jp);
  font-weight: 400;
  font-size: .88rem;
  color: var(--light-2);
  line-height: 1.8;
}
dd small { font-size: .78rem; opacity: .6; }

/* ============================================================
   ACCESS
   ============================================================ */
.access-section { padding: 140px 0; }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 48px;
  align-items: start;
}
.access-heading {
  font-family: var(--jp);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--light);
  margin-bottom: 40px;
}
.access-addr {
  font-family: var(--jp);
  font-weight: 400;
  font-size: .88rem;
  color: var(--light-2);
  line-height: 2;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 1px solid var(--border-2);
}
.access-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.access-lines p {
  font-family: var(--jp);
  font-weight: 400;
  font-size: .83rem;
  color: var(--light-2);
  padding-left: 16px;
  position: relative;
}
.access-lines p::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 4px;
  height: 1px;
  background: var(--amber);
}
.access-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.72) saturate(.75);
  border: 1px solid var(--border);
}
.map-ph {
  aspect-ratio: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ============================================================
   MARQUEE  (Principle 03: 動きに意味)
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track span {
  font-family: var(--en);
  font-weight: 100;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--light-3);
  white-space: nowrap;
}
.marquee-track .mx { opacity: .3; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESERVE CTA
   ============================================================ */
.reserve-cta {
  position: relative;
  padding: 180px 48px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,145,30,.055) 0%, transparent 65%);
  pointer-events: none;
}
.reserve-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
}
.cta-eyebrow {
  font-family: var(--en);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
}
.cta-title {
  font-family: var(--jp);
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 1.1;
  letter-spacing: .04em;
  color: var(--light);
  margin-bottom: 60px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 48px;
}
.footer-logo {
  margin-right: auto;
}
.footer-logo .logo-img {
  height: 72px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-family: var(--en);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--light-3);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--light-2); }
.footer-copy {
  font-family: var(--jp);
  font-weight: 400;
  font-size: .7rem;
  color: var(--light-4);
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .header-nav, .header-reserve { display: none; }
  .menu-toggle { display: flex; }

  .concept-grid { grid-template-columns: 1fr; }
  .concept-heading-col {
    padding: 60px 40px 40px;
    position: static;
  }
  .concept-content-col { border-left: none; border-top: 1px solid var(--border); }
  .concept-body { padding: 48px 40px; }

  .hero-photo-panel { width: 30%; }
  .park-clock { right: 40px; top: 28px; }

  .menu-header { grid-template-columns: 60px 1fr; padding: 80px 40px 48px; }
  .menu-heading-jp { display: none; }
  .menu-block { grid-template-columns: 180px 1fr; }
  .menu-label { padding: 36px 24px 36px 40px; top: 66px; }
  .menu-cat { font-size: 2.4rem; }
  .menu-items { padding: 0 28px; }
  .menu-note { padding: 24px 40px; }

  .info-grid { grid-template-columns: 1fr; min-height: auto; }
  .info-big { border-right: none; border-bottom: 1px solid var(--border); min-height: 200px; }
  .info-big-num { font-size: clamp(8rem, 22vw, 14rem); }
  .info-content { padding: 60px 40px; }

  .access-grid { grid-template-columns: 1fr; padding: 0 40px; }
  .map-ph { aspect-ratio: 16/9; }

  .reserve-cta { padding: 120px 40px; }
  .hero { padding: 0 40px 48px; }
  .hero-body { padding-left: 40px; }
  .hero-meta { display: none; }
  .footer-inner { padding: 36px 40px; }
}

@media (max-width: 640px) {

  /* ── Hero ── */
  .hero { padding: 0; }

  /* 背景写真：全面 */
  .hero-photo-panel {
    width: 100%;
    opacity: .45;
  }
  .hero-photo-panel::before {
    background: linear-gradient(to bottom,
      rgba(9,9,11,.6) 0%,
      rgba(9,9,11,.2) 45%,
      rgba(9,9,11,.7) 100%);
  }

  /* ロゴ：transform不使用でセンタリング（mix-blend-mode保持のため） */
  .hero-body {
    position: absolute;
    top: 70px;   /* ナビ下から */
    left: 0;
    right: 0;
    bottom: 0;
    width: 72vw;
    height: fit-content;
    margin: auto; /* top/bottom/left/right 指定済みでmargin:autoが効く */
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  .hero-concept-line { display: none; }

  /* 予約ボタン：左下 */
  .hero-cta {
    position: absolute;
    left: 24px;
    right: auto;
    bottom: 44px;
    align-items: flex-start;
    gap: 0;
    opacity: 1;
    animation: none;
  }
  .hero-hours { display: none; }

  /* 夜の公園 + 営業時間：右下（下揃え） */
  .hero-bottom-right {
    position: absolute;
    right: 24px;
    bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
  .hero-br-concept {
    font-family: var(--jp);
    font-weight: 400;
    font-size: .85rem;
    letter-spacing: .2em;
    color: var(--light-2);
  }
  .hero-br-hours {
    font-family: var(--en);
    font-weight: 200;
    font-size: .58rem;
    letter-spacing: .22em;
    color: var(--light-3);
  }

  .hero-scroll { display: none; }
  /* park-clock：固定ナビ(約70px)の下に出す */
  .park-clock { right: 24px; top: 80px; }

  /* ── Menu ── */
  .menu-header { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .menu-block { grid-template-columns: 1fr; }
  .menu-label {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--border-2);
    padding: 36px 24px 24px;
  }
  .menu-items { padding: 0 24px; }
  .menu-item:first-child .menu-item-header { padding-top: 28px; }
  .menu-item:last-child  .menu-item-header { padding-bottom: 36px; }
  .menu-item:last-child.open .menu-item-header { padding-bottom: 20px; }
  .menu-note { padding: 24px; }

  /* ── Concept ── */
  .concept-heading-col { padding: 60px 24px 32px; }
  .concept-body { padding: 40px 24px; }

  /* ── Info ── */
  .info-content { padding: 48px 24px; }

  /* ── Access ── */
  .access-grid { padding: 0 24px; }

  /* ── Reserve / Footer ── */
  .reserve-cta { padding: 100px 24px; }
  .footer-inner { padding: 32px 24px; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
}
