/* 十誡 2026テーマ メインスタイル（design-prototypeから抽出） */
:root {
  --c-bg: #3b161a;
  --c-bg-deep: #2a0e12;
  --c-bg-news: #0d0a0b;
  --c-bg-footer: #260c10;
  --c-text: #f2e9df;
  --c-text-soft: #ede3d8;
  --c-gold: #c9a35c;
  --c-gold-deep: #b08d4f;
  /* 英字はDidot指定（クライアント要望）。Apple端末は搭載の本物、他はGFS Didotで代替 */
  --font-latin: "Didot", "GFS Didot", serif;
  --font-mincho: "Shippori Mincho", serif;
  --font-gothic: "Zen Kaku Gothic Antique", sans-serif;
  --font-gothic-weight: 500;
  --side-nav-w: 230px;
  /* 読ませる文章の最小サイズ: SP 14px / PC 16px（装飾テキストは対象外） */
  --fs-body: 14px;
}
@media (min-width: 1200px) {
  :root {
    --fs-body: 16px;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
/* 横overflowの保険: 読み込み中や動的レイアウトで一時的にはみ出しても横スクロールを出さない。
   clipはスクロールコンテナを作らないためsticky等と安全に共存（非対応環境はhiddenで代替） */
html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-mincho), var(--font-latin);
  -webkit-font-smoothing: antialiased;
  /* スティッキーフッター: 本文が短いページ（送信完了等）でもフッターを常にウィンドウ最下部以深に */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@supports (min-height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}
body > main {
  flex: 1 0 auto;
}
.site-footer {
  margin-top: auto;
}
/* 【仮】meltパターンの全面リピール背景。スクロールに追従すると酔うため、
   background-attachment: fixed（iOSで無効）ではなくposition:fixedの
   レイヤーとして敷き、全端末で固定に見せる */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--c-bg) url("../img/melt-tile.svg") repeat;
  background-size: 72px 60px;
}
a {
  color: var(--c-text);
  text-decoration: none;
}
a:hover {
  color: var(--c-gold);
}
img {
  max-width: 100%;
  height: auto;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 18px;
  /* 最上部では背景色あり（営業ステータス帯との一体感）、
     スクロール中は.is-scrolledが付いてblurのみの透過になる（main.js） */
  background: rgba(42, 14, 18, 0.92);
  transition: background-color 0.5s ease;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 163, 92, 0.25);
}
.site-header.is-scrolled {
  background: rgba(42, 14, 18, 0);
}
.site-header .logo img {
  display: block;
  height: 22px;
  width: auto;
}
.site-header .logo .logo-pc {
  display: none;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  background: none;
  border: none;
  padding: 10px 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: #d9c7a8;
}

/* ---- 営業ステータス ---- */
.status-bar {
  padding: 9px 20px;
  background: var(--c-bg-deep);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  letter-spacing: 0.06em;
  color: #e3d5c2;
  display: flex;
  align-items: center;
  gap: 8px;
}
a.status-bar {
  transition: color 0.3s ease;
}
/* ステータス文は狭い画面で「日本語の状態文」「英語の詳細」の2行、
   640px以上は「─」区切りの1行（1行が収まる幅から切り替える） */
#statusText .status-label,
#statusText .status-detail {
  display: block;
}
/* 2行表示（SP）は金の点を出さず、テキストを中央寄せにする */
@media (max-width: 1199.98px) {
  .status-bar {
    justify-content: center;
    text-align: center;
  }
}

/* ---- 予約ボタン ---- */
.reserve-btn {
  position: fixed;
  bottom: 18px;
  right: 12px;
  z-index: 40;
  width: 106px;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
}
@media (min-width: 1200px) {
  #statusText .status-label,
  #statusText .status-detail {
    display: inline;
  }
  #statusText .status-detail::before {
    content: "─";
    margin: 0 0.6em;
  }
  /* ヘッダー（高さ88px）の右端に収める。ヘッダー(z50)より前面に出す */
  .reserve-btn {
    bottom: auto;
    top: 15px;
    right: 24px;
    width: 92px;
    z-index: 55;
  }
}
.reserve-btn {
  perspective: 500px;
}
.reserve-btn svg {
  display: block;
  width: 100%;
  height: auto;
}
.reserve-btn .book-page {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  transition: transform 0.8s cubic-bezier(0.3, 0.7, 0.3, 1);
  pointer-events: none;
}
.reserve-btn:hover .book-page {
  transform: rotateY(-150deg);
}
/* SP等でも時々「ちょっと捲れる」 */
@keyframes pageTease {
  0% {
    transform: none;
  }
  45% {
    transform: rotateY(-55deg);
  }
  100% {
    transform: none;
  }
}
.reserve-btn .book-page.tease {
  animation: pageTease 1.5s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .reserve-btn .book-page,
  .reserve-btn:hover .book-page {
    transition: none;
    transform: none;
    animation: none;
  }
}
.reserve-btn .label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mincho);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #fffdf8;
  padding-bottom: 2px;
}

/* ---- 章連動アンビエント背景（トップページ） ----
   固定レイヤーをコンテンツの背後に敷き、章ごとに「白黒写真」または「光のテクスチャ」を
   multiply合成でボルドーに溶かし込む。切り替え・ドリフトはmain.jsが担当 */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
/* 月の独立レイヤー: PCは.ambientと同じ背面。SPではBarカードの手前を
   うっすら横切らせるため前面（ヘッダーz:50・予約ボタンz:40よりは下）に出す */
.ambient-moon {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1199.98px) {
  .ambient-moon {
    z-index: 1;
  }
}
/* multiply合成の相手となるボルドーの下地。.ambientは独立した重ね合わせコンテキストのため、
   これが無いとレイヤーは透明と合成され、素の色（白）がそのまま見えてしまう */
.ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 【仮】トップでもmeltパターンが透けるよう、下地にも同じタイルを敷く */
  background: var(--c-bg) url("../img/melt-tile.svg") repeat;
  background-size: 72px 60px;
}
.ambient-layer {
  position: absolute;
  inset: -8vh -4vw;
  background-position: 50% 42%;
  background-repeat: no-repeat;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}
.ambient-layer.is-active {
  opacity: var(--layer-opacity, 0.55);
}
/* Access以降は章テクスチャを消灯し、固定のmeltベースだけを見せる（JSが付与） */
.ambient--calm .ambient-layer {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .ambient-layer {
    transition: none;
  }
}

/* Cafe＆Bar章の天体モチーフ（線画の太陽⇄月と星）。表示・進行はmain.jsがスクロールから算出。
   PCは大型で本文カラム（720px中央）の右端に背面から重なり、章の全行程（--px 0→1）で
   止まらずに右へ合計80pxだけ進み続ける。カラム基準の座標なのでかぶり量は画面幅によらず一定 */
.ambient-celestial {
  position: absolute;
  top: 15vh;
  left: calc(50% + 190px);
  width: 430px;
  height: 430px;
  /* --cy（行程中央で1になる正弦・main.js算出）で、天体らしい緩い円弧を描いて横断する */
  transform: translateX(calc(var(--px, 0) * 80px))
    translateY(calc(var(--cy, 0) * -10px));
}
/* SPは要素との重なりを避けるため「Cafe=左、Bar=右」。昼→夜の進行(--p)に合わせて
   変身しながら空を左から右へ渡っていく。太陽は左端から少しはみ出して大きく見せる */
@media (max-width: 1199.98px) {
  .ambient-celestial {
    width: 190px;
    height: 190px;
    top: 9vh;
    right: auto;
    left: -6vw;
    /* SPの弧はJS側で月の可視区間に窓を取り直しているため、振幅を大きめにして軌道を出す */
    transform: translateX(calc(var(--p, 0) * (102vw - 100%)))
      translateY(calc(var(--cy, 0) * -32px));
  }
}
/* will-changeは付けない: GPUレイヤー化でSVGが低倍率のままビットマップ化され、
   拡大表示で星や弧がボケるため（ベクターとして毎回描画させる） */
.ambient-celestial svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform-origin: 50% 50%;
}
/* PCは430pxに拡大されるぶん線が太って見えるため、線幅を下げて繊細に
   （viewBox基準0.9→0.55=実質約2px。stroke-widthは継承されるためsvgルートで一括） */
@media (min-width: 1200px) {
  .ambient-celestial svg {
    stroke-width: 0.55;
  }
}
/* 疑似モーフィング: 月の弧はスクロール進行(--draw 0→1)で線が描かれるように現れ、
   ダイヤ星は終盤にフェード＋軽いスケールでポップインする（--revealはkeyframes内で
   明滅と掛け合わせる。スケールを0からにするとレイヤーの低解像度ラスタを拾うため0.6起点） */
.celestial-moon .arc {
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--draw, 0));
}
.celestial-moon .star-deco {
  --reveal: clamp(0, calc((var(--draw, 0) - 0.55) * 3), 1);
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(calc(0.6 + 0.4 * var(--reveal)));
}
.celestial-star {
  animation: celestialTwinkle 3.6s ease-in-out infinite;
  animation-delay: var(--tw, 0s);
}
/* --tone: 星ごとの基準の明るさ、--reveal: 出現進行。明滅と掛け合わせて両立させる */
@keyframes celestialTwinkle {
  0%,
  100% {
    opacity: calc(var(--tone, 1) * 0.45 * var(--reveal, 1));
  }
  50% {
    opacity: calc(var(--tone, 1) * var(--reveal, 1));
  }
}
@media (prefers-reduced-motion: reduce) {
  .celestial-star {
    animation: none;
  }
}

/* ---- Hero ---- */
/* アンビエント背景路線に合わせ、ヘッダー＋営業ステータス帯込みで初回画面いっぱいに
   なる100svh基準（2026-07-19ユーザー判断。縦長トリミングは許容）。
   引き算はヘッダー58px＋ステータス帯約40px（PCはヘッダー88px） */
.hero {
  position: relative;
  overflow: hidden;
  background: #1c0a0c;
  width: 100%;
  height: calc(100vh - 98px);
  height: calc(100svh - 98px);
}
@media (min-width: 1200px) {
  .hero {
    height: calc(100vh - 128px);
    height: calc(100svh - 128px);
  }
}
.hero img.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero img.slide.active {
  opacity: 1;
}
.hero .frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 163, 92, 0.5);
  pointer-events: none;
  z-index: 6;
}
.hero .title-block {
  position: absolute;
  left: 26px;
  bottom: 34px;
  z-index: 8;
}
.hero .title-block .eyebrow {
  margin: 0;
  line-height: normal;
  font-family: var(--font-latin);
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--c-gold);
}
.hero .title-block .title {
  margin: 10px 0 0;
  letter-spacing: 0;
  font-family: var(--font-latin);
  font-size: clamp(52px, 13vw, 84px);
  line-height: 0.95;
  color: #f6efe6;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero .title-block .since {
  margin: 12px 0 0;
  line-height: normal;
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(242, 233, 223, 0.8);
}
.hero .counter {
  position: absolute;
  line-height: normal;
  right: 28px;
  bottom: 30px;
  z-index: 8;
  margin: 0;
  font-family: var(--font-latin);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--c-gold);
}
/* PCでは店名を中央寄せ */
@media (min-width: 1200px) {
  .hero .title-block {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}

/* 視覚的に隠しスクリーンリーダーにのみ読ませる（トップのh1等） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- セクション共通 ---- */
.section-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.chapter-label {
  margin: 0;
  line-height: normal;
  font-family: var(--font-latin);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  color: var(--c-gold);
}
.section-title {
  margin: 8px 0 0;
  letter-spacing: 0;
  font-family: var(--font-latin);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(38px, 9vw, 52px);
  line-height: 1;
  color: var(--c-text);
}
.ghost-numeral {
  position: absolute;
  margin: 0;
  font-family: var(--font-latin);
  font-size: 130px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 163, 92, 0.5);
  user-select: none;
}
.lead {
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: var(--c-text-soft);
}
.readmore-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.readmore-row .rule {
  width: 110px;
  height: 1px;
  background: rgba(201, 163, 92, 0.55);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.readmore {
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.readmore .readmore-text {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.readmore .arrow {
  display: inline-block;
  color: var(--c-gold);
  font-style: normal;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* hover: 文字・線のすれ違いに合わせて「＞」もわずかに右へ進む */
.readmore-row:hover .arrow {
  transform: translateX(6px);
}
/* 曲線チェブロンSVG（zikkai_arrow_svg()）: 文字サイズ・文字色に追従する */
.arrow-svg {
  display: inline-block;
  height: 0.82em;
  width: auto;
  vertical-align: -0.04em;
}
/* hover: ❯は固定のまま、文字が左へ・線が右へすれ違い、線が❯の手前に着地して矢になる */
.readmore-row:hover .readmore-text {
  transform: translateX(-124px);
}
.readmore-row:hover .rule {
  transform: translateX(90px);
}
@media (prefers-reduced-motion: reduce) {
  .readmore-row .rule,
  .readmore .readmore-text,
  .readmore .arrow {
    transition: none;
  }
  .readmore-row:hover .readmore-text,
  .readmore-row:hover .rule,
  .readmore-row:hover .arrow {
    transform: none;
  }
}

/* ---- Specials ---- */
/* Bar〜Specialsの間で素の背景が「帯」に見えないよう、セクション上部の余白を
   ボルドー（透明=アンビエントが透ける）から黒帯へ溶かす黄昏グラデーションにする */
#specials {
  background: linear-gradient(
    180deg,
    rgba(13, 10, 11, 0) 0,
    var(--c-bg-news) 110px
  );
}

/* SP: 商品を見せるため画像は最大でも正方形とし、テキストは画像の下に置く */
.specials-visual {
  position: relative;
}
.specials-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 640px;
  object-fit: cover;
}
.specials-grad {
  display: none;
}
.specials-media {
  position: relative;
  background: var(--c-bg-news);
}
.specials-copy {
  padding: 30px 24px 0;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .specials-img {
    aspect-ratio: auto;
    height: clamp(480px, 74vh, 680px);
    max-height: none;
  }
  .specials-grad {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(20, 8, 9, 0.82) 0%,
      rgba(20, 8, 9, 0.2) 48%,
      rgba(20, 8, 9, 0.25) 100%
    );
  }
  .specials-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 34px;
    padding: 0 30px;
  }
}

/* Conceptの縦書きリード: 高さ制限を設けず<br>位置でのみ改列させる（環境差で
   中途改行が起きないように。max-heightでの制御は禁止） */
.concept-tate {
  max-height: none;
}

/* ---- セクション画像のカードリンク（Read moreと同じ遷移先） ---- */
.card-link {
  display: block;
  overflow: hidden;
}
.card-link img {
  transition:
    opacity 1.8s ease,
    transform 1.4s ease;
}
.card-link:hover img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .card-link img {
    transition: opacity 1.8s ease;
  }
  .card-link:hover img {
    transform: none;
  }
}
/* 画像上の装飾（グラデーション・飾り数字）はクリックを妨げない */
.specials-grad {
  pointer-events: none;
}
.ghost-numeral {
  pointer-events: none;
}

/* 中央連動ズーム（main.jsがimgに.center-zoomを付与し、rAFでscaleを毎フレーム更新）。
   transformに短いtransitionを残すことで、スクロールの飛び（慣性・コマ落ち）を
   なめらかに吸収する（hover用の1.4sは追従が鈍りすぎるため0.6sに短縮） */
img.center-zoom {
  transition:
    opacity 1.8s ease,
    transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

/* ---- スクロール出現 ---- */
/* 画像: opacityのみ・ゆっくり */
.fade-img {
  opacity: 0;
  transition: opacity 1.8s ease;
}
.fade-img.is-visible {
  opacity: 1;
}
/* テキスト（下層本文用）: 上下移動なしのフェードのみ（移動があると酔うため） */
.fade-in {
  opacity: 0;
  transition: opacity 1.1s ease var(--delay, 0s);
}
.fade-in.is-visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transition: none;
  }
}
/* テキスト: フェードインしつつ下からゆっくり上がる */
/* リード文は行単位で出現（<br>区切りを.lineに分割。縦書きでは列単位になる） */
.split-lines .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  transition-delay: calc(var(--delay, 0s) + var(--i) * 0.18s);
}
.split-lines.is-visible .line {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .split-lines .line {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Safariは縦書き(vertical-rl)＋行transformの組み合わせでスクロール再描画時に
   文字が消える不具合があるため、Conceptの縦書きリードは不透明度のみで出現させ、
   translateZ(0)で独自レイヤーに隔離して背後(.ambient)の再描画から切り離す */
.concept-tate {
  transform: translateZ(0);
}
.concept-tate .line {
  transform: none;
}

/* 見出し（News/Access・下層ページh1）の罫線: 文字のカスケード出現に続いて左から伸びる */
.head .rule {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}
.head .split-letters.is-visible + .rule {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .head .rule {
    transform: scaleX(1);
    transition: none;
  }
}

/* 大タイトルは1文字ずつ出現（JSでspan分割、--iは文字インデックス） */
.split-letters span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: calc(var(--delay, 0.3s) + var(--i) * 0.055s);
}
.split-letters.is-visible span {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .split-letters span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --rise: 上昇量 / --delay: 開始遅延。数字(小)→ラベル(中)→タイトル(大)の時間差で重ねる */
.fade-up {
  opacity: 0;
  transform: translateY(var(--rise, 26px));
  transition:
    opacity 1.3s ease var(--delay, 0s),
    transform 1.3s ease var(--delay, 0s);
}
.fade-up.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-img,
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- News ---- */
.news {
  background: var(--c-bg-news);
  padding: 64px 24px 66px;
}
.news .head,
.access .head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.news h2,
.access h2 {
  margin: 0;
  font-family: var(--font-latin);
  font-weight: 400;
  font-style: italic;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: var(--c-text);
}
.news .head .rule,
.access .head .rule {
  flex: 1;
  height: 1px;
  background: rgba(201, 163, 92, 0.35);
}
.news-item {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 15px 2px;
}
.news-item:last-of-type {
  padding-bottom: 0;
}
.news-item .date {
  flex: none;
  font-family: var(--font-latin);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--c-gold);
}
.news-item .title {
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
}
.news-item .title a {
  color: inherit;
  transition: color 0.3s ease;
}
.news-item .title a:hover {
  color: var(--c-gold);
}

/* ---- Access ---- */
/* トップの最終セクションは不透明背景にし、ページ下端の隙間から
   アンビエントのテクスチャが覗かないようにする。
   上端にはフッターと同じ金のヘアラインで章の区切りを付ける */
#access.access {
  /* 透明にして固定のmeltベース（body::before）を透かす。
     背後の章テクスチャはAccessが見えたらJSが.ambient--calmで消灯するため覗かない */
  border-top: 1px solid rgba(201, 163, 92, 0.22);
}
.access-info {
  margin-top: 40px;
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
}
.access-info p {
  margin: 0;
}
.hours-table {
  margin-top: 26px;
  border-collapse: collapse;
  width: 100%;
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
}
.hours-table th {
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  padding: 10px 24px 10px 0;
  font-weight: var(--font-gothic-weight);
  font-family: var(--font-latin);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-gold);
}
.hours-table td {
  vertical-align: top;
  padding: 10px 0;
}
/* 狭幅では3カラムだと時間表記が不自然に折り返すため縦積みにする */
@media (max-width: 560px) {
  .hours-table,
  .hours-table tr,
  .hours-table th,
  .hours-table td {
    display: block;
  }
  .hours-table tr {
    padding: 12px 0;
    border-top: 1px solid rgba(242, 233, 223, 0.1);
  }
  .hours-table tr:first-child {
    border-top: none;
  }
  .hours-table th {
    padding: 0 0 2px;
  }
  .hours-table td {
    padding: 2px 0;
    white-space: normal;
  }
}
/* 営業時間の下の注意書き（クライアント指定で小さな文字） */
.access-notes {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--c-text-soft);
}
.access-notes li {
  margin: 0;
  /* 折り返し行を「※」の後ろに揃えるぶら下げインデント */
  padding-left: 1em;
  text-indent: -1em;
}

/* ---- 下層ページ共通の外殻 ---- */
.page-shell {
  padding: 64px 0 96px;
}
.page-shell .head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
/* ページタイトルの帯は本文テキスト（内側672px）ではなく、写真と同じ外側カラム(720px)に揃える。
   幅は min(カラム720px, 画面幅-48px)。狭い画面では左右24pxのガターが残り、
   カラム幅に達した時点で写真の左右位置とぴったり一致する（境界で位置が飛ばない）。
   News（一覧に写真がなく本文カラム基準で揃える）は対象外 */
.page-shell:not(.page-news) > .section-inner:first-child {
  width: calc(100% - 48px);
  max-width: 720px;
  padding-left: 0;
  padding-right: 0;
}
.page-shell h1 {
  margin: 0;
  font-family: var(--font-latin);
  font-weight: 400;
  font-style: italic;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: var(--c-text);
}
.page-shell .head .rule {
  flex: 1;
  height: 1px;
  background: rgba(201, 163, 92, 0.35);
}
/* 本文の書体・サイズ・色は theme.json の styles（段落・リスト・見出し）で定義し、
   フロントとエディタに同一のCSSが自動出力される。ここに残すのはレイアウト（幅・余白）のみ */
.page-content {
  margin-top: 40px;
  overflow-wrap: break-word;
}
/* 本文中のテキストリンク（News本文のリンクと同じ金色下線のトーン） */
.page-content a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content a:hover {
  color: var(--c-text);
}
/* 下層本文の画像: 本文テキストより左右24pxずつ広い「カラム幅いっぱい」で見せる
   （読みやすさのため文章だけを内側に寄せる）。カラム幅720pxに満たないスマホでは
   そのまま画面の左右いっぱいのブリード表示になる。
   親のパディングを相殺する方式。vw基準はスクロールバー幅や丸め誤差で横スクロールが出るため */
.page-content :where(.wp-block-group) > .wp-block-image {
  width: calc(100% + 48px);
  max-width: none;
  margin-left: -24px;
}
/* 写真は必ずカラム幅いっぱいに広げる。縦位置の写真は「大」サイズが683px幅で
   カラム(720px)に届かず、figure内で左寄せ＝右側だけ余白が空くため
   （srcsetにより高解像度の候補が選ばれるので拡大によるボケは生じない） */
.page-content .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
}
/* 本文直下に置かれた画像（グループの外）も同じ幅に。負のマージンではなくパディング解除で
   行い、大画面でも基底ルールの720pxを超えないようにする */
.page-content:not(.is-classic) > .wp-block-image {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1199.98px) {
  .page-content:not(.is-classic) > .wp-block-image {
    max-width: none; /* スマホは画面の左右いっぱいまで */
  }
}
/* 本文幅の保険: 直下の子はすべて720pxに収める（素のブロック・変換済みカスタムHTMLとも）。
   全幅にしたいブロックは「配置: 全幅」(.alignfull) で除外。パターン側のグループが幅を持てば
   :where()の詳細度0なので不干渉 */
.page-content:not(.is-classic) > :where(:not(.alignfull)) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
/* リストはマーカー（・）が左padding内へ食い込むため、本文の左端にマーカー込みで揃うよう余白を足す */
.page-content:not(.is-classic) > :where(ul, ol) {
  padding-left: calc(24px + 1.4em);
}
/* クラシック本文（Recruit等）は全体が単一divのためコンテナ側で包む */
.page-content.is-classic {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
/* 固定ページ本文の見出し: Newsより一段大きく（SP 20px / PC 24px）。
   theme.jsonのh2(20px)はNews共通のグローバル定義のため、ここでスコープ上書き。
   編集画面側の同等ルールは editor.css（.post-type-page）にある */
.page-content h2 {
  font-size: 20px;
}
/* 固定ページ本文の画像: 前後のテキストとの間隔を広めに（全体共通は26px=下方の.wp-block-image）。
   ショートハンド不使用（SPブリードのmargin-left・中央寄せautoを保持） */
.page-content .wp-block-image {
  margin-top: 40px;
  margin-bottom: 40px;
}
/* 中央連動ズームの拡大分をfigure自身でトリミング */
.page-content .wp-block-image {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .page-content h2 {
    font-size: 24px;
  }
}
/* 先頭が斜体(em)で始まる見出しの光学補正: 和文emは合成斜体で字面が右に傾き左端が
   逃げて見えるため、わずかに左へ寄せる（:has非対応ブラウザでは補正なしに劣化）。
   ページ直下ブロックのセンタリング（margin-left: auto）と衝突しないよう
   margin-leftではなくtranslateで寄せる。is-style-bracket-headingのtext-indentとは独立に効く */
.page-content :is(h2, .is-style-catch-copy):has(> em:first-child) {
  translate: -0.1em 0;
}

/* -------------------------------------------------------------------------
 * 本文コンテンツ用クラス（非スコープ=エディタにもそのまま効く。
 * main.cssはadd_editor_styleでエディタにも読み込まれる）
 * ---------------------------------------------------------------------- */
/* 旧テーマ由来のユーティリティクラス（ブロック変換後もclass属性は残る） */
.mgt10 {
  margin-top: 10px;
}
.mgt20 {
  margin-top: 20px;
}
/* 埋め込みフォーム（form-mailer等）の馴染ませ */
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
textarea,
select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 163, 92, 0.4);
  color: var(--c-text);
  padding: 8px 10px;
  font-family: inherit;
  font-size: var(--fs-body);
  max-width: 100%;
  box-sizing: border-box;
}
/* フォーカスはブラウザ既定の青リングではなく、テーマの金で示す
   （視認性維持のためoutline自体は消さない。inputのセレクタは
   上の基底ルールと:not()構成を揃えてborder-colorの詳細度負けを防ぐ） */
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(201, 163, 92, 0.85);
  outline-offset: 1px;
  border-color: var(--c-gold);
}
input[type="submit"],
button[type="submit"] {
  background: var(--c-gold-deep);
  border: none;
  color: #fffdf8;
  padding: 11px 34px;
  margin-top: 26px;
  letter-spacing: 0.18em;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
}
input[type="submit"]:focus-visible,
button[type="submit"]:focus-visible {
  outline: 2px solid rgba(201, 163, 92, 0.85);
  outline-offset: 2px;
}
@media (min-width: 1200px) {
  input[type="submit"],
  button[type="submit"] {
    display: block;
    width: auto;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* form-mailer共通の「ラベル＋<br>＋入力欄」構造（Mail/Recruit両ページ） */
/* formはbodyの明朝を継承してしまうため、本文と同じゴシックを明示
   （ラベル・入力欄・プレースホルダーはここから継承） */
form {
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  letter-spacing: 0.04em;
}
form label {
  display: inline-block;
  margin: 20px 0 8px;
}
form .required {
  color: var(--c-gold);
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  max-width: 480px;
}
textarea {
  width: 100%;
  min-height: 160px;
}
/* 二重罫線の注記ボックス（ブロックの「追加CSSクラス」box-note で使用。Recruit「業務委託」等） */
.box-note {
  margin-block: 40px;
  border-top: 3px double rgba(201, 163, 92, 0.7);
  border-bottom: 3px double rgba(201, 163, 92, 0.7);
  padding: 2px 20px;
}
.box-note p {
  margin: 0.8em 0;
}
table {
  max-width: 100%;
}

/* ---- 本文パターン用 ---- */
/* 英文注記（Concept末尾） */
.en-note {
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: rgba(237, 227, 216, 0.75);
}
/* 【】見出し（ぶら下げ）: 見出し用ブロックスタイル（functions.phpで登録）。行頭が全角の
   「【」で始まる見出し向けに、括弧前の空き分だけぶら下げて本文の左端に揃える。
   Specialsの月替わり見出しで使用（他のセクション見出しにもサイドバーから適用可） */
.is-style-bracket-heading {
  text-indent: -0.5em;
}
/* Specials 導入部キャッチコピー（ブロックスタイル「キャッチコピー」）:
   段落をh2と同じ見た目にする（theme.jsonのcore/heading＋上の.page-content h2
   = 明朝・weight700・字間0.08em・SP20px/PC24px。マージンはh2既定の0.83emに合わせる。
   上下はlonghand——ショートハンドは:where()詳細度0のセンタリングmargin autoを潰す） */
.is-style-catch-copy {
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0.08em;
  color: var(--c-text);
}
@media (min-width: 1200px) {
  .is-style-catch-copy {
    font-size: 24px;
  }
}
/* Specials 商品ユニット
   .is-style-* はブロックスタイル（functions.phpでregister_block_style）経由の同義クラス。
   スタイルピッカーは全投稿タイプに出るため、.is-style-* は文脈を問わず(News等でも)
   同じ見た目になるようスコープしない。.specials-unit内の素のクラス(unit-label等)は
   パターンが出力する内部マークアップ用。
   実運用(2026-08)に合わせた役割分担:
   unit-name(h3) = 作品名の見出し行（金。月替わり見出しは導入部外のh2＋is-style-bracket-heading） /
   unit-price = 価格 / unit-label = ユニット内の小見出し（金・タイトルと同見た目） /
   unit-note = 注釈 */
.specials-unit {
  margin-top: 56px;
}
.specials-unit .unit-name,
.specials-unit .unit-label,
.is-style-unit-label {
  margin: 28px 0 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: var(--fs-body);
  letter-spacing: 0.08em;
  color: var(--c-gold);
}
/* 商品名見出しは小見出しより一回り大きく (SP16px/PC18px) */
.specials-unit .unit-name {
  font-size: 16px;
}
@media (min-width: 1200px) {
  .specials-unit .unit-name {
    font-size: 18px;
  }
}
.specials-unit .unit-price,
.is-style-unit-price {
  margin: 0 0 14px;
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--c-text);
}
.specials-unit .unit-note,
.is-style-unit-note {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(237, 227, 216, 0.7);
}
/* 本文中のリスト: 行頭のドットをゴールドに。
   注意: 本文直下(.page-content > ul)のリストは:where()の詳細度0ルールで
   margin auto センタリング+左padding調整されるため、ここでは上下マージンのみ
   longhandで指定し、左paddingの正規化はグループ内のリストに限定する
   (marginショートハンドで左右を潰すとRecruit等でセンタリングが壊れる) */
.page-shell ul.wp-block-list {
  margin-top: 12px;
  margin-bottom: 18px;
}
.page-shell .wp-block-group ul.wp-block-list {
  padding-left: 1.5em;
}
.page-shell ul.wp-block-list li {
  margin-bottom: 4px;
  line-height: 1.8;
}
.page-shell ul.wp-block-list li::marker {
  color: var(--c-gold);
}
/* 区切り線(hr): ゴールドの細線 */
.page-shell hr.wp-block-separator {
  border: 0;
  border-top: 1px solid rgba(201, 163, 92, 0.45);
  margin: 44px auto;
  width: 100%;
}
/* 背景色付きブロック(WP標準の背景色UI): News記事カードと同じ余白に整える。
   「囲み背景（半透過・News風）」を選んだ場合は金の極細ボーダーも付けてカード化 */
.page-content .has-background {
  padding: 26px 20px 30px;
}
.page-content .has-box-bg-background-color {
  border: 1px solid rgba(201, 163, 92, 0.14);
}
@media (min-width: 1200px) {
  .page-content .has-background {
    padding: 32px 36px 36px;
  }
}
/* 本文中の画像は縦積み・間隔 */
.wp-block-image {
  margin: 26px auto;
}

/* ---- SP/PC出し分け改行 ----
   エディタの「改行（PCのみ）」「改行（SPのみ）」ボタンが挿入する
   ゼロ幅スペース入りスパン。高さ0のblock要素になることで、
   その画面幅でだけ改行として働く（中身があっても空行を作らないようheight:0） */
.rbr-pc,
.rbr-sp {
  display: none;
}
@media (min-width: 1200px) {
  .rbr-pc {
    display: block;
    height: 0;
    line-height: 0;
    overflow: hidden;
  }
}
@media (max-width: 1199.98px) {
  .rbr-sp {
    display: block;
    height: 0;
    line-height: 0;
    overflow: hidden;
  }
}

/* ---- ページ末尾の回遊リンク（次のページへの章送り） ---- */
.next-page {
  margin-top: 96px;
}
.next-page a {
  display: block;
  padding: 24px 0 6px;
  border-top: 1px solid rgba(201, 163, 92, 0.35);
}
.next-page .label {
  margin: 0;
  line-height: normal;
  font-family: var(--font-latin);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  color: var(--c-gold);
}
.next-page .title {
  margin: 8px 0 0;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-latin);
  font-style: italic;
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: var(--c-text);
}
.next-page .title .name {
  transition: color 0.3s ease;
}
.next-page .arrow {
  font-style: normal;
  font-size: 22px;
  color: var(--c-gold);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.next-page a:hover .name {
  color: var(--c-gold);
}
.next-page a:hover .arrow {
  transform: translateX(10px);
}
@media (prefers-reduced-motion: reduce) {
  .next-page .arrow,
  .next-page .title .name {
    transition: none;
  }
  .next-page a:hover .arrow {
    transform: none;
  }
}

/* ---- Access 天使イラスト ---- */
.access-illust {
  display: block;
  max-width: min(480px, 100%);
  height: auto;
  margin: 72px auto 0;
}

/* ---- Cafe/Bar 営業時間カード（現行サイトのイラスト踏襲） ---- */
.time-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 64px;
}
.time-card .illust {
  width: 150px;
  height: auto;
  flex: none;
}
.time-card--bar {
  flex-direction: row-reverse;
}
.time-card--bar .text {
  text-align: right;
}
.time-card .hours {
  margin: 0;
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
}
.time-card .charge {
  margin: 10px 0 0;
  line-height: normal;
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  letter-spacing: 0.06em;
  color: var(--c-gold);
}
.time-card .menu {
  margin: 14px 0 0;
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
}
@media (max-width: 420px) {
  .time-card {
    gap: 16px;
  }
  .time-card .illust {
    width: 118px;
  }
}

/* ---- News一覧・詳細（一覧でも全文表示） ---- */
.news-archive {
  margin-top: 40px;
}
.news-entry {
  padding: 26px 20px 30px;
  background: rgba(26, 9, 12, 0.45);
  border: 1px solid rgba(201, 163, 92, 0.14);
}
.news-entry + .news-entry {
  margin-top: 28px;
}
@media (min-width: 1200px) {
  .news-entry {
    padding: 32px 36px 36px;
  }
}
.news-entry .date {
  margin: 0;
  line-height: normal;
  font-family: var(--font-latin);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--c-gold);
}
.news-entry .body a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-entry .body a:hover {
  color: var(--c-text);
}
.news-entry .body {
  margin-top: 14px;
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: var(--fs-body);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
  overflow-wrap: break-word;
}
.news-entry .body img {
  height: auto;
}
/* News本文の引用: UA既定の左右40pxインデントをやめ、金の縦罫で引用らしく
   （内部ページ埋め込みのフォールバック=wp-embedded-content も同じ体裁で統一） */
.news-entry .body blockquote {
  margin: 20px 0;
  padding: 2px 0 2px 16px;
  border-left: 2px solid rgba(201, 163, 92, 0.5);
}
.news-archive .navigation {
  margin-top: 56px;
  font-family: var(--font-latin);
}
.news-archive .nav-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
/* 数字はDidotの円形ヒットエリア。現在ページは金のリングで示す */
.news-archive .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  border: 1px solid transparent;
  border-radius: 50%;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.news-archive a.page-numbers:hover {
  color: var(--c-gold);
  border-color: rgba(201, 163, 92, 0.35);
}
.news-archive .page-numbers.current {
  color: var(--c-gold);
  border-color: rgba(201, 163, 92, 0.6);
}
.news-archive .page-numbers.dots {
  min-width: auto;
  border: none;
  color: rgba(237, 227, 216, 0.5);
}
.news-archive .page-numbers.prev,
.news-archive .page-numbers.next {
  border: none;
  font-size: 15px;
  color: var(--c-gold);
}
.news-archive a.page-numbers.prev:hover,
.news-archive a.page-numbers.next:hover {
  color: var(--c-text);
  border-color: transparent;
}
.news-archive .post-navigation .nav-links {
  justify-content: space-between;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--c-bg-footer);
  border-top: 1px solid rgba(201, 163, 92, 0.22);
  padding: 42px 24px 34px;
  text-align: center;
}
.site-footer .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}
/* 色はaのcurrentColorで継承（塗りアイコンのfillと、Instagramのstrokeが同時に追従する） */
.site-footer .sns a {
  color: var(--c-text);
  transition: color 0.3s ease;
}
.site-footer .sns a:hover {
  color: var(--c-gold);
}
.site-footer .sns svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  display: block;
}
.site-footer .copyright {
  margin: 22px 0 0;
  line-height: normal;
  font-family: var(--font-latin);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(242, 233, 223, 0.55);
}
.site-footer .copyright-note {
  margin: 6px 0 0;
  line-height: normal;
  font-family: var(--font-gothic);
  font-weight: var(--font-gothic-weight);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(242, 233, 223, 0.45);
}
.site-footer .logo a {
  display: inline-block;
}
.site-footer .logo img {
  height: 26px;
  width: auto;
  transition: opacity 0.3s ease;
}
.site-footer .logo a:hover img {
  opacity: 0.75;
}

/* ---- モバイルメニュー ---- */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  /* 天使画レイヤーが半透明のため、地色は完全不透明にして背後のページを遮断する */
  background: rgb(26, 9, 11);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
/* 背景の天使画（白地の絵をmultiplyでエンジに溶かす）。要素内完結の
   background-blend-modeを使う（fixed配下のmix-blend-modeは旧WebKitで効かないため）。
   文字の可読性はopacityで抑えて確保 */
.overlay-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--c-bg) url("../img/access-angel.jpg") 50% 28% / cover
    no-repeat;
  background-blend-mode: multiply;
  opacity: 0.55;
}
.overlay-menu.open {
  display: flex;
}
.overlay-menu .menu-logo img {
  display: block;
  height: 36px;
  width: auto;
}
.overlay-menu .menu-logo {
  margin-bottom: 10px;
}
.overlay-menu a {
  font-family: var(--font-latin);
  font-size: 21px;
  letter-spacing: 0.2em;
}
.overlay-menu .close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #d9c7a8;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-latin);
}
.overlay-menu .reserve-link {
  margin-top: 10px;
  border: 1px solid var(--c-gold-deep);
  padding: 11px 34px;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}

/* ---- PCサイドナビ（BHと同形式・常時表示） ---- */
.side-nav {
  display: none;
}

/* 背景は常に全幅・コンテンツラッパーのみ中央寄せ。ナビは左端の固定オーバーレイ。
   720pxコンテンツ + 両側にナビ幅230pxを確保できる 1200px を境界にする */
@media (min-width: 1200px) {
  .site-header {
    justify-content: center;
    height: 88px;
  }
  .site-header .logo .logo-sp {
    display: none;
  }
  .site-header .logo .logo-pc {
    display: block;
    height: 34px;
  }
  .hamburger {
    display: none;
  }
  .status-bar {
    justify-content: center;
  }

  .side-nav {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--side-nav-w);
    z-index: 30;
    padding: 210px 0 0 64px;
  }
  .side-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: normal;
  }
  .side-nav li {
    position: relative;
    margin: 0 0 30px;
  }
  .side-nav a {
    font-family: var(--font-latin);
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--c-text);
    transition: color 0.3s ease;
  }
  .side-nav a:hover,
  .side-nav a.current {
    color: var(--c-gold);
  }
  /* 現在地の「❯」（header.phpが現在地のみ出力）。文字の左外側・ナビの左パディング内に置く。
     色はa.currentの金をcurrentColorで継承するため指定不要 */
  .side-nav .current .arrow-svg {
    position: absolute;
    left: -20px;
    top: 50%;
    height: 0.6em;
    transform: translateY(-50%);
  }
}
