@charset "UTF-8";
/**
 * 土曜ストア会 ── style.css
 * このファイルを直接編集して管理する（SCSSビルド不要）
 *
 * ── セクション目次 ──
 * 1. Variables          :root カスタムプロパティ
 * 2. Reset              box-sizing リセット
 * 3. Base               html / body 基本スタイル
 * 4. Global Nav         グローバルナビゲーション
 * 5. Common             共通コンポーネント（container, section, page-hero, cta 等）
 * 6. Footer             フッター
 * 7. Animations         フェードイン
 * 8. Page: Index        トップページ (.page-index)
 * 9. Page: Detail       詳細ページ
 * 10. Page: Books       推薦書籍 (.page-books)
 * 11. Page: Support     サポート (.page-support)
 * 12. Page: Stoa Text   ストア哲学文言 (.page-stoa-text)
 * 13. Page: Reports     レポート一覧 (.page-reports)
 * 14. Page: Report Detail レポート詳細 (.page-report-detail)
 * 15. Responsive        共通レスポンシブ
 */

:root {
  --stone-50: #faf9f7;
  --stone-100: #f0ede8;
  --stone-200: #e2ddd4;
  --stone-300: #c9c1b4;
  --stone-400: #a89e8e;
  --stone-500: #8a7f6e;
  --stone-600: #6b6154;
  --stone-700: #4d4538;
  --stone-800: #342f25;
  --stone-900: #1e1b15;
  --accent: #8b6914;
  --accent-light: #c49a2a;
  --accent-subtle: rgba(139, 105, 20, 0.08);
  --text-primary: var(--stone-800);
  --text-secondary: var(--stone-600);
  --text-muted: var(--stone-400);
  --bg-primary: var(--stone-50);
  --bg-section: #f5f2ec;
  --border: var(--stone-200);
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-display: 'Shippori Mincho', 'Noto Serif JP', serif;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.85;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.global-nav {
  background: var(--stone-50);
  border-bottom: 1px solid var(--border);
}

.global-nav-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-body);
}

.global-nav-brand {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--stone-900);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.global-nav-brand:hover {
  color: var(--accent);
}

.global-nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}
.global-nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.global-nav-links a:hover {
  color: var(--accent);
}
.global-nav-links a[aria-current=page], .global-nav-links a.current {
  color: var(--accent);
  font-weight: 500;
}

.nav-join-btn {
  display: none;
}
.nav-join-btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 1rem;
  background: var(--accent);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.nav-join-btn a:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(139, 105, 20, 0.25);
}
.nav-join-btn.is-active {
  display: list-item;
  list-style: none;
}

.container {
  max-width: 48rem;
  margin: 0 auto;
}

section {
  padding: 4rem 1.5rem;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--stone-900);
  margin-bottom: 1.2rem;
}

.divider {
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  margin: 0 0 2rem;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.page-header {
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  max-width: 48rem;
  margin: 0 auto;
}
.breadcrumb a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--accent);
}

.page-hero {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: radial-gradient(ellipse at 20% 80%, rgba(139, 105, 20, 0.04) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(139, 105, 20, 0.03) 0%, transparent 50%), var(--bg-primary);
}
.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.page-hero .lead {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.9;
}
.page-hero .aim {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.9;
  margin-bottom: 0.5rem;
}
.page-hero .detail-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.2s ease;
}
.page-hero .detail-link:hover {
  opacity: 0.7;
}

.page-nav {
  padding: 2rem 1.5rem;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.page-nav .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.2rem;
}
.page-nav a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.page-nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-section);
  text-decoration: none;
  color: var(--text-primary);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.cta-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.cta-card:hover .cta-arrow {
  transform: translateX(4px);
  opacity: 0.8;
}
.cta-card.main {
  background: var(--stone-900);
  color: var(--stone-50);
  border-color: var(--stone-900);
}
.cta-card.main:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.cta-card.main .cta-desc {
  opacity: 0.8;
}
.cta-card.meet-primary {
  background: #1a7f37;
  color: #fff;
  border-color: #1a7f37;
}
.cta-card.meet-primary:hover {
  background: #22943f;
  border-color: #22943f;
  box-shadow: 0 4px 16px rgba(26, 127, 55, 0.2);
}
.cta-card.meet-primary .cta-desc {
  opacity: 0.9;
}

.cta-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.cta-desc {
  font-size: 0.72rem;
  opacity: 0.7;
}

.cta-arrow {
  font-size: 0.9rem;
  opacity: 0.4;
  transition: transform 0.2s ease;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: var(--accent);
}

.back-section {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--bg-primary);
}

.meet-btn {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
}
.meet-btn--active {
  background: #1a7f37 !important;
  color: #fff !important;
}
.meet-btn--active:hover {
  background: #22943f !important;
}
.meet-btn--inactive {
  padding: 1rem 2rem;
  background: var(--stone-700);
  color: var(--stone-400);
  font-size: 0.9rem;
  cursor: default;
  pointer-events: none;
}
.meet-btn__label {
  display: block;
}
.meet-btn__line-hint {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--stone-400);
}
.meet-btn__line-hint a {
  color: var(--accent-light);
  text-decoration: underline;
}

.meet-card--inactive {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}
.meet-card--inactive a {
  pointer-events: auto;
}
.meet-card--active {
  border-color: #1a7f37;
  background: rgba(26, 127, 55, 0.08);
}

.note-box {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--accent-subtle);
  border-left: 2px solid var(--accent);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

footer,
.site-footer {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.footer-cite {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-style: normal;
}

.footer-copy {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.footer-quote + .footer-cite + .footer-copy {
  margin-top: 2.5rem;
}

.page-footer {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
}

.page-footer-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}
.page-footer-back:hover {
  opacity: 0.7;
}

.page-footer-copy {
  margin-top: 1.5rem;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 80%, rgba(139, 105, 20, 0.04) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(139, 105, 20, 0.03) 0%, transparent 50%), var(--bg-primary);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone-300), transparent);
}
.hero.hero-section {
  padding: 5rem 1.5rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--stone-900);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 32rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 3rem;
  max-width: 28rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-quote cite {
  font-style: normal;
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  background: var(--stone-900);
  color: var(--stone-50);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 105, 20, 0.15);
}
.btn-primary::after {
  content: "→";
  transition: transform 0.3s ease;
}
.btn-primary:hover::after {
  transform: translateX(4px);
}

.hero .btn-primary {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}
.hero-btns .btn-primary {
  opacity: 1;
  animation: none;
}

.btn-meet-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  background: #1a7f37;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-meet-hero:hover {
  background: #22943f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 127, 55, 0.25);
}
.btn-meet-hero--inactive {
  background: var(--stone-300);
  color: var(--stone-500);
  cursor: default;
  pointer-events: none;
}
.btn-meet-hero--inactive:hover {
  background: var(--stone-300);
  transform: none;
  box-shadow: none;
}

.page-index section {
  padding: 5rem 1.5rem;
}

.page-index .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.8rem;
}

.control-test {
  background: var(--bg-section);
}
.control-test .section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.control-test-body {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 2;
}
.control-test-body p {
  margin-bottom: 1.4rem;
}
.control-test-body p:last-child {
  margin-bottom: 0;
}

.control-test-example {
  margin: 1.8rem 0;
  padding: 1.4rem 1.6rem;
  background: var(--bg-primary);
  border-left: 3px solid var(--accent);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.9;
}
.control-test-example .note {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pillars {
  background: var(--bg-primary);
}

.pillar-list {
  list-style: none;
  counter-reset: pillar;
}
.pillar-list li {
  counter-increment: pillar;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.85;
}
.pillar-list li:last-child {
  border-bottom: none;
}
.pillar-list li::before {
  content: counter(pillar);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 1.8rem;
  line-height: 1.4;
}
.pillar-list li strong {
  color: var(--stone-900);
  font-weight: 600;
}

.why-now {
  background: var(--bg-section);
}

.why-now-lead {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--stone-700);
  line-height: 2;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.why-now-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.95;
  margin-bottom: 2.5rem;
}

.article-group-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.article-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.article-list li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.article-list li:last-child {
  border-bottom: none;
}
.article-list a {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--stone-200);
  transition: all 0.2s ease;
}
.article-list a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.article-source {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.book-recommend {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-primary);
  border-left: 2px solid var(--accent);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.book-recommend a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.book-recommend a:hover {
  text-decoration: underline;
}

.first-event {
  background: var(--stone-900);
  color: var(--stone-100);
  text-align: center;
}
.first-event .section-label {
  color: var(--accent-light);
}
.first-event .section-title {
  color: var(--stone-50);
}
.first-event .btn-primary {
  opacity: 1;
  animation: none;
  margin-top: 2.5rem;
  background: var(--accent);
}
.first-event .btn-primary:hover {
  background: var(--accent-light);
}
.first-event .meet-btn--active {
  background: #1a7f37 !important;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.event-item {
  text-align: center;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--stone-400);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.event-item-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--stone-50);
  font-weight: 600;
}

.event-item-note {
  font-size: 0.72rem;
  color: var(--stone-400);
  margin-top: 0.3rem;
}

.how-to {
  background: var(--bg-primary);
}

.page-index footer {
  padding: 4rem 1.5rem;
}

@media (max-width: 640px) {
  .page-index section {
    padding: 3.5rem 1.2rem;
  }
  .event-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-list li {
    flex-direction: column;
    gap: 0.2rem;
  }
}
.schedule {
  background: var(--bg-section);
}

.schedule-note {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
  padding: 1rem 1.4rem;
  background: var(--bg-primary);
  border-left: 3px solid var(--accent);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.schedule-table th {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  text-align: left;
  padding: 0.6rem 0.8rem;
  border-bottom: 2px solid var(--accent);
}
.schedule-table td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  vertical-align: top;
  line-height: 1.7;
}
.schedule-table td:first-child {
  white-space: nowrap;
  font-weight: 500;
  color: var(--stone-700);
  width: 10rem;
}
.schedule-table td:nth-child(2) {
  font-weight: 600;
  color: var(--stone-900);
  width: 9rem;
}
.schedule-table tr:last-child td {
  border-bottom: none;
}

.info-list {
  list-style: none;
  margin-top: 1rem;
}
.info-list li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.5rem;
  line-height: 1.7;
}
.info-list li strong {
  color: var(--text-primary);
  flex-shrink: 0;
}

.future-note {
  margin-top: 2rem;
  padding: 1rem 1.4rem;
  background: var(--accent-subtle);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.activities {
  background: var(--bg-primary);
}

.activity-card {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
}
.activity-card:last-child {
  margin-bottom: 0;
}
.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 0.8rem;
}
.activity-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.bring {
  background: var(--bg-section);
}

.bring-list {
  list-style: none;
}
.bring-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.8;
}
.bring-list li:last-child {
  border-bottom: none;
}
.bring-list .label {
  font-weight: 600;
  color: var(--stone-900);
}
.bring-list .note {
  color: var(--text-secondary);
}

.faq {
  background: var(--bg-primary);
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.faq-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.books {
  background: var(--bg-section);
}

.book-list {
  list-style: none;
}
.book-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.75;
}
.book-list li:last-child {
  border-bottom: none;
}
.book-list a {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--stone-200);
  transition: all 0.2s ease;
  font-weight: 500;
}
.book-list a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.book-list .badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  background: var(--accent);
  color: var(--stone-50);
  margin-right: 0.4rem;
  vertical-align: middle;
}
.book-list .desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.quotes-section {
  background: var(--stone-900);
  color: var(--stone-100);
}
.quotes-section .section-label {
  color: var(--accent-light);
}
.quotes-section .section-title {
  color: var(--stone-50);
}
.quotes-section .section-lead {
  color: var(--stone-400);
}

.quotes-philosopher {
  margin-top: 2.5rem;
}
.quotes-philosopher h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.quotes-philosopher blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--stone-200);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(196, 154, 42, 0.3);
}
.quotes-philosopher blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--stone-500);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

.detail-cta {
  background: var(--bg-primary);
  text-align: center;
}
.detail-cta .cta-group {
  max-width: 32rem;
  margin: 2rem auto 0;
}
.detail-cta .cta-card.main {
  background: var(--accent);
  color: var(--stone-50);
  border-color: var(--accent);
}
.detail-cta .cta-card.main:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}
.detail-cta .cta-card.main .cta-desc {
  opacity: 0.9;
}

@media (max-width: 640px) {
  .schedule-table td:first-child {
    width: auto;
  }
  .schedule-table td:nth-child(2) {
    width: auto;
  }
  .activity-card {
    padding: 1.2rem;
  }
}
.book-card {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.book-card:hover {
  border-color: var(--stone-300);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.book-card:last-child {
  margin-bottom: 0;
}
.bg-alt .book-card {
  background: var(--bg-section);
}

.book-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.book-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--stone-900);
  color: var(--stone-50);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.book-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--stone-900);
  line-height: 1.5;
  flex: 1;
}

.book-subtitle {
  font-weight: 400;
  font-size: 0.85em;
  color: var(--text-muted);
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.book-meta span {
  white-space: nowrap;
}

.book-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  vertical-align: middle;
}
.badge--intro {
  background: var(--accent);
  color: var(--stone-50);
}
.badge--kindle {
  background: var(--stone-200);
  color: var(--stone-700);
}
.badge--classic {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.badge--amazon {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--stone-200);
  text-decoration: none;
  transition: all 0.2s ease;
}
.badge--amazon:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.book-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

@media (max-width: 640px) {
  .book-card {
    padding: 1.2rem;
  }
  .book-card-header {
    gap: 0.7rem;
  }
  .book-number {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.72rem;
  }
}
.page-support .page-hero {
  padding: 4rem 1.5rem 2.5rem;
}
.page-support .page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}
.page-support .page-hero .lead {
  max-width: 34rem;
}

.message {
  background: var(--bg-primary);
}
.message p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 1.2rem;
}
.message p:last-child {
  margin-bottom: 0;
}

.page-support .container {
  max-width: 40rem;
}

.usage-box {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-section);
  border-left: 3px solid var(--accent);
}
.usage-box h3 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--stone-700);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
.usage-box p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 0;
}

.plans {
  background: var(--bg-section);
}
.plans .section-title {
  text-align: center;
}
.plans .divider {
  margin: 0 auto 1.5rem;
}
.plans .section-label {
  text-align: center;
}

.plan-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.plan-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 2rem 1.2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.plan-card:hover .plan-btn {
  background: var(--accent);
  color: var(--stone-50);
}

.plan-emoji {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.plan-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.plan-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.3rem;
}
.plan-amount small {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-interval {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.plan-btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--accent);
  transition: all 0.2s ease;
}

.notes {
  background: var(--bg-primary);
}

.note-list {
  list-style: none;
}
.note-list li {
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.note-list li::before {
  content: "·";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.closing-quote {
  background: var(--stone-900);
  color: var(--stone-100);
  text-align: center;
  padding: 4rem 1.5rem;
}
.closing-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  font-style: italic;
  line-height: 2;
  max-width: 30rem;
  margin: 0 auto 1rem;
  color: var(--stone-200);
}
.closing-quote cite {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--stone-500);
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .page-support .page-hero {
    padding: 3rem 1.2rem 2rem;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 20rem;
    margin: 0 auto;
  }
  .plan-card {
    padding: 1.5rem 1rem;
  }
}
.page-stoa-text {
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.page-stoa-text .page-header {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}
.page-stoa-text .page-header-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.page-stoa-text .page-header-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.4;
}
.page-stoa-text .page-header-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  line-height: 1.7;
}

.content {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.content p {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}
.content p:last-child {
  margin-bottom: 0;
}
.content ol {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  padding-left: 1.5em;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}
.content ol li {
  margin-bottom: 0.6rem;
  padding-left: 0.3em;
}
.content ol li:last-child {
  margin-bottom: 0;
}

.section-heading {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.5;
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--accent);
}

.text-section {
  margin-top: 4rem;
}
.text-section:first-child {
  margin-top: 0;
}

.text-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone-300), transparent);
  margin: 2.2rem 0;
}

.summary-block {
  margin-top: 2.2rem;
  padding: 1.5rem 1.8rem;
  background: var(--accent-subtle);
  border-left: 3px solid var(--accent);
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--stone-700);
}
.summary-block strong {
  color: var(--stone-900);
}

@media (max-width: 640px) {
  body.page-stoa-text {
    font-size: 17px;
  }
  .content {
    padding: 2.5rem 1.4rem 4rem;
  }
  .section-heading {
    font-size: 1.5rem;
  }
  .text-section {
    margin-top: 3rem;
  }
}
.page-hero .subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.9;
}

.reports-section {
  padding: 3rem 1.5rem 5rem;
}

.report-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.report-card {
  display: block;
  padding: 1.8rem 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}
.report-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.report-card:hover .report-more {
  color: var(--accent);
}

.report-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.report-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--stone-900);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.report-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.report-more {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.page-reports footer .footer-quote {
  font-size: 0.92rem;
  padding: 0 1.5rem;
}

@media (max-width: 640px) {
  .reports-section {
    padding: 2.5rem 1.2rem 4rem;
  }
  .report-card {
    padding: 1.4rem 1.2rem;
  }
}
.page-report-detail {
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.1em;
  --font-quote: 'Shippori Mincho', serif;
}
.page-report-detail .global-nav-inner {
  max-width: 38rem;
}
.page-report-detail .breadcrumb {
  max-width: 38rem;
  margin: 0 auto;
  padding: 1rem 2rem 0;
}
.page-report-detail .breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.65rem;
  color: var(--text-muted);
}
.page-report-detail .breadcrumb li {
  display: flex;
  align-items: center;
}
.page-report-detail .breadcrumb li + li::before {
  content: "/";
  margin: 0 0.5em;
  color: var(--stone-300);
}
.page-report-detail .breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.page-report-detail .breadcrumb a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.page-report-detail .breadcrumb [aria-current=page] {
  color: var(--text-secondary);
}
.page-report-detail .page-header {
  padding: 2rem 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-report-detail .page-header-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.page-report-detail .page-header-title {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.4;
}
.page-report-detail .page-header-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  line-height: 1.7;
}
.page-report-detail .content {
  max-width: 38rem;
  padding: 3rem 2rem 5rem;
}
.page-report-detail .content p {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
  color: var(--text-primary);
  text-align: justify;
}
.page-report-detail .content p:last-child {
  margin-bottom: 0;
}
.page-report-detail .content ol {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.1em;
  padding-left: 1.5em;
  margin-bottom: 3rem;
  color: var(--text-primary);
  text-align: justify;
}
.page-report-detail .content ol li {
  margin-bottom: 0.6rem;
  padding-left: 0.3em;
}
.page-report-detail .content ol li:last-child {
  margin-bottom: 0;
}
.page-report-detail .content ul {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.1em;
  padding-left: 1.5em;
  margin-bottom: 3rem;
  color: var(--text-primary);
  list-style: none;
  text-align: justify;
}
.page-report-detail .content ul li {
  margin-bottom: 0.6rem;
  padding-left: 0.3em;
  position: relative;
}
.page-report-detail .content ul li::before {
  content: "─";
  position: absolute;
  left: -1.5em;
  color: var(--accent);
}
.page-report-detail .content ul li:last-child {
  margin-bottom: 0;
}
.page-report-detail .lead-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 2;
}
.page-report-detail .epigraph {
  border-left: 3px solid var(--accent);
  padding: 1.2rem 1.5rem 1.2rem 2.5rem;
  margin: 1.5rem 0 2rem;
  background: var(--stone-100);
  position: relative;
}
.page-report-detail .epigraph::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--accent);
  font-family: var(--font-quote);
  line-height: 1;
  opacity: 0.5;
}
.page-report-detail .epigraph p {
  font-family: var(--font-quote);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--stone-700);
  line-height: 2;
  margin-bottom: 0;
  text-align: left;
}
.page-report-detail .epigraph cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--stone-500);
  font-style: normal;
}
.page-report-detail .theme-line {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 1rem;
}
.page-report-detail .line-cta-aside {
  margin: 2.5rem 0;
  padding: 1rem 1.5rem;
  border: 1px solid var(--stone-200);
  border-radius: 8px;
  background: transparent;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.page-report-detail .line-cta-aside a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.page-report-detail .line-cta-aside a:hover {
  text-decoration: underline;
}
.page-report-detail .toc {
  margin: 0 0 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--accent-subtle);
  border-radius: 8px;
}
.page-report-detail .toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--stone-600);
  margin-bottom: 0.8rem;
}
.page-report-detail .toc ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.page-report-detail .toc ul li {
  margin-bottom: 0.4rem;
  padding-left: 0;
}
.page-report-detail .toc ul li::before {
  content: none;
}
.page-report-detail .toc a {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
  line-height: 1.8;
}
.page-report-detail .toc a:hover {
  text-decoration: underline;
}
.page-report-detail .text-section {
  margin-top: 5rem;
}
.page-report-detail .text-section:first-of-type {
  margin-top: 0;
}
.page-report-detail .section-heading {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.5;
  margin-bottom: 1.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent);
}
.page-report-detail .subsection-heading {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--stone-700);
  line-height: 1.5;
  margin-top: 4.5rem;
  margin-bottom: 1rem;
  padding-left: 0.8em;
  border-left: 3px solid var(--accent);
}
.page-report-detail .text-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone-300), transparent);
  margin: 2.2rem 0;
}
.page-report-detail .slide-figure {
  margin: 3.5rem 0;
}
.page-report-detail .slide-figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: block;
}
.page-report-detail .slide-figure figcaption {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  line-height: 1.6;
}
.page-report-detail strong {
  font-weight: 700;
  color: var(--stone-900);
}
.page-report-detail .voice-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 0;
}
.page-report-detail .voice-list li {
  padding-left: 0;
}
.page-report-detail .voice-list li::before {
  content: none;
}
.page-report-detail .voice-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.page-report-detail .voice-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.3rem;
}
.page-report-detail .voice-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--stone-500);
}
.page-report-detail .voice-bubble {
  flex: 1;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-primary);
}
.page-report-detail .voice-bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 1rem;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--stone-200);
}
.page-report-detail .voice-bubble::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 1rem;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid #fff;
}
.page-report-detail .closing {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.page-report-detail .closing p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.page-report-detail .closing ul {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.page-report-detail .closing-heading {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 1.2rem;
}
.page-report-detail .link-button {
  display: inline-block;
  padding: 0.7em 1.5em;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: opacity 0.2s;
  margin: 0.5rem 0.5rem 0.5rem 0;
}
.page-report-detail .link-button:hover {
  opacity: 0.85;
}
.page-report-detail .link-button-outline {
  display: inline-block;
  padding: 0.7em 1.5em;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  margin: 0.5rem 0.5rem 0.5rem 0;
}
.page-report-detail .link-button-outline:hover {
  background: var(--accent);
  color: #fff;
}
.page-report-detail .related-links {
  margin-top: 2rem;
}
.page-report-detail .related-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.page-report-detail .related-links ul li {
  padding-left: 0;
}
.page-report-detail .related-links ul li::before {
  content: none;
}
.page-report-detail .related-links a {
  color: var(--accent);
  text-decoration: none;
}
.page-report-detail .related-links a:hover {
  text-decoration: underline;
}
.page-report-detail .related-links-heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent);
}

@media (max-width: 640px) {
  .page-report-detail {
    font-size: 17px;
  }
  .page-report-detail .content {
    padding: 2.5rem 1.4rem 4rem;
  }
  .page-report-detail .section-heading {
    font-size: 1.3rem;
  }
  .page-report-detail .text-section {
    margin-top: 4rem;
  }
  .page-report-detail .page-header-title {
    font-size: 1.2rem;
  }
  .page-report-detail .voice-item {
    gap: 0.7rem;
  }
  .page-report-detail .voice-icon {
    width: 2rem;
    height: 2rem;
  }
  .page-report-detail .voice-bubble {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  .page-report-detail .epigraph {
    padding: 1rem 1.2rem;
  }
  .page-report-detail .breadcrumb {
    padding: 0.8rem 1.4rem 0;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 16px;
  }
  section {
    padding: 3rem 1.2rem;
  }
  .page-hero {
    padding: 3rem 1.2rem 2rem;
  }
  .cta-card {
    padding: 1rem 1.2rem;
  }
  .global-nav-inner {
    padding: 0.8rem 1.4rem;
  }
}
