/* ============================================================
   BELORA GUIDE — 案B「Photo Atelier」
   写真を主役に据えたギャラリー設計。画像は縁なしで大きく、
   本文は写真のキャプションのように。統計はダークバンドで反転。
   ============================================================ */
:root {
  --primary: #8B7355;
  --primary-light: #B8A88A;
  --primary-dark: #6B5A45;
  --accent: #C4A87C;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --text-muted: #A0A0A0;
  --bg: #FAF8F5;
  --bg-card: #FFFFFF;
  --bg-section: #F0ECE5;
  --bg-deep: #4A3F33;
  --border: #E0D9CE;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.header {
  text-align: center;
  padding: 15px 20px 12px;
  border-bottom: none;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 0 rgba(139, 115, 85, 0.12);
}

.header a { text-decoration: none; display: block; }

.header-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--primary);
}

.header-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--primary-light);
  text-transform: uppercase;
}

/* ===== INTRO ===== */
.intro {
  text-align: center;
  padding: 44px 24px 10px;
}

.intro-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 6px;
}

.intro-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 16px;
}

.intro-lead {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2.1;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BACK LINK ===== */
.back-bar {
  padding: 14px 20px 0;
  max-width: 720px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1.5px;
  padding: 6px 0;
}

a { color: var(--primary); }
a:hover { color: var(--primary-dark); }

/* ===== SECTIONS ===== */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 20px 64px;
}

.section { margin-top: 56px; }

.section-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 2px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.section-lead {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2.1;
  margin-bottom: 22px;
}

/* ===== HUB GUIDE CARDS — フォトバンド付きカード ===== */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 26px 20px 64px;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .guide-grid { grid-template-columns: 1fr 1fr; max-width: 900px; }
}

.guide-card {
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius);
  padding: 0 22px 22px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .15s, box-shadow .2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(107, 90, 69, 0.08);
}

.guide-card:not(.soon):hover { box-shadow: 0 6px 22px rgba(107, 90, 69, 0.14); }
.guide-card:active { transform: scale(.98); }

/* ハブカードの大きな写真スロット（photos/index/guide-NN.jpg を置くと表示）
   2026-07-13 改訂: 帯を 4/3 に縦長化して人物が大きく写るようにし、写真は加工なしで
   そのまま表示・テキストは写真の下に配置（グラデ合成/文字重ねは廃止）。
   各カードの object-position は index.html/start.html の GUIDE_POS で顔位置に合わせて指定。 */
.guide-photo {
  display: block;
  aspect-ratio: 4 / 3;
  margin: 0 -22px 16px;
  overflow: hidden;
}

.guide-photo img { object-position: 50% 30%; }

.guide-photo .ph-placeholder { gap: 4px; }

.guide-card.soon {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--border);
  cursor: default;
  opacity: .6;
}

.guide-card.soon .guide-photo { opacity: .55; }

.guide-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent);
}

.guide-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 2px 0 4px;
}

.guide-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.8;
}

.guide-arrow {
  position: absolute;
  right: 18px;
  bottom: 20px;
  color: var(--primary);
  font-size: 15px;
}

.badge-soon {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 2px 12px;
  border: 1px solid var(--primary-light);
  border-radius: 999px;
  color: var(--primary-light);
  margin-top: 10px;
}

.badge-ext {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--bg-section);
  color: var(--primary-dark);
  margin-top: 10px;
}

/* ===== STYLE CARDS — 写真主役・フルブリード ===== */
.style-card {
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 3px 18px rgba(107, 90, 69, 0.09);
}

.style-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 3px;
  scrollbar-width: none;
  background: var(--bg-section);
}
.style-gallery::-webkit-scrollbar { display: none; }

.style-gallery .ph-wrap {
  flex: 0 0 auto;
  width: 74%;
  aspect-ratio: 3 / 4;
  scroll-snap-align: center;
}

.style-gallery .ph-wrap:only-child,
.style-gallery .ph-wrap.solo { width: 100%; aspect-ratio: 4 / 3; }

.ph-wrap { position: relative; background: var(--bg-section); }

.ph-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background:
    radial-gradient(220px 160px at 30% 80%, rgba(196, 168, 124, 0.16), transparent),
    radial-gradient(260px 180px at 75% 15%, rgba(184, 168, 138, 0.14), transparent),
    linear-gradient(160deg, #F2EDE5, #EAE2D5);
}

.ph-placeholder .ph-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--primary-light);
}

.ph-placeholder .ph-ja {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.style-body { padding: 20px 22px 22px; }

.style-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.style-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

.point {
  background: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 13px 18px 12px;
  margin-top: 10px;
}

.point-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 3px;
}

.point-text {
  font-size: 13px;
  line-height: 2.05;
  color: var(--text);
}

/* ===== OPTION CARDS ===== */
.option-card {
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(107, 90, 69, 0.08);
}

.option-card.recommend { box-shadow: 0 2px 12px rgba(107, 90, 69, 0.08), inset 0 0 0 1.5px var(--accent); }

.option-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 2px 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.option-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.option-price {
  font-size: 13px;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border);
}

.option-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2.05;
}

/* ===== STATS — ダークバンドで反転表示 ===== */
.stats-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 15px 22px;
  border-bottom: 1px solid rgba(250, 248, 245, 0.14);
  background: var(--bg-deep);
  margin: 0 -20px;
}

.stat-row:first-of-type { border-radius: 0; margin-top: 0; }
.stat-row:last-of-type { border-bottom: none; }

@media (min-width: 720px) {
  .stat-row { margin: 0; }
  .stat-row:first-of-type { border-radius: var(--radius) var(--radius) 0 0; }
  .stat-row:last-of-type { border-radius: 0 0 var(--radius) var(--radius); }
}

.stat-label {
  font-size: 13px;
  flex: 1;
  color: #EDE6DB;
  letter-spacing: 1px;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 38px;
  color: #E8CFA6;
  letter-spacing: 0;
  line-height: 1;
}

.stat-unit {
  font-size: 12px;
  color: rgba(237, 230, 219, 0.65);
  letter-spacing: 1px;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip-item {
  font-size: 12px;
  padding: 6px 16px;
  border: none;
  border-radius: 999px;
  background: var(--bg-card);
  box-shadow: 0 1px 6px rgba(107, 90, 69, 0.1);
  color: var(--text-light);
  letter-spacing: 1px;
}

/* ===== NOTICE ===== */
.notice {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.95;
  margin: 16px 0;
}

.notice strong { font-weight: 500; color: var(--primary-dark); }

/* ===== FAQ — フラットな面で区切る ===== */
.faq details {
  background: var(--bg-card);
  border: none;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(107, 90, 69, 0.07);
}

.faq details[open] { box-shadow: 0 3px 14px rgba(107, 90, 69, 0.12); }

.faq summary {
  padding: 16px 42px 16px 20px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.7;
}

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

.faq summary::after {
  content: "＋";
  position: absolute;
  right: 18px;
  top: 15px;
  color: var(--accent);
  font-size: 15px;
  transition: transform .2s;
}

.faq details[open] summary::after { content: "－"; }

.faq-answer {
  padding: 0 20px 18px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 2.05;
}

/* ===== CTA / FOOTER ===== */
.cta {
  text-align: center;
  margin-top: 56px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
}

.cta-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 13px 40px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #FDFBF8;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(107, 90, 69, 0.25);
}

.cta-btn:hover { background: var(--primary-dark); color: #fff; }

.footer {
  text-align: center;
  padding: 36px 20px 44px;
  border-top: none;
  background: var(--bg-section);
  margin-top: 8px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 4px;
}

.footer-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ===== ITEM TABLE（一覧表・2026-07-12 追加） ===== */
.item-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 13px;
  line-height: 1.7;
}

.item-table th {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--primary);
  text-align: left;
  padding: 12px 14px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.item-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.item-table tbody tr:last-child td { border-bottom: none; }

.item-table td:first-child {
  white-space: nowrap;
  font-weight: 400;
  color: var(--primary-dark);
}

.item-table td:last-child { color: var(--text-light); }

/* ===== JUMP NAV（長ページのカテゴリジャンプ・2026-07-12 追加） ===== */
html { scroll-behavior: smooth; }

.section { scroll-margin-top: 70px; }

.jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 18px 20px 0;
  max-width: 720px;
  margin: 0 auto;
}

.jump-nav a {
  font-size: 12px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all .2s;
}

.jump-nav a:active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
