@charset "utf-8";
/* ============================================================
   酒場スタンド ウオマル — 写経元 https://www.umino-hotel.com/（葉山うみのホテル）
   計測: _bench/source/measure.json（design-capture 実測 2026-08-12）

   写経元から取った骨格:
     ・白地 ＋ 縦の細いグリッド線（画面を4分割する薄い罫）
     ・左に「わずかに回転して重ねた写真カード」、右に大きなセリフ体の英字見出し
     ・見出しの脇に斜めの細線
     ・画面端に縦組みラベル（Access / Language など）
     ・本文 16px / 行間 24px、小さな説明文 14px / 行間 26px / 字送り 0.7px
     ・差し色は1色だけ、ごく少量（写経元 #7BCCCF ＝2箇所のみ）

   この店に置き換えたところ:
     ・差し色は炙りの火の色（#C4552E）。ホテルの水色をそのまま使うと魚と酒の店に合わない
     ・地は純白でなく、炎と木の温度に寄せた #FBFAF7

   ── トンマナの作り直し（2026-08-12）──────────────────────
   FV を夜の外観に変えたところ、**サイトだけが写経元（葉山のホテル）のままで浮いた**。
   FV の色は タングステンの黄・白暖簾・木・深い影・赤い OPEN 看板。
   対して地は #FBFAF7 の準白、罫は灰色で、明るい昼のギャラリーの温度だった。

   骨格（縦罫・重ね写真・斜線・縦組みラベル）は触らず、**色の温度と深さだけ**を動かす:
     ・地を準白 → 生成り（#F4EEE3）。灰色成分を抜いて黄側へ
     ・墨・罫・補足文も灰色 → 焦茶側へ。灰色を1つも残さない
     ・**夜の面（--sumi）を新設**し、名物とフッターに敷く。FV の夜がページに続く
     ・浮かせた面（引用・入力欄）の #fff をやめる。生成りの地に純白は穴に見える
   差し色 #B84A24 は変えない。OPEN 看板の赤とそのまま合い、#fff を載せて AA を満たす。
   ============================================================ */

:root {
  --ink:      #1A140F;   /* 本文。黒でなく墨（黄に寄せた濃茶） */
  --ink-mid:  #6B5D4E;   /* 補足文。本文の大半がこの色なので AA 必須（対 --paper 5.5:1） */
  --ink-thin: #A5947E;   /* **罫線専用**。文字には使わない（文字に使うと AA を割る） */
  --paper:    #F4EEE3;   /* 地。生成り */
  --paper-2:  #EAE1D2;   /* 沈めた面 */
  --paper-hi: #FCF9F3;   /* 浮かせた面（引用・入力欄）。純白にしない */
  --sumi:     #221C17;   /* 夜の面。FV の影の色 */
  --sumi-ink: #EDE4D6;   /* 夜の面の文字（対 --sumi 13.4:1） */
  --sumi-mid: #C4B7A3;   /* 夜の面の補足文（8.5:1） */
  --accent:   #B84A24;   /* 炙りの火。ごく少量だけ。#fff を載せて AA(4.5:1) を満たす濃さ */
  --accent-lt:#E8845C;   /* 夜の面での差し色（暗い地では #B84A24 が 2.2:1 で沈むため。6.3:1） */
  --on-accent:#fff;      /* 差し色の上の文字。夜の面では墨に差し替わる */
  --rule:     rgba(34,28,23,.13);
  --rule-sumi:rgba(237,228,214,.18);

  --serif: "Times New Roman", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN",
          "游ゴシック", "Yu Gothic", Meiryo, sans-serif;

  --gut: clamp(20px, 5vw, 72px);   /* 左右の余白 */
  --sec: clamp(88px, 12vw, 180px); /* セクション間 */
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.75;
  letter-spacing: .02em; font-feature-settings: "palt" 1;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-weight: 400; margin: 0; text-wrap: balance;
  /* 日本語は文節の途中でも改行できてしまう（実測で「ど／んな」と割れた）。
     auto-phrase は文節で折る。対応しないブラウザは normal のままで害はない。 */
  word-break: auto-phrase;
}
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }

/* JS が動かなくても本文は必ず見える（事故クラス A8 のフェイルセーフ）。
   リビールは .is-in を足して動かす方式にし、初期状態を不可視にしない。 */
[data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
  .js [data-reveal].is-in { opacity: 1; transform: none; }
}

/* ── 縦のグリッド線（写経元の骨格。SPでは引かない）────────────── */
.grid-rules { position: fixed; inset: 0; pointer-events: none; z-index: 0; display: none; }
@media (min-width: 900px) {
  .grid-rules { display: block; }
  .grid-rules span { position: absolute; top: 0; bottom: 0; width: 1px; background: var(--rule); }
  .grid-rules span:nth-child(1) { left: 18.75%; }
  .grid-rules span:nth-child(2) { left: 37.5%; }
  .grid-rules span:nth-child(3) { left: 62.5%; }
  .grid-rules span:nth-child(4) { left: 81.25%; }
}

/* ── 縦組みラベル（写経元の画面端の要素）──────────────────── */
.vlabel {
  position: fixed; z-index: 30; writing-mode: vertical-rl;
  font-size: 12px; letter-spacing: .18em; color: var(--ink-mid);
  display: none;
}
@media (min-width: 900px) { .vlabel { display: block; } }
.vlabel--left  { left: 22px;  top: 46%; }
.vlabel--right { right: 22px; top: 46%; }

/* ── ヘッダー ───────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px var(--gut);
  background: linear-gradient(180deg, rgba(244,238,227,.95), rgba(244,238,227,0));
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand img { width: clamp(96px, 11vw, 140px); }
.brand .sub { font-size: 12px; letter-spacing: .16em; color: var(--ink-mid); }
.nav { display: none; gap: clamp(14px, 2vw, 30px); font-size: 13px; letter-spacing: .08em; }
.nav a { text-decoration: none; padding: 12px 0; border-bottom: 1px solid transparent; }
.nav a:hover, .nav a:focus-visible { border-bottom-color: var(--ink); }
@media (min-width: 900px) { .nav { display: flex; } }
.lang { font-size: 12px; letter-spacing: .14em; display: flex; gap: 4px; align-items: center; }
.lang a { text-decoration: none; color: var(--ink-mid); min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.lang a[aria-current="true"] { color: var(--ink); border-bottom: 1px solid var(--ink); }

/* ── 固定要素を夜の面に追随させる ────────────────────────────
   ヘッダー・縦組みラベル・縦罫は position:fixed なので、**夜の面の上を通過する**。
   地の色だけ夜にすると、明るいヘッダーの帯が暗い面を横切って切り裂いて見えるし、
   縦組みラベルは暗い地に暗い文字で消える。地を反転したら固定要素も必ず連れていく。

   .on-dark は JS が付ける。**付かなければ今までどおり明るいまま**で、
   読めなくなることはない（事故クラス A8：既定値が最終形）。 */
.site-header, .vlabel { transition: background .45s ease, color .45s ease; }
.brand img { transition: filter .45s ease; }
.js.on-dark .site-header {
  background: linear-gradient(180deg, rgba(34,28,23,.96), rgba(34,28,23,0));
  color: var(--sumi-ink);
}
/* ロゴは #231815 の単色。invert だけだと青に転ぶので、一度潰してから白にする */
.js.on-dark .brand img { filter: brightness(0) invert(1); }
.js.on-dark .brand .sub,
.js.on-dark .lang a { color: var(--sumi-mid); }
/* 縦組みラベルはヘッダーと別に判定する（画面の中ほどにあり、境界をまたぐため） */
.js .vlabel { transition: color .45s ease, visibility .25s ease; }
.js .vlabel.is-on-dark { color: var(--sumi-mid); }
/* 隠すのに opacity は使えない。入場アニメ slideL/slideR が
   animation-fill-mode: both で opacity を持ち続けており、
   通常の宣言はアニメーションに負ける（!important を足すしかなくなる）。
   アニメが触らない visibility なら素直に効く。 */
.js .vlabel.is-split { visibility: hidden; }
.js.on-dark .lang a[aria-current="true"] { color: var(--sumi-ink); border-bottom-color: var(--sumi-ink); }
.js.on-dark .nav a:hover, .js.on-dark .nav a:focus-visible { border-bottom-color: var(--sumi-ink); }
.js.on-dark .grid-rules span { background: var(--rule-sumi); }

/* ── FV ────────────────────────────────────────────── */
.mv { position: relative; padding: clamp(112px, 16vh, 190px) var(--gut) clamp(56px, 9vw, 110px); }
.mv-inner { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; }
.mv-figure { position: relative; }
.mv-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.mv-copy { margin-top: clamp(22px, 3.4vw, 44px); display: grid; gap: 14px; }
.mv-eyebrow { font-size: 12px; letter-spacing: .14em; color: var(--ink-mid); }
.mv-catch {
  font-family: var(--serif); font-size: clamp(2.1rem, 6.2vw, 4.4rem);
  line-height: 1.18; letter-spacing: .01em;
}
.mv-word {
  font-family: var(--serif); font-size: clamp(3.2rem, 13vw, 9rem);
  line-height: .92; letter-spacing: .02em; color: var(--ink);
  opacity: .12; margin-top: -.12em; user-select: none;
}
.mv-lead { max-width: 34em; color: var(--ink-mid); font-size: 15px; line-height: 2; }

/* ── セクションの型（写経元の feature__block を写す）──────────── */
.sec { position: relative; z-index: 1; padding: var(--sec) var(--gut); }
.sec-inner { max-width: 1320px; margin: 0 auto; }
.sec--tint { background: var(--paper-2); }

/* ── 夜の面（2026-08-12 トンマナ）──────────────────────────
   FV が夜の外観になったので、ページの途中にも夜を1面だけ置く。FV の夜が続く。

   個別に色を上書きしていくと必ず塗り残しが出るので、**このブロックの中で
   トークンそのものを差し替える**。子孫は全部 var(--ink-mid) 等を見ているので、
   罫・斜線・キャプション・ボタンまで自動で反転する。
   差し色も切り替える: #B84A24 は暗い地では沈んで読めない（対 --sumi 2.2:1）。 */
.sec--sumi, .site-footer--sumi {
  --paper:    var(--sumi);
  --paper-2:  #2C2620;
  --paper-hi: #2C2620;
  --ink:      var(--sumi-ink);
  --ink-mid:  var(--sumi-mid);
  --ink-thin: rgba(237,228,214,.34);
  --accent:   var(--accent-lt);
  --on-accent: var(--sumi);   /* 明るい差し色の上は #fff だと 2.2:1 で読めない */
  --rule:     var(--rule-sumi);
  background: var(--sumi); color: var(--sumi-ink);
}

.head { display: grid; gap: 10px; margin-bottom: clamp(28px, 4vw, 56px); overflow: hidden; }
.head .en {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1; letter-spacing: .01em; position: relative; display: inline-block;
}
/* 見出しの脇の斜め線（写経元の装飾） */
.head .en::after {
  content: ""; position: absolute; left: calc(100% + 18px); top: 50%;
  width: clamp(48px, 7vw, 120px); height: 1px; background: var(--ink-thin);
  transform: rotate(-38deg); transform-origin: left center;
}
.head .ja { font-size: clamp(1.02rem, 2vw, 1.28rem); letter-spacing: .04em; }

/* 小さい英字ラベルは**ゴシックを広く空けて組む**（昭和の看板・のれんの脇書きの字組み）。
   明朝のままだと欧文の書籍組みに見えて、写経元のホテルの温度から抜けない。
   見出し本体（.head .en / .mv-catch）は明朝のまま＝品書きの字。役割で使い分ける。 */
.mv-eyebrow, .brand .sub, .vlabel, .tri .kicker, .rows .cat,
.dishes .sub, .info dt, .copy, .lang {
  font-family: var(--sans); font-weight: 600;
}
.mv-eyebrow { letter-spacing: .2em; }
.tri .kicker { letter-spacing: .22em; }
.vlabel      { letter-spacing: .26em; }
.head .note { font-size: 14px; line-height: 26px; letter-spacing: .04em; color: var(--ink-mid); max-width: 40em; }

/* 重ねた写真カード（写経元の骨格。傾きは5°未満・影なし） */
.stack { position: relative; padding: 7% 6% 9%; }
.stack img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.stack .b, .stack .c { position: absolute; }
.stack .b { width: 46%; aspect-ratio: 3 / 4; top: 0; left: 0; transform: rotate(-3.2deg); z-index: 2; }
.stack .c { width: 38%; aspect-ratio: 1 / 1;  bottom: 0; right: 0; transform: rotate(2.6deg); z-index: 2; }
.stack .a { position: relative; z-index: 1; }
@media (max-width: 899px) {
  .stack .b { width: 40%; }
  .stack .c { width: 34%; }
}

.duo { display: grid; gap: clamp(40px, 7vw, 90px); align-items: center; }
@media (min-width: 900px) { .duo { grid-template-columns: 1.05fr .95fr; } .duo--flip > *:first-child { order: 2; } }
.duo .body { display: grid; gap: 18px; }
.duo .body p { font-size: 15px; line-height: 2.05; color: var(--ink-mid); max-width: 32em; }
.duo .body p strong { color: var(--ink); font-weight: 500; }

/* ── 名物3つ ─────────────────────────────────────── */
.tri { display: grid; gap: clamp(34px, 5vw, 56px); }
@media (min-width: 900px) { .tri { grid-template-columns: repeat(3, 1fr); } }
.tri figure { margin: 0; display: grid; gap: 14px; grid-template-rows: auto auto auto 1fr; align-content: start; }
.tri img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.tri .kicker { font-size: 12px; letter-spacing: .16em; color: var(--accent); }
.tri h3 { font-size: clamp(1.06rem, 2.2vw, 1.3rem); letter-spacing: .03em; }
.tri p { font-size: 14px; line-height: 26px; letter-spacing: .04em; color: var(--ink-mid); }

/* ── 数字 ────────────────────────────────────────── */
.figs { display: grid; gap: clamp(24px, 4vw, 44px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .figs { grid-template-columns: repeat(4, 1fr); } }
.figs .n { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; }
.figs .n small { font-size: .38em; letter-spacing: .06em; margin-left: .3em; }
.figs .l { margin-top: 8px; font-size: 13px; line-height: 24px; color: var(--ink-mid); }

/* ── お品書き ───────────────────────────────────── */
.dishes { display: grid; gap: clamp(26px, 3.4vw, 44px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .dishes { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .dishes { grid-template-columns: repeat(4, 1fr); } }
.dishes figure { margin: 0; }
.dishes img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.dishes figcaption { margin-top: 10px; font-size: 13px; letter-spacing: .04em; line-height: 22px; }
.dishes .sub { display: block; color: var(--ink-mid); font-size: 12px; letter-spacing: .1em; margin-top: 2px; }

/* ── コラム本文の横はみ出し対策（stem-audit 衛生）────────────────
   コラムは Stem 側で運用者が書くので、**こちらが書いていない要素が後から入る**。
   コード例・長いURL・広い表が入ったときに、ページ全体が横スクロールしてしまうと
   モバイルで全部崩れて見える。器のほうで先に受け止めておく。 */
.column-body pre, .column-detail pre, article pre {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 14px 16px; background: var(--paper-2); font-size: 13px; line-height: 1.7;
}
.column-body code, .column-detail code, article code { word-break: break-word; }
.column-body pre code, .column-detail pre code, article pre code { white-space: pre; word-break: normal; }
.column-body table, .column-detail table, article table { display: block; overflow-x: auto; max-width: 100%; }
.column-body img, .column-detail img, article img { max-width: 100%; height: auto; }

/* ── 地域×コンセプト（DESIGN_RULES §6 / stem-audit G28・G29）────────
   場面の問いに答える塊を並べる。見出しは疑問形＝AIの引用単位に合わせる。 */
.qa { display: grid; gap: clamp(24px, 3vw, 38px); }
.qa article { display: grid; gap: 10px; }
.qa h3 { font-size: clamp(1rem, 1.9vw, 1.16rem); letter-spacing: .03em; line-height: 1.6; }
.qa p { font-size: 14px; line-height: 26px; letter-spacing: .04em; color: var(--ink-mid); max-width: 40em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: clamp(28px, 4vw, 48px); }
.chips li {
  font-family: var(--sans); font-size: 12px; letter-spacing: .06em; color: var(--ink-mid);
  border: 1px solid var(--rule); padding: 7px 13px; border-radius: 999px;
}

/* ── 情報表 ──────────────────────────────────────── */
.info { display: grid; gap: 0; border-top: 1px solid var(--rule); max-width: 46em; }
.info div { display: grid; grid-template-columns: 7.5em 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.info dt { font-size: 12px; letter-spacing: .1em; color: var(--ink-mid); }
.info dd { font-size: 14px; line-height: 26px; }

/* ── FAQ ───────────────────────────────────────── */
.faq { display: grid; border-top: 1px solid var(--rule); max-width: 52em; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 34px 18px 0; position: relative; font-size: 15px; letter-spacing: .03em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 1px; background: var(--ink); }
.faq summary::before { content: ""; position: absolute; right: 11px; top: calc(50% - 5px); width: 1px; height: 11px; background: var(--ink); transition: opacity .2s; }
.faq details[open] summary::before { opacity: 0; }
.faq .a { padding: 0 0 20px; font-size: 14px; line-height: 26px; color: var(--ink-mid); max-width: 42em; }

/* ── お知らせ・コラム ───────────────────────────── */
.rows { border-top: 1px solid var(--rule); }
/* ⚠ セレクタから article を外している。Stem が記事詳細を注入すると .rows の中に
   本文まるごとの <article> が入り、この3カラム指定が本文の h2/p に当たって
   本文が5倍に引き伸ばされ、画面上部が3000px以上まっさらになる（2026-08-19 実機で発生）。
   一覧の行には class="row" を付けてあるので、そちらだけを対象にする。 */
.rows .row { display: grid; gap: 4px 18px; padding: 16px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 700px) { .rows .row { grid-template-columns: 8em 7em 1fr; align-items: baseline; } }
.rows time { font-size: 12px; letter-spacing: .08em; color: var(--ink-mid); }
.rows .cat { font-size: 12px; letter-spacing: .12em; color: var(--accent); }
.rows h3 { font-size: 15px; letter-spacing: .03em; }
.rows a { text-decoration: none; }

/* ── クチコミ ───────────────────────────────────── */
.revs { display: grid; gap: 20px; }
@media (min-width: 800px) { .revs { grid-template-columns: repeat(3, 1fr); } }
.revs blockquote { margin: 0; padding: 22px; background: var(--paper-hi); border: 1px solid var(--rule); }
.revs blockquote p { font-size: 14px; line-height: 26px; color: var(--ink-mid); }
.revs footer { margin-top: 12px; font-size: 12px; color: var(--ink-mid); }

/* ── CTA・フォーム ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 15px 28px;
  border: 1px solid var(--ink); text-decoration: none; font-size: 13px; letter-spacing: .1em;
  background: transparent; transition: background .3s, color .3s;
}
.btn:hover, .btn:focus-visible { background: var(--ink); color: var(--paper); }
.btn--fill { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.btn--fill:hover, .btn--fill:focus-visible { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.form { display: grid; gap: 18px; max-width: 40em; }
.form label { display: grid; gap: 7px; font-size: 13px; letter-spacing: .06em; }
.form .req { color: var(--accent); font-size: 12px; margin-left: .4em; }
.form input, .form select, .form textarea {
  font: inherit; font-size: 15px; padding: 12px 14px; border: 1px solid var(--ink-thin);
  background: var(--paper-hi); color: var(--ink); border-radius: 0;
}
.form textarea { min-height: 150px; resize: vertical; }
.form input:focus-visible, .form select:focus-visible, .form textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-msg { font-size: 14px; padding: 12px 14px; background: var(--paper-2); }

/* ── フッター ───────────────────────────────────── */
.site-footer { position: relative; z-index: 1; padding: var(--sec) var(--gut) 56px; border-top: 1px solid var(--rule); }
.site-footer .inner { max-width: 1320px; margin: 0 auto; display: grid; gap: 34px; }
@media (min-width: 900px) { .site-footer .inner { grid-template-columns: 1.2fr 1fr; } }
.site-footer .note { font-size: 13px; line-height: 26px; color: var(--ink-mid); }
.fnav { display: flex; flex-wrap: wrap; gap: 16px 26px; font-size: 13px; letter-spacing: .06em; }
.fnav a { text-decoration: none; }
.copy { margin-top: 40px; font-size: 12px; letter-spacing: .1em; color: var(--ink-mid); }

.skip { position: absolute; left: -9999px; padding: 14px 18px; }
.skip:focus { left: 16px; top: 12px; z-index: 100; background: var(--paper-hi); }

/* ── 指で押せる大きさにする（44px・Phase 2.5 ③）────────────────────
   実測（design-qa 320/390px）で、電話リンクが 16〜17px 高しかなかった。
   居酒屋の主要導線が指で押せないのは順位より先に売上に効く。

   **本文中のリンクは display:inline のまま padding だけ足す。**
   inline 要素の上下 padding は行ボックスの高さに影響しないので、
   **見た目は1pxも動かないまま当たり判定だけ 44px になる**。
   背景を持たないリンクなので、隣の行に padding が重なっても見えない。 */
.site-footer .note a[href^="tel:"],
.info dd a[href^="tel:"],
.qa a[href^="tel:"] { padding-block: 14px; }

/* フッターナビは flex 項目なので padding が高さに効く。
   その分 row gap を 0 にして、見た目の間隔は据え置く（16px → padding 上下11pxで22px相当） */
.fnav { gap: 0 26px; }
/* 「ホーム」「コラム」は3文字で幅が 37〜39px しかなく、高さを直しても横が足りない */
.fnav a { padding-block: 11px; min-width: 44px; }

/* ヘッダーのロゴ。画像 36px 高のままだと 44px に届かない */
.brand { min-height: 44px; align-items: center; }

/* ============================================================
   モーション（2026-08-12・「濃くしたい／写経レベルを上げる」）
   写経元 https://www.umino-hotel.com/ の実装を読んで型を取った:
     ・GSAP で **height を伸ばす**カーテン（.reborn__bg--01/02/03 を 0.15s ずつ遅らせる）
     ・長尺のパララックス（y:-50% を 2.4s）
     ・イージングは Expo.easeInOut / Circ.easeIn / Power1.easeOut ＝**強め**
     ・duration が長い（1.2 / 1.4 / 2.4 / 3.6s）
   写経元は GSAP + MorphSVG + CustomEase を積んでいるが、こちらは**外部ライブラリを使わない**
   （Stem 配信では外部 .js の中身が書き換わらず 404 を起こす＝事故クラスの本丸。CLAUDE.md §8）。
   同じ動きを CSS の @keyframes と自前の IntersectionObserver で出す。

   鉄則（DESIGN_RULES §10 / 事故クラス A8）:
     **既定値が最終形。**演出は `.js.is-ready` が付いたときだけ走る。
     JS が1行も動かなければ、演出が出ないだけで内容は最初から見えている。
     reduced-motion は下の1ルールで全部止まる。動かすのは transform / opacity / clip-path のみ＝CLS を出さない。
   ============================================================ */

:root {
  --e-expo: cubic-bezier(.16, 1, .3, 1);      /* Expo.easeOut 相当 */
  --e-circ: cubic-bezier(.55, 0, .1, 1);      /* Circ.easeInOut 相当 */
  --e-soft: cubic-bezier(.2, .7, .2, 1);
}

/* ── ① FV のカーテン（写経元の reborn__bg。3枚が height で開く）───────── */
.mv-curtain { position: absolute; inset: 0; z-index: 5; pointer-events: none; display: none; }
.js .mv-curtain { display: grid; grid-template-columns: repeat(3, 1fr); }
.mv-curtain span { background: var(--paper); transform-origin: top; }
@keyframes curtainUp { from { transform: scaleY(1); } to { transform: scaleY(0); } }
.js.is-ready .mv-curtain span { animation: curtainUp 1.15s var(--e-circ) both; }
.js.is-ready .mv-curtain span:nth-child(1) { animation-delay: .05s; }
.js.is-ready .mv-curtain span:nth-child(2) { animation-delay: .20s; }
.js.is-ready .mv-curtain span:nth-child(3) { animation-delay: .35s; }
.js.is-ready .mv-curtain { animation: curtainGone 0s linear 1.6s both; }
@keyframes curtainGone { to { visibility: hidden; } }

/* ── ② FV の画（長尺ケンバーンズ＋入場のクリップ）────────────────── */
@keyframes fvClip { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes kenburns { from { transform: scale(1.0); } to { transform: scale(1.075); } }
.js.is-ready .mv-figure { animation: fvClip 1.25s var(--e-circ) .30s both; }
.js.is-ready .mv-figure img { animation: kenburns 22s linear 1.4s infinite alternate both; }

/* ── ③ FV の文字が下から順に立ち上がる（5段の階段）───────────────── */
@keyframes riseUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes riseWord { from { opacity: 0; transform: translateY(20px) scale(1.05); } to { opacity: .12; transform: none; } }
.js.is-ready .mv-eyebrow { animation: riseUp 1.0s var(--e-expo) .75s both; }
.js.is-ready .mv-catch   { animation: riseUp 1.1s var(--e-expo) .88s both; }
.js.is-ready .mv-word    { animation: riseWord 1.4s var(--e-expo) 1.02s both; }
.js.is-ready .mv-lead    { animation: riseUp 1.0s var(--e-expo) 1.16s both; }
.js.is-ready .mv-copy .actions { animation: riseUp 1.0s var(--e-expo) 1.30s both; }

/* ── ④ ヘッダー・縦組みラベル・グリッド線の入場 ───────────────── */
@keyframes dropIn  { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
@keyframes slideL  { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
@keyframes slideR  { from { opacity: 0; transform: translateX(14px); }  to { opacity: 1; transform: none; } }
@keyframes ruleGrow{ from { transform: scaleY(0); } to { transform: scaleY(1); } }
.js.is-ready .site-header  { animation: dropIn .9s var(--e-expo) .45s both; }
.js.is-ready .vlabel--left { animation: slideL 1.0s var(--e-expo) 1.45s both; }
.js.is-ready .vlabel--right{ animation: slideR 1.0s var(--e-expo) 1.55s both; }
.grid-rules span { transform-origin: top; }
.js.is-ready .grid-rules span { animation: ruleGrow 1.6s var(--e-circ) both; }
.js.is-ready .grid-rules span:nth-child(1) { animation-delay: .55s; }
.js.is-ready .grid-rules span:nth-child(2) { animation-delay: .65s; }
.js.is-ready .grid-rules span:nth-child(3) { animation-delay: .75s; }
.js.is-ready .grid-rules span:nth-child(4) { animation-delay: .85s; }

/* ── ⑤ セクション見出し（英字はクリップで、斜線は横に伸びる）─────────── */
.js .head .en { clip-path: inset(0 0 100% 0); }
.js .head.is-in .en { clip-path: inset(0 0 0 0); transition: clip-path 1.05s var(--e-circ); }
.js .head .en::after { transform: rotate(-38deg) scaleX(0); transform-origin: left center;
  transition: transform 1.0s var(--e-expo) .35s; }
.js .head.is-in .en::after { transform: rotate(-38deg) scaleX(1); }
.js .head .ja   { opacity: 0; transform: translateY(20px); transition: opacity .95s var(--e-expo) .18s, transform .95s var(--e-expo) .18s; }
.js .head.is-in .ja   { opacity: 1; transform: none; }
.js .head .note { opacity: 0; transform: translateY(16px); transition: opacity .95s var(--e-expo) .30s, transform .95s var(--e-expo) .30s; }
.js .head.is-in .note { opacity: 1; transform: none; }

/* ── ⑥ 重ねた写真カード（3枚が別方向から、ずらして入る）──────────── */
.js .stack .a { clip-path: inset(0 0 100% 0); }
.js .stack.is-in .a { clip-path: inset(0 0 0 0); transition: clip-path 1.2s var(--e-circ); }
.js .stack .b { opacity: 0; transform: rotate(-3.2deg) translate(-26px, 18px); }
.js .stack.is-in .b { opacity: 1; transform: rotate(-3.2deg); transition: opacity 1.0s var(--e-expo) .22s, transform 1.15s var(--e-expo) .22s; }
.js .stack .c { opacity: 0; transform: rotate(2.6deg) translate(24px, 22px); }
.js .stack.is-in .c { opacity: 1; transform: rotate(2.6deg); transition: opacity 1.0s var(--e-expo) .38s, transform 1.15s var(--e-expo) .38s; }

/* ── ⑦ 本文（段落が1つずつ遅れて出る）──────────────────────── */
.js .duo .body p { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--e-expo), transform .9s var(--e-expo); }
.js .duo .body.is-in p { opacity: 1; transform: none; }
.js .duo .body.is-in p:nth-of-type(2) { transition-delay: .12s; }
.js .duo .body.is-in p:nth-of-type(3) { transition-delay: .24s; }

/* ── ⑧ 名物3つ（写真はクリップ、文字は遅れて）────────────────── */
.js .tri figure img { clip-path: inset(0 0 100% 0); }
.js .tri figure.is-in img { clip-path: inset(0 0 0 0); transition: clip-path 1.15s var(--e-circ); }
.js .tri figure .kicker,
.js .tri figure h3,
.js .tri figure p { opacity: 0; transform: translateY(18px); transition: opacity .85s var(--e-expo), transform .85s var(--e-expo); }
.js .tri figure.is-in .kicker { opacity: 1; transform: none; transition-delay: .30s; }
.js .tri figure.is-in h3      { opacity: 1; transform: none; transition-delay: .40s; }
.js .tri figure.is-in p       { opacity: 1; transform: none; transition-delay: .50s; }
/* 写真そのものは3枚**同時に**開く。1枚ずつ遅らせると、スクロール中に
   高さが揃っていないように見える（2026-08-12 指摘）。時間差は文字側だけに残す。 */
.js .tri figure:nth-child(2).is-in .kicker { transition-delay: .36s; }
.js .tri figure:nth-child(2).is-in h3      { transition-delay: .46s; }
.js .tri figure:nth-child(2).is-in p       { transition-delay: .56s; }
.js .tri figure:nth-child(3).is-in .kicker { transition-delay: .42s; }
.js .tri figure:nth-child(3).is-in h3      { transition-delay: .52s; }
.js .tri figure:nth-child(3).is-in p       { transition-delay: .62s; }

/* ── ⑨ 数字（カウントアップ＋下から）────────────────────────── */
.js .figs > div { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--e-expo), transform .9s var(--e-expo); }
.js .figs > div.is-in { opacity: 1; transform: none; }
.js .figs > div:nth-child(2).is-in { transition-delay: .10s; }
.js .figs > div:nth-child(3).is-in { transition-delay: .20s; }
.js .figs > div:nth-child(4).is-in { transition-delay: .30s; }

/* ── ⑩ 料理グリッド（1枚ずつ、クリップで）───────────────────── */
.js .dishes figure img { clip-path: inset(0 0 100% 0); }
.js .dishes figure.is-in img { clip-path: inset(0 0 0 0); transition: clip-path 1.0s var(--e-circ); }
.js .dishes figcaption { opacity: 0; transform: translateY(10px); transition: opacity .7s var(--e-expo), transform .7s var(--e-expo); }
.js .dishes figure.is-in figcaption { opacity: 1; transform: none; transition-delay: .26s; }
.js .dishes figure:nth-child(4n+2).is-in img { transition-delay: .08s; }
.js .dishes figure:nth-child(4n+3).is-in img { transition-delay: .16s; }
.js .dishes figure:nth-child(4n+4).is-in img { transition-delay: .24s; }

/* ── ⑪ 情報表・FAQ・お知らせ（行が順に）───────────────────── */
.js .info > div, .js .faq details, .js .rows .row {
  opacity: 0; transform: translateY(14px); transition: opacity .75s var(--e-expo), transform .75s var(--e-expo); }
.js .info.is-in > div, .js .faq.is-in details, .js .rows.is-in .row { opacity: 1; transform: none; }
.js .faq.is-in details:nth-child(2n) { transition-delay: .06s; }
.js .faq.is-in details:nth-child(3n) { transition-delay: .12s; }

/* ── ⑫ 常時（hover と操作の手応え）──────────────────────── */
.dishes figure, .tri figure, .stack img { overflow: hidden; }
.dishes img, .tri img { transition: transform 1.4s var(--e-expo); }
.dishes figure:hover img, .tri figure:hover img { transform: scale(1.06); }
.stack .a { transition: transform 1.6s var(--e-expo); }
.stack:hover .a { transform: scale(1.03); }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--e-expo); }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: scaleX(0); transform-origin: right; transition: transform .55s var(--e-expo); z-index: 0; }
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); transform-origin: left; }
.btn:hover, .btn:focus-visible { background: transparent; color: var(--paper); }
.btn--fill::before { background: var(--ink); }
.faq summary { transition: padding-left .4s var(--e-expo), color .3s; }
.faq summary:hover { padding-left: 8px; }
.faq summary::after, .faq summary::before { transition: transform .45s var(--e-expo), opacity .3s; }
.faq details[open] summary::after { transform: rotate(180deg); }
.rows a { transition: opacity .35s; }
.rows a:hover { opacity: .55; }
.site-footer .fnav a { position: relative; transition: opacity .35s; }
.site-footer .fnav a:hover { opacity: .55; }

/* ── ⑬ スクロール連動（写経元の長尺パララックス。JS が --p を書く）───── */
.js [data-scrub="fv"] { will-change: transform; }
.js.is-ready [data-scrub="fv"] { transform: translate3d(0, calc((var(--p, .5) - .5) * -46px), 0); }
.js [data-scrub="word"] { will-change: transform; }
.js.is-ready [data-scrub="word"] { transform: translate3d(calc((var(--p, .5) - .5) * 40px), 0, 0); }

/* ── ⑭ reduced-motion で全部止める（1ルール）──────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js .head .en, .js .stack .a, .js .tri figure img, .js .dishes figure img { clip-path: none !important; }
  .js .head .ja, .js .head .note, .js .duo .body p, .js .figs > div,
  .js .info > div, .js .faq details, .js .rows .row,
  .js .tri figure .kicker, .js .tri figure h3, .js .tri figure p,
  .js .stack .b, .js .stack .c, .js .dishes figcaption { opacity: 1 !important; transform: none !important; }
  .mv-curtain { display: none !important; }
}

/* ── FAQ をカテゴリで絞る（魚丸各店の型に寄せた。2026-08-12）──────────
   魚丸は 51問を6カテゴリに分け、上部のボタンで絞り込む。カテゴリ見出しは
   英字＋日本語の2段。フィルターは display の切替だけで、JS が無ければ全部出る。 */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: clamp(22px, 3vw, 36px); }
.filters button {
  font: inherit; font-size: 12px; letter-spacing: .08em; color: var(--ink-mid);
  padding: 11px 16px; min-height: 44px; background: transparent; cursor: pointer;
  border: 1px solid var(--rule); border-radius: 0;
  transition: color .35s var(--e-expo), border-color .35s var(--e-expo), background .35s var(--e-expo);
}
.filters button:hover, .filters button:focus-visible { color: var(--ink); border-color: var(--ink); }
.filters button[aria-pressed="true"] { color: var(--paper); background: var(--ink); border-color: var(--ink); }

.faq .cat { margin-bottom: clamp(40px, 5vw, 68px); }
.faq .cat:last-child { margin-bottom: 0; }
.faq .cat > h2.en {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.15;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid var(--rule);
}
.faq .cat > h2.en .cat-jp {
  font-family: var(--sans); font-size: 12px; letter-spacing: .12em; color: var(--ink-mid);
}
/* .sec-inner.faq に border-top が乗らないようにする（カテゴリごとに罫を引くため） */
.sec-inner.faq { border-top: 0; display: block; max-width: 52em; }

/* ── 2カラム（左に見出し・右に中身）2026-08-12 ────────────────────
   写経元は本文を325px前後の細いカラムにし、**左右交互に振って必ず反対側に写真を置く**。
   だから細くてもスカスカに見えない。ウオマルの FAQ・お知らせ・クチコミは
   単独ブロックで左寄せだったため、1296px の枠に対し中身が480〜832pxで
   右が最大816px空いていた（2026-08-12 実測）。左に見出しを据えて埋める。 */
.split { display: grid; gap: clamp(28px, 4vw, 64px); }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(240px, .78fr) 1.22fr; align-items: start; }
  .split-aside { position: sticky; top: clamp(96px, 12vh, 140px); }
}
.split-aside .head { margin-bottom: clamp(18px, 2.4vw, 28px); }
.split-aside .actions { margin-top: clamp(18px, 2.4vw, 28px); }
.split-main .faq, .split-main .rows { max-width: none; }
.split-main .revs { grid-template-columns: 1fr; }
@media (min-width: 900px) { .split-main .revs { grid-template-columns: repeat(2, 1fr); } }

/* ── 常時表示の予約ボタン（魚丸の型）──────────────────────
   スクロール位置に関わらず予約に行ける。JS 非依存（ただのリンク）。 */
.float-cta {
  position: fixed; right: clamp(16px, 2.4vw, 30px); bottom: clamp(16px, 2.4vw, 30px); z-index: 50;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; min-height: 48px;
  background: var(--accent); color: var(--on-accent); text-decoration: none;
  font-size: 13px; letter-spacing: .1em; border-radius: 999px;
  box-shadow: 0 6px 26px rgba(34, 28, 23, .20);
  transition: transform .45s var(--e-expo), box-shadow .45s var(--e-expo), background .35s;
}
.float-cta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--on-accent); opacity: .85; }
.float-cta:hover, .float-cta:focus-visible { background: var(--ink); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(34, 28, 23, .28); }
@keyframes ctaIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.js.is-ready .float-cta { animation: ctaIn .9s var(--e-expo) 1.9s both; }
@media (max-width: 599px) { .float-cta { padding: 13px 18px; font-size: 12px; } }

/* ── コラム本文の組版 ─────────────────────────────────
   Stem が注入する記事本文には、これまでサイト側の指定が一切当たっていなかった。
   実測(2026-08-20): 幅1152px・全要素の margin 0・見出しが weight 400・
   h3(15px) が本文(16px) より小さい＝階層が無い、という状態だった。
   ここで一行の長さ・行間・見出しの階調・余白のリズムを与える。
   色と書体は既存トークンのまま（墨・生成り／見出し明朝・小ラベルはゴシック）。 */
.column-detail { max-width: 40em; margin-inline: auto; }
.column-detail > .en { font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: .18em; color: var(--accent); margin: 0 0 10px; }
.column-detail > h2 { font-family: var(--serif); font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.5; letter-spacing: .02em; margin: 0 0 14px; font-weight: 400; }
.column-detail > p time { font-family: var(--sans); font-size: 12px; letter-spacing: .08em;
  color: var(--ink-mid); }
.column-detail > p:has(time) { margin: 0 0 40px; padding-bottom: 20px;
  border-bottom: 1px solid var(--rule); }

/* 本文。日本語は 1行 35〜40字が読みやすい上限なので 40em で切る */
.column-body { font-size: 16px; line-height: 2.05; letter-spacing: .02em; color: var(--ink); }
.column-body > * + * { margin-top: 1.5em; }
.column-body p { margin: 0; }
.column-body h2 { font-family: var(--serif); font-size: 22px; line-height: 1.6; font-weight: 400;
  margin-top: 2.6em; padding-top: 1.1em; border-top: 1px solid var(--rule); letter-spacing: .02em; }
.column-body h3 { font-family: var(--sans); font-size: 16px; font-weight: 700; line-height: 1.7;
  margin-top: 2em; letter-spacing: .03em; }
.column-body h2 + *, .column-body h3 + * { margin-top: .9em; }
.column-body ul, .column-body ol { padding-left: 1.4em; }
.column-body li + li { margin-top: .5em; }
.column-body a { color: var(--accent); text-underline-offset: .22em; }
.column-body blockquote { margin-inline: 0; padding: 18px 20px; background: var(--paper-hi);
  border-left: 2px solid var(--accent); font-size: 15px; line-height: 1.95; }
.column-body strong { font-weight: 700; }

/* 著者（EEAT）。フッターに社名＋住所＋担当者を並べるのはやめ、記事の書き手として置く */
.column-author { margin-top: 64px; padding: 22px 24px; background: var(--paper-hi);
  border: 1px solid var(--rule); border-radius: 2px; }
.column-author .en { font-family: var(--sans); font-weight: 600; font-size: 11px;
  letter-spacing: .18em; color: var(--accent); margin: 0 0 8px; }
.column-author__name { font-size: 15px; font-weight: 700; letter-spacing: .03em; margin: 0; }
.column-author__bio { font-size: 13px; line-height: 1.95; color: var(--ink-mid); margin: 8px 0 0; }

/* 関連記事 */
[data-stem-column-related] { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--rule); }
[data-stem-column-related] h3 { font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; color: var(--ink-mid); margin: 0 0 12px; }
[data-stem-column-related] p { margin: 0 0 10px; }
[data-stem-column-related] a { font-size: 15px; letter-spacing: .02em; }

@media (max-width: 699px) {
  .column-detail { max-width: none; }
  .column-body { font-size: 15.5px; line-height: 2; }
  .column-body h2 { font-size: 19px; }
}
