/* ============================================================
   はじめての中村天風 — 共通スタイル
   世界観：夜（物語）→ 夜明け（転機）→ 朝・紙（教えと実践）
   ============================================================ */

:root {
  --night: #161D2E;
  --night-2: #1E2740;
  --dawn-purple: #46406B;
  --dawn-orange: #C4714B;
  --dawn-gold: #E3AE4E;
  --paper: #F7F2E8;
  --paper-2: #EFE7D6;
  --ink: #2B2E3A;
  --ink-soft: #6A6455;
  --gold: #B98A2E;
  --vermilion: #B84A2F;
  --moon: #E9E4D6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 2;
  font-size: 15.5px;
  overflow-x: hidden;
}
.serif { font-family: 'Zen Old Mincho', serif; }
.inner { max-width: 680px; margin: 0 auto; padding: 0 22px; }
a { color: inherit; }

/* ============ 共通：セクション ============ */
section { padding: 72px 0; }
.eyebrow {
  font-size: 11.5px; letter-spacing: 0.32em; font-weight: 500;
  margin-bottom: 14px;
}
h2 {
  font-family: 'Zen Old Mincho', serif;
  font-size: 25px; font-weight: 700; line-height: 1.7;
  margin-bottom: 24px;
}
p { margin-bottom: 18px; }
.lead { font-size: 16.5px; }
.note-soft { font-size: 13px; color: var(--ink-soft); }

/* スクロールリビール */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.rv.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ ナビゲーション ============ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: rgba(14, 19, 34, 0.82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 228, 214, 0.08);
}
.nav-inner {
  max-width: 680px; margin: 0 auto; padding: 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  height: 52px;
}
.nav-brand {
  font-family: 'Zen Old Mincho', serif; font-size: 14.5px; font-weight: 600;
  color: var(--moon); text-decoration: none; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.nav-brand svg { flex-shrink: 0; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 12px; color: #B9AE8C; text-decoration: none;
  letter-spacing: 0.06em; padding: 6px 7px; border-radius: 6px;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--moon); }
.nav-links a.current { color: var(--dawn-gold); }
@media (max-width: 400px) {
  .nav-brand span { display: none; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 6px 6px; }
}

/* ============ 下層ページ：ページヘッダー（夜） ============ */
.page-head {
  background: linear-gradient(180deg, #0E1322 0%, var(--night) 60%, #232B47 100%);
  color: var(--moon);
  padding: 118px 0 60px;
  position: relative; overflow: hidden;
}
.page-head .inner { position: relative; z-index: 2; }
.page-head .eyebrow { color: var(--dawn-gold); }
.page-head h1 {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(26px, 7vw, 36px); font-weight: 700; line-height: 1.8;
  margin-bottom: 18px;
}
.page-head .desc { font-size: 14.5px; color: #C9C2AC; margin-bottom: 0; }

/* ============ HERO：夜空（トップ） ============ */
.hero {
  min-height: 100svh;
  background: linear-gradient(180deg, #0E1322 0%, var(--night) 45%, #232B47 80%, #3A3556 100%);
  color: var(--moon);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 110px 0 90px;
}
.stars { position: absolute; inset: 0; pointer-events: none; }
.star {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: #EDE6CF; opacity: 0.7;
  animation: twinkle 3.4s ease-in-out infinite;
}
@keyframes twinkle { 0%,100% { opacity: 0.15; } 50% { opacity: 0.85; } }
@media (prefers-reduced-motion: reduce) { .star { animation: none; opacity: 0.5; } }
.hero .inner { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.3em; color: #B9AE8C; margin-bottom: 28px; font-weight: 400;
}
.hero h1 {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(28px, 7.8vw, 46px);
  font-weight: 900; line-height: 1.75; letter-spacing: 0.04em;
  margin-bottom: 30px;
}
.hero h1 .gold { color: var(--dawn-gold); }
.hero-sub { font-size: 15px; color: #C9C2AC; line-height: 2.1; margin-bottom: 44px; }
.hero-names { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-bottom: 50px; }
.hero-names span {
  font-size: 12px; padding: 5px 14px; border: 1px solid rgba(233,228,214,0.3);
  border-radius: 30px; color: #D8D1BC; letter-spacing: 0.05em;
}
.scroll-cue { font-size: 12px; letter-spacing: 0.25em; color: #8F8770; text-align: center; }
.scroll-cue::after {
  content: ''; display: block; width: 1px; height: 44px; margin: 12px auto 0;
  background: linear-gradient(180deg, #8F8770, transparent);
}

/* ============ 夜セクション ============ */
.night-zone { background: var(--night); color: var(--moon); }
.night-zone .eyebrow { color: var(--dawn-gold); }
.night-zone h2 { color: #F2ECDA; }
.night-zone p { color: #CFC8B4; }
.night-zone .lead strong { color: #F2ECDA; }

/* 3つのつかみカード */
.hook-grid { display: grid; gap: 14px; margin-top: 36px; }
.hook-card {
  background: var(--night-2); border: 1px solid #2E3A5C;
  border-radius: 14px; padding: 24px 22px;
}
.hook-card .num {
  font-family: 'Zen Old Mincho', serif; font-size: 13px; color: var(--dawn-gold);
  letter-spacing: 0.2em; margin-bottom: 8px;
}
.hook-card h3 {
  font-family: 'Zen Old Mincho', serif; font-size: 18px; color: #F2ECDA;
  margin-bottom: 10px; line-height: 1.6;
}
.hook-card p { font-size: 14px; margin: 0; color: #B9B29C; }

/* タイムライン */
.timeline { position: relative; margin-top: 44px; padding-left: 26px; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1.5px;
  background: linear-gradient(180deg, #3A4568 0%, #6B5A6E 70%, var(--dawn-orange) 100%);
}
.tl-item { position: relative; padding-bottom: 44px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -26px; top: 9px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--night); border: 2.5px solid #5A6488;
}
.tl-item.dawn-dot::before { border-color: var(--dawn-gold); background: var(--dawn-gold); }
.tl-age {
  font-family: 'Zen Old Mincho', serif; font-size: 13px; color: var(--dawn-gold);
  letter-spacing: 0.15em; margin-bottom: 6px;
}
.tl-item h3 {
  font-family: 'Zen Old Mincho', serif; font-size: 18.5px; color: #F2ECDA;
  margin-bottom: 8px; line-height: 1.65;
}
.tl-item p { font-size: 14.5px; color: #B9B29C; margin: 0; }

/* ============ 夜明けセクション ============ */
.dawn-zone {
  background: linear-gradient(180deg, var(--night) 0%, var(--dawn-purple) 30%, var(--dawn-orange) 72%, var(--dawn-gold) 100%);
  color: #FFF9EC; text-align: center;
  padding: 110px 0 120px;
  position: relative; overflow: hidden;
}
.sun {
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, #FFE9B0 0%, #F2C15C 55%, rgba(242,193,92,0) 72%);
  margin: 0 auto 40px;
  animation: rise 2.5s ease-out both;
}
@keyframes rise { from { transform: translateY(50px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .sun { animation: none; } }
.dawn-zone .big-quote {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(21px, 6vw, 30px); font-weight: 700; line-height: 2.1;
  margin-bottom: 28px; text-shadow: 0 1px 12px rgba(60,30,10,0.25);
}
.dawn-zone p { font-size: 15px; color: #FFF4DC; max-width: 560px; margin: 0 auto 16px; }

/* ============ 朝・紙 ============ */
.day-zone { background: var(--paper); }
.day-zone .eyebrow { color: var(--gold); }

.teach-card {
  background: #FFFDF7; border: 1px solid #E2D8C2; border-radius: 16px;
  padding: 30px 26px; margin: 30px 0;
}
.teach-card h3 {
  font-family: 'Zen Old Mincho', serif; font-size: 19px; margin-bottom: 14px; line-height: 1.7;
}
.teach-card h3 .badge {
  display: inline-block; font-family: 'Noto Sans JP', sans-serif; font-size: 11px;
  background: var(--gold); color: #fff; border-radius: 20px;
  padding: 2px 12px; margin-right: 10px; vertical-align: 3px; letter-spacing: 0.1em; font-weight: 700;
}
.teach-card h3 .badge.vermilion { background: var(--vermilion); }
.teach-card p { font-size: 14.5px; margin-bottom: 12px; }
.teach-card p:last-child { margin-bottom: 0; }
.teach-card h4 {
  font-family: 'Zen Old Mincho', serif; font-size: 15.5px; margin: 20px 0 8px;
  padding-left: 12px; border-left: 3px solid var(--gold); line-height: 1.6;
}

/* ことば比較 */
.word-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0 6px; }
@media (max-width: 440px) { .word-vs { grid-template-columns: 1fr; } }
.word-box { border-radius: 12px; padding: 16px 16px 14px; font-size: 13.5px; line-height: 1.9; }
.word-box .wtag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; display: block; margin-bottom: 8px; }
.word-box.minus { background: #ECE5E1; color: #7A6459; }
.word-box.minus .wtag { color: #9A7B6C; }
.word-box.plus { background: #F3E9CE; color: #6E5518; }
.word-box.plus .wtag { color: var(--gold); }

/* コップ図 */
.cup-fig { display: flex; justify-content: center; gap: 34px; margin: 24px 0 8px; flex-wrap: wrap; }
.cup { text-align: center; }
.cup svg { display: block; margin: 0 auto 8px; }
.cup .cup-label { font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }

/* ============ 体系マップ（/teachings/） ============ */
.map-wrap { margin: 34px 0 10px; }
.map-root {
  background: var(--night); color: #F2ECDA; text-align: center;
  border-radius: 14px; padding: 20px 18px 16px; margin-bottom: 0;
}
.map-root .m-title { font-family: 'Zen Old Mincho', serif; font-size: 20px; font-weight: 700; letter-spacing: 0.06em; }
.map-root .m-sub { font-size: 12px; color: #B9AE8C; line-height: 1.7; margin-top: 4px; }
.map-trunk { width: 2px; height: 26px; background: #C6B58C; margin: 0 auto; }
.map-branches { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .map-branches { grid-template-columns: 1fr; } }
.map-side { border-radius: 14px; padding: 18px 16px; }
.map-side.mind { background: #F3E9CE; border: 1.5px solid var(--gold); }
.map-side.body { background: #EDE9E0; border: 1.5px solid #B7AC93; }
.map-side .m-head {
  font-family: 'Zen Old Mincho', serif; font-size: 16px; font-weight: 700;
  margin-bottom: 4px; letter-spacing: 0.04em;
}
.map-side.mind .m-head { color: #6E5518; }
.map-side.body .m-head { color: #5C5544; }
.map-side .m-note { font-size: 11.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 12px; }
.map-item {
  background: #FFFDF7; border-radius: 10px; padding: 12px 14px; margin-bottom: 10px;
  border: 1px solid #E0D5BD;
}
.map-item:last-child { margin-bottom: 0; }
.map-item .mi-name { font-family: 'Zen Old Mincho', serif; font-size: 14.5px; font-weight: 700; line-height: 1.6; }
.map-item .mi-name .mi-tag {
  display: inline-block; font-family: 'Noto Sans JP', sans-serif; font-size: 10px; font-weight: 700;
  color: #fff; background: var(--gold); border-radius: 12px; padding: 1px 8px;
  margin-right: 7px; vertical-align: 2px; letter-spacing: 0.08em;
}
.map-item .mi-desc { font-size: 12px; color: var(--ink-soft); line-height: 1.8; margin-top: 3px; }

/* コラム */
.column-box {
  background: var(--paper-2); border-radius: 14px; padding: 24px 22px; margin: 34px 0 0;
  border-left: 4px solid var(--dawn-gold);
}
.column-box .c-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 8px;
}
.column-box h3 { font-family: 'Zen Old Mincho', serif; font-size: 16.5px; margin-bottom: 10px; line-height: 1.7; }
.column-box p { font-size: 13.5px; margin-bottom: 8px; }
.column-box p:last-child { margin-bottom: 0; }

/* ============ 実践（/practice/） ============ */
.practice-zone { background: var(--paper-2); }
.practice-zone .eyebrow { color: var(--gold); }

/* 今日の心がけ */
.today-card {
  background: linear-gradient(135deg, #FFFDF7 0%, #FBF3DD 100%);
  border: 1.5px solid var(--gold); border-radius: 16px;
  padding: 26px 24px; margin: 30px 0 40px; position: relative;
}
.today-card .t-tag {
  position: absolute; top: -13px; left: 20px;
  background: var(--vermilion); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; letter-spacing: 0.12em;
}
.today-card .t-date { font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.1em; margin-bottom: 6px; }
.today-card h3 { font-family: 'Zen Old Mincho', serif; font-size: 21px; margin-bottom: 8px; line-height: 1.6; }
.today-card p { font-size: 14px; margin: 0; color: var(--ink-soft); }

/* 進捗 */
.progress-line { display: flex; align-items: center; gap: 14px; margin: 8px 0 28px; }
.progress-track { flex: 1; height: 6px; background: #E0D5BD; border-radius: 6px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--dawn-orange), var(--dawn-gold)); border-radius: 6px; transition: width 0.5s ease; }
.progress-num { font-family: 'Zen Old Mincho', serif; font-size: 14px; color: var(--ink-soft); white-space: nowrap; }

/* 時間帯グループ */
.time-group { margin-bottom: 44px; }
.time-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.time-head .t-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.time-head .t-icon.night-i { background: var(--night); }
.time-head .t-icon.dawn-i { background: linear-gradient(135deg, var(--dawn-purple), var(--dawn-gold)); }
.time-head .t-icon.day-i { background: var(--dawn-gold); }
.time-head .t-icon.storm-i { background: var(--vermilion); }
.time-head h3 { font-family: 'Zen Old Mincho', serif; font-size: 19px; line-height: 1.5; }
.time-head .t-sub { font-size: 12px; color: var(--ink-soft); display: block; font-family: 'Noto Sans JP', sans-serif; font-weight: 400; }

/* 心得アコーディオン */
details.kokoroe {
  background: #FFFDF7; border: 1px solid #E0D5BD; border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
}
details.kokoroe[open] { border-color: var(--gold); }
details.kokoroe summary {
  list-style: none; cursor: pointer; padding: 16px 18px;
  display: flex; align-items: center; gap: 13px;
}
details.kokoroe summary::-webkit-details-marker { display: none; }
.k-num {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: #fff; font-size: 12.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.k-main { flex: 1; min-width: 0; }
.k-title { font-family: 'Zen Old Mincho', serif; font-size: 16px; font-weight: 700; line-height: 1.5; }
.k-gist { font-size: 12px; color: var(--ink-soft); line-height: 1.7; margin-top: 2px; }
.k-arrow {
  flex-shrink: 0; color: #B7AC93; transition: transform 0.3s ease; font-size: 12px;
}
details.kokoroe[open] .k-arrow { transform: rotate(90deg); }
.k-check {
  flex-shrink: 0; width: 24px; height: 24px; accent-color: var(--vermilion); cursor: pointer;
}
.k-body { padding: 2px 20px 20px 57px; font-size: 14px; }
.k-body p { font-size: 14px; margin-bottom: 10px; }
.k-body p:last-child { margin-bottom: 0; }
@media (max-width: 440px) { .k-body { padding-left: 20px; } }
details.kokoroe.done { background: #F5EEDC; }
details.kokoroe.done .k-title { color: var(--ink-soft); }

.steps { list-style: none; margin: 14px 0 4px; }
.steps li { position: relative; padding: 0 0 14px 34px; font-size: 14px; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: attr(data-n); position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* 呼吸ガイド */
.breath-widget { text-align: center; padding: 10px 0 6px; }
.breath-circle {
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, #F5E4B4 0%, #DDBA6A 100%);
  margin: 18px auto 14px;
  transform: scale(0.72);
  transition: transform 4s ease-in-out;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Zen Old Mincho', serif; font-size: 15px; color: #6E5518; font-weight: 600;
}
.breath-btn {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--ink); color: #F7F2E8; border: none; border-radius: 30px;
  font-size: 14px; font-weight: 500; padding: 12px 34px; cursor: pointer; letter-spacing: 0.1em;
}
.breath-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.breath-note { font-size: 12px; color: var(--ink-soft); margin-top: 12px; }

/* ============ 名言（/words/） ============ */
.quotes-zone { background: var(--night); color: var(--moon); }
.quotes-zone .eyebrow { color: var(--dawn-gold); }
.quotes-zone h2 { color: #F2ECDA; }
.quotes-zone p { color: #B9B29C; }
.quote-grid { display: grid; gap: 14px; margin-top: 32px; }
@media (min-width: 560px) { .quote-grid { grid-template-columns: 1fr 1fr; } }
.q-card {
  background: var(--night-2); border: 1px solid #2E3A5C; border-radius: 16px;
  padding: 30px 24px; display: flex; flex-direction: column; justify-content: space-between;
}
.q-card .q-text {
  font-family: 'Zen Old Mincho', serif; font-size: 17.5px; line-height: 2;
  color: #F2ECDA; margin-bottom: 18px;
}
.q-card .q-note { font-size: 12px; color: #8F8770; line-height: 1.8; }

/* 誓詞 */
.seishi-zone {
  background: linear-gradient(180deg, var(--night) 0%, #241F38 55%, var(--dawn-purple) 100%);
  color: var(--moon); text-align: center; padding: 96px 0 110px;
  position: relative; overflow: hidden;
}
.seishi-zone .eyebrow { color: var(--dawn-gold); }
.seishi-zone h2 { color: #F2ECDA; }
.seishi-zone .s-intro { color: #B9B29C; font-size: 14px; max-width: 520px; margin: 0 auto 48px; }
.seishi {
  writing-mode: vertical-rl; -webkit-writing-mode: vertical-rl;
  display: inline-block; text-align: initial;
  font-family: 'Zen Old Mincho', serif;
  font-size: 17px; line-height: 1; color: #F2ECDA;
  letter-spacing: 0.22em;
  margin: 0 auto; padding: 10px 4px;
  max-height: 480px;
}
.seishi p { margin: 0 14px 0 0; margin-bottom: 0; text-indent: 0; }
.seishi .s-char { opacity: 0; transition: opacity 1.1s ease; }
.seishi.shown .s-char { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .seishi .s-char { opacity: 1; transition: none; } }
.seishi-note { font-size: 11.5px; color: #8F8770; margin-top: 44px; line-height: 1.9; }

/* ============ 学んだ人々 ============ */
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
@media (max-width: 440px) { .people-grid { grid-template-columns: 1fr; } }
.person { background: #FFFDF7; border: 1px solid #E2D8C2; border-radius: 12px; padding: 18px 18px 16px; }
.person .p-name { font-family: 'Zen Old Mincho', serif; font-size: 16.5px; font-weight: 700; margin-bottom: 4px; }
.person .p-role { font-size: 12px; color: var(--ink-soft); line-height: 1.7; }

/* ============ 本（/books/） ============ */
.book-card {
  background: #FFFDF7; border: 1.5px solid var(--gold); border-radius: 16px;
  padding: 30px 26px; margin: 28px 0 18px; position: relative;
}
.book-card .first-badge {
  position: absolute; top: -13px; left: 22px;
  background: var(--vermilion); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; letter-spacing: 0.12em;
}
.book-card h3 { font-family: 'Zen Old Mincho', serif; font-size: 21px; margin-bottom: 8px; }
.book-card .b-meta { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 14px; }
.book-card p { font-size: 14.5px; margin-bottom: 0; }
.book-sub { display: grid; gap: 12px; margin-top: 16px; }
.book-mini { background: #FFFDF7; border: 1px solid #E2D8C2; border-radius: 12px; padding: 20px 22px; }
.book-mini h4 { font-family: 'Zen Old Mincho', serif; font-size: 16.5px; margin-bottom: 2px; }
.book-mini .b-meta { font-size: 12px; color: var(--ink-soft); margin-bottom: 8px; }
.book-mini p { font-size: 13.5px; color: var(--ink); margin: 0; }

/* ============ ページ導線カード ============ */
.guide-grid { display: grid; gap: 14px; margin-top: 36px; }
@media (min-width: 560px) { .guide-grid { grid-template-columns: 1fr 1fr; } }
.guide-card {
  display: block; text-decoration: none;
  background: #FFFDF7; border: 1px solid #E2D8C2; border-radius: 16px;
  padding: 24px 22px; transition: border-color 0.3s ease, transform 0.3s ease;
}
.guide-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.guide-card .g-eyebrow { font-size: 10.5px; letter-spacing: 0.26em; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.guide-card h3 { font-family: 'Zen Old Mincho', serif; font-size: 18px; margin-bottom: 8px; line-height: 1.6; }
.guide-card p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.9; }
.guide-card .g-more { display: inline-block; margin-top: 12px; font-size: 12px; color: var(--vermilion); font-weight: 700; letter-spacing: 0.08em; }

/* ============ 次に読むナビ ============ */
.next-nav { padding: 0 0 80px; }
.next-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-decoration: none;
  background: var(--night); color: var(--moon);
  border-radius: 16px; padding: 24px 26px;
  transition: background 0.3s ease;
}
.next-card:hover { background: var(--night-2); }
.next-card .n-label { font-size: 11px; letter-spacing: 0.24em; color: var(--dawn-gold); margin-bottom: 6px; }
.next-card h3 { font-family: 'Zen Old Mincho', serif; font-size: 18px; line-height: 1.6; color: #F2ECDA; }
.next-card .n-arrow { font-size: 20px; color: var(--dawn-gold); flex-shrink: 0; }

/* ============ クロージング・フッター ============ */
.closing {
  background: linear-gradient(180deg, var(--paper) 0%, #F3E7C9 100%);
  text-align: center; padding: 96px 0 100px;
}
.closing .big-quote {
  font-family: 'Zen Old Mincho', serif; font-size: clamp(22px, 6.5vw, 32px);
  font-weight: 900; line-height: 2; margin-bottom: 28px;
}
.closing p { max-width: 540px; margin: 0 auto 16px; font-size: 15px; }
footer {
  background: #F3E7C9; text-align: center; padding: 40px 22px 44px;
  font-size: 12px; color: var(--ink-soft); line-height: 2;
}
footer .f-nav { margin-bottom: 16px; }
footer .f-nav a { color: var(--ink-soft); text-decoration: none; margin: 0 9px; font-size: 12px; }
footer .f-nav a:hover { color: var(--ink); }
.night-foot { background: var(--night); color: #8F8770; }
.night-foot .f-nav a { color: #8F8770; }
.night-foot .f-nav a:hover { color: var(--moon); }
