/* =========================================================
   SALON HARU — 共通スタイル
   Claude Design ハンドオフ（美容室サイトデザイン）を静的実装
   配色：オフホワイト基調 + モカ/ゴールドのアクセント
   フォント：Jost（欧文・ラベル）/ Zen Kaku Gothic New（和文）
   方針：spacing は rem（÷16）、font-size/border/radius/transform は px
   ========================================================= */

:root {
  --ink: #232120;          /* メインテキスト・ダークボタン */
  --ink-soft: #3a342f;     /* ボタンホバー */
  --text: #4a443d;         /* ナビ・濃いテキスト */
  --text-mid: #5f5a53;     /* 本文（条文等） */
  --text-sub: #6f6a63;     /* 補足テキスト */
  --text-soft: #7d776f;    /* キャプション */
  --muted: #8a847b;        /* さらに淡い */
  --muted-2: #9a948b;
  --faint: #b3aca2;        /* パンくず等 */
  --gold: #a8917a;         /* アクセント（モカ） */
  --gold-2: #cbb089;       /* フッター見出し・モバイルCTA */
  --gold-pale: #c2b29c;
  --gold-line: #cbbfae;    /* 斜線ディバイダ */
  --champ: #e7c79b;        /* クーポンの金 */
  --line: #ece7df;         /* 薄ボーダー */
  --line-2: #e2d9cc;       /* 入力ボーダー */
  --line-3: #ddd2c2;
  --line-4: #ece5da;
  --cream: #f4efe7;        /* 明テキスト・明ボタン */
  --cream-bg: #fbf9f5;     /* 入力背景 */
  --cream-bg-2: #faf8f4;   /* ボックス背景 */
  --cream-hover: #fbf8f2;  /* 行ホバー */
  --footer-bg: #1b1916;
  --footer-line: #2e2a25;
  --bg: #ffffff;
  --maxw: 1180px;
  --serif-en: 'Jost', sans-serif;
  --sans-jp: 'Zen Kaku Gothic New', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans-jp);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
}

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

@keyframes haru-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.rise { animation: haru-rise 1s ease both; }
.rise-slow { animation: haru-rise 1.1s ease both; }

.container { max-width: var(--maxw); margin: 0 auto; }

/* ============ 画像プレースホルダ（image-slot 代替） ============ */
.img-slot {
  background: linear-gradient(135deg, #efe9e0 0%, #e4dac9 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-slot::before {
  content: attr(data-label);
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #b3a48c;
  text-align: center;
  padding: 0 1rem;
  line-height: 1.8;
}
/* 実画像を入れたスロット：プレースホルダのラベルを隠し、画像をカバー表示 */
.img-slot.has-img::before { display: none; }
.img-slot > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ クーポンバナー ============ */
.coupon-bar {
  background: #8a7560;
  color: var(--cream);
  text-align: center;
  padding: 0.6875rem 1.25rem;
  font-size: 15px;
  letter-spacing: .1em;
  line-height: 1.6;
}
.coupon-bar .price { color: var(--champ); }

/* ============ ヘッダー ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; }
.brand-logo { height: 56px; width: auto; display: block; }
.footer-logo { height: 58px; width: auto; display: block; margin-bottom: 0.75rem; }
.brand-en {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: .4em;
  line-height: 1;
}
.brand-sub {
  font-size: 9.5px;
  letter-spacing: .34em;
  color: #a8a097;
  margin-top: 0.3125rem;
}
.gnav { display: flex; align-items: center; gap: 1.875rem; }
.gnav a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--sans-jp);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .14em;
  transition: color .2s ease;
}
.gnav a:hover { color: var(--gold); }
.gnav a.is-active { color: var(--gold); }
.nav-cta {
  text-decoration: none;
  background: var(--gold);
  color: #fff !important;
  font-size: 15px;
  letter-spacing: .16em;
  padding: 0.8125rem 1.5rem;
  border-radius: 2px;
  white-space: nowrap;
  transition: background .2s ease;
}
.nav-cta:hover { background: #8a7560; }

/* ============ ハンバーガーボタン（モバイル） ============ */
.nav-toggle {
  display: none;             /* デスクトップでは非表示 */
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  z-index: 130;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bars { position: relative; display: block; width: 26px; height: 14px; }
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  height: 1.6px;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .38s cubic-bezier(.7,0,.2,1), opacity .25s ease, width .3s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; width: 70%; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
.nav-toggle.is-open .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bars span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* ============ 全画面オーバーレイメニュー（モバイル） ============ */
.nav-overlay {
  display: none;             /* デスクトップでは非表示。モバイルで flex に切替 */
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--cream);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5.5rem 2rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity .5s ease, transform .6s cubic-bezier(.6,0,.2,1), visibility .5s;
}
.nav-overlay::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -12%;
  width: 60%;
  height: 46%;
  background: radial-gradient(closest-side, rgba(203,176,137,.22), transparent);
  pointer-events: none;
}
.nav-overlay-cap {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: .36em;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.nav-overlay-list { display: flex; flex-direction: column; gap: 1.4rem; }
.nav-overlay-list a {
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(14px);
}
.nav-overlay-list .jp {
  display: block;
  font-family: var(--sans-jp);
  font-weight: 500;
  font-size: 25px;
  letter-spacing: .08em;
  color: var(--ink);
}
.nav-overlay-list .en {
  display: block;
  font-family: var(--serif-en);
  font-size: 9px;
  letter-spacing: .32em;
  color: var(--gold);
  margin-top: .25rem;
}
.nav-overlay-cta { margin-top: 2.25rem; }
.nav-overlay-cta a {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: .16em;
  padding: .95rem 2.75rem;
  border-radius: 2px;
}
.nav-overlay-foot {
  margin-top: 1.75rem;
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--text-sub);
}

/* 開いた状態 */
body.nav-open { overflow: hidden; }
body.nav-open .nav-overlay { opacity: 1; visibility: visible; transform: scale(1); }
body.nav-open .nav-overlay-list a {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .55s cubic-bezier(.5,0,.2,1);
  transition-delay: calc(.12s + var(--i) * .07s);
}
body.nav-open .site-header {
  z-index: 120;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

/* ============ ボタン ============ */
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .14em;
  padding: 1.0625rem 2.5rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-dark { background: var(--gold); color: #fff; }
.btn-dark:hover { background: #8a7560; }
.btn-outline { background: transparent; color: var(--ink); border-color: #c9bfb0; padding: 1rem 2.125rem; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #fff; }

/* ============ 共通：見出しラベル ============ */
.eyebrow {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: .5em;
  color: var(--gold);
}
/* 斜線ではさむセクションラベル（GALLERY / STAFF / VOICE） */
.sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}
.sec-label .bar {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: var(--gold-line);
  transform: rotate(22deg);
}
.sec-label .txt {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: .42em;
  color: var(--gold);
}
.sec-title {
  text-align: center;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: .1em;
  margin: 0 0 3.5rem;
}

/* ============ 下層ページ：ページヘッダー ============ */
.page-head { text-align: center; padding: 5.25rem 2.5rem 0; }
.breadcrumb {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--faint);
  margin-bottom: 1.5rem;
}
.breadcrumb a { text-decoration: none; color: var(--faint); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.625rem; }
.breadcrumb .current { color: var(--muted); }
.page-eyebrow {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: .5em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.page-title {
  font-weight: 400;
  font-size: 34px;
  letter-spacing: .1em;
  margin: 0;
}
.page-lead {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 2.1;
  margin: 1.125rem auto 0;
  max-width: 520px;
}

/* ============ フッター ============ */
.site-footer { background: #faf8f4; color: #6f6a63; border-top: 1px solid #ece7df; }
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand-en {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: .4em;
  color: var(--cream);
}
.footer-brand-sub {
  font-size: 10px;
  letter-spacing: .32em;
  color: #7a736a;
  margin-top: 0.5rem;
}
.footer-addr {
  font-size: 15px;
  line-height: 2;
  margin: 1.375rem 0 0;
  max-width: 300px;
}
.footer-col-ttl {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--gold);
  margin-bottom: 1.125rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; font-size: 15px; }
.footer-links a { text-decoration: none; color: var(--text); transition: color .2s ease; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  font-size: 11px;
  letter-spacing: .1em;
  color: #6a635a;
  text-align: center;
}

/* =========================================================
   トップページ
   ========================================================= */
.page-wrap { font-family: var(--sans-jp); color: var(--ink); background: var(--bg); }

/* ---- HERO (split) ---- */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6.5rem 3.5rem 5.5rem;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: .46em;
  color: var(--gold);
  margin-bottom: 1.625rem;
}
.hero-title {
  font-weight: 400;
  font-size: 46px;
  line-height: 1.7;
  letter-spacing: .06em;
  margin: 0 0 1.875rem;
}
.hero-lead {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 2.1;
  margin: 0 0 2.5rem;
  max-width: 380px;
}
.hero-actions { display: flex; gap: 0.875rem; align-items: center; flex-wrap: wrap; }
.hero-images { position: relative; height: 560px; }
.hero-images .img-main {
  position: absolute; top: 0; right: 0;
  width: 62%; height: 380px;
}
.hero-images .img-sub {
  position: absolute; bottom: 0; left: 0;
  width: 42%; height: 268px;
}
.hero-images .vert {
  position: absolute; bottom: 2.25rem; right: 8%;
  font-family: var(--serif-en);
  font-size: 10px; letter-spacing: .42em;
  color: var(--gold-pale);
  writing-mode: vertical-rl;
}
.scroll-hint {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.875rem; padding: 1rem 0 0.5rem;
}
.scroll-hint .label {
  font-family: var(--serif-en);
  font-size: 10px; letter-spacing: .4em;
  color: #b3aca2; writing-mode: vertical-rl;
}
.scroll-hint .line {
  display: inline-block; width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--gold-line), transparent);
}

/* ---- INFO STRIP ---- */
.info-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.info-strip .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.125rem 2.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.75rem; flex-wrap: wrap;
  font-size: 15px; letter-spacing: .06em; color: var(--text-sub);
}
.info-strip .div { color: #d8cfc2; }

/* ---- CONCEPT ---- */
.concept { background: #fff; }
.concept .inner { max-width: var(--maxw); margin: 0 auto; padding: 7.5rem 3.5rem 8rem; }
.concept-head { text-align: center; max-width: 600px; margin: 0 auto 4.5rem; }
.concept-head .eyebrow { display: block; margin-bottom: 1.75rem; }
.concept-title {
  font-weight: 400; font-size: 30px;
  letter-spacing: .09em; line-height: 1.9; margin: 0;
}
.concept-img { width: 100%; height: 520px; }
.reasons {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem; max-width: 920px; margin: 5.5rem auto 0; text-align: center;
}
.reason .no {
  font-family: var(--serif-en);
  font-size: 13px; letter-spacing: .3em;
  color: var(--gold-pale); margin-bottom: 1.125rem;
}
.reason h3 { font-weight: 500; font-size: 17px; letter-spacing: .05em; margin: 0 0 1rem; }
.reason p { color: var(--text-soft); font-size: 15px; line-height: 2.1; margin: 0; }

/* ---- GALLERY ---- */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: 6rem 2.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-grid .img-slot { width: 100%; height: 300px; }
.gallery-cta { text-align: center; margin-top: 3.25rem; }

/* ---- STAFF ---- */
.staff { background: #fff; border-top: 1px solid var(--line); }
.staff .inner { max-width: var(--maxw); margin: 0 auto; padding: 6rem 2.5rem; }
.staff-lead {
  text-align: center; color: var(--text-soft); font-size: 15px;
  line-height: 2; margin: 0 auto 3.5rem; max-width: 560px;
}
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.staff-card .img-slot { width: 100%; aspect-ratio: 3 / 4; height: auto; }
.staff-card .role {
  font-family: var(--serif-en);
  font-size: 10.5px; letter-spacing: .22em;
  color: #bca693; margin-top: 1rem;
}
.staff-card h3 { font-weight: 500; font-size: 16px; letter-spacing: .06em; margin: 0.375rem 0 0.5rem; }
.staff-card .sp { font-size: 15px; color: var(--muted); margin-bottom: 0.625rem; }
.staff-card p { font-size: 15px; line-height: 1.9; color: var(--text-soft); margin: 0; }

/* ---- ACCESS ---- */
.access { background: #fff; border-top: 1px solid var(--line); }
.access .inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 6.5rem 3.5rem;
  display: grid; grid-template-columns: auto 1fr 1.05fr;
  gap: 4rem; align-items: center;
}
.access .vlabel {
  font-family: var(--serif-en);
  font-size: 13px; letter-spacing: .5em;
  color: #cbb89f; writing-mode: vertical-rl;
  align-self: start; padding-top: 0.375rem;
}
.access h2 { font-weight: 500; font-size: 25px; letter-spacing: .07em; margin: 0 0 2.5rem; line-height: 1.6; }
.access-row {
  display: flex; gap: 1.125rem; align-items: baseline;
  border-top: 1px solid var(--line-2); padding: 1.125rem 0;
}
.access-row .en {
  font-family: var(--serif-en);
  font-size: 10px; letter-spacing: .22em;
  color: #bca693; width: 64px; flex: none;
}
.access-row .val { font-size: 15px; line-height: 1.8; color: var(--text); }
.access-tel {
  display: inline-block; margin-top: 1.625rem;
  color: var(--ink); text-decoration: none;
  font-family: var(--serif-en);
  font-size: 23px; letter-spacing: .1em;
  transition: color .2s ease;
}
.access-tel:hover { color: var(--gold); }
.access .map { width: 100%; height: 480px; }
.access .map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.92); }

/* =========================================================
   メニューページ
   ========================================================= */
.menu-sec { background: #fff; }
.menu-sec .inner { max-width: var(--maxw); margin: 0 auto; padding: 4.5rem 2.5rem 6.5rem; }
.menu-layout { display: grid; grid-template-columns: 1fr 1.12fr; gap: 4rem; align-items: start; }
.menu-feature { position: sticky; top: 6rem; }
.menu-feature .lbl { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.125rem; }
.menu-feature .lbl .bar { display: inline-block; width: 1px; height: 20px; background: var(--gold-line); transform: rotate(22deg); }
.menu-feature .lbl .txt { font-family: var(--serif-en); font-size: 13px; letter-spacing: .42em; color: var(--gold); }
.menu-feature h2 { font-weight: 500; font-size: 27px; letter-spacing: .07em; line-height: 1.6; margin: 0 0 1.25rem; }
.menu-feature p { font-size: 15px; line-height: 2.05; color: var(--text-soft); margin: 0 0 1.75rem; max-width: 330px; }
.menu-feature-img { position: relative; }
.menu-feature-img .img-slot { width: 100%; height: 380px; }
.menu-feature-img .cap {
  position: absolute; left: 0; bottom: 0; width: 100%;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(35,33,32,.66), transparent);
  pointer-events: none;
}
.menu-feature-img .cap span { color: var(--cream); font-size: 12px; letter-spacing: .1em; }
.menu-group { margin-bottom: 2.5rem; }
.menu-group-head {
  display: flex; align-items: baseline; gap: 0.875rem;
  padding-bottom: 0.875rem; margin-bottom: 0.375rem;
  border-bottom: 1px solid var(--line-3);
}
.menu-group-head .en { font-family: var(--serif-en); font-size: 11px; letter-spacing: .3em; color: #bca693; }
.menu-group-head .cat { font-size: 15px; letter-spacing: .12em; color: var(--muted); }
.menu-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.5rem; padding: 1.375rem 0.5rem;
  border-bottom: 1px solid var(--line-4);
  transition: background .2s ease;
}
.menu-item:hover { background: var(--cream-hover); }
.menu-item .body { flex: 1; }
.menu-item h3 { font-weight: 500; font-size: 17px; letter-spacing: .03em; margin: 0 0 0.4375rem; }
.menu-item .desc { font-size: 15px; line-height: 1.85; color: var(--muted); margin: 0; max-width: 330px; }
.menu-item .price-wrap { text-align: right; white-space: nowrap; }
.menu-item .price-row { display: flex; align-items: baseline; gap: 0.375rem; justify-content: flex-end; }
.menu-item .price { font-size: 23px; font-weight: 500; }
.menu-item .price-from { font-size: 11px; color: var(--muted-2); }
.menu-item .price-sub { font-size: 11px; color: #a39c92; margin-top: 0.1875rem; }
.menu-note { font-size: 11.5px; line-height: 1.9; color: var(--faint); margin: 1.5rem 0.25rem 0; }

/* ---- VOICE ---- */
.voice { background: #fff; border-top: 1px solid var(--line); }
.voice .inner { max-width: var(--maxw); margin: 0 auto; padding: 6rem 2.5rem; }
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 920px; margin: 0 auto; }
.voice-card { background: #fff; border: 1px solid var(--line-4); padding: 2.5rem 2.375rem; }
.voice-card .quote { font-family: var(--serif-en); font-size: 30px; color: var(--gold-line); line-height: 1; margin-bottom: 0.875rem; }
.voice-card p { font-size: 14.5px; line-height: 2.05; color: var(--text); margin: 0 0 1.125rem; }
.voice-card .who { font-size: 12px; letter-spacing: .06em; color: var(--muted-2); }
.voice-note { text-align: center; color: var(--faint); font-size: 11.5px; letter-spacing: .04em; margin: 1.75rem 0 0; }

/* ---- CTA STRIP ---- */
.cta-strip { background: var(--cream-bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-strip .inner {
  max-width: 1080px; margin: 0 auto; padding: 5rem 3.5rem;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: center;
}
.cta-strip .cta-eyebrow {
  display: block; font-family: var(--serif-en);
  font-size: 11px; letter-spacing: .4em; color: var(--gold); margin-bottom: 1rem;
}
.cta-strip h2 { font-weight: 500; font-size: 28px; letter-spacing: .06em; line-height: 1.55; margin: 0 0 1.125rem; color: var(--ink); }
.cta-strip p { font-size: 15px; line-height: 2; color: var(--text-mid); margin: 0; max-width: 420px; }
.cta-card {
  background: #fff; border: 1px solid var(--line-4); border-radius: 8px;
  padding: 2.5rem 2.25rem; box-shadow: 0 18px 40px rgba(168,145,122,.12); text-align: center;
}
.cta-card-lbl { font-family: var(--serif-en); font-size: 10.5px; letter-spacing: .26em; color: var(--gold); margin-bottom: 1.125rem; }
.cta-card .btn { display: block; width: 100%; }
.cta-tel { display: block; margin-top: 1rem; font-size: 14px; color: var(--text-sub); letter-spacing: .04em; text-decoration: none; }
.cta-tel b { font-family: var(--serif-en); font-weight: 400; color: var(--ink); font-size: 19px; letter-spacing: .06em; vertical-align: -1px; }

/* =========================================================
   予約ページ
   ========================================================= */
.channels { max-width: 900px; margin: 0 auto; padding: 3.5rem 2.5rem 0; }
.channels-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.125rem; }
.channel {
  text-decoration: none; text-align: center;
  padding: 1.875rem 1rem; border-radius: 2px;
  transition: background .2s ease, border-color .2s ease;
}
.channel.dark { background: var(--gold); color: var(--cream); }
.channel.dark:hover { background: #8a7560; }
.channel.dark .en { color: var(--gold-2); }
.channel.line-out { background: #fff; color: var(--ink); border: 1px solid var(--line-3); }
.channel.line-out:hover { border-color: var(--gold); }
.channel .en { font-family: var(--serif-en); font-size: 12px; letter-spacing: .2em; color: var(--gold); margin-bottom: 0.5rem; }
.channel .main { font-size: 15px; letter-spacing: .06em; }
.channel .sub { font-size: 11px; color: var(--muted-2); margin-top: 0.5rem; }

.form-sec { max-width: 760px; margin: 0 auto; padding: 4rem 2.5rem 2.5rem; }
.reserve-form { background: #fff; border: 1px solid var(--line-4); padding: 3rem 2.75rem; border-radius: 3px; }
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.375rem; }
.field { display: block; }
.reserve-form > * + * { margin-top: 1.375rem; }
.field-label { display: block; font-size: 15px; letter-spacing: .08em; color: var(--text-sub); margin-bottom: 0.5625rem; }
.req {
  color: #c0392b; font-size: 10px;
  border: 1px solid #e3c6c1; border-radius: 2px;
  padding: 1px 6px; margin-left: 0.25rem;
}
.input, .textarea {
  width: 100%; background: var(--cream-bg);
  border: 1px solid var(--line-2); color: var(--ink);
  padding: 0.875rem; font-size: 15px; font-family: inherit;
  border-radius: 2px; outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.textarea { resize: vertical; }
.input:focus, .textarea:focus { border-color: var(--gold); background: #fff; }
.field-block { margin-top: 1.375rem; }
.radio-row { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.radio-chip {
  display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--line-2); border-radius: 2px;
  padding: 0.6875rem 1.125rem; font-size: 15px; cursor: pointer;
  transition: border-color .2s ease;
}
.radio-chip:hover { border-color: var(--gold); }
.radio-chip input { accent-color: var(--gold); }
.agree {
  display: flex; align-items: center; gap: 0.625rem;
  margin-top: 1.5rem; font-size: 15px; color: var(--text-sub);
}
.agree input { width: 16px; height: 16px; accent-color: var(--gold); }
.agree a { color: var(--gold); text-decoration: underline; }
.submit-btn {
  width: 100%; margin-top: 1.625rem;
  background: var(--gold); color: #fff; border: none;
  font-family: inherit; font-size: 14.5px; letter-spacing: .16em;
  padding: 1.125rem; border-radius: 2px; cursor: pointer;
  transition: background .2s ease;
}
.submit-btn:hover { background: #8a7560; }
.form-note { text-align: center; font-size: 11.5px; color: #a39c92; margin: 1rem 0 0; line-height: 1.8; }
.hours-note { max-width: 760px; margin: 0 auto; padding: 0 2.5rem 6rem; }
.hours-note .inner {
  display: flex; gap: 0.875rem; flex-wrap: wrap; justify-content: center;
  font-size: 15px; letter-spacing: .05em; color: var(--text-sub);
  border-top: 1px solid var(--line); padding-top: 2rem;
}
.hours-note .div { color: #d8cfc2; }

/* =========================================================
   お知らせページ
   ========================================================= */
.flex-page { min-height: 100vh; display: flex; flex-direction: column; }
.news-sec { flex: 1; }
.news-wrap { max-width: 880px; margin: 0 auto; padding: 4rem 2.5rem 6.5rem; }
.news-cats { display: flex; gap: 0.625rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.75rem; }
.news-cat {
  font-size: 12px; letter-spacing: .1em; color: var(--text-soft);
  border: 1px solid var(--line-3); border-radius: 999px;
  padding: 0.5rem 1.125rem; cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.news-cat:hover, .news-cat.is-active { border-color: var(--gold); color: var(--gold); }
.news-item {
  text-decoration: none; color: inherit;
  display: flex; align-items: flex-start; gap: 1.75rem;
  padding: 1.75rem 0.5rem; border-bottom: 1px solid var(--line-4);
  transition: background .2s ease;
}
.news-item:hover { background: var(--cream-hover); }
.news-item .date {
  font-family: var(--serif-en); font-size: 13px; letter-spacing: .08em;
  color: var(--muted-2); white-space: nowrap; padding-top: 0.1875rem;
}
.news-item .cat {
  font-size: 10.5px; letter-spacing: .12em; color: var(--gold);
  border: 1px solid #d8cdbc; border-radius: 999px;
  padding: 0.25rem 0.75rem; white-space: nowrap; flex: none;
}
.news-item .body { flex: 1; }
.news-item h3 { font-weight: 500; font-size: 15.5px; letter-spacing: .03em; margin: 0 0 0.4375rem; line-height: 1.6; }
.news-item .body p { font-size: 15px; line-height: 1.9; color: var(--muted); margin: 0; }
.pager { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 3.5rem; font-family: var(--serif-en); font-size: 13px; }
.pager .pg {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft); border: 1px solid var(--line-2); border-radius: 2px;
  cursor: pointer; transition: border-color .2s ease, color .2s ease;
}
.pager .pg:hover { border-color: var(--gold); color: var(--gold); }
.pager .pg.is-active { background: var(--gold); color: #fff; border-color: var(--gold); }
.pager .next { padding: 0 0.75rem; color: #a8a097; }

/* =========================================================
   プライバシーポリシー
   ========================================================= */
.policy-sec { flex: 1; }
.policy-wrap { max-width: 820px; margin: 0 auto; padding: 4rem 2.5rem 6.5rem; }
.policy-intro { font-size: 15px; line-height: 2.2; color: var(--text-mid); margin: 0 0 3.5rem; }
.policy-block { margin-bottom: 3rem; }
.policy-block-head {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.125rem; padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--line-4);
}
.policy-block-head .no { font-family: var(--serif-en); font-size: 13px; letter-spacing: .18em; color: var(--gold-pale); }
.policy-block-head h2 { font-weight: 500; font-size: 18px; letter-spacing: .05em; margin: 0; }
.policy-block p { font-size: 15px; line-height: 2.15; color: var(--text-mid); margin: 0; }
.policy-block ul { margin: 1rem 0 0; padding-left: 1.25rem; }
.policy-block li { font-size: 15px; line-height: 2; color: var(--text-mid); }
.contact-box { background: var(--cream-bg-2); border: 1px solid var(--line-4); padding: 2.25rem 2.5rem; margin-top: 1.5rem; }
.contact-box .en { font-family: var(--serif-en); font-size: 11px; letter-spacing: .24em; color: var(--gold); margin-bottom: 0.875rem; }
.contact-box h2 { font-weight: 500; font-size: 17px; letter-spacing: .05em; margin: 0 0 1rem; }
.contact-box p { font-size: 15px; line-height: 2.1; color: var(--text-mid); margin: 0; }
.policy-date { text-align: right; font-size: 12.5px; color: var(--muted-2); margin: 2.5rem 0 0; letter-spacing: .04em; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 900px) {
  .access .inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .access .vlabel { writing-mode: horizontal-tb; }
  .menu-layout { grid-template-columns: 1fr; gap: 3rem; }
  .menu-feature { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0.875rem 1.25rem; }
  .brand-logo { height: 46px; }
  .gnav { display: none; }            /* モバイルではハンバーガーに切替 */
  .nav-toggle { display: flex; }
  .nav-overlay { display: flex; }

  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem 2.5rem; }
  .hero-title { font-size: 34px; }
  .hero-lead { max-width: none; }
  .hero-images { height: 360px; }
  .hero-images .img-main { width: 72%; height: 240px; }
  .hero-images .img-sub { width: 50%; height: 180px; }

  .concept .inner { padding: 4.5rem 1.5rem; }
  .concept-title { font-size: 23px; }
  .concept-img { height: 320px; }
  .reasons { grid-template-columns: 1fr; gap: 3rem; margin-top: 3.5rem; }

  .gallery { padding: 4rem 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gallery-grid .img-slot { height: 200px; }

  .staff .inner { padding: 4rem 1.5rem; }
  .staff-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .staff-card .img-slot { aspect-ratio: 3 / 4; height: auto; }

  .access .inner { padding: 4rem 1.5rem; }
  .access .map { height: 320px; }

  .page-head { padding: 3.5rem 1.5rem 0; }
  .page-title { font-size: 27px; }

  .menu-sec .inner { padding: 3rem 1.5rem 4.5rem; }
  .menu-feature-img .img-slot { height: 280px; }
  .menu-item { flex-direction: column; gap: 0.75rem; }
  .menu-item .price-wrap { text-align: left; }
  .menu-item .price-row { justify-content: flex-start; }

  .voice .inner { padding: 4rem 1.5rem; }
  .voice-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .voice-card { padding: 2rem 1.75rem; }

  .cta-strip .inner { padding: 4rem 1.5rem; grid-template-columns: 1fr; gap: 2.25rem; }
  .cta-strip h2 { font-size: 24px; }

  .channels { padding: 2.5rem 1.5rem 0; }
  .channels-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .form-sec { padding: 2.5rem 1.5rem 2rem; }
  .reserve-form { padding: 2rem 1.5rem; }
  .field-grid-2 { grid-template-columns: 1fr; gap: 1.375rem; }

  .news-wrap { padding: 3rem 1.5rem 4.5rem; }
  .news-item { flex-wrap: wrap; gap: 0.75rem 1rem; }
  .news-item .body { flex-basis: 100%; }

  .policy-wrap { padding: 3rem 1.5rem 4.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 1.5rem 2rem; }
}
