/* ============================================================
   Nemophila — style.css  v4
   衡山毛筆フォント × 和紙くしゃ質感 × 水彩ブラシ × 橙アクセント
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   【衡山毛筆フォント導入方法】
   1. https://fontdasu.com/153 からフォントをDL
   2. KozanBookface.ttf を /fonts/ フォルダに配置
   3. 以下の @font-face ブロックのコメントを解除
   4. :root の --f-display を切り替え（下記コメント参照）
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── 衡山毛筆フォント（フォントファイル設置後に解除）──────── */
/*
@font-face {
  font-family: 'KozanBookface';
  src: url('../fonts/KozanBookface.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CSS カスタムプロパティ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* ──────────────────────────────────────────────
     フォント
     衡山毛筆フォント導入後:
       ↓ コメント解除
     --f-display: 'KozanBookface', 'Shippori Mincho B1', serif;
       ↓ コメントアウト                                       */
  --f-display: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  --f-body: 'Noto Sans JP', sans-serif;
  --f-serif: 'Noto Serif JP', serif;
  --f-latin: 'Cormorant Garamond', Georgia, serif;

  /* ── 和紙ベースカラー ── */
  --c-bg: #f2ead8;
  --c-bg2: #e9e0cc;
  --c-bg3: #dfd4be;
  --c-surf: #faf5e8;
  --c-surf2: #f3ead6;

  /* ── 墨テキスト ── */
  --c-ink: #18120a;
  --c-ink2: #46380e;
  --c-ink3: #7a6a40;
  --c-ink4: #a89868;

  /* ── ネモフィラ青 ── */
  --c-blue: #4e94b8;
  --c-blue2: #80b8d4;
  --c-blue3: #b4d8f0;
  --c-blue4: #dff0fa;
  --c-bluedp: #2c6080;

  /* ── 橙（増量・強め）── */
  --c-org: #b85e18;
  /* メイン橙 */
  --c-org2: #cf7e38;
  /* 中橙 */
  --c-org3: #e4a462;
  /* 淡橙 */
  --c-org4: #f0c898;
  /* さらに淡 */
  --c-org5: #f8e4c8;
  /* 極淡（背景用）*/
  --c-org6: #fdf3e4;
  /* ほぼ白橙 */
  --c-gold: #8c6818;
  /* 金 */

  /* ── 追加：ネモフィラブルー（明るめ・清涼感） ── */
  --c-nemo-blue: #5baed5;
  --c-nemo-blue-light: #e0f2fb;
  --c-nemo-blue-dark: #3a8eb5;

  /* ── ボーダー ── */
  --c-bdr: rgba(48, 32, 8, .09);
  --c-bdr2: rgba(48, 32, 8, .17);
  --c-bdr3: rgba(184, 94, 24, .20);
  /* 橙ボーダー */

  /* ── グラス ── */
  --glass: rgba(250, 245, 232, .82);
  --glass-bdr: rgba(255, 252, 240, .85);
  --blur: 20px;

  /* ── スペース ── */
  --pad: clamp(72px, 10vw, 140px);
  --inner: 1200px;
  --gap: clamp(20px, 5vw, 72px);

  /* ── 角丸 ── */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  /* ── アニメーション ── */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --dur-f: .22s;
  --dur-m: .48s;
  --dur-s: .88s;

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     和紙テクスチャ SVG（4種 × 異なる周期のノイズを重ねる）

     ① washi-crumple  : 低周波 → 紙のくしゃっとした大きな歪み
     ② washi-fiber    : 横方向高周波 → 紙繊維の方向感
     ③ washi-grain    : 高周波ランダム → 表面の微細な凹凸
     ④ washi-shadow   : 超低周波ガンマ補正 → 折り皺による陰影

     これら4枚を mix-blend-mode: multiply で重ねることで
     「本物の和紙のようなくしゃっとした質感」を実現します
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

  /* ① くしゃ感（低周波 fractalNoise）*/
  --washi-crumple: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='700'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.10 0.065' numOctaves='7' seed='22' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='700' height='700' filter='url(%23c)' opacity='0.11'/%3E%3C/svg%3E");

  /* ② 繊維感（横方向 fractalNoise）*/
  --washi-fiber: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.028 0.95' numOctaves='5' seed='6' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='900' height='900' filter='url(%23f)' opacity='0.08'/%3E%3C/svg%3E");

  /* ③ グレイン（高周波 turbulence）*/
  --washi-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.78' numOctaves='4' seed='14' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");

  /* ④ 折り皺の陰影（超低周波 + ガンマ補正）*/
  --washi-shadow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1100' height='1100'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.02 0.014' numOctaves='9' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='gamma' amplitude='1.15' exponent='2.0'/%3E%3CfeFuncG type='gamma' amplitude='1.15' exponent='2.0'/%3E%3CfeFuncB type='gamma' amplitude='1.15' exponent='2.0'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='1100' height='1100' filter='url(%23s)' opacity='0.075'/%3E%3C/svg%3E");
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Reset
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

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

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

ul,
ol {
  list-style: none
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--c-bg2)
}

::-webkit-scrollbar-thumb {
  background: var(--c-org2);
  border-radius: 3px
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   body — 和紙テクスチャ 4層
   くしゃ感・繊維感・グレイン・折り皺の陰影を重ねて
   background-attachment:fixed で視差効果も加える
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
  background-color: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;

  /* 和紙4層 + 紙の色ムラ（水彩染み）*/
  background-image:
    var(--washi-shadow),
    /* 折り皺の陰影（最上位）*/
    var(--washi-crumple),
    /* くしゃっとした歪み */
    var(--washi-fiber),
    /* 繊維の方向感 */
    var(--washi-grain),
    /* 表面の微細ノイズ */
    /* 紙固有の色ムラ（水彩染み）*/
    radial-gradient(ellipse 140% 80% at 8% 15%, rgba(175, 195, 155, .16) 0%, transparent 55%),
    radial-gradient(ellipse 90% 90% at 90% 88%, rgba(195, 160, 120, .14) 0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 52% 52%, rgba(225, 210, 185, .11) 0%, transparent 70%),
    /* 橙の染み（紙の風化感）*/
    radial-gradient(ellipse 40% 25% at 70% 30%, rgba(184, 94, 24, .055) 0%, transparent 65%);
  background-size:
    1100px 1100px,
    700px 700px,
    900px 900px,
    400px 400px,
    100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-blend-mode: multiply, multiply, multiply, multiply, normal, normal, normal, normal;
  background-attachment: scroll;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   共通ユーティリティ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* 英語スモールラベル */
.label-en {
  display: block;
  font-family: var(--f-latin);
  font-size: clamp(.72rem, 1vw, .82rem);
  font-weight: 600;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--c-nemo-blue-dark);
  margin-bottom: .8rem;
}

/* セクション見出し ← 衡山毛筆フォント全適用 */
.sec-heading {
  font-family: var(--f-display);
  /* ★ 衡山毛筆フォントはここで効く */
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .07em;
  color: var(--c-ink);
  display: flex;
  flex-direction: column;
}

/* アクセント行: 橙 */
.sec-accent {
  color: var(--c-org);
}

.sec-header {
  margin-bottom: clamp(40px, 6vw, 76px);
}

.sec-header--center {
  text-align: center;
}

.sec-header--center .sec-heading {
  align-items: center;
}

.sec-lead {
  font-family: var(--f-latin);
  font-style: italic;
  font-size: clamp(.92rem, 1.4vw, 1.1rem);
  color: var(--c-ink2);
  letter-spacing: .18em;
  margin-top: 1rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   水彩ブラシアンダーライン
   SVG パスで手描き感のある橙ラインをセクション見出し下に敷く
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wc-underline {
  display: block;
  width: clamp(140px, 22vw, 260px);
  height: 18px;
  margin-top: .3rem;
  overflow: visible;
}

.wc-underline--center {
  margin-left: auto;
  margin-right: auto;
}

.wc-underline svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* AOS スクロールアニメーション */
[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-s) var(--ease), transform var(--dur-s) var(--ease)
}

[data-aos="fade-right"] {
  transform: translateX(-26px)
}

[data-aos="fade-left"] {
  transform: translateX(26px)
}

[data-aos="fade-down"] {
  transform: translateY(-16px)
}

[data-aos].aos-in {
  opacity: 1;
  transform: translate(0)
}

/* スクロール進捗バー */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--c-org), var(--c-org3), var(--c-blue2));
  z-index: 200;
  pointer-events: none;
  transition: width .1s linear;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur-m) var(--ease), box-shadow var(--dur-m);
  background: rgba(242, 234, 216, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav.is-scrolled {
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: 0 1px 0 var(--c-bdr), 0 4px 28px rgba(56, 36, 8, .09);
}

/* スクロール後: 橙の水彩ラインをナビ下辺に */
.nav.is-scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 10' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q180 2 360 5 Q540 8 720 4 Q900 1 1080 5 Q1260 8 1440 4' stroke='%23b85e18' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.40'/%3E%3Cpath d='M0 8 Q240 5 480 7 Q720 9 960 6 Q1200 3 1440 7' stroke='%23e4a462' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.nav-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

/* ロゴ（衡山毛筆フォント）*/
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-ink)
}

.nav-logo-mark {
  color: var(--c-org);
  flex-shrink: 0;
  transition: transform var(--dur-m) var(--ease)
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(36deg) scale(1.1)
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15
}

.nav-logo-ja {
  font-family: var(--f-display);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--c-ink2)
}

/* ★衡山毛筆 */
.nav-logo-en {
  font-family: var(--f-latin);
  font-size: .7rem;
  letter-spacing: .38em;
  color: var(--c-org)
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px)
}

.nav-menu a {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--c-ink2);
  position: relative;
  padding-bottom: 5px;
  transition: color var(--dur-f)
}

/* ホバー: 橙の水彩ブラシ下線 SVG */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -4%;
  right: -4%;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 10' preserveAspectRatio='none'%3E%3Cpath d='M4 6 Q28 2 55 5 Q82 8 106 4' stroke='%23b85e18' stroke-width='3' fill='none' stroke-linecap='round' opacity='0.75'/%3E%3Cpath d='M8 8 Q35 6 55 7 Q75 8 102 6' stroke='%23e4a462' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scaleX(.2);
  transform-origin: left;
  transition: opacity var(--dur-m) var(--ease), transform var(--dur-m) var(--ease);
}

.nav-menu a:hover {
  color: var(--c-org)
}

.nav-menu a:hover::after {
  opacity: 1;
  transform: scaleX(1)
}

/* 予約ボタン（橙）*/
.nav-reserve-btn {
  background: var(--c-org6) !important;
  border: 1.5px solid var(--c-org4) !important;
  padding: 7px 20px !important;
  border-radius: 100px !important;
  color: var(--c-org) !important;
  transition: background var(--dur-f), border-color var(--dur-f) !important;
}

.nav-reserve-btn:hover {
  background: var(--c-nemo-blue-light) !important;
  border-color: var(--c-nemo-blue) !important;
  color: var(--c-nemo-blue-dark) !important;
}

.nav-reserve-btn::after {
  display: none !important
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(184, 94, 24, .18);
  background: linear-gradient(150deg, rgba(250, 245, 232, .96), rgba(233, 224, 204, .9));
  box-shadow: 0 6px 18px rgba(72, 44, 8, .12), inset 0 1px 0 rgba(255, 255, 255, .7);
  z-index: 110
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.6px;
  background: var(--c-ink);
  transition: transform var(--dur-m) var(--ease), opacity var(--dur-f);
  transform-origin: center
}

.nav-hamburger:hover {
  border-color: rgba(184, 94, 24, .35);
  box-shadow: 0 8px 22px rgba(72, 44, 8, .16), inset 0 1px 0 rgba(255, 255, 255, .75);
}

.nav-hamburger.is-open {
  background: linear-gradient(150deg, rgba(224, 242, 251, .95), rgba(250, 245, 232, .92));
  border-color: rgba(90, 174, 213, .45);
  box-shadow: 0 10px 26px rgba(58, 142, 181, .18);
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  height: 100svh !important;
  min-height: 600px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* スライド */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1
}

.hero .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.65, 0, .35, 1);
  transform: scale(1.0);
  animation: heroKen 12s var(--ease) infinite;
}

.hero .hero-slide.is-active {
  opacity: 1;
  z-index: 2
}

@keyframes heroKen {
  0% {
    transform: scale(1.0)
  }

  50% {
    transform: scale(1.08)
  }

  100% {
    transform: scale(1.0)
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ヒーロー和紙オーバーレイ
   写真の上に和紙テクスチャ4層を重ねて「和紙越しに見る」感覚を演出
   mix-blend-mode: multiply で写真色と自然に混合する
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-washi-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background-image:
    var(--washi-shadow),
    var(--washi-crumple),
    var(--washi-fiber),
    var(--washi-grain),
    /* 下部フェード（和紙色）*/
    linear-gradient(to bottom,
      rgba(242, 234, 216, .06) 0%,
      rgba(242, 234, 216, .00) 18%,
      rgba(242, 234, 216, .12) 55%,
      rgba(242, 234, 216, .96) 100%);
  background-size:
    1100px 1100px, 700px 700px, 900px 900px, 400px 400px,
    100% 100%;
  mix-blend-mode: multiply;
}

/* ヒーローダークオーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 5;
  pointer-events: none;
}

/* 水彩にじみ blob */
.hero-watercolor {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden
}

.wc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: blobIn 2.8s ease .4s forwards
}

.wc-b1 {
  width: 60vw;
  height: 55vw;
  top: -14vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(40, 96, 136, .22) 0%, transparent 65%)
}

.wc-b2 {
  width: 50vw;
  height: 44vw;
  bottom: -7vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(184, 94, 24, .20) 0%, transparent 65%);
  animation-delay: .9s
}

.wc-b3 {
  width: 54vw;
  height: 48vw;
  top: 22%;
  left: 20%;
  background: radial-gradient(circle, rgba(78, 148, 184, .10) 0%, transparent 60%);
  animation-delay: 1.5s
}

@keyframes blobIn {
  to {
    opacity: 1
  }
}

/* 墨線アクセント */
.hero-ink {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none
}

.hero-ink svg {
  width: 100%;
  height: 100%
}

/* コンテンツ */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 var(--gap);
  max-width: 940px
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(-14px);
  transition: all .7s var(--ease)
}

.hero-eyebrow.aos-in {
  opacity: 1;
  transform: translateY(0)
}

.ey-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,.5);
}

.ey-text {
  font-family: var(--f-latin);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .46em;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

/* タイトル（衡山毛筆フォント）*/
.hero-title {
  font-family: var(--f-display);
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(22px);
  transition: all .9s var(--ease)
}

/* ★衡山毛筆 */
.hero-title.aos-in {
  opacity: 1;
  transform: translateY(0)
}

.ht-sub {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: .38em;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  margin-bottom: .4rem
}

.ht-main {
  display: block;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 80px rgba(184, 94, 24, 0.15);
}

/* キャッチ（衡山毛筆フォント）*/
.hero-catch {
  font-family: var(--f-display);
  font-size: clamp(1rem, 2.2vw, 1.48rem);
  font-weight: 500;
  letter-spacing: .32em;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.12);
  display: inline-block;
  margin-bottom: .5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(18px);
  transition: all .9s var(--ease)
}

/* ★衡山毛筆 */
.hero-catch em {
  font-style: normal
}

.hero-catch.aos-in {
  opacity: 1;
  transform: translateY(0)
}

/* 水彩ブラシライン（キャッチ下・橙）*/
.hero-brush-line {
  width: clamp(200px, 32vw, 340px);
  margin: 0 auto 2.6rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all .9s var(--ease);
}

.hero-brush-line.aos-in {
  opacity: 1;
  transform: translateY(0)
}

.hero-brush-line svg {
  width: 100%;
  height: auto;
  overflow: visible
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: all .9s var(--ease)
}

.hero-actions.aos-in {
  opacity: 1;
  transform: translateY(0)
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ボタン共通
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-primary,
.btn-ghost,
.btn-outline,
.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .2em;
  padding: 14px 42px;
  border-radius: 100px;
  transition: all var(--dur-m) var(--ease);
  position: relative;
  overflow: hidden;
}

/* プライマリ: 橙 */
.btn-primary {
  background: var(--c-org);
  color: #fff;
  border: none;
  box-shadow: 0 4px 22px rgba(184, 94, 24, .32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #9e4e10;
  box-shadow: 0 10px 36px rgba(184, 94, 24, .44), 0 0 24px rgba(184, 94, 24, .20)
}

/* ボタン光の反射エフェクト */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease);
}
.btn-primary:hover::after {
  left: 130%;
}

/* ゴースト */
.btn-ghost {
  background: var(--glass);
  border: 1.5px solid var(--c-bdr2);
  color: var(--c-ink);
  backdrop-filter: blur(12px)
}

.btn-ghost:hover {
  background: rgba(255, 250, 238, .92);
  border-color: var(--c-org2);
  color: var(--c-org);
  transform: translateY(-2px)
}

/* アウトライン */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--c-bdr2);
  color: var(--c-ink2)
}

.btn-outline:hover {
  border-color: var(--c-org);
  color: var(--c-org);
  transform: translateY(-2px)
}

/* 準備中 */
.btn-coming-soon {
  background: var(--c-bg3);
  border: 1.5px dashed var(--c-bdr2);
  color: var(--c-ink4);
  cursor: not-allowed;
  opacity: .72;
}

.btn-lg {
  padding: 16px 52px;
  font-size: .88rem
}

/* インジケーター */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px
}

.hero-dot {
  width: 28px;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .35);
  transition: background var(--dur-m), width var(--dur-m) var(--ease);
  border: none;
}

.hero-dot.is-active {
  background: var(--c-org);
  width: 48px;
  box-shadow: 0 0 12px rgba(184, 94, 24, .4);
}

/* スクロール誘導 */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  right: clamp(20px, 4vw, 56px);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.sc-track {
  width: 1px;
  height: 50px;
  background: rgba(24, 18, 10, .12);
  overflow: hidden;
  border-radius: 1px
}

.sc-bar {
  width: 100%;
  height: 100%;
  background: var(--c-org2);
  transform: translateY(-100%);
  animation: scMove 2.2s ease 1.2s infinite
}

@keyframes scMove {
  0% {
    transform: translateY(-100%)
  }

  50% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(100%)
  }
}

.hero-scroll-cue span {
  font-family: var(--f-latin);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .44em;
  color: rgba(255,255,255,.55);
  writing-mode: vertical-rl;
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONCEPT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.concept {
  position: relative;
  padding: var(--pad) var(--gap);
  overflow: hidden
}

/* 背景: 和紙テクスチャ + 橙の水彩にじみ */
.concept::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    var(--washi-shadow),
    var(--washi-crumple),
    var(--washi-fiber),
    radial-gradient(ellipse 70% 60% at 6% 22%, rgba(175, 195, 150, .16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 94% 78%, rgba(195, 155, 110, .14) 0%, transparent 60%),
    /* 橙の水彩にじみ */
    radial-gradient(ellipse 45% 30% at 55% 15%, rgba(184, 94, 24, .07) 0%, transparent 65%);
  background-size: 1100px 1100px, 700px 700px, 900px 900px, 100% 100%, 100% 100%, 100% 100%;
  mix-blend-mode: multiply;
}

/* 水彩blob */
.concept-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.concept-wash::before {
  content: '';
  position: absolute;
  width: 55%;
  height: 55%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(78, 148, 184, .15) 0%, transparent 65%);
  filter: blur(80px);
  border-radius: 50%
}

.concept-wash::after {
  content: '';
  position: absolute;
  width: 48%;
  height: 48%;
  bottom: -8%;
  right: -5%;
  background: radial-gradient(circle, rgba(184, 94, 24, .15) 0%, transparent 65%);
  filter: blur(72px);
  border-radius: 50%
}

/* 透かし文字（衡山毛筆フォント）*/
.concept-watermark {
  position: absolute;
  top: 50%;
  right: -.1em;
  transform: translateY(-50%);
  font-family: var(--f-display);
  /* ★衡山毛筆 */
  font-size: clamp(180px, 30vw, 440px);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(184, 94, 24, .12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.concept-inner {
  max-width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1
}

/* 写真フレーム */
.concept-frame {
  position: relative
}

.concept-photo {
  aspect-ratio: 3/4;
  background-color: #f5efe2;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
}

/* 水彩スプラッシュ */
.cp-splash {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  pointer-events: none
}

.cp-s1 {
  width: 72%;
  height: 62%;
  top: -16%;
  left: -14%;
  background: radial-gradient(circle, rgba(78, 148, 184, .24) 0%, transparent 65%)
}

.cp-s2 {
  width: 52%;
  height: 52%;
  bottom: -12%;
  right: -10%;
  background: radial-gradient(circle, rgba(184, 94, 24, .22) 0%, transparent 65%)
}

/* 水彩破線フレーム（橙）*/
.cp-watercolor-frame {
  position: absolute;
  inset: -6px;
  pointer-events: none;
  border-radius: var(--r-lg);
  overflow: visible
}

.cp-watercolor-frame svg {
  width: 100%;
  height: 100%;
  overflow: visible
}

/* 浮きカード */
.concept-card {
  position: absolute;
  bottom: -18px;
  left: -22px;
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1.5px solid rgba(255, 250, 238, .85);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: 0 8px 36px rgba(184, 94, 24, .16), 0 0 0 1px rgba(184, 94, 24, .10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cc-num {
  font-family: var(--f-latin);
  font-size: 2.3rem;
  font-weight: 300;
  color: var(--c-org);
  line-height: 1
}

.cc-unit {
  font-family: var(--f-display);
  font-size: .78rem;
  color: var(--c-ink2);
  letter-spacing: .16em
}

/* ★衡山毛筆 */
.cc-label {
  font-size: .68rem;
  font-weight: 500;
  color: var(--c-ink2);
  letter-spacing: .14em;
  margin-top: 4px
}

.concept-text {
  padding-left: 1vw
}

.concept-body {
  margin-top: 1.8rem;
  margin-bottom: 1.8rem
}

.concept-body p {
  font-family: var(--f-serif);
  font-size: clamp(.92rem, 1.4vw, 1.08rem);
  font-weight: 400;
  line-height: 2.5;
  color: var(--c-ink);
  letter-spacing: .1em;
  margin-bottom: 1rem
}

.concept-body p:last-child {
  margin-bottom: 0
}

.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2rem
}

.concept-tags span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--c-org);
  background: var(--c-org6);
  border: 1.5px solid rgba(184, 94, 24, .20);
  padding: 6px 16px;
  border-radius: 100px;
  transition: all var(--dur-m) var(--ease);
}

.concept-tags span:hover {
  background: var(--c-org5);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(184, 94, 24, .12);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MENU
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.menu {
  position: relative;
  padding: var(--pad) var(--gap);
  overflow: hidden
}

.menu-bg-wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    var(--washi-shadow),
    var(--washi-crumple),
    var(--washi-fiber),
    radial-gradient(ellipse 90% 55% at 4% 6%, rgba(188, 175, 150, .13) 0%, transparent 58%),
    radial-gradient(ellipse 70% 60% at 96% 94%, rgba(184, 94, 24, .09) 0%, transparent 58%),
    radial-gradient(ellipse 55% 42% at 50% 50%, rgba(78, 148, 184, .07) 0%, transparent 68%);
  background-size: 1100px 1100px, 700px 700px, 900px 900px, 100% 100%, 100% 100%, 100% 100%;
  mix-blend-mode: multiply;
}

.menu-inner {
  max-width: var(--inner);
  margin: 0 auto;
  position: relative;
  z-index: 1
}

/* メニューグリッド */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: clamp(52px, 7vw, 88px)
}

/* カード: 和紙テクスチャ込み */
.menu-card {
  background-color: var(--c-surf);
  background-image: var(--washi-grain), var(--washi-crumple),
    linear-gradient(148deg, rgba(250, 244, 232, .96), rgba(238, 228, 210, .90));
  background-size: 400px 400px, 700px 700px, 100% 100%;
  border: 1px solid var(--c-bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(56, 32, 4, .08);
  transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m), border-color var(--dur-m);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(76, 48, 8, .14), 0 0 0 1.5px rgba(184, 94, 24, .22);
  border-color: rgba(184, 94, 24, .28);
}

.mc-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden
}

.mc-photo {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: inherit;
  transition: transform var(--dur-s) var(--ease)
}

.menu-card:hover .mc-photo {
  transform: scale(1.06) !important;
}

.mc-photo-wash {
  position: absolute;
  inset: 0;
  background-image: var(--washi-grain),
    linear-gradient(to bottom, transparent 42%, rgba(242, 234, 216, .66) 100%);
  background-size: 400px 400px, 100% 100%;
  mix-blend-mode: multiply;
  border-radius: inherit;
}

.mc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  background: var(--c-org);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.mc-badge--season {
  background: var(--c-nemo-blue-dark)
}

.mc-badge--night {
  background: #48506a
}

.mc-body {
  padding: clamp(14px, 2.5vw, 22px)
}

.mc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: .55rem
}

/* メニュー名（衡山毛筆フォント）*/
.mc-name {
  font-family: var(--f-display);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--c-ink);
  line-height: 1.3
}

/* ★衡山毛筆 */
.mc-price {
  font-family: var(--f-latin);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-org);
  white-space: nowrap;
  flex-shrink: 0
}

.mc-desc {
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--c-ink2);
  letter-spacing: .04em
}

/* 水彩区切り線（橙）*/
.mc-divider {
  margin-top: 12px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 10' preserveAspectRatio='none'%3E%3Cpath d='M4 6 Q60 2 120 5 Q180 8 240 4 Q280 2 296 5' stroke='%23b85e18' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.28'/%3E%3Cpath d='M20 8 Q80 6 150 7.5 Q220 9 280 7' stroke='%23e4a462' stroke-width='1.2' fill='none' stroke-linecap='round' opacity='0.20'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* 品書きパネル */
.menu-list-panel {
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--glass-bdr);
  border-radius: var(--r-xl);
  padding: clamp(30px, 5vw, 58px);
  box-shadow: 0 8px 52px rgba(56, 32, 4, .08);
  background-image: var(--washi-crumple), var(--washi-grain),
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184, 94, 24, .06) 0%, transparent 68%);
  background-size: 700px 700px, 400px 400px, 100% 100%;
  /* 橙の上辺ライン SVG */
  border-top: none;
  position: relative;
}

.menu-list-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 14' preserveAspectRatio='none'%3E%3Cpath d='M4 8 Q100 3 200 6 Q300 9 400 5 Q500 2 600 6 Q700 9 796 6' stroke='%23b85e18' stroke-width='3' fill='none' stroke-linecap='round' opacity='0.55'/%3E%3Cpath d='M20 10.5 Q150 8 280 9.5 Q410 11 540 8.5 Q670 6 780 9' stroke='%23e4a462' stroke-width='1.8' fill='none' stroke-linecap='round' opacity='0.38'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.mlp-title-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 2.2rem
}

.mlp-wc-splash {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(184, 94, 24, .08) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none
}

.mlp-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative
}

/* 品書きタイトル（衡山毛筆フォント）*/
.mlp-ja {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: .34em;
  color: var(--c-ink)
}

/* ★衡山毛筆 */
.mlp-en {
  font-family: var(--f-latin);
  font-size: .68rem;
  letter-spacing: .44em;
  color: var(--c-org)
}

/* 橙水彩ライン */
.mlp-title::after {
  content: '';
  display: block;
  margin-top: 10px;
  width: 80px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 14' preserveAspectRatio='none'%3E%3Cpath d='M4 8 Q20 3 40 6 Q60 9 76 5' stroke='%23b85e18' stroke-width='3.5' fill='none' stroke-linecap='round' opacity='0.60'/%3E%3Cpath d='M10 10.5 Q30 9 40 10 Q50 11 70 9' stroke='%23e4a462' stroke-width='1.8' fill='none' stroke-linecap='round' opacity='0.40'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.mlp-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 5vw, 68px)
}

.mlp-cat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1.3rem;
  padding-bottom: .75rem;
  border-bottom: 1.5px solid var(--c-bdr2)
}

.mlp-cat-mark {
  color: var(--c-org);
  font-family: var(--f-latin)
}

/* カテゴリ名（衡山毛筆フォント）*/
.mlp-cat-name {
  font-family: var(--f-display);
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: .26em;
  color: var(--c-ink)
}

/* ★衡山毛筆 */
.mlp-cat small {
  font-family: var(--f-latin);
  font-size: .62rem;
  letter-spacing: .3em;
  color: var(--c-org2)
}

.mlp-col ul li {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-bdr);
  font-size: .88rem;
  font-weight: 400
}

.ml-n {
  flex-shrink: 0;
  letter-spacing: .05em;
  color: var(--c-ink)
}

.ml-d {
  flex: 1;
  height: 1px;
  min-width: 12px;
  margin: 0 6px;
  background: repeating-linear-gradient(to right, var(--c-bdr2) 0, var(--c-bdr2) 3px, transparent 3px, transparent 7px);
  position: relative;
  top: -2px
}

.ml-p {
  flex-shrink: 0;
  font-family: var(--f-latin);
  font-size: .86rem;
  font-weight: 600;
  color: var(--c-org)
}

.mlp-note {
  font-size: .74rem;
  font-weight: 400;
  color: var(--c-ink3);
  text-align: center;
  margin-top: 1.8rem;
  letter-spacing: .1em
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery {
  padding: var(--pad) var(--gap);
  background-color: var(--c-bg2);
  background-image:
    var(--washi-shadow), var(--washi-crumple), var(--washi-fiber),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(195, 210, 180, .16) 0%, transparent 62%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(205, 185, 155, .14) 0%, transparent 62%),
    radial-gradient(ellipse 40% 28% at 78% 52%, rgba(184, 94, 24, .06) 0%, transparent 68%);
  background-size: 1100px 1100px, 700px 700px, 900px 900px, 100% 100%, 100% 100%, 100% 100%;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
}

.gallery-inner {
  max-width: var(--inner);
  margin: 0 auto
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 14px)
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1
}

.gi-tall {
  grid-row: span 2;
  aspect-ratio: auto
}

.gi-wide {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 220px
}

.gi-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden
}

.gi-img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: transform var(--dur-s) var(--ease)
}

.gallery-item:hover .gi-img {
  transform: scale(1.06) !important;
}

.gi-wash {
  position: absolute;
  inset: 0;
  background-image: var(--washi-grain),
    linear-gradient(to bottom, transparent 52%, rgba(225, 215, 195, .32) 100%);
  background-size: 400px 400px, 100% 100%;
  mix-blend-mode: multiply;
  opacity: .55;
  transition: opacity var(--dur-m);
}

.gallery-item:hover .gi-wash {
  opacity: .18
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INSTAGRAM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.instagram {
  padding: var(--pad) var(--gap);
  background-color: var(--c-bg);
  background-image:
    var(--washi-fiber),
    radial-gradient(ellipse 65% 55% at 50% 50%, rgba(184, 94, 24, .07) 0%, transparent 68%),
    radial-gradient(ellipse 50% 40% at 18% 18%, rgba(78, 148, 184, .07) 0%, transparent 62%);
  background-size: 900px 900px, 100% 100%, 100% 100%;
}

.ig-inner {
  max-width: var(--inner);
  margin: 0 auto
}

.ig-account {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1.4rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--c-org);
  border: 1.5px solid var(--c-org4);
  padding: 8px 24px;
  border-radius: 100px;
  background: var(--c-org6);
  transition: all var(--dur-m) var(--ease);
}

.ig-account:hover {
  background: var(--c-org5);
  border-color: var(--c-org2)
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(5px, 1vw, 10px)
}

.ig-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-sm);
  display: block
}

.ig-img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: transform var(--dur-s) var(--ease)
}

.ig-post:hover .ig-img {
  transform: scale(1.08) !important;
}

.ig-hover {
  position: absolute;
  inset: 0;
  background: rgba(184, 94, 24, .46);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-m)
}

.ig-post:hover .ig-hover {
  opacity: 1
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESERVE CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reserve {
  position: relative;
  padding: var(--pad) var(--gap);
  text-align: center;
  overflow: hidden
}

/* 橙の水彩ウォッシュ背景 */
.reserve-wc-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--washi-shadow), var(--washi-crumple), var(--washi-fiber);
  background-size: 1100px 1100px, 700px 700px, 900px 900px;
  mix-blend-mode: multiply;
}

.rwb-1,
.rwb-2,
.rwb-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px)
}

.rwb-1 {
  width: 65%;
  height: 75%;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(184, 94, 24, .20) 0%, transparent 65%)
}

.rwb-2 {
  width: 55%;
  height: 65%;
  bottom: -20%;
  right: -8%;
  background: radial-gradient(circle, rgba(78, 148, 184, .15) 0%, transparent 65%)
}

.rwb-3 {
  width: 52%;
  height: 52%;
  top: 18%;
  left: 28%;
  background: radial-gradient(circle, rgba(228, 164, 98, .14) 0%, transparent 65%)
}

/* 同心円 */
.reserve-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none
}

.reserve-rings svg {
  width: min(600px, 90vw);
  height: min(600px, 90vw)
}

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

.reserve-lead {
  font-family: var(--f-serif);
  font-size: clamp(.92rem, 1.5vw, 1.06rem);
  font-weight: 400;
  line-height: 2.3;
  color: var(--c-ink);
  letter-spacing: .1em;
  margin: 2rem 0 2.4rem
}

.reserve-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

/* 準備中メモ（橙のブラシライン付き）*/
.reserve-note {
  font-size: .78rem;
  font-weight: 400;
  color: var(--c-ink2);
  letter-spacing: .1em;
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reserve-note::before,
.reserve-note::after {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 32px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 10' preserveAspectRatio='none'%3E%3Cpath d='M2 6 Q10 3 20 5 Q28 7 30 4' stroke='%23e4a462' stroke-width='2' fill='none' stroke-linecap='round' opacity='0.70'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INFO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.info {
  padding: var(--pad) var(--gap);
  background-color: var(--c-bg2);
  background-image:
    var(--washi-shadow), var(--washi-crumple), var(--washi-fiber),
    radial-gradient(ellipse 70% 40% at 82% 24%, rgba(184, 94, 24, .08) 0%, transparent 62%),
    radial-gradient(ellipse 52% 40% at 18% 76%, rgba(78, 148, 184, .07) 0%, transparent 62%);
  background-size: 1100px 1100px, 700px 700px, 900px 900px, 100% 100%, 100% 100%;
  background-attachment: scroll;
  overflow: hidden;
}

.info-inner {
  max-width: var(--inner);
  margin: 0 auto
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start
}

.info-table {
  width: 100%;
  border-collapse: collapse
}

.info-table th,
.info-table td {
  padding: clamp(14px, 2vw, 20px) 0;
  vertical-align: top;
  border-bottom: 1px solid var(--c-bdr);
  font-size: clamp(.84rem, 1.2vw, .94rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: .07em;
}

/* テーブルヘッダ（衡山毛筆フォント）*/
.info-table th {
  width: 6em;
  font-family: var(--f-display);
  /* ★衡山毛筆 */
  font-weight: 600;
  font-size: .88rem;
  color: var(--c-org);
  letter-spacing: .18em;
  padding-right: 20px;
  white-space: nowrap;
}

.info-table td {
  color: var(--c-ink)
}

.info-table td a {
  color: var(--c-ink2);
  text-decoration: underline;
  text-underline-offset: 3px
}

.info-table td a:hover {
  color: var(--c-org)
}

/* 行ホバー: 淡橙 */
.info-table tbody tr:hover td,
.info-table tbody tr:hover th {
  background: rgba(184, 94, 24, .038)
}

.it-badge {
  display: inline-block;
  font-size: .6rem;
  letter-spacing: .12em;
  padding: 1px 8px;
  border-radius: 100px;
  margin-right: 6px
}

.it-badge--day {
  background: var(--c-org6);
  color: var(--c-org);
  border: 1px solid rgba(184, 94, 24, .24)
}

.it-badge--night {
  background: var(--c-blue4);
  color: var(--c-bluedp);
  border: 1px solid rgba(44, 96, 128, .20)
}

.info-table td small {
  font-size: .76rem;
  color: var(--c-ink3)
}

.info-map-wrap {
  aspect-ratio: 4/3;
  min-height: 260px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-bdr);
  box-shadow: 0 4px 28px rgba(184, 94, 24, .10)
}

.info-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--c-surf);
  background-image: var(--washi-grain), radial-gradient(ellipse 80% 80% at 50% 40%, rgba(78, 148, 184, .14) 0%, transparent 68%);
  background-size: 400px 400px, 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.map-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px
}

.map-dot {
  width: 10px;
  height: 10px;
  background: var(--c-org);
  border-radius: 50%;
  position: relative;
  z-index: 2
}

.map-ring {
  position: absolute;
  border: 1px solid var(--c-org2);
  border-radius: 50%;
  animation: rpulse 2.5s ease infinite;
  opacity: 0;
  width: 32px;
  height: 32px
}

.map-ring--2 {
  width: 48px;
  height: 48px;
  animation-delay: .9s
}

@keyframes rpulse {
  0% {
    opacity: .6;
    transform: scale(.4)
  }

  100% {
    opacity: 0;
    transform: scale(1.5)
  }
}

.map-hint {
  font-size: .8rem;
  font-weight: 400;
  color: var(--c-ink2);
  letter-spacing: .1em
}

.map-hint-sm {
  font-size: .64rem;
  color: var(--c-ink3);
  line-height: 1.8
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background-color: var(--c-bg3);
  background-image:
    var(--washi-shadow), var(--washi-crumple), var(--washi-fiber),
    radial-gradient(ellipse 80% 65% at 50% 100%, rgba(196, 180, 155, .18) 0%, transparent 68%),
    radial-gradient(ellipse 38% 28% at 8% 28%, rgba(184, 94, 24, .07) 0%, transparent 62%);
  background-size: 1100px 1100px, 700px 700px, 900px 900px, 100% 100%, 100% 100%;
  border-top: 1px solid var(--c-bdr);
  position: relative;
  overflow: hidden;
}

/* やぶれ線 */
.footer-torn {
  height: 32px;
  color: var(--c-bg2);
  line-height: 0;
  margin-bottom: -1px
}

.footer-torn svg {
  width: 100%;
  height: 100%
}

.footer-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: clamp(44px, 5.5vw, 68px) var(--gap) clamp(22px, 3.5vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px
}

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

.footer-icon {
  color: var(--c-org2)
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px
}

/* フッター店名（衡山毛筆フォント）*/
.f-ja {
  font-family: var(--f-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--c-ink)
}

/* ★衡山毛筆 */
.f-en {
  font-family: var(--f-latin);
  font-size: 1.26rem;
  font-weight: 300;
  letter-spacing: .44em;
  color: var(--c-org2)
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px
}

.footer-nav a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .14em;
  color: var(--c-ink2);
  transition: color var(--dur-f)
}

.footer-nav a:hover {
  color: var(--c-org)
}

.footer-sns {
  display: flex;
  gap: 12px
}

.f-sns {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-bdr2);
  border-radius: 50%;
  color: var(--c-ink3);
  background: rgba(248, 228, 200, .42);
  transition: all var(--dur-f);
}

.f-sns:hover {
  border-color: var(--c-org);
  color: var(--c-org);
  background: var(--c-org6);
  transform: translateY(-2px)
}

.footer-bottom {
  border-top: 1px solid var(--c-bdr);
  width: 100%;
  padding-top: 20px;
  text-align: center
}

.footer-copy {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .14em;
  color: var(--c-ink3)
}

.brand {
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 0.08em;
}

.brand .xi {
  color: #00BFFF;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ダミー背景プレースホルダー
   images/ にファイルを置くと JS が自動で差し替えます
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-slide:nth-child(1) {
  background: linear-gradient(160deg, #c0d4e0 0%, #d8c8a8 48%, #c8d4bc 100%)
}

.hero-slide:nth-child(2) {
  background: linear-gradient(160deg, #d8c0a0 0%, #c8a888 48%, #d4c0a4 100%)
}

.hero-slide:nth-child(3) {
  background: linear-gradient(160deg, #bcccda 0%, #b0c4ac 48%, #c4bcaa 100%)
}

.concept-photo {
  background: linear-gradient(168deg, #c4d0bc 0%, #b4c0ac 52%, #ccc0a4 100%)
}

.menu-card:nth-child(1) .mc-photo {
  background: linear-gradient(148deg, #c4d8c4 0%, #b0c8b0 100%)
}

.menu-card:nth-child(2) .mc-photo {
  background: linear-gradient(148deg, #d8c8a8 0%, #c4b090 100%)
}

.menu-card:nth-child(3) .mc-photo {
  background: linear-gradient(148deg, #b4c8d8 0%, #a0b4cc 100%)
}

.menu-card:nth-child(4) .mc-photo {
  background: linear-gradient(148deg, #d0c4a8 0%, #bcac90 100%)
}

.menu-card:nth-child(5) .mc-photo {
  background: linear-gradient(148deg, #c8d4bc 0%, #b4c4a8 100%)
}

.menu-card:nth-child(6) .mc-photo {
  background: linear-gradient(148deg, #c0c4d4 0%, #acabc0 100%)
}

.gallery-item:nth-child(1) .gi-img {
  background: linear-gradient(155deg, #c0d0b8 0%, #aec0ac 100%)
}

.gallery-item:nth-child(2) .gi-img {
  background: linear-gradient(155deg, #d4c4a8 0%, #c0b094 100%)
}

.gallery-item:nth-child(3) .gi-img {
  background: linear-gradient(155deg, #bcc4d0 0%, #a8b0c4 100%)
}

.gallery-item:nth-child(4) .gi-img {
  background: linear-gradient(155deg, #d0c8b0 0%, #bcb498 100%)
}

.gallery-item:nth-child(5) .gi-img {
  background: linear-gradient(155deg, #c4d0bc 0%, #b0c0a8 100%)
}

.gallery-item:nth-child(6) .gi-img {
  background: linear-gradient(155deg, #bcbece 0%, #a8aabc 100%)
}

.ig-post:nth-child(1) .ig-img {
  background: linear-gradient(150deg, #c0d0b8 0%, #b0c0a8 100%)
}

.ig-post:nth-child(2) .ig-img {
  background: linear-gradient(150deg, #d8c8a4 0%, #c4b08e 100%)
}

.ig-post:nth-child(3) .ig-img {
  background: linear-gradient(150deg, #b8c4d0 0%, #a4b0c4 100%)
}

.ig-post:nth-child(4) .ig-img {
  background: linear-gradient(150deg, #d0c8ae 0%, #bcb498 100%)
}

.ig-post:nth-child(5) .ig-img {
  background: linear-gradient(150deg, #c4d0b8 0%, #b0c0a4 100%)
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Responsive
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width:1024px) {
  .concept-inner {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .concept-photo {
    aspect-ratio: 16/9;
    background-size: contain !important;
    max-height: 380px
  }

  .concept-text {
    padding-left: 0
  }
}

@media(max-width:768px) {
  .concept-photo {
    aspect-ratio: 1070/1383;
    max-height: none;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: min(300px, 88vw);
    height: calc(100svh - 80px);
    background: linear-gradient(165deg, rgba(250, 245, 232, .96), rgba(233, 224, 204, .9));
    background-image:
      var(--washi-fiber),
      var(--washi-grain),
      linear-gradient(165deg, rgba(250, 245, 232, .96), rgba(233, 224, 204, .9));
    background-blend-mode: multiply, multiply, normal;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--glass-bdr);
    border-top: 1px solid var(--c-bdr);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 36px 20px 28px;
    gap: 18px;
    transition: right var(--dur-m) var(--ease);
    box-shadow: -8px 0 40px rgba(72, 44, 8, .09);
    overflow-y: auto;
  }

  .nav-menu.is-open {
    right: 0
  }

  .nav-menu a {
    font-size: .95rem;
    width: min(220px, 100%);
    text-align: center;
    padding: 12px 8px 14px;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(90, 65, 35, .12);
    letter-spacing: .14em;
    transition: color var(--dur-f), border-color var(--dur-f), transform var(--dur-f);
  }

  .nav-menu a:hover {
    color: var(--c-org);
    border-color: rgba(184, 94, 24, .35);
    transform: translateX(2px);
  }

  .nav-hamburger {
    display: flex
  }

  .ht-main {
    font-size: clamp(2.6rem, 12vw, 4.5rem)
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center
  }

  .menu-grid {
    grid-template-columns: 1fr
  }

  .mlp-cols {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gi-tall {
    grid-row: span 1;
    aspect-ratio: 1
  }

  .gi-wide {
    grid-column: span 2;
    min-height: 180px
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .ig-post:nth-child(n+4) {
    display: none
  }

  .info-grid {
    grid-template-columns: 1fr
  }

  .info-map-wrap {
    aspect-ratio: 16/9;
    min-height: 200px
  }

  .reserve-actions {
    flex-direction: column;
    align-items: center
  }

  .btn-primary,
  .btn-outline,
  .btn-coming-soon {
    justify-content: center;
    padding: 13px 24px
  }
}

@media(max-width:480px) {
  .gallery-grid {
    grid-template-columns: 1fr
  }

  .gi-wide {
    grid-column: span 1
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ig-post:nth-child(n+3) {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ — よくあるご質問
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq {
  padding: var(--pad) 0;
  position: relative;
}

.faq-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--c-bdr);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--dur-m) var(--ease), border-color var(--dur-m);
}

.faq-item:hover {
  border-color: var(--c-bdr3);
  box-shadow: 0 4px 20px rgba(184, 94, 24, .08);
}

.faq-item[open] {
  border-color: var(--c-org4);
  box-shadow: 0 6px 28px rgba(184, 94, 24, .10);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  font-family: var(--f-display);
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color var(--dur-f);
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::before {
  content: 'Q';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-org5), var(--c-org6));
  border: 1.5px solid var(--c-org4);
  color: var(--c-org);
  font-family: var(--f-latin);
  font-size: .88rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-q::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--c-org2);
  border-bottom: 2px solid var(--c-org2);
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--dur-m) var(--ease);
}

.faq-item[open] .faq-q::after {
  transform: translateY(-35%) rotate(-135deg);
}

.faq-q:hover {
  color: var(--c-org);
}

.faq-a {
  padding: 0 24px 20px 70px;
  color: var(--c-ink);
  font-size: .96rem;
  font-weight: 400;
  line-height: 1.9;
  animation: faqFadeIn .4s var(--ease);
}

.faq-a a {
  color: var(--c-org);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-a a:hover {
  color: var(--c-nemo-blue-dark);
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-q {
    padding: 16px 40px 16px 18px;
    gap: 10px;
    font-size: .92rem;
  }
  .faq-q::before {
    width: 28px;
    height: 28px;
    font-size: .75rem;
  }
  .faq-q::after {
    right: 16px;
  }
  .faq-a {
    padding: 0 18px 16px 56px;
  }
}

:focus-visible {
  outline: 2px solid var(--c-org);
  outline-offset: 3px
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: セクション区切り波形（和紙の破れ風）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-divider {
  height: 28px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 5;
}
.section-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}
.section-divider--up {
  margin-bottom: -1px;
}
.section-divider--down {
  margin-top: -1px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: カウンターアニメーション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.counter-animate {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: ギャラリーアイテムの影と枠線
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery-item {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: セクション見出し文字アニメーション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec-heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.sec-heading.is-visible .char {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: IG postのoverflow clip
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ig-post {
  overflow: hidden;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: スクロール進捗バーの太さアップ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.scroll-progress {
  height: 4px !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: FAQ アイテムの左オレンジバー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-item[open] {
  border-left: 3px solid var(--c-org);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: Instagramグリッド枠線
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ig-post {
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m);
}
.ig-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: ナビロゴのサイズ改善
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-logo-ja {
  font-weight: 600;
  font-size: .95rem;
}
.nav-logo-en {
  font-weight: 500;
  font-size: .74rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: メニューカードのホバー時光沢
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.menu-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  transition: left .7s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.menu-card:hover::after {
  left: 130%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: 予約ボタンのパルスアニメーション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reserve-actions .btn-primary {
  animation: btnPulse 3s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(184, 94, 24, .32); }
  50% { box-shadow: 0 4px 22px rgba(184, 94, 24, .32), 0 0 32px rgba(184, 94, 24, .18); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   追加: コンセプトカード浮遊アニメーション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.concept-card {
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURED — メディア掲載 / 栗山町観光公式サイト Krip
   既存の和紙×水彩×橙×ネモフィラ青の世界観に統合
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.featured {
  position: relative;
  padding: var(--pad) var(--gap);
  overflow: hidden;
}

/* 背景: 和紙テクスチャ + 橙＆青の水彩にじみ（既存concept/menuと同系統） */
.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    var(--washi-shadow),
    var(--washi-crumple),
    var(--washi-fiber),
    radial-gradient(ellipse 60% 50% at 8% 12%, rgba(184, 94, 24, .08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 92% 88%, rgba(91, 174, 213, .10) 0%, transparent 60%),
    radial-gradient(ellipse 45% 30% at 55% 50%, rgba(228, 164, 98, .07) 0%, transparent 65%);
  background-size: 1100px 1100px, 700px 700px, 900px 900px, 100% 100%, 100% 100%, 100% 100%;
  mix-blend-mode: multiply;
}

/* 透かし文字「掲」（衡山毛筆フォント） */
.featured-watermark {
  position: absolute;
  top: 6%;
  right: -2%;
  font-family: var(--f-display);
  font-size: clamp(220px, 32vw, 460px);
  font-weight: 600;
  line-height: 1;
  color: rgba(184, 94, 24, .055);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transform: rotate(6deg);
  letter-spacing: 0;
}

/* 背景水彩ウォッシュ（軽い橙の染み） */
.featured-bg-wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 80%, rgba(184, 94, 24, .06), transparent 38%),
    radial-gradient(circle at 80% 22%, rgba(78, 148, 184, .06), transparent 42%);
  filter: blur(2px);
}

/* 墨流しSVG */
.featured-ink {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.featured-ink svg {
  width: 100%;
  height: 100%;
  display: block;
}

.featured-inner {
  max-width: var(--inner);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* メインカード: 和紙テクスチャ込みのグラスパネル */
.featured-card {
  position: relative;
  background-color: var(--c-surf);
  background-image:
    var(--washi-grain),
    var(--washi-crumple),
    linear-gradient(148deg, rgba(250, 244, 232, .96), rgba(238, 228, 210, .90)),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184, 94, 24, .07) 0%, transparent 65%);
  background-size: 400px 400px, 700px 700px, 100% 100%, 100% 100%;
  border: 1px solid var(--c-bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 52px rgba(56, 32, 4, .10);
  transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m), border-color var(--dur-m);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 60px rgba(76, 48, 8, .14), 0 0 0 1.5px rgba(184, 94, 24, .22);
  border-color: rgba(184, 94, 24, .26);
}

/* カード上辺の橙水彩ライン（menu-list-panelと同様の意匠） */
.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 14' preserveAspectRatio='none'%3E%3Cpath d='M4 8 Q100 3 200 6 Q300 9 400 5 Q500 2 600 6 Q700 9 796 6' stroke='%23b85e18' stroke-width='3' fill='none' stroke-linecap='round' opacity='0.55'/%3E%3Cpath d='M20 10.5 Q150 8 280 9.5 Q410 11 540 8.5 Q670 6 780 9' stroke='%23e4a462' stroke-width='1.8' fill='none' stroke-linecap='round' opacity='0.38'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  z-index: 4;
  pointer-events: none;
}

/* 浮きタグ「Official Feature」 */
.featured-tag {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-latin);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--c-org), #a04d10);
  color: #fff;
  padding: 7px 16px 7px 14px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(184, 94, 24, .35);
}
.featured-tag svg {
  color: #ffe3c0;
}

/* グリッド配置 */
.featured-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  padding: clamp(40px, 5.5vw, 72px) clamp(28px, 4vw, 56px) clamp(36px, 5vw, 60px);
}

/* ──── 左: ビジュアル ──── */
.featured-visual {
  position: relative;
}

.fv-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg2);
  box-shadow: 0 12px 36px rgba(56, 32, 4, .14);
}

.fv-photo {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: transform var(--dur-s) var(--ease);
}

.featured-card:hover .fv-photo {
  transform: scale(1.04);
}

.fv-photo-wash {
  position: absolute;
  inset: 0;
  background-image: var(--washi-grain),
    linear-gradient(160deg, transparent 50%, rgba(242, 234, 216, .42) 100%);
  background-size: 400px 400px, 100% 100%;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.fv-watercolor-frame {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  z-index: 2;
}
.fv-watercolor-frame svg {
  width: 100%;
  height: 100%;
}

/* 水彩スプラッシュ */
.fv-splash {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
}
.fv-splash-1 {
  top: -18px;
  left: -22px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(184, 94, 24, .35), transparent 70%);
}
.fv-splash-2 {
  bottom: -22px;
  right: -26px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(91, 174, 213, .30), transparent 70%);
}

/* Krip 風 浮きバッジ */
.fv-badge {
  position: absolute;
  bottom: -22px;
  right: -16px;
  z-index: 3;
  background:
    var(--washi-grain),
    linear-gradient(148deg, #faf5e8, #f0e5cc);
  background-size: 300px 300px, 100% 100%;
  border: 1.5px solid var(--c-org4);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 28px rgba(76, 48, 8, .16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 108px;
  animation: floatCard 4.4s ease-in-out infinite;
}
.fv-badge-ja {
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--c-ink);
}
.fv-badge-en {
  font-family: var(--f-latin);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--c-org);
  line-height: 1.1;
}
.fv-badge-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--c-org2);
  margin: 4px 0 3px;
  border-radius: 2px;
}
.fv-badge-sub {
  font-family: var(--f-latin);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-ink3);
  text-align: center;
  line-height: 1.3;
}

/* ──── 右: テキスト ──── */
.featured-text {
  position: relative;
  z-index: 1;
}

/* メディアソース行 */
.ft-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 250, 238, .72);
  border: 1px solid var(--c-bdr);
  border-radius: 100px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}
.ft-source-mark {
  display: inline-flex;
  color: var(--c-org);
}
.ft-source-name {
  font-family: var(--f-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--c-ink2);
}
.ft-source-brand {
  font-family: var(--f-latin);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--c-org);
  padding-left: 10px;
  border-left: 1px solid var(--c-bdr2);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.ft-source-brand small {
  font-family: var(--f-display);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .24em;
  color: var(--c-ink3);
}

/* 見出し（衡山毛筆フォント／sec-headingに準じた質感） */
.ft-headline {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .07em;
  color: var(--c-ink);
  margin-bottom: 1.2rem;
}
.ft-headline em {
  font-style: normal;
  color: var(--c-org);
  position: relative;
  padding: 0 .12em;
}
.ft-headline em::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: .42em;
  background: linear-gradient(transparent 60%, rgba(228, 164, 98, .32) 60%);
  border-radius: 2px;
  z-index: -1;
}

.featured-text .wc-underline {
  margin-bottom: 1.5rem;
}

/* 引用文 */
.ft-quote {
  position: relative;
  font-size: clamp(.92rem, 1.4vw, 1rem);
  line-height: 2;
  color: var(--c-ink);
  letter-spacing: .04em;
  padding: 22px 24px 22px 28px;
  background: rgba(255, 252, 240, .55);
  border-left: 3px solid var(--c-org);
  border-radius: 6px 16px 16px 6px;
  margin-bottom: .65rem;
  backdrop-filter: blur(4px);
}
.ft-quote-mark {
  font-family: var(--f-latin);
  font-size: 1.6em;
  font-weight: 600;
  color: var(--c-org3);
  line-height: 1;
  vertical-align: -0.2em;
  margin-right: 2px;
}
.ft-quote-mark--end {
  vertical-align: -0.5em;
  margin-left: 4px;
  margin-right: 0;
}

.ft-quote-cite {
  font-family: var(--f-latin);
  font-size: .78rem;
  font-style: italic;
  letter-spacing: .14em;
  color: var(--c-ink3);
  text-align: right;
  margin-bottom: 1.8rem;
}

/* タグ群 */
.ft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.8rem;
}
.ft-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--c-ink2);
  background: var(--c-org6);
  border: 1px solid var(--c-org4);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background var(--dur-f), border-color var(--dur-f), color var(--dur-f);
}
.ft-tag svg {
  color: var(--c-org);
}
.ft-tag:hover {
  background: var(--c-nemo-blue-light);
  border-color: var(--c-nemo-blue);
  color: var(--c-nemo-blue-dark);
}
.ft-tag:hover svg {
  color: var(--c-nemo-blue-dark);
}

/* アクション */
.ft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 1rem;
}
.featured-link {
  /* btn-primary を上書きせず、外部リンク的なアイコンを横並びに */
}

/* URL 表示（信頼性可視化） */
.ft-url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-latin);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--c-ink3);
  background: rgba(255, 250, 238, .5);
  padding: 5px 12px 5px 10px;
  border-radius: 6px;
  border: 1px dashed var(--c-bdr2);
}
.ft-url svg {
  color: var(--c-org);
}

/* 補足注記 */
.featured-note {
  text-align: center;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--c-ink3);
  margin-top: clamp(26px, 4vw, 40px);
}

/* ━━━ Responsive: Featured ━━━ */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 40px) clamp(32px, 4vw, 48px);
  }
  .fv-frame {
    aspect-ratio: 16 / 10;
    max-height: 380px;
  }
  .fv-badge {
    bottom: -18px;
    right: 14px;
  }
}

@media (max-width: 768px) {
  .featured-watermark {
    font-size: clamp(180px, 60vw, 280px);
    top: 4%;
  }
  .featured-tag {
    top: 18px;
    left: 18px;
    font-size: .66rem;
    padding: 6px 12px 6px 10px;
    letter-spacing: .18em;
  }
  .fv-frame {
    aspect-ratio: 4 / 3;
  }
  .fv-badge {
    padding: 10px 14px;
    min-width: 92px;
    bottom: -14px;
    right: 10px;
  }
  .fv-badge-ja { font-size: .74rem; }
  .fv-badge-en { font-size: .9rem; }
  .ft-headline {
    line-height: 1.6;
  }
  .ft-quote {
    padding: 18px 18px 18px 22px;
    line-height: 1.95;
  }
  .ft-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ft-actions .btn-primary,
  .ft-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .ft-source {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .ft-source-brand {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .featured-card {
    border-radius: var(--r-lg);
  }
  .featured-watermark {
    right: -8%;
  }
  .fv-splash-1 { width: 90px; height: 90px; }
  .fv-splash-2 { width: 110px; height: 110px; }
}
