
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--ink-1);
  font-family: var(--font-serif);          /* ★地の書体は明朝 */
  font-size: var(--fs-body);
  line-height: var(--leading-body);
  font-feature-settings: 'palt' 1;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

/* 見出しはすべて明朝・字間広め。角丸は 0（tokens.css の方針） */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 500;
  letter-spacing: var(--tracking-heading);
  line-height: 1.6;
}

p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) ease, background-color var(--dur-fast) ease, opacity var(--dur-fast) ease;
}
a:hover  { color: var(--accent); }
a:active { color: var(--accent-strong); }

/* ── フォーカスリング ────────────────────────────
 */
:focus-visible {
  outline: 4px solid var(--focus-dark);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--focus-light);
}

::selection { background: rgba(63, 91, 109, .22); }

/* 本文中のリンクは下線を残す（色だけに頼らない） */
.rich a, .note a, .foot__addr a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
}

/* 数字は等幅に（価格・席数） */
.num, .price, .tel { font-variant-numeric: tabular-nums; }

/* ── スキップリンク ───────────────────────────── */
.skip {
  position: absolute;
  left: 8px;
  top: -100px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--on-dark);
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip:focus { top: 8px; color: var(--on-dark); }

/* ── 共通の器 ─────────────────────────────────── */
.wrap {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sec    { padding-block: var(--section-gap-md); }
.sec--sm { padding-block: var(--section-gap-sm); }
.sec--lg { padding-block: var(--section-gap-lg); }
.sec--alt { background: var(--surface-alt); }

/* 暗い面。★背景と文字は必ず対で指定する */
.sec--dark {
  background: var(--surface-inverse);
  color: var(--on-dark-body);
}
.sec--dark h2, .sec--dark h3 { color: var(--on-dark-head); }
.sec--dark a:hover  { color: var(--accent-light); }
.sec--dark a:active { color: var(--accent-lighter); }

/* ── 見出しの組 ───────────────────────────────── */
.eyebrow {                       /* 欧文ラベル。★12px を使ってよい限定用途 */
  margin: 0 0 12px;
  font-family: var(--font-latin);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--text-muted);
}
.sec--dark .eyebrow { color: var(--accent-light); }

.h2 { font-size: clamp(26px, 3.4vw, 40px); }
.h3 { font-size: clamp(20px, 2.2vw, 26px); }

.lead {
  max-width: 46em;
  font-size: var(--fs-lead);
  line-height: 2.0;
}

.note {                          /* 注記。★12px を使ってよい限定用途 */
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  line-height: 1.9;
  color: var(--text-muted);
}
.sec--dark .note { color: var(--on-dark-body); }

.cap {                           /* 写真のキャプション。★12px の限定用途 */
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* 補助テキスト（14px） */
.small {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  line-height: 1.95;
  color: var(--text-muted);
}

/* ── 透かし漢字 ───────────────────────────────
 */
.watermark {
  position: absolute;
  z-index: 0;
  color: var(--watermark);
  opacity: .5;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
}

/* ── 縦組み ─────────────────────────────────────
 */
.vhead {
  writing-mode: vertical-rl;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.9;
  margin: 0;
  flex: none;
  block-size: fit-content;          /* 縦組みでは block-size が「高さ」ではなく「幅」 */
}
.vhead--h2 { font-size: clamp(24px, 3vw, 36px); }
.vhead--lg { font-size: clamp(26px, 3.4vw, 40px); }

/* 縦組みの見出しを持つセクションの器。見出しは右、本文は左に置く */
.vsec { display: flex; gap: clamp(24px, 4vw, 56px); align-items: flex-start; }
.vsec > .vhead { order: 2; }
.vsec__body { flex: 1 1 auto; min-width: 0; }

/* 見出しを左に置きたいとき */
.vsec--left > .vhead { order: 0; }

/* ── 動きを減らす設定 ─────────────────────────
 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  /* ⚠ 動きを止める人にも要素は見える。motion.js が still のとき gsap.set を当てずに抜ける */
  [data-hero-mask], [data-hero-fade], [data-mask], [data-fade] {
    opacity: 1 !important;
    visibility: visible !important;
    clip-path: none !important;
    transform: none !important;
  }
}

/* ── 印刷 ─────────────────────────────────────── */
@media print {
  .hdr, .drawer, .mcta, .skip { display: none !important; }
  body { background: #fff; color: #000; }
}
