/* =========================================================================
   まりんハウス 公開サイト 共通スタイル
   予約フォーム（hotel/trim）の navy/sky トークン体系を全サイトへ昇格。
   方針: 南青山の猫専門ホテルらしい落ち着き・清潔・信頼。装飾は最小、余白で語る。
   ========================================================================= */

:root {
  /* BT社デザイン準拠: 温かいクリーム＋トープ＋ゴールド／明朝見出し */
  --navy:    #2C2C2C;   /* 見出し・濃色面（旧navyの役割＝heading/footer） */
  --navy-d:  #1A1A1A;
  --brand:   #8B7355;   /* ボタン・CTA・リンク（taupe） */
  --brand-l: #A89279;
  --brand-d: #6B5740;
  --sky:     #F5F0E8;   /* 旧skyの役割＝淡い背景/アクセント面（cream） */
  --sky-line:#E8D9B5;   /* 淡い枠/区切り（tan） */
  --ink:     #333333;   /* 本文 */
  --muted:   #777777;   /* 補助テキスト */
  --line:    #E8E4DE;   /* 枠線 */
  --bg:      #FAF8F5;   /* ページ背景（warm） */
  --cream:   #F5F0E8;
  --paper:   #FFFFFF;   /* カード */
  --ok:      #4CAF50;
  --accent:  #C9A96E;   /* ゴールド（見出しラベル/eyebrow） */
  --radius:  12px;
  --maxw:    1160px;
  --read:    760px;     /* 本文の最適行長 */
  --header-h: 76px;
  --font-heading: 'Playfair Display','Noto Serif JP','Yu Mincho','YuMincho','Hiragino Mincho ProN',serif;
  --font-body:    'Noto Sans JP','Lato','Yu Gothic','YuGothic','Hiragino Kaku Gothic ProN',sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.reading   { max-width: var(--read); margin-left: auto; margin-right: auto; }

/* ── ヘッダ／グローバルナビ ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; gap: 12px;
  max-width: var(--maxw); margin: 0 auto; padding: 12px 20px;
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo .en { font-size: 11px; letter-spacing: .18em; color: var(--muted); }
.logo .ja { font-size: 18px; font-weight: 700; color: var(--navy); }
.logo:hover { text-decoration: none; }

.gnav { margin-left: auto; }
.gnav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.gnav a {
  display: inline-block; padding: 6px 9px; border-radius: 8px;
  font-size: 14px; color: var(--ink); font-weight: 600;
}
.gnav a:hover { color: var(--navy-d); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.gnav a[aria-current="page"] { color: var(--navy); }

.btn-reserve {
  display: inline-block; background: var(--navy); color: #fff;
  padding: 9px 16px; border-radius: 9px; font-weight: 700; font-size: 14px;
  white-space: nowrap;
}
.btn-reserve:hover { background: var(--navy-d); text-decoration: none; }

/* モバイル: ナビは下段に折り返し、CTAは右端固定 */
@media (max-width: 720px) {
  .site-header .bar { flex-wrap: wrap; gap: 10px; }
  .gnav { order: 3; width: 100%; margin-left: 0; }
  .gnav ul { gap: 2px; }
  .gnav a { padding: 7px 10px; font-size: 13px; }
}

/* ── 見出し・本文タイポ ────────────────────────────────────── */
h1, h2, h3 { color: var(--navy); line-height: 1.4; font-weight: 700; }
.page-title { font-size: 28px; margin: 36px 0 8px; }
.page-lead  { color: var(--muted); margin: 0 0 8px; }
h2 { font-size: 22px; margin: 40px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--sky-line); }
h3 { font-size: 17px; margin: 24px 0 8px; }
p  { margin: 0 0 16px; }

.eyebrow { font-size: 12px; letter-spacing: .14em; color: var(--navy); font-weight: 700; }

/* セクションの余白リズム（.section と要素セレクタの相殺を避け、専用クラスで統一） */
.section { padding: 40px 0; }
.section + .section { border-top: 1px solid var(--line); }

/* ── カード・グリッド（部屋タイプ／記事一覧などで再利用）──────── */
.grid { display: grid; gap: 16px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px;
}

/* ── ボタン ───────────────────────────────────────────────── */
.btn {
  display: inline-block; background: var(--navy); color: #fff; border: none;
  border-radius: 10px; padding: 12px 22px; font: inherit; font-weight: 700; cursor: pointer;
}
.btn:hover { background: var(--navy-d); text-decoration: none; }
.btn.ghost { background: #fff; border: 1.5px solid var(--navy); color: var(--navy); }
.btn.ghost:hover { background: var(--sky); }

/* ── ブログ一覧 ───────────────────────────────────────────── */
.post-list { list-style: none; margin: 0; padding: 0; }
.post-list li { border-bottom: 1px solid var(--line); }
.post-list a { display: block; padding: 18px 4px; }
.post-list a:hover { background: var(--sky); text-decoration: none; }
.post-meta { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.post-ttl  { font-size: 16px; font-weight: 700; color: var(--navy); margin: 4px 0 6px; }
.post-ex   { font-size: 13px; color: var(--muted); }

/* ── 記事本文 ─────────────────────────────────────────────── */
.article { padding: 24px 0 56px; }
.article h2 { font-size: 20px; }
.article h3 { font-size: 16px; }
.article img { border-radius: 10px; margin: 18px auto; }
.article ul, .article ol { padding-left: 1.4em; margin: 0 0 16px; }
.article li { margin: 4px 0; }
.article blockquote {
  margin: 18px 0; padding: 8px 16px; border-left: 3px solid var(--sky-line);
  color: var(--muted); background: var(--bg);
}

/* ── フッタ ───────────────────────────────────────────────── */
.site-footer { margin-top: 48px; background: var(--navy); color: #DCE6F2; }
.site-footer .inner { max-width: var(--maxw); margin: 0 auto; padding: 36px 20px 28px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
@media (max-width: 720px) { .site-footer .cols { grid-template-columns: 1fr; gap: 20px; } }
.site-footer h4 { color: #fff; font-size: 14px; margin: 0 0 12px; letter-spacing: .06em; }
.site-footer a { color: #DCE6F2; }
.site-footer a:hover { color: #fff; }
.site-footer .store p { margin: 0 0 6px; font-size: 13px; line-height: 1.7; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin: 0 0 8px; font-size: 13px; }
.site-footer .sns a { display: inline-block; margin-right: 14px; font-size: 13px; }
.copyright { border-top: 1px solid rgba(255,255,255,.16); margin-top: 24px; padding-top: 16px; font-size: 12px; color: #A9BED6; }

/* ── アクセシビリティ ─────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px 12px; border-radius: 8px; z-index: 100; }

/* ── 料金表ページ（系統A・新機能）──────────────────────────────
   仕様: A系統_料金表表示仕様書【正本】§2-1/§2-2。
   バッジは水色地×濃紺・大型強調（増田様指定）。繁忙期行は背景色で区別。
   スマホ幅は横スクロール（.price-scroll）。 */
.price-badges {
  list-style: none; margin: 30px 0 22px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.price-badges li {
  background: var(--sky); color: var(--navy-d);
  border: 2px solid var(--sky-line); border-radius: 999px;
  padding: 16px 40px; font-size: 24px; font-weight: 800; letter-spacing: .03em;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
@media (max-width: 560px) { .price-badges li { font-size: 19px; padding: 13px 26px; } }

.price-campaign {
  margin: 0 0 18px; padding: 16px 20px; text-align: center;
  background: #FBF3E3; border: 1px solid #E6CFA0; border-radius: var(--radius);
  color: var(--navy-d); font-weight: 700;
}
.price-busynote { color: var(--muted); font-size: 13px; margin: 0 0 10px; }

.price-scroll { overflow: auto; max-height: 75vh; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
.price-scroll:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

.price-table { width: 100%; border-collapse: collapse; background: var(--paper); font-size: 14px; }
.price-table thead th {
  background: #F2F5FA; color: var(--navy); font-weight: 700;
  text-align: left; padding: 14px 16px; white-space: nowrap;
  border-bottom: 2px solid var(--sky-line);
  position: sticky; top: 0; z-index: 2;
}
.price-table th.num, .price-table td.num { text-align: right; }
.price-table td {
  padding: 13px 16px; border-bottom: 1px solid var(--line); white-space: nowrap;
}
.price-table td.dt { color: var(--ink); }
.price-table td.num { font-variant-numeric: tabular-nums; color: var(--ink); }
.price-table tbody tr:last-child td { border-bottom: none; }
/* 繁忙期行（§2-1）: 落ち着いた暖色で区別（警告色は使わない） */
.price-table tr.busy td { background: #FBF3E6; }

.price-foot { color: var(--muted); font-size: 13px; margin: 14px 0 0; line-height: 1.7; }

/* ── ロゴ画像化（テキストロゴ→logo.png・全ページ共通ヘッダ）─────────── */
.logo { flex-direction: row; align-items: center; }
.logo img { height: 32px; width: auto; display: block; }
@media (max-width: 560px) { .logo img { height: 27px; } }

/* ── ブログ一覧: アイキャッチ付きカード ──────────────────────── */
.post-list a { display: flex; gap: 14px; align-items: center; padding: 14px 4px; }
.post-thumb { flex: 0 0 116px; width: 116px; height: 84px; border-radius: 10px; overflow: hidden; background: var(--sky); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { display: flex; flex-direction: column; min-width: 0; }
.post-body .post-meta,
.post-body .post-ttl,
.post-body .post-ex { display: block; }
@media (max-width: 480px) {
  .post-thumb { flex-basis: 92px; width: 92px; height: 70px; }
  .post-body .post-ex { display: none; }
}

/* ── 記事ヘッダのアイキャッチ ──────────────────────────────── */
.post-hero-img { margin: 18px 0 26px; }
.post-hero-img img { width: 100%; border-radius: var(--radius); }

/* ── 固定ページ共通: 英語サブタイトル ──────────────────────── */
.page-sub { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin: 0 0 4px; }

/* ── 規約・法令系ページ ────────────────────────────────────── */
.legal-intro { color: var(--muted); margin: 0 0 18px; }
.legal-block { margin: 0 0 30px; }
.legal-block h2 { font-size: 18px; color: var(--navy); border-bottom: 2px solid var(--sky-line); padding-bottom: 6px; margin: 0 0 12px; }
.legal-block h3 { font-size: 15px; margin: 16px 0 6px; color: var(--ink); }
.legal-block ul, .legal-block ol { padding-left: 1.4em; margin: 0 0 10px; }
.legal-block li { margin: 5px 0; }
.legal-block p { margin: 0 0 10px; }
.legal-table { width: 100%; border-collapse: collapse; margin: 10px 0; font-size: 14px; }
.legal-table th, .legal-table td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; vertical-align: top; }
.legal-table th { background: var(--sky); color: var(--navy); white-space: nowrap; width: 42%; }
.legal-meta { color: var(--muted); font-size: 13px; margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--line); }

/* =========================================================================
   固定ページ部品（trimming / front で共有）
   独自テーマのクラス名を保持し、navy/sky の新デザインで描画
   ========================================================================= */

/* ── ページヒーロー ───────────────────────────────────────── */
.page-hero { background: var(--sky); padding: 44px 0; text-align: center; }
.page-hero .page-title { margin: 0 0 18px; }
.page-hero .page-sub { margin-bottom: 16px; }

/* ── セクション見出し ─────────────────────────────────────── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-subtitle { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin: 0 0 16px; }
.section-title { font-size: 23px; color: var(--navy); margin: 0 0 8px; }
.section-lead { color: var(--muted); margin: 0; }

/* ── ボタン拡張 ───────────────────────────────────────────── */
.btn-outline { background: #fff; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--sky); }
.btn-sm { padding: 8px 16px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn svg { vertical-align: -4px; margin-right: 6px; }

/* ── 部屋カード ───────────────────────────────────────────── */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.room-card { position: relative; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.room-card-featured { border-color: var(--line); box-shadow: 0 8px 24px rgba(44,44,44,.08); }
.room-card-badge { position: absolute; top: 12px; left: 12px; z-index: 1; background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.room-card-image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sky); }
.room-card-image img { width: 100%; height: 100%; object-fit: cover; }
.room-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.room-card-size { font-size: 12px; color: var(--muted); letter-spacing: .03em; }
/* 部屋カードの最低価格（2026-07-23 追加）。値は price.js が料金マスタから算出。
   ★index.njk に金額を直書きしないこと（二重管理の禁止）。 */
.room-card-price { display: flex; align-items: baseline; gap: 6px; margin: 0; padding: 8px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.room-card-price .unit { font-size: 11px; color: var(--muted); }
.room-card-price .yen { font-family: var(--font-heading); font-size: 19px; color: var(--brand); line-height: 1; }
.room-card-price .tail { font-size: 12px; color: var(--brand); }
.room-card-title { font-size: 17px; color: var(--navy); margin: 0; }
.room-card-excerpt { font-size: 13.5px; color: var(--ink); margin: 0 0 8px; }
.room-card-body .btn { align-self: flex-start; margin-top: auto; }

/* ── トリミングの特徴（3列・アイコン）────────────────────────── */
.commitment-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.commitment-col { text-align: center; }
.commitment-icon { width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 50%; background: var(--sky); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.commitment-heading { font-size: 16px; color: var(--navy); margin: 0 0 6px; }
/* フロント commitment（快適な空間づくり等）の見出し直下に約1行ぶんの余白を持たせる。
   .commitment-section スコープのため trimming-features-section は不変。 */
.commitment-section .commitment-heading { margin-bottom: 20px; }
/* フロント各セクション見出し（お部屋タイプ／バーチャルツアー／スタッフ紹介／まりんハウスの日常／ブログ／お問い合わせ）
   の直下に約1行ぶんの余白。対象セクションにスコープし、他セクション・他ページの .section-title は不変。 */
.rooms-type-section .section-title,
.virtual-tour-section .section-title,
.staff-section .section-title,
.instagram-section .section-title,
.fp-blog-section .section-title,
.contact-section .section-title { margin-bottom: 24px; }
.commitment-col p { font-size: 14px; color: var(--muted); margin: 0; }
@media (max-width: 720px) { .commitment-row { grid-template-columns: 1fr; gap: 28px; } }

/* ── 料金表（オプション／トリミング）────────────────────────── */
.pricing-category-title { font-size: 16px; color: var(--navy); border-left: 4px solid var(--accent); padding-left: 10px; margin: 24px 0 12px; }
.pricing-category-note { display: block; margin-top: 4px; font-size: 12.5px; font-weight: normal; color: var(--muted); }
.pricing-table-wrapper { overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.pricing-table th, .pricing-table td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; vertical-align: top; }
.pricing-table thead th { background: var(--sky); color: var(--navy); white-space: nowrap; }
.pricing-table td:last-child { white-space: nowrap; text-align: right; font-variant-numeric: tabular-nums; }
.pricing-table--with-desc td:nth-child(2) { white-space: normal; text-align: left; }
.trm-price-discount { color: var(--ok); font-weight: 700; }
.pricing-notes { margin: 12px 0 0; }
.pricing-notes p { font-size: 12.5px; color: var(--muted); margin: 2px 0; }

/* ── トリミング コースカード ──────────────────────────────── */
.course-menu { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 8px; }
.course-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.course-card-image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sky); }
.course-card-image img { width: 100%; height: 100%; object-fit: cover; }
.course-card-body { padding: 16px 18px 20px; }
.course-card-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.course-card-name { font-size: 16px; color: var(--navy); margin: 4px 0 10px; }
.course-card-price { display: flex; align-items: baseline; gap: 6px; }
.course-card-price-value { font-size: 22px; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }
.course-card-price-tax { font-size: 12px; color: var(--muted); }
.course-card-divider { border: none; border-top: 1px solid var(--line); margin: 14px 0; }
.course-card-contents-title { font-size: 12px; color: var(--muted); font-weight: 700; margin: 0 0 4px; }
.course-card-contents { font-size: 13px; color: var(--ink); }
.course-card-contents ul { padding-left: 1.2em; margin: 0; }

/* ── CTAバンド ────────────────────────────────────────────── */
.cta-section { background: var(--navy); }
.cta-box { text-align: center; max-width: 640px; margin: 0 auto; color: #fff; }
.cta-box h2 { color: #fff; margin: 0 0 8px; }
.cta-box p { color: #DCEAF5; margin: 0 0 18px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: #fff; color: var(--navy); }
.cta-section .btn-primary:hover { background: var(--sky); }
.cta-section .btn-outline { background: transparent; border-color: #fff; color: #fff; }
.cta-section .btn-outline:hover { background: rgba(255,255,255,.12); }

/* ── ラッパ（余白の微調整）────────────────────────────────── */
.trimming-outro-text { text-align: left; color: var(--muted); max-width: 720px; margin: 44px auto 0; }
.trimming-outro-text p { margin: 0 0 16px; line-height: 2; }
.trimming-outro-text p:last-child { margin-bottom: 0; }
.pricing-section { background: #fff; }

/* =========================================================================
   トップページ（front）専用コンポーネント
   ========================================================================= */

/* ── ヒーロー（ホームの顔・navyグラデで一段強く）──────────────── */
.hero { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-d) 100%); color: #fff; padding: 76px 0 84px; text-align: center; position: relative; overflow: hidden; }
.hero-inner { position: relative; max-width: 720px; }
.hero-badge { position: absolute; top: -8px; right: 0; line-height: 0; }
.hero-badge img { width: 96px; height: 96px; border-radius: 50%; box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.hero-subtitle { font-size: 13px; letter-spacing: .18em; color: var(--sky); margin: 0 0 10px; }
.hero-title { font-size: 44px; letter-spacing: .04em; color: #fff; margin: 0 0 14px; }
.hero-description { color: #E5EFF8; margin: 0 auto 26px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .btn-primary { background: #fff; color: var(--navy); }
.hero .btn-primary:hover { background: var(--sky); }
.hero .btn-outline { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.12); }
@media (max-width: 560px) { .hero-title { font-size: 34px; } .hero-badge img { width: 72px; height: 72px; } }

/* ── こだわり（commitment-list）─────────────────────────────── */
.commitment-list { list-style: none; text-align: center; display: block; margin: 0; padding: 0; }
.commitment-list li { padding-left: 0; margin: 7px 0; font-size: 14px; }
.commitment-list li::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-right: 8px; vertical-align: middle; }

/* ── スタッフ紹介 ─────────────────────────────────────────── */
.staff-title-paw { color: var(--sky-line); vertical-align: -3px; margin-left: 6px; }
.staff-list { display: flex; flex-direction: column; gap: 40px; max-width: 880px; margin: 0 auto; }
.staff-item { position: relative; display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: center; }
.staff-item--reverse { grid-template-columns: 1fr 220px; }
.staff-item--reverse .staff-item-photo { order: 2; }
.staff-item-photo-inner { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; background: var(--sky); }
.staff-item-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.staff-item-paw-deco { position: absolute; color: var(--sky); opacity: .5; z-index: -1; }
.staff-item-paw-deco--1 { top: -16px; left: -16px; }
.staff-item-paw-deco--2 { bottom: -16px; right: -16px; }
.staff-item-name { font-size: 20px; color: var(--navy); margin: 0 0 2px; }
.staff-item-role { font-size: 13px; color: var(--accent); font-weight: 700; margin: 0 0 10px; }
.staff-item-badge { display: inline-block; background: var(--sky); color: var(--navy); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; }
.staff-item-quals-title { font-size: 12px; color: var(--muted); font-weight: 700; margin: 10px 0 2px; }
.staff-item-quals-list { font-size: 13px; margin: 0 0 8px; padding-left: 1.2em; }
.staff-item-messages p { font-size: 14px; margin: 6px 0; }
@media (max-width: 640px) {
  .staff-item, .staff-item--reverse { grid-template-columns: 1fr; gap: 14px; }
  .staff-item--reverse .staff-item-photo { order: 0; }
  .staff-item-photo-inner { max-width: 220px; margin: 0 auto; }
  .staff-item-content { text-align: center; }
}

/* ── お客様の声（Googleレビュー静的スナップショット）──────────── */
.reviews-summary { display: flex; justify-content: center; margin-bottom: 24px; }
.reviews-summary-inner { display: flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 12px 24px; flex-wrap: wrap; justify-content: center; }
.reviews-summary-rating { font-size: 30px; font-weight: 700; color: var(--navy); }
.reviews-summary-count { font-size: 13px; color: var(--muted); }
.reviews-google-logo { height: 22px; width: auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.review-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-author-info { display: flex; flex-direction: column; }
.review-author { font-weight: 700; color: var(--navy); font-size: 14px; }
.review-time { font-size: 12px; color: var(--muted); }
.review-card-stars { margin-bottom: 6px; }
.review-card-text { font-size: 13.5px; color: var(--ink); margin: 0; }
.review-star { color: var(--line); font-size: 15px; }
.review-star--full { color: #F4B400; }
.review-star--half { background: linear-gradient(90deg, #F4B400 50%, var(--line) 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.reviews-summary-stars .review-star { font-size: 18px; }
.reviews-more { text-align: center; margin-top: 24px; }

/* ── バーチャルツアー（動画プレースホルダ）──────────────────── */
.tour-placeholder { aspect-ratio: 16/9; max-width: 880px; margin: 0 auto; display: flex; align-items: center; justify-content: center; background: var(--sky); border: 2px dashed var(--sky-line); border-radius: var(--radius); color: var(--muted); }

/* ── Instagram（静的・プロフィールへ誘導）───────────────────── */
.ig-cta { text-align: center; margin-top: 8px; }

/* ── FAQ（details/summary・無JSアコーディオン）───────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; overflow: hidden; background: var(--paper); }
.faq-question { display: flex; align-items: center; gap: 10px; padding: 14px 18px; cursor: pointer; list-style: none; font-weight: 700; color: var(--navy); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "＋"; margin-left: auto; color: var(--accent); font-weight: 700; }
.faq-item[open] .faq-question::after { content: "－"; }
.faq-q-label, .faq-a-label { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; border-radius: 50%; font-size: 12px; font-weight: 700; flex: none; }
.faq-q-label { background: var(--navy); color: #fff; }
.faq-a-label { background: var(--sky); color: var(--navy); }
.faq-answer { display: flex; gap: 10px; padding: 0 18px 16px; }
.faq-answer p { margin: 0; font-size: 14px; }

/* ── アクセス ─────────────────────────────────────────────── */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.access-map { display: flex; align-items: center; justify-content: center; min-height: 200px; background: var(--sky); border-radius: var(--radius); }
.access-info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.access-info-title { font-size: 16px; color: var(--navy); margin: 0 0 14px; }
.access-info-list { margin: 0; }
.access-info-item { display: grid; grid-template-columns: 110px 1fr; gap: 8px; padding: 8px 0; border-top: 1px solid var(--line); }
.access-info-item:first-child { border-top: none; }
.access-info-item dt { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 700; }
.access-info-item dd { margin: 0; font-size: 14px; }
@media (max-width: 640px) { .access-grid { grid-template-columns: 1fr; } }

/* ── お問い合わせカード ──────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; max-width: 760px; margin: 0 auto; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.contact-card-icon { width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 50%; background: var(--sky); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.contact-card-title { font-size: 15px; color: var(--navy); margin: 0 0 6px; }
.contact-card-value { font-size: 17px; font-weight: 700; color: var(--navy); }
.contact-card-note { font-size: 12px; color: var(--muted); margin: 6px 0 0; }

/* ── トップのブログ最新（動的）──────────────────────────────── */
.fp-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.fp-blog-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fp-blog-card:hover { text-decoration: none; box-shadow: 0 4px 16px rgba(31,63,102,.08); }
.fp-blog-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--sky); }
.fp-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fp-blog-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.fp-blog-date { font-size: 12px; color: var(--muted); }
.fp-blog-ttl { font-size: 14px; font-weight: 700; color: var(--navy); }
.fp-blog-more, .reviews-more { text-align: center; margin-top: 22px; }

/* ── 細部ユーティリティ ─────────────────────────────────────── */
.section-description { color: var(--muted); margin: 0; }
.text-muted { color: var(--muted); }

/* ── front 追加細部 ───────────────────────────────────────── */
.reviews-footer { text-align: center; margin-top: 24px; }
.reviews-more-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--navy); color: var(--navy); border-radius: 10px; padding: 11px 22px; font-weight: 700; }
.reviews-more-btn:hover { background: var(--sky); text-decoration: none; }
.btn-line { background: #06C755; color: #fff; }
.btn-line:hover { background: #05a948; }
.btn-secondary { background: var(--sky); color: var(--navy); }
.btn-secondary:hover { background: var(--sky-line); }
.section-cta { text-align: center; margin-top: 26px; }
.staff-item-header { margin-bottom: 4px; }
.staff-item-quals { margin: 8px 0; }
.paw-icon, .paw-icon-sm { color: var(--sky-line); }
.staff-item-quals-list { list-style: none; margin: 0; padding: 0; }

/* ── front テキストBT社整合(IGハンドル・ブログ抜粋)──────────── */
.ig-handle { text-align: center; margin-top: 12px; }
.ig-handle a { font-weight: 700; color: var(--navy); font-size: 15px; }
.fp-blog-ex { font-size: 12.5px; color: var(--muted); }
.fp-blog-readmore { font-size: 12px; color: var(--accent); font-weight: 700; margin-top: 4px; }

/* =========================================================================
   BT社デザイン貼り替え（クリーム＋トープ＋明朝）上書き — 末尾優先で適用
   ========================================================================= */
/* 見出しは明朝（Playfair + Noto Serif JP） */
h1, h2, h3, .page-title, .section-title, .hero-title,
.room-card-title, .staff-item-name, .cta-box h2 { font-family: var(--font-heading); font-weight: 600; }
.section-title { font-size: 32px; letter-spacing: .04em; }
@media (max-width: 560px){ .section-title { font-size: 26px; } }
h2 { border-bottom: none; padding-bottom: 0; }

/* リンク・ボタンは taupe */
a { color: var(--brand); }
.btn, .btn-reserve { background: var(--brand); color: #fff; }
.btn:hover, .btn-reserve:hover { background: var(--brand-d); }
.btn.ghost, .btn-outline, .reviews-more-btn { background: #fff; border: 1.5px solid var(--brand); color: var(--brand); }
.btn.ghost:hover, .btn-outline:hover, .reviews-more-btn:hover { background: var(--cream); }
.room-card-badge { background: var(--brand); }
.faq-q-label { background: var(--brand); }
.cta-section { background: var(--brand); }
.cta-section .btn-primary { background: #fff; color: var(--brand); }
.cta-section .btn-primary:hover { background: var(--cream); }
.eyebrow { color: var(--accent); }

/* ── ヘッダー：下層ページは sticky 実体／フロントは透過オーバーレイ ── */
.logo { flex-direction: row; align-items: center; }
.logo img { height: 44px; width: auto; }
.site-header { position: sticky; background: rgba(250,248,245,.96); border-bottom: 1px solid var(--line); }
.site-header .bar { max-width: var(--maxw); }
.gnav a { color: var(--ink); font-weight: 500; }
.gnav a:hover { background: transparent; color: var(--brand-d); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.gnav a[aria-current="page"] { color: var(--brand); background: transparent; }
.header-social { display: flex; gap: 8px; align-items: center; }
.header-social a { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--cream); }
.header-social a:hover { opacity: .85; text-decoration: none; }
/* フロント（has-hero）: 透過→スクロールで実体化 */
body.has-hero .site-header { position: fixed; top: 0; left: 0; right: 0; background: transparent; border-bottom-color: transparent; transition: background .3s ease, border-color .3s ease; }
body.has-hero .site-header.scrolled { background: rgba(250,248,245,.96); border-bottom-color: var(--line); }
body.has-hero .site-header:not(.scrolled) .logo img { filter: brightness(0) invert(1); }
body.has-hero .site-header:not(.scrolled) .gnav a { color: #fff; }
body.has-hero .site-header:not(.scrolled) .gnav a:hover { background: transparent; color: #fff; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
body.has-hero .site-header:not(.scrolled) .header-social a { color: #fff; }
@media (max-width: 860px){ .header-social { display: none; } }

/* ── ヒーロー：実猫写真＋暗オーバーレイ＋明朝大見出し ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0; overflow: hidden;
        background: #2C2C2C url('/assets/img/hero.jpg') center/cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,44,44,.62) 0%, rgba(44,44,44,.32) 50%, rgba(44,44,44,.58) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 760px; padding: 0 20px; }
.hero-badge { position: absolute; top: 92px; left: 4%; z-index: 2; line-height: 0; }
.hero-badge img { width: 180px; height: 180px; border-radius: 0; box-shadow: none; }
.hero-subtitle { font-size: 14px; letter-spacing: .22em; color: rgba(255,255,255,.92); margin: 0 0 14px; }
.hero-title { font-size: 60px; color: #fff; margin: 0 0 18px; letter-spacing: .06em; }
.hero-description { color: rgba(255,255,255,.94); margin: 0 auto 30px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn-primary { background: var(--brand); color: #fff; }
.hero .btn-primary:hover { background: var(--brand-d); }
.hero .btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,.85); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.14); }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; font-size: 11px; letter-spacing: .25em; color: rgba(255,255,255,.85); }
@media (max-width: 560px){
  .hero-title { font-size: 40px; }
  .hero-badge { top: 76px; left: 16px; }
  .hero-badge img { width: 110px; height: 110px; }
}

/* ── バーチャルツアー（ストリートビュー）／地図 をレスポンシブ埋め込み ── */
.embed-frame { position: relative; width: 100%; max-width: 920px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.embed-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.access-map .embed-frame { max-width: none; aspect-ratio: 4/3; }

/* ── Instagram 埋め込みグリッド（投稿8枚／公式embedは最小幅326px必要）── */
.ig-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.ig-cell { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.ig-cell iframe { width: 100%; height: 480px; border: 0; display: block; }
.ig-handle { text-align: center; margin-top: 16px; }
.ig-handle a { font-weight: 700; color: var(--brand); }

/* ── D追記: アンカー用スクロールマージン（固定ヘッダー分） ── */
@media (max-width: 560px){ .logo img { height: 40px; } }
.access-section, #access, #options, #pricing, .rooms-type-section, #rooms { scroll-margin-top: 84px; }

/* ── ROOM TYPES: BT社段組み（上段3カード＋下段2写真） ── */
.rooms-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rooms-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; align-items: start; }
.room-photo { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--cream); }
.room-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 820px){
  .rooms-grid--3 { grid-template-columns: 1fr; }
  .rooms-gallery { grid-template-columns: 1fr; }
}

/* ── モバイル: ハンバーガーメニュー（ナビ7項目／≤860px） ── */
.nav-toggle { display: none; }
.site-header .gnav-reserve { display: none; }            /* デスクトップではドロワー内CTAを隠す（バーのCTAを使用） */
@media (max-width: 860px){
  .site-header .bar { flex-wrap: nowrap; }
  .header-social { display: none; }          /* SNSはフッターにあり、ドロワー外では非表示 */
  .bar > .btn-reserve { display: none; }      /* バーの予約CTAは隠し、ドロワー内のものを使う */
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; margin-left: auto; padding: 11px 10px;
    background: transparent; border: 0; cursor: pointer; border-radius: 8px;
  }
  .nav-toggle-bar { display: block; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
  body.has-hero .site-header:not(.scrolled):not(.nav-open) .nav-toggle-bar { background: #fff; }
  /* ドロワー本体（.gnav をバー直下のパネルに） */
  .gnav {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: rgba(250,248,245,.99); border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(44,44,44,.10);
    display: none; padding: 8px 0 16px;
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .site-header.nav-open .gnav { display: block; }
  .gnav ul { flex-direction: column; flex-wrap: nowrap; gap: 0; padding: 0 8px; }
  .gnav li { width: 100%; }
  .gnav a { display: block; width: 100%; padding: 14px 16px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .gnav a:hover { background: var(--cream); text-decoration: none; }
  .gnav a[aria-current="page"] { color: var(--brand); background: var(--cream); }
  .site-header .gnav-reserve { display: block; margin: 14px 16px 0; text-align: center; padding: 14px; font-size: 16px; }
  /* メニュー開時はヘッダーを実体化（has-hero透過を上書き） */
  body.has-hero .site-header.nav-open { background: rgba(250,248,245,.99); border-bottom-color: var(--line); }
  body.has-hero .site-header.nav-open .logo img { filter: none; }
  body.has-hero .site-header.nav-open .gnav a { color: var(--ink); }
  body.has-hero .site-header.nav-open .nav-toggle-bar { background: var(--ink); }
  /* ハンバーガー→×アニメ */
  .site-header.nav-open .nav-toggle-bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle-bar:nth-child(2){ opacity: 0; }
  .site-header.nav-open .nav-toggle-bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ── ふれあいスペース ギャラリー（下段右: メイン大 + サブ2枚） ── */
.hureai-gallery { display: flex; flex-direction: column; gap: 16px; }
.room-photo--lg { aspect-ratio: 4 / 3; }
.hureai-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hureai-sub .room-photo { aspect-ratio: 3 / 4; }

/* ── SNSアイコン: ブランドカラーで一目で識別 ── */
.header-social a.sns-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 62%, #285AEB 100%); }
.header-social a.sns-tiktok { background: #010101; }
.header-social a.sns-line { background: #06C755; }

/* ── Instagramセクション下: IG・TikTok ブランドアイコン ── */
.ig-social { display: flex; gap: 16px; justify-content: center; align-items: center; }
.ig-social a { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.ig-social a:hover { opacity: .85; text-decoration: none; }
.ig-social a.sns-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 62%, #285AEB 100%); }
.ig-social a.sns-tiktok { background: #010101; }

/* ── 料金表: 横スクロールの可視化（ヒント＋右端フェード） ── */
.price-scroll-hint { display: none; }
.price-scroll-wrap { position: relative; }
@media (max-width: 720px){
  .price-scroll-hint { display: block; text-align: right; color: var(--muted); font-size: 12px; margin: 0 0 6px; }
  .price-scroll-wrap::after { content: ""; position: absolute; top: 1px; right: 1px; bottom: 1px; width: 32px; pointer-events: none; border-radius: 0 var(--radius) var(--radius) 0; background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,.92)); }
}

/* ── 料金表: 日付列を固定（sticky）して料金列を横スクロール ── */
.price-table th:first-child, .price-table td.dt { position: sticky; left: 0; border-right: 1px solid var(--sky-line); }
.price-table td.dt { background: var(--paper); z-index: 1; }
.price-table tr.busy td.dt { background: #FBF3E6; }
.price-table thead th:first-child { z-index: 3; }

/* 予約入口（ホテル/トリミング 2択） */
.reserve-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.reserve-choice-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; text-align: center; }
.reserve-choice-card h2 { margin: 0 0 12px; }
.reserve-choice-card p { color: var(--muted); margin: 0 0 24px; line-height: 1.7; }
@media (max-width: 720px) { .reserve-choice { grid-template-columns: 1fr; gap: 18px; } }
