@charset "UTF-8";
/*!
Theme Name: 月なぎ（つきなぎ）
Theme URI: https://tsukinagi.com
Description: 和食処「月なぎ（つきなぎ）」リニューアル用WordPressテーマ。天ぷらをメインに据えた和食ラインアップを固定軸に構成。墨黒×金の高級和テイスト。
Author: 月なぎ
Version: 1.0.0
*/
/* =================================================================
   ブレイクポイント
   ================================================================= */
/* =================================================================
   レスポンシブ用 mixin
   ================================================================= */
/* =================================================================
   カラー / デザイントークン（CSSカスタムプロパティ）
   ※本番でロゴ画像URLが支給されたら --logo-mark を差し替える
   ================================================================= */
:root {
  --sumi: #0c0b0a; /* 墨黒 */
  --sumi2: #161412; /* やや明るい墨 */
  --sumi3: #211e1a; /* カード地 */
  --gold: #c9a24b; /* 金 */
  --gold-l: #e4c988; /* 明るい金 */
  --gold-light: #e8d49a;
  --washi: #f4efe4; /* 和紙白 */
  --washi2: #e8e0cf;
  --txt: #e9e3d6;
  --txt-mute: #9a917f;
  --line: rgba(201, 162, 75, .28);
  --ph-bg: linear-gradient(135deg, #211e1a, #161412);
  /* ▼ ロゴデータ（本番で実ロゴのURLに差し替え）▼ */
  --logo-mark: none;
  /* ▲ ロゴデータここまで ▲ */
}

/* =================================================================
   ベース / リセット
   ================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: var(--sumi);
  color: var(--txt);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mincho {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 背景の和紙テクスチャ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(201, 162, 75, 0.06), transparent 60%), radial-gradient(900px 500px at -10% 90%, rgba(201, 162, 75, 0.04), transparent 60%);
}

.wrap {
  position: relative;
  z-index: 1;
}

/* =================================================================
   パーシャル読み込み（ページごとに縦長で記述）
   ================================================================= */
/* =================================================================
   ローディング画面（簡易）
   ================================================================= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--sumi);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ロゴ未支給時は「月」の文字をフォールバック表示 */
  background: var(--logo-mark) center/contain no-repeat;
  font-size: 40px;
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 50%;
}

/* 回転する金のリング（スピナー） */
.loader-mark::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-l);
  animation: loaderSpin 0.9s linear infinite;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .loader-mark {
    width: 60px;
    height: 60px;
    font-size: 34px;
  }
}
/* =================================================================
   ヘッダー
   ================================================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.55) 70%, transparent);
  backdrop-filter: blur(4px);
  transition: 0.4s;
}

header.scrolled {
  background: rgba(8, 7, 6, 0.96);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  font-size: 52px;
}

/* マーク単体（丸マーク。ロゴ画像支給までのプレースホルダ） */
.logo-mark-img {
  position: relative;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: "Hina Mincho", serif;
}

.logo-mark-img::before {
  content: "月";
  font-size: 0.5em;
}

.logo-mark-img::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(201, 162, 75, 0.4);
  border-radius: 50%;
}

.brand .name {
  font-family: "Hina Mincho", serif;
  font-size: 30px;
  letter-spacing: 0.12em;
  color: var(--washi);
}

.brand .name small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 2px;
  font-family: "Cormorant Garamond", serif;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

nav a {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--txt);
  position: relative;
  padding: 6px 0;
  transition: 0.3s;
  cursor: pointer;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}

nav a:hover {
  color: var(--gold-light);
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.18em;
  font-size: 13px;
  transition: 0.35s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--sumi);
}

/* ハンバーガー */
.burger {
  display: none;
  cursor: pointer;
  z-index: 60;
  position: relative;
  width: 30px;
  height: 20px;
}

.burger span {
  position: absolute;
  left: 2px;
  width: 26px;
  height: 1.5px;
  background: var(--gold-light);
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 9px;
}

.burger span:nth-child(3) {
  top: 18px;
}

.burger.open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* =================================================================
   スマホ：全画面ドロワーメニュー
   ================================================================= */
@media (max-width: 768px) {
  .nav {
    padding: 16px 22px;
    position: relative;
    z-index: 60;
  }
  .brand .name {
    font-size: 24px;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 55;
    background: rgba(8, 7, 6, 0.98);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
  }
  nav.open {
    opacity: 1;
    visibility: visible;
  }
  nav::before {
    content: "月";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Hina Mincho", serif;
    font-size: 90vw;
    line-height: 1;
    color: rgba(201, 162, 75, 0.04);
    pointer-events: none;
    white-space: nowrap;
  }
  nav ul {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: 360px;
    padding: 0 30px;
  }
  nav ul li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  }
  nav.open ul li {
    opacity: 1;
    transform: none;
  }
  nav.open ul li:nth-child(1) {
    transition-delay: 0.15s;
  }
  nav.open ul li:nth-child(2) {
    transition-delay: 0.25s;
  }
  nav.open ul li:nth-child(3) {
    transition-delay: 0.35s;
  }
  nav.open ul li:nth-child(4) {
    transition-delay: 0.45s;
  }
  nav.open ul li:nth-child(5) {
    transition-delay: 0.55s;
  }
  nav.open ul li:nth-child(6) {
    transition-delay: 0.65s;
  }
  nav.open ul li:nth-child(7) {
    transition-delay: 0.75s;
  }
  nav ul li a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(201, 162, 75, 0.15);
  }
  nav ul li a::after {
    display: none;
  }
  nav ul li:last-child a,
  nav ul li .nav-cta {
    border: 1px solid var(--gold);
    margin-top: 22px;
    border-radius: 2px;
    color: var(--gold-light);
    padding: 14px 0;
  }
  .burger {
    display: block;
  }
}
/* =================================================================
   セクション共通
   ================================================================= */
section {
  position: relative;
}

.sec-pad {
  padding: 120px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: 70px;
}

.sec-head .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 16px;
  display: block;
  margin-bottom: 14px;
}

.sec-head .jp {
  font-family: "Hina Mincho", serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--washi);
  letter-spacing: 0.14em;
}

.sec-head .jp::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

/* 共通リード文（料理・季節ページで使用） */
.lead {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.lead p {
  font-size: 16px;
  color: var(--txt-mute);
  line-height: 2.4;
  letter-spacing: 0.05em;
}

.lead p span {
  color: var(--gold-light);
}

/* 共通Instagramボタン */
.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 13px 30px;
  letter-spacing: 0.18em;
  font-size: 14px;
  font-family: "Hina Mincho", serif;
  transition: 0.35s;
}

.insta-btn:hover {
  background: var(--gold);
  color: var(--sumi);
}

/* =================================================================
   下層ページ：ヘッダー（ページタイトル）
   ================================================================= */
/* 固定ヘッダー分の余白（下層ページ用ラッパー） */
.lower-page {
  padding-top: 90px;
}

.page-hero {
  position: relative;
  height: 46vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--sumi);
}

.page-hero .ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  animation: phZoom 9s ease-out forwards;
}

@keyframes phZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
.page-hero .ph-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.7), rgba(8, 7, 6, 0.8));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.page-hero .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.45em;
  color: var(--gold-light);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 18px;
}

.page-hero .en::before,
.page-hero .en::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(34px, 6vw, 56px);
  color: var(--washi);
  letter-spacing: 0.18em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
}

/* パンくず */
.crumb {
  padding: 18px 40px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--txt-mute);
}

.crumb a {
  color: var(--gold);
  transition: 0.3s;
}

.crumb a:hover {
  color: var(--gold-light);
}

.crumb span {
  margin: 0 10px;
  color: rgba(201, 162, 75, 0.4);
}

/* =================================================================
   ※ 画像プレースホルダー（"PHOTO" 仮表示）は削除しました。
   　 !important 背景がACFのインライン background-image を上書きし、
   　 実画像が表示されない原因になっていたため。
   　 画像未設定の要素はテンプレ側で background:var(--ph-bg) を指定。
   ================================================================= */
/* =================================================================
   プライバシーポリシー等の文書ページ
   ================================================================= */
.policy-doc {
  max-width: 860px;
  margin: 0 auto;
}

.policy-doc h2 {
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin: 44px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.policy-doc h2:first-child {
  margin-top: 0;
}

.policy-doc p {
  font-size: 14px;
  color: var(--txt-mute);
  line-height: 2.1;
  letter-spacing: 0.03em;
}

/* =================================================================
   共通レスポンシブ
   ================================================================= */
@media (max-width: 768px) {
  .sec-pad {
    padding: 80px 22px;
  }
}
/* =================================================================
   スクロールアニメーション
   ※ JS（IntersectionObserver）で .in を付与して発火
   ================================================================= */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ふわっと上げ（基本） */
.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 2.8s cubic-bezier(0.19, 1, 0.22, 1), transform 2.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* フェードのみ（さらっと） */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 3.2s ease, transform 3.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade.in {
  opacity: 1;
  transform: none;
}

/* 左から */
.slide-l {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 2.8s cubic-bezier(0.19, 1, 0.22, 1), transform 2.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-l.in {
  opacity: 1;
  transform: none;
}

/* 右から */
.slide-r {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 2.8s cubic-bezier(0.19, 1, 0.22, 1), transform 2.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-r.in {
  opacity: 1;
  transform: none;
}

/* じわっと拡大しながら */
.zoom-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 3s ease, transform 3s cubic-bezier(0.19, 1, 0.22, 1);
}

.zoom-in.in {
  opacity: 1;
  transform: none;
}

/* 連続要素の時間差（親に .stagger を付ける） */
.stagger > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2.4s cubic-bezier(0.19, 1, 0.22, 1), transform 2.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.stagger.in > * {
  opacity: 1;
  transform: none;
}

.stagger.in > *:nth-child(1) {
  transition-delay: 0.15s;
}

.stagger.in > *:nth-child(2) {
  transition-delay: 0.5s;
}

.stagger.in > *:nth-child(3) {
  transition-delay: 0.85s;
}

.stagger.in > *:nth-child(4) {
  transition-delay: 1.2s;
}

.stagger.in > *:nth-child(5) {
  transition-delay: 1.55s;
}

.stagger.in > *:nth-child(6) {
  transition-delay: 1.9s;
}

/* セクション見出しの線が伸びる */
.sec-head.in .jp::after {
  animation: lineGrow 2s 0.5s cubic-bezier(0.19, 1, 0.22, 1) backwards;
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 46px;
  }
}
/* 行ごとに時間差で出てくる（親に .lines） */
.lines > * {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 2.6s cubic-bezier(0.19, 1, 0.22, 1), transform 2.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.lines.in > * {
  opacity: 1;
  transform: none;
}

.lines.in > *:nth-child(1) {
  transition-delay: 0.2s;
}

.lines.in > *:nth-child(2) {
  transition-delay: 0.8s;
}

.lines.in > *:nth-child(3) {
  transition-delay: 1.4s;
}

.lines.in > *:nth-child(4) {
  transition-delay: 2s;
}

.lines.in > *:nth-child(5) {
  transition-delay: 2.6s;
}

/* =================================================================
   スマホ：カードを1枚ずつ確実にアニメ
   ================================================================= */
@media (max-width: 768px) {
  .dish-grid.stagger.in > *:nth-child(1) {
    transition-delay: 0.1s;
  }
  .dish-grid.stagger.in > *:nth-child(2) {
    transition-delay: 0.45s;
  }
  .dish-grid.stagger.in > *:nth-child(3) {
    transition-delay: 0.8s;
  }
  .menu-grid.stagger.in > *:nth-child(1) {
    transition-delay: 0.1s;
  }
  .menu-grid.stagger.in > *:nth-child(2) {
    transition-delay: 0.45s;
  }
  .menu-grid.stagger.in > *:nth-child(3) {
    transition-delay: 0.8s;
  }
}
/* =================================================================
   TOP：ヒーロー（写真スライダー）
   ================================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  overflow: hidden;
  background: #0c0b0a;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: opacity 1.8s ease;
}

.hero-slide.active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.62), rgba(8, 7, 6, 0.35) 45%, rgba(8, 7, 6, 0.88));
}

/* 仮スライド（実画像が入るまで） */
.hero-s1 {
  background: var(--ph-bg);
}

.hero-s2 {
  background: var(--ph-bg);
}

.hero-s3 {
  background: var(--ph-bg);
}

/* 縦の金ライン装飾 */
.hero-frame {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(201, 162, 75, 0.25);
  z-index: 2;
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.hero-frame::before {
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
}

.hero-frame::after {
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
}

.hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.5em;
  color: var(--gold-light);
  font-size: 15px;
  margin-bottom: 30px;
  opacity: 0;
  animation: rise 2.2s 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero-logo {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: clamp(78px, 16vw, 190px);
  color: var(--washi);
  letter-spacing: 0.14em;
  line-height: 0.95;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: rise 2.6s 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-sub {
  margin-top: 30px;
  font-size: clamp(15px, 2.4vw, 21px);
  letter-spacing: 0.42em;
  color: var(--washi);
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  opacity: 0;
  animation: rise 2.4s 1.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(var(--gold), transparent);
  margin: 44px auto 0;
  opacity: 0;
  animation: rise 2.4s 2.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  writing-mode: vertical-rl;
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: var(--gold-light);
  margin: 12px auto 0;
  animation: scrolldown 2s infinite;
}

@keyframes scrolldown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* =================================================================
   TOP：ご挨拶
   ================================================================= */
.greeting {
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.greeting .bgkanji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Hina Mincho", serif;
  font-size: 46vw;
  color: rgba(201, 162, 75, 0.03);
  pointer-events: none;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.greeting-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

/* ご挨拶の画像（設定時のみ表示） */
.greeting-img {
  height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--line);
  margin: 0 auto 44px;
  max-width: 620px;
}

.greeting h3 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(24px, 3.6vw, 34px);
  color: var(--washi);
  letter-spacing: 0.16em;
  line-height: 1.9;
  margin-bottom: 36px;
}

.greeting h3 span {
  color: var(--gold-light);
}

.greeting p {
  font-size: 16px;
  color: var(--txt-mute);
  letter-spacing: 0.06em;
  line-height: 2.4;
}

.greeting .est {
  margin-top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 15px;
}

/* =================================================================
   TOP：こだわり 2枠
   ================================================================= */
.kodawari {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.kod-cell {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kod-cell .kbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}

.kod-cell:hover .kbg {
  transform: scale(1.06);
}

.kod-cell .kbg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.6);
  transition: 0.5s;
}

.kod-cell:hover .kbg::after {
  background: rgba(8, 7, 6, 0.45);
}

.kod-1 .kbg {
  background-image: radial-gradient(circle at 40% 40%, #332618, #0c0b0a 75%);
}

.kod-2 .kbg {
  background-image: radial-gradient(circle at 60% 50%, #2c2417, #0c0b0a 75%);
}

.kod-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.kod-inner .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 14px;
}

.kod-inner h3 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--washi);
  letter-spacing: 0.18em;
  margin: 14px 0 22px;
}

.kod-inner p {
  font-size: 14px;
  color: var(--txt-mute);
  letter-spacing: 0.08em;
  max-width: 340px;
  margin: 0 auto 28px;
}

.kod-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: 0.3s;
}

.kod-link:hover {
  gap: 18px;
}

/* =================================================================
   TOP：おしながき（メニュー抜粋）
   ================================================================= */
.menu {
  background: var(--sumi2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.menu-card {
  background: var(--sumi3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.4s;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.menu-card .ph {
  height: 220px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
}

.menu-card .ph .label {
  font-family: "Hina Mincho", serif;
  color: var(--washi);
  letter-spacing: 0.3em;
  font-size: 15px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.menu-card .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.25), rgba(8, 7, 6, 0.75));
}

.menu-card .body {
  padding: 30px 28px 34px;
}

.menu-card .cat {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 13px;
}

.menu-card h4 {
  font-family: "Hina Mincho", serif;
  font-size: 22px;
  color: var(--washi);
  letter-spacing: 0.1em;
  margin: 8px 0 16px;
}

.menu-card ul {
  list-style: none;
}

.menu-card li {
  font-size: 14px;
  color: var(--txt-mute);
  padding: 7px 0;
  border-bottom: 1px dotted rgba(201, 162, 75, 0.18);
  display: flex;
  justify-content: space-between;
}

.menu-card li span {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
}

.menu-note {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: var(--txt-mute);
  letter-spacing: 0.08em;
}

.menu-note b {
  color: var(--gold-light);
  font-weight: 500;
}

/* =================================================================
   TOP：下部バナー（限定メニュー / アクセス）
   ================================================================= */
.banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bnr-cell {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.bnr-cell .bbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s;
}

.bnr-cell:hover .bbg {
  transform: scale(1.06);
}

.bnr-cell .bbg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.62);
}

.bnr-1 .bbg {
  background-image: radial-gradient(circle at 50% 40%, #2e2516, #0c0b0a 75%);
}

.bnr-2 .bbg {
  background-image: radial-gradient(circle at 50% 40%, #26201a, #0c0b0a 75%);
}

.bnr-inner {
  position: relative;
  z-index: 2;
}

.bnr-inner .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 13px;
}

.bnr-inner h3 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--washi);
  letter-spacing: 0.18em;
  margin: 12px 0;
}

.bnr-inner .arrow {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
}

/* =================================================================
   TOP：店舗情報
   ================================================================= */
.info {
  padding: 120px 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.info dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 0;
}

.info dt {
  font-family: "Hina Mincho", serif;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
}

.info dd {
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  font-size: 15px;
  color: var(--txt);
}

.info dd small {
  color: var(--txt-mute);
  font-size: 13px;
}

.info-card {
  background: var(--sumi3);
  border: 1px solid var(--line);
  padding: 48px 44px;
  text-align: center;
}

.info-card .mark {
  margin: 0 auto 20px;
  /* 会社名（ワードマーク）表示 */
  font-size: 30px;
  letter-spacing: 0.14em;
  line-height: 1.3;
  color: var(--gold-light);
}

.info-card h4 {
  font-family: "Hina Mincho", serif;
  font-size: 22px;
  color: var(--washi);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13px;
  color: var(--txt-mute);
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.tel-big {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.info-card .hours {
  margin-top: 24px;
  font-size: 13px;
  color: var(--txt-mute);
  line-height: 2;
}

/* =================================================================
   TOP：レスポンシブ
   ================================================================= */
@media (max-width: 900px) {
  .kodawari,
  .banner,
  .info-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  /* SP：ヒーローの高さを下げて、写真の拡大（アップ）を抑える */
  .hero {
    height: 68vh;
    min-height: 420px;
  }
  /* SP：ヒーローのサブ文がはみ出さないよう字間と文字サイズを縮小 */
  .hero-sub {
    font-size: 13px;
    letter-spacing: 0.2em;
    margin-top: 22px;
    padding: 0 12px;
  }
  .greeting {
    padding: 90px 22px;
  }
  .info {
    padding: 80px 22px;
  }
}
/* =================================================================
   空間ページ（月なぎの空間）
   ================================================================= */
.intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.intro p {
  font-size: 16px;
  color: var(--txt-mute);
  line-height: 2.4;
  letter-spacing: 0.05em;
}

.intro p span {
  color: var(--gold-light);
}

/* 座席紹介 */
.seats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 20px;
}

.seat-row {
  display: contents;
}

.seat-img {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.seat-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--sumi3);
}

.seat-text .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 14px;
}

.seat-text h3 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--washi);
  letter-spacing: 0.14em;
  margin: 12px 0 20px;
}

.seat-text p {
  font-size: 14px;
  color: var(--txt-mute);
  line-height: 2.2;
  letter-spacing: 0.04em;
}

.seat-text .cap {
  margin-top: 22px;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

/* 宴会案内 */
.banquet {
  background: var(--sumi2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.banquet-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.banquet h3 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(24px, 3.4vw, 32px);
  color: var(--washi);
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}

.banquet p {
  font-size: 15px;
  color: var(--txt-mute);
  line-height: 2.3;
}

.banquet .badge {
  display: inline-block;
  margin-top: 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 12px 30px;
  letter-spacing: 0.18em;
  font-size: 14px;
  font-family: "Hina Mincho", serif;
}

/* =================================================================
   空間ページ：レスポンシブ
   ================================================================= */
@media (max-width: 900px) {
  .seats {
    grid-template-columns: 1fr;
  }
  /* SP：各座席行を縦並びコンテナにする。
     display:contents のままだと order が全座席に効いて崩れるため、
     行ごとに flex 化して order を行内に限定する。 */
  .seat-row {
    display: flex;
    flex-direction: column;
  }
  .seat-img {
    min-height: 280px;
  }
  .seat-text {
    padding: 44px 28px;
  }
  .seat-row.rev .seat-img {
    order: -1;
  }
}
/* =================================================================
   料理ページ（月なぎの料理）
   ================================================================= */
/* リード（共通 .lead に h2 を追加） */
.lead h2 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(24px, 3.6vw, 34px);
  color: var(--washi);
  letter-spacing: 0.16em;
  line-height: 1.9;
  margin-bottom: 30px;
}

.lead h2 span {
  color: var(--gold-light);
}

/* 強み3つ */
.strength {
  background: var(--sumi2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.str-card {
  text-align: center;
}

.str-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
}

.str-card h3 {
  font-family: "Hina Mincho", serif;
  font-size: 22px;
  color: var(--washi);
  letter-spacing: 0.12em;
  margin: 18px 0 16px;
  position: relative;
  padding-bottom: 18px;
}

.str-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.str-card p {
  font-size: 14px;
  color: var(--txt-mute);
  line-height: 2.1;
  letter-spacing: 0.04em;
}

/* 画像＋テキスト交互 */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto 90px;
}

.feature:last-child {
  margin-bottom: 0;
}

.feature.rev .feat-img {
  order: 2;
}

.feat-img {
  height: 440px;
  background-size: cover;
  background-position: center;
  /* 写真の内側エッジを暗くするヴィネット（中に影） */
  box-shadow: inset 0 0 90px 30px rgba(0, 0, 0, 0.6);
}

.feat-text .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 14px;
}

.feat-text h3 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--washi);
  letter-spacing: 0.12em;
  margin: 12px 0 22px;
  line-height: 1.6;
}

.feat-text p {
  font-size: 15px;
  color: var(--txt-mute);
  line-height: 2.3;
  letter-spacing: 0.04em;
}

/* =================================================================
   料理ページ：レスポンシブ
   ================================================================= */
@media (max-width: 900px) {
  .strength-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .feature {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  .feature.rev .feat-img {
    order: 0;
  }
  .feat-img {
    height: 280px;
  }
}
/* =================================================================
   おしながきページ
   ================================================================= */
.menu-cat {
  max-width: 980px;
  margin: 0 auto 80px;
}

.menu-cat:last-of-type {
  margin-bottom: 0;
}

.cat-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

/* セクション頭の金色アクセント（セクション同士を区別しやすく） */
.cat-head::before {
  content: "";
  flex: none;
  width: 5px;
  height: 34px;
  border-radius: 1px;
  background: linear-gradient(var(--gold), var(--gold-l));
}

.cat-head .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.cat-head h2 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(26px, 3.6vw, 33px);
  color: var(--washi);
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.cat-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dish {
  background: var(--sumi3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.4s;
}

.dish:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.dish .ph {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dish .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.1), rgba(8, 7, 6, 0.5));
}

.dish .body {
  padding: 24px 24px 28px;
}

.dish h4 {
  font-family: "Hina Mincho", serif;
  font-size: 19px;
  color: var(--washi);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.dish p {
  font-size: 13px;
  color: var(--txt-mute);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* 価格 */
.dish .price {
  display: block;
  margin-top: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

/* 補足（例・トッピング等） */
.dish .ex {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  line-height: 1.8;
  color: var(--txt-mute);
}

/* カテゴリ末尾の注記 */
.cat-note {
  max-width: 980px;
  margin: 28px auto 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--txt-mute);
  letter-spacing: 0.04em;
}

/* 品数2件のシンプルなリスト */
.dish-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

/* 写真なし・文言のみの価格リスト（単品・お飲み物） */
.menu-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 56px;
}

.menu-list.cols {
  max-width: 900px;
  grid-template-columns: 1fr 1fr;
}

.menu-list .row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}

.menu-list .row .name {
  font-family: "Hina Mincho", serif;
  font-size: 16px;
  color: var(--washi);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.menu-list .row .dots {
  flex: 1;
  align-self: stretch;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-5px);
}

.menu-list .row .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  white-space: nowrap;
}

/* サイドメニュー案内 */
.side {
  background: var(--sumi2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.side-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.side-inner .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 14px;
}

.side-inner h3 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(22px, 3.2vw, 30px);
  color: var(--washi);
  letter-spacing: 0.14em;
  margin: 12px 0 28px;
}

.side-box {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--gold);
  padding: 30px 50px;
}

.side-box .lunch {
  font-size: 15px;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.side-box .lunch b {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  margin-left: 8px;
}

.side-box .normal {
  font-size: 13px;
  color: var(--txt-mute);
  letter-spacing: 0.05em;
}

.note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--txt-mute);
  letter-spacing: 0.05em;
}

/* =================================================================
   おしながきページ：レスポンシブ
   ================================================================= */
@media (max-width: 900px) {
  .dish-grid,
  .dish-grid.two {
    grid-template-columns: 1fr 1fr;
  }
  .cat-head {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .dish-grid,
  .dish-grid.two {
    grid-template-columns: 1fr;
  }
  .menu-list.cols {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}
/* SP：お昼サービスの一文を必ず1行に収める */
@media (max-width: 768px) {
  .side-box {
    padding: 22px 16px;
  }
  .side-box .lunch {
    font-size: 12px;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .side-box .lunch b {
    font-size: 18px;
    margin-left: 5px;
  }
}
/* =================================================================
   季節のおしながきページ
   ================================================================= */
/* 現在の限定メニュー（大きく特集） */
.now-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  overflow: hidden;
}

.now-img {
  min-height: 480px;
  background-size: cover;
  background-position: center;
}

.now-text {
  padding: 64px 56px;
  background: var(--sumi3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.now-text .label {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: var(--sumi);
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  margin-bottom: 22px;
  font-weight: 500;
}

.now-text .season {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 15px;
}

.now-text h2 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(28px, 3.8vw, 38px);
  color: var(--washi);
  letter-spacing: 0.1em;
  margin: 10px 0 24px;
}

.now-text p {
  font-size: 15px;
  color: var(--txt-mute);
  line-height: 2.3;
  letter-spacing: 0.04em;
}

/* 四季の案内 */
.seasons {
  background: var(--sumi2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.season-card {
  text-align: center;
  padding: 36px 22px;
  border: 1px solid var(--line);
  transition: 0.4s;
}

.season-card:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.04);
}

.season-card .kanji {
  font-family: "Hina Mincho", serif;
  font-size: 40px;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.season-card .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.season-card p {
  font-size: 13px;
  color: var(--txt-mute);
  line-height: 2;
  margin-top: 14px;
  letter-spacing: 0.03em;
}

/* 案内バナー */
.info-banner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.info-banner h3 {
  font-family: "Hina Mincho", serif;
  font-size: clamp(22px, 3.2vw, 28px);
  color: var(--washi);
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.info-banner p {
  font-size: 15px;
  color: var(--txt-mute);
  line-height: 2.3;
}

/* =================================================================
   季節ページ：レスポンシブ
   ================================================================= */
@media (max-width: 900px) {
  .now-feature {
    grid-template-columns: 1fr;
  }
  .now-img {
    min-height: 300px;
  }
  .now-text {
    padding: 44px 30px;
  }
  .season-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* =================================================================
   アクセスページ
   ================================================================= */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* 店舗情報テーブル */
.info dl {
  display: grid;
  grid-template-columns: 130px 1fr;
}

.info dt {
  font-family: "Hina Mincho", serif;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 15px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
}

.info dd {
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  font-size: 15px;
  color: var(--txt);
  line-height: 1.9;
}

.info dd small {
  color: var(--txt-mute);
  font-size: 13px;
}

/* 予約カード */
.reserve-card {
  background: var(--sumi3);
  border: 1px solid var(--line);
  padding: 48px 44px;
  text-align: center;
}

.reserve-card .mark {
  margin: 0 auto 20px;
  /* 会社名（ワードマーク）表示 */
  font-size: 30px;
  letter-spacing: 0.14em;
  line-height: 1.3;
  color: var(--gold-light);
}

.reserve-card h3 {
  font-family: "Hina Mincho", serif;
  font-size: 22px;
  color: var(--washi);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.reserve-card .sub {
  font-size: 13px;
  color: var(--txt-mute);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.reserve-card .tel-big {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.reserve-card .hours {
  margin-top: 22px;
  font-size: 13px;
  color: var(--txt-mute);
  line-height: 2;
}

/* 地図 */
.map-sec {
  background: var(--sumi2);
  border-top: 1px solid var(--line);
}

.map-frame {
  max-width: 1100px;
  margin: 0 auto;
  height: 420px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #1a1714, #0c0b0a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

.map-frame .pin {
  text-align: center;
}

.map-frame .pin .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 16px;
  position: relative;
}

.map-frame .pin .dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
.map-frame .pin p {
  font-family: "Hina Mincho", serif;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  font-size: 15px;
}

.map-frame .pin small {
  display: block;
  color: var(--txt-mute);
  font-size: 12px;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.map-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--txt-mute);
}

/* =================================================================
   アクセスページ：レスポンシブ
   ================================================================= */
@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .map-frame {
    height: 300px;
  }
}
/* =================================================================
   フッター
   ================================================================= */
footer {
  background: var(--sumi);
  border-top: 1px solid var(--line);
  padding: 70px 40px 36px;
  text-align: center;
}

.f-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.f-mark {
  width: 70px;
  height: 70px;
  font-size: 70px;
}

.f-logo {
  font-family: "Hina Mincho", serif;
  font-size: 42px;
  color: var(--washi);
  letter-spacing: 0.14em;
  text-align: center;
}

.f-logo small {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 8px;
}

.f-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 36px 0;
}

.f-nav a {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--txt-mute);
  transition: 0.3s;
}

.f-nav a:hover {
  color: var(--gold-light);
}

.copy {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--txt-mute);
}

@media (max-width: 768px) {
  footer {
    padding: 50px 22px 30px;
  }
}

/* =================================================================
   TOP：ヒーロー内 リニューアルオープン予定のお知らせ
   （_front-page.scss と対応）
   ================================================================= */
.hero-renewal {
  margin-top: 28px;
  opacity: 0;
  animation: rise 2.4s 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-renewal span {
  display: inline-block;
  padding: 10px 26px;
  border: 1px solid rgba(201, 162, 75, 0.55);
  background: rgba(8, 7, 6, 0.35);
  color: var(--gold-light);
  font-family: "Hina Mincho", serif;
  font-size: clamp(12px, 1.7vw, 17px);
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero-renewal {
    margin-top: 20px;
    padding: 0 16px;
  }
  .hero-renewal span {
    padding: 9px 16px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }
}

/* =================================================================
   料理写真の共通ホバー（_food-photo.scss と対応）
   対象：TOPのメニュー3枠／おしながきの各料理／
   　　　月なぎの料理ページの特集写真／季節のおしながき（ただ今ご提供中）
   ・枠で囲まれたカードは「カード全体」のホバーで反応
   ・枠のない単体写真は「写真自身」のホバーで反応
   ・写真の変化は明るさのみ／速度は全て .45s ease に統一
   ================================================================= */
.menu-card .ph,
.dish .ph,
.feat-img,
.now-img {
  transition: filter 0.45s ease;
}

.menu-card:hover .ph,
.dish:hover .ph,
.feat-img:hover,
.now-feature:hover .now-img {
  filter: brightness(1.12);
}

/* =================================================================
   料理写真「Coming Soon」表示（_comingsoon.scss と対応）
   料理の写真はそのまま表示し、その写真の中に文字を重ねる。
   functions.php の TSK_COMING_SOON を false にすると
   body の .tsk-coming-soon が外れ、文字だけが消えて写真は残る。
   ================================================================= */
.tsk-coming-soon .menu-card .ph,
.tsk-coming-soon .dish .ph,
.tsk-coming-soon .feat-img,
.tsk-coming-soon .now-img {
  position: relative;
  outline: 1px solid rgba(201, 162, 75, 0.22);
  outline-offset: -1px;
  transition: filter 0.45s ease, outline-color 0.45s ease;
}

.tsk-coming-soon .menu-card .ph::before,
.tsk-coming-soon .dish .ph::before,
.tsk-coming-soon .feat-img::before,
.tsk-coming-soon .now-img::before {
  content: "Coming Soon";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 7, 6, 0.48);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: clamp(15px, 1.9vw, 24px);
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
  pointer-events: none;
  z-index: 3;
  transition: background 0.45s ease;
}

.tsk-coming-soon .menu-card:hover .ph,
.tsk-coming-soon .dish:hover .ph,
.tsk-coming-soon .feat-img:hover,
.tsk-coming-soon .now-feature:hover .now-img {
  outline-color: rgba(201, 162, 75, 0.5);
}

.tsk-coming-soon .menu-card:hover .ph::before,
.tsk-coming-soon .dish:hover .ph::before,
.tsk-coming-soon .feat-img:hover::before,
.tsk-coming-soon .now-feature:hover .now-img::before {
  background: rgba(8, 7, 6, 0.34);
}

@media (max-width: 768px) {
  .tsk-coming-soon .menu-card .ph::before,
  .tsk-coming-soon .dish .ph::before,
  .tsk-coming-soon .feat-img::before,
  .tsk-coming-soon .now-img::before {
    font-size: 15px;
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }
}

/*# sourceMappingURL=style.css.map */