/* ═══════════════════════════════════════════
   symptom.css — 症状別ページ共通スタイル
   top.css の基盤（ヘッダー・フッター・ボタン等）の上に載せる
   ═══════════════════════════════════════════ */

/* ─── パンくず ─── */
.breadcrumb {
  padding: 90px 1rem 0.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--lux-muted-dark);
}
.breadcrumb a { color: var(--lux-green-bright); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { margin: 0 0.35em; }

/* ─── 症状ページヒーロー ─── */
.symptom-hero {
  background: var(--lux-void);
  color: var(--lux-paper);
  padding: 2rem 1rem 2.5rem;
  text-align: center;
}
.symptom-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.symptom-hero__eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--lux-gold);
  margin-bottom: 0.6rem;
}
.symptom-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75rem;
}
.symptom-hero__deck {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 3.2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(240, 236, 228, 0.88);
  margin: 0 auto 1rem;
  max-width: 720px;
}
.symptom-hero .answer-lead {
  text-align: left;
  max-width: 720px;
  margin: 0 auto 1.2rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--lux-champagne);
}
.symptom-hero .answer-lead a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--lux-gold);
  text-underline-offset: 0.2em;
}
.symptom-hero .answer-lead a:hover {
  color: var(--lux-gold);
}
.symptom-hero__leads {
  max-width: 720px;
  margin: 0 auto 1rem;
  text-align: left;
}
.symptom-hero__leads .answer-lead {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.symptom-hero__leads .answer-lead--continued {
  margin-bottom: 0;
  color: rgba(240, 236, 228, 0.92);
  line-height: 1.85;
}
.symptom-hero__actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.symptom-hero .symptom-note {
  color: rgba(240, 236, 228, 0.75);
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.symptom-hero .symptom-note a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--lux-gold);
  text-underline-offset: 0.2em;
}
.symptom-hero .symptom-note a:hover { color: var(--lux-gold); }
.symptom-hero .symptom-note strong { color: rgba(240, 236, 228, 0.95); }

/* ─── 症状ページ本文セクション ─── */
.symptom-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}
.symptom-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--lux-line);
}
.symptom-section:last-child { border-bottom: none; }
.symptom-section h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.45;
  color: var(--lux-ink);
}
.symptom-section--highlight {
  background: var(--lux-white);
  padding: 2.5rem 0;
  border-bottom: none;
  box-shadow: var(--lux-shadow-soft);
}
/* 横スクロール防止 — 外側ラッパー（symptom-body を包む highlight）には負の margin を付けない */
.symptom-body > .symptom-section--highlight {
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.symptom-section--highlight + .symptom-section {
  border-top: 1px solid var(--lux-line);
}
.symptom-section h3 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  margin: 2rem 0 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lux-line);
  color: var(--lux-ink);
  line-height: 1.45;
}
.symptom-section h3:first-of-type {
  margin-top: 1.25rem;
  padding-top: 0;
  border-top: none;
}
.symptom-section h2 + .answer-lead {
  margin-top: 0;
  margin-bottom: 1rem;
}
.symptom-key-box {
  background: var(--lux-paper-2);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  padding: 1.2rem 1.3rem;
  margin: 0 0 1.5rem;
}
.symptom-key-box p {
  margin: 0 0 0.85rem;
}
.symptom-key-box p:last-child {
  margin-bottom: 0;
}
.symptom-key-box .cause-list {
  margin: 0;
}
.symptom-key-box .symptom-note {
  margin: 0.85rem 0 0;
}

/* ─── BMI計算機（/about-diet-and-pain/・院長 jQuery）id/class/JS は触らない ─── */
.bmi-tool {
  max-width: 28rem;
  margin: 1.75rem auto 0;
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
  text-align: center;
}
.bmi-tool .div_input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
}
.bmi-tool .div_input label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--lux-ink);
  min-width: 2.5rem;
  text-align: right;
}
.bmi-tool .input_num {
  width: 6.5rem;
  padding: 0.55rem 0.65rem;
  font-size: 1.1rem;
  font-family: var(--font-sans);
  text-align: center;
  border: 1px solid rgba(36, 61, 54, 0.2);
  border-radius: 6px;
  background: var(--lux-paper);
  color: var(--lux-ink);
}
.bmi-tool .input_num:focus {
  outline: 2px solid var(--lux-green-bright);
  outline-offset: 2px;
  border-color: var(--lux-green-bright);
}
.bmi-tool .div_input:has(#keisan_btn) {
  gap: 0.65rem;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  padding-top: 0.15rem;
}
.bmi-tool .submit_btn {
  min-height: 46px;
  padding: 0 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: filter 0.2s, box-shadow 0.2s, background 0.2s;
}
.bmi-tool #keisan_btn {
  color: #fff;
  background: linear-gradient(180deg, var(--lux-green-bright) 0%, var(--lux-green) 100%);
  border: none;
  box-shadow: 0 4px 18px rgba(36, 61, 54, 0.22);
}
.bmi-tool #keisan_btn:hover {
  filter: brightness(1.06);
}
.bmi-tool #clear_btn {
  color: var(--lux-green);
  border: 1px solid rgba(36, 61, 54, 0.35);
  background: var(--lux-white);
}
.bmi-tool #clear_btn:hover {
  background: rgba(232, 226, 216, 0.5);
}
.bmi-tool .div_result {
  margin-bottom: 1rem;
  padding: 1.1rem 1rem;
  background: linear-gradient(180deg, rgba(45, 106, 90, 0.08) 0%, rgba(45, 106, 90, 0.04) 100%);
  border: 1px solid rgba(45, 106, 90, 0.18);
  border-radius: var(--lux-radius);
}
.bmi-tool .div_result > span:first-child {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--lux-green);
  margin-bottom: 0.5rem;
}
.bmi-tool .output_bmi {
  display: block;
  width: 100%;
  max-width: 7rem;
  margin: 0 auto 0.5rem;
  padding: 0.5rem 0.4rem;
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 700;
  font-family: var(--font-sans);
  line-height: 1.2;
  color: var(--lux-green-bright);
  text-align: center;
  border: 1px solid rgba(45, 106, 90, 0.25);
  border-radius: 8px;
  background: var(--lux-white);
}
.bmi-tool .div_result > span:last-of-type {
  display: block;
  font-size: 0.82rem;
  color: var(--lux-muted-dark);
  line-height: 1.5;
  margin-top: 0.15rem;
}
.bmi-tool #adobaisu {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  color: var(--lux-ink);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  background: var(--lux-paper-2);
  resize: vertical;
}
.bmi-tool #adobaisu:focus {
  outline: 2px solid var(--lux-green-bright);
  outline-offset: 2px;
}
.bmi-tool .div_result:last-child {
  margin-bottom: 0;
  padding: 0;
  background: none;
  border: none;
}

/* ─── 助成金ページ：市内／市外の比較カード ─── */
.subsidy-compare {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}
@media (min-width: 560px) {
  .subsidy-compare {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.subsidy-compare__card {
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  padding: 1.15rem 1.2rem 1.1rem;
  box-shadow: var(--lux-shadow-soft);
}
.subsidy-compare__card--primary {
  border-color: var(--lux-gold-mid);
  box-shadow: 0 2px 12px rgba(80, 68, 48, 0.08);
}
.subsidy-compare__where {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--lux-gold);
  margin-bottom: 0.35rem;
}
.subsidy-compare__amount {
  margin: 0 0 0.2rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--lux-ink);
}
.subsidy-compare__amount small {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lux-muted-dark);
}
.subsidy-compare__times {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--lux-muted-dark);
}
.subsidy-compare__times strong {
  color: var(--lux-ink);
  font-size: 1.05rem;
}
.subsidy-compare__card--muted {
  background: var(--lux-paper-2);
  border-style: dashed;
  box-shadow: none;
}
.subsidy-compare__card--muted .subsidy-compare__where {
  color: var(--lux-muted-dark);
}
.subsidy-compare__card--muted .subsidy-compare__amount {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lux-muted-dark);
}
.subsidy-compare__note {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--lux-muted-dark);
}

/* ─── 公式資料リンク（大きなタップ領域） ─── */
.ref-link-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}
@media (min-width: 560px) {
  .ref-link-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}
.ref-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 4.5rem;
  padding: 0.95rem 1rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  text-decoration: none;
  color: var(--lux-ink);
  box-shadow: var(--lux-shadow-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ref-link-card:hover {
  border-color: var(--lux-gold);
  box-shadow: 0 2px 12px rgba(80, 68, 48, 0.1);
}
.ref-link-card--primary {
  border-color: var(--lux-gold-mid);
  background: var(--lux-paper-2);
}
.ref-link-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--lux-gold);
}
.ref-link-card__title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}
.ref-link-card__hint {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--lux-muted-dark);
  margin-top: auto;
}

.repair-phase {
  margin: 1.25rem 0 0;
  padding: 1.15rem 1.25rem 0.35rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
}
.repair-phase h4 {
  margin-top: 0;
  font-size: 1.02rem;
  color: var(--lux-green);
}
.repair-phase .approach-list {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}
.symptom-pull {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--lux-paper-2);
  border-left: 4px solid var(--lux-gold-mid);
  border-radius: 0 var(--lux-radius) var(--lux-radius) 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.75;
  color: var(--lux-ink);
}
.symptom-subsection {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lux-line);
}
.symptom-subsection h3 {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.symptom-section h2 .section-heading__eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--lux-gold);
  margin-bottom: 0.3rem;
}
.symptom-section p {
  margin: 0 0 0.8rem;
  line-height: 1.9;
}
.symptom-figures-intro {
  margin-top: 1.25rem !important;
  font-size: 0.92rem;
  color: var(--lux-muted-dark);
}
.symptom-section__after-block {
  margin-top: 1rem;
}

/* ─── 症例報告ページ（case-report-*） ─── */
.case-report-hero h1 {
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.35;
}
.case-report-hero__sub {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  font-weight: 500;
  color: var(--lux-champagne);
  letter-spacing: 0.04em;
}
.case-report-hero__hook {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(240, 236, 228, 0.9);
}
.case-report-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  max-width: 640px;
  margin: 0 auto 1rem;
  padding: 0;
}
.case-report-stat {
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(201, 162, 98, 0.35);
  border-radius: 8px;
  text-align: left;
}
.case-report-stat dt {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lux-gold);
}
.case-report-stat dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--lux-champagne);
}
.case-report-stat--nrs dd {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.case-nrs { color: #ffb4a8; }
.case-nrs--good { color: #9fd4b8; }
.case-nrs-arrow {
  display: inline-block;
  margin: 0 0.35em;
  color: var(--lux-gold);
  font-weight: 400;
}
.case-report-hero__note {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  font-size: 0.78rem;
}

.case-report-body {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
.case-report-panel {
  margin-bottom: 1.25rem;
  background: var(--lux-white);
  border: 1px solid rgba(80, 68, 48, 0.2);
  border-radius: var(--lux-radius);
  overflow: hidden;
  box-shadow: var(--lux-shadow-soft);
  scroll-margin-top: 5.5rem;
}
.case-report-panel__head {
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--lux-void) 0%, var(--lux-green) 100%);
  color: var(--lux-champagne);
}
.case-report-panel__head--gold {
  background: linear-gradient(135deg, #4a3f2a 0%, var(--lux-gold-deep) 55%, var(--lux-green) 100%);
}
.case-report-panel__eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin-bottom: 0.2rem;
}
.case-report-panel__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
}
.case-report-panel__body {
  padding: 1.15rem 1rem 1.25rem;
}
.case-report-panel--compact .case-report-panel__body {
  padding-top: 0.85rem;
  padding-bottom: 1rem;
}
.case-report-panel--course {
  border-color: rgba(201, 162, 98, 0.45);
  box-shadow: 0 10px 36px rgba(80, 68, 48, 0.12);
}
.case-report-panel--note {
  background: var(--lux-paper-2);
  border-style: dashed;
  box-shadow: none;
}
.case-report-lead {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.75;
  color: var(--lux-ink);
}

.case-report-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.case-report-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.65rem;
  padding: 0.75rem 0.85rem;
  background: var(--lux-paper);
  border-radius: 8px;
  border-left: 3px solid var(--lux-gold);
  font-size: 0.92rem;
  line-height: 1.65;
}
.case-report-chip--accent {
  background: linear-gradient(90deg, rgba(45, 106, 90, 0.08) 0%, var(--lux-paper) 100%);
  border-left-color: var(--lux-green-bright);
}
.case-report-chip__label {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lux-green-bright);
}

.case-report-figure {
  margin: 0;
}
.case-report-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}
.case-report-legend {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--lux-line);
}
.case-report-legend__item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--lux-line);
}
.case-report-legend__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.case-report-legend__key {
  display: inline-block;
  min-width: 4.5em;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lux-white);
  background: var(--lux-green);
  border-radius: 4px;
}
.case-report-legend__item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--lux-muted-dark);
}

.case-report-story {
  display: grid;
  gap: 0.85rem;
}
.case-report-story__card {
  padding: 1rem;
  background: var(--lux-paper);
  border-radius: 8px;
  border: 1px solid var(--lux-line);
}
.case-report-story__card--muted {
  background: var(--lux-white);
}
.case-report-story__title {
  margin: 0 0 0.65rem;
  padding: 0;
  border: none;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lux-green);
}
.case-report-story__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-report-story__card li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(212, 188, 140, 0.15);
}
.case-report-story__card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.case-report-story__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lux-gold);
}

.case-report-treatment {
  display: grid;
  gap: 1rem;
}
.case-report-treatment__zone h3 {
  margin: 0 0 0.55rem;
  padding: 0;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lux-gold-deep);
}
.case-report-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.case-report-tags li {
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--lux-ink);
  background: var(--lux-paper);
  border: 1px solid var(--lux-line);
  border-radius: 999px;
}

.case-report-specs {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.case-report-specs div {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 0.65rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--lux-line);
}
.case-report-specs div:last-child {
  border-bottom: none;
}
.case-report-specs dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lux-green-bright);
}
.case-report-specs dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.case-report-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.35rem;
  border-left: 2px solid var(--lux-gold-mid);
}
.case-report-timeline__item {
  position: relative;
  padding: 0 0 1.15rem 1.15rem;
}
.case-report-timeline__item:last-child {
  padding-bottom: 0;
}
.case-report-timeline__item::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lux-white);
  border: 2px solid var(--lux-gold);
  box-shadow: 0 0 0 3px var(--lux-paper);
}
.case-report-timeline__item--turn::before {
  background: var(--lux-gold);
  border-color: var(--lux-gold-deep);
  box-shadow: 0 0 0 4px rgba(201, 162, 98, 0.25);
}
.case-report-timeline__item--finish::before {
  background: var(--lux-green-bright);
  border-color: var(--lux-green);
}
.case-report-timeline__visit {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.12rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lux-white);
  background: var(--lux-void);
  border-radius: 4px;
}
.case-report-timeline__content p {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.75;
}
.case-report-timeline__content p:last-child {
  margin-bottom: 0;
}
.case-report-nrs {
  display: inline-block;
  margin-top: 0.15rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lux-gold-deep);
  background: rgba(201, 162, 98, 0.18);
  border-radius: 4px;
}
.case-report-nrs--hero {
  font-size: 0.88rem;
  color: var(--lux-white);
  background: linear-gradient(90deg, var(--lux-green-bright), var(--lux-green));
}

.case-report-note {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.75;
}
.case-report-note-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--lux-muted-dark);
}
.case-report-note-list li {
  margin-bottom: 0.35rem;
}

@media (max-width: 719px) {
  .case-report-body {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
  .case-report-panel__head,
  .case-report-panel__body {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
  .case-report-timeline__content p {
    font-size: 0.95rem;
  }
  .case-report-story__card li {
    font-size: 0.92rem;
  }
}

@media (min-width: 560px) {
  .case-report-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .case-report-story {
    grid-template-columns: 1fr 1fr;
  }
  .case-report-legend {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .case-report-legend__item {
    padding: 1rem;
    border-bottom: none;
    border-right: 1px solid var(--lux-line);
  }
  .case-report-legend__item:last-child {
    border-right: none;
  }
}

@media (min-width: 720px) {
  .case-report-panel__body {
    padding: 1.35rem 1.25rem 1.5rem;
  }
  .case-report-treatment {
    grid-template-columns: 1fr 1fr;
  }
  .case-report-treatment__zone:last-child {
    grid-column: 1 / -1;
  }
}

/* ─── 原因リスト ─── */
.cause-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.cause-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.6rem;
  border-bottom: 1px solid var(--lux-line);
  line-height: 1.7;
}
.cause-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 8px;
  height: 8px;
  background: var(--lux-gold);
  border-radius: 50%;
}

/* ─── データ表（論文・症例など） ─── */
.symptom-data-table {
  --table-border: rgba(80, 68, 48, 0.28);
  margin: 1rem 0 1.25rem;
  max-width: 100%;
  overflow-x: hidden;
  border: 1px solid var(--table-border);
  border-radius: var(--lux-radius);
  background: var(--lux-white);
  box-shadow: var(--lux-shadow-soft);
}
.symptom-data-table table {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.65;
}
.symptom-data-table th,
.symptom-data-table td {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--table-border);
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.symptom-data-table thead th {
  background: var(--lux-paper-2);
  font-weight: 600;
  color: var(--lux-ink);
  white-space: normal;
}
.symptom-data-table tbody tr:nth-child(even) {
  background: rgba(212, 188, 140, 0.06);
}
.symptom-data-table tbody tr:hover {
  background: rgba(212, 188, 140, 0.1);
}
.symptom-note {
  font-size: 0.85rem;
  color: var(--lux-muted-dark);
  margin: 0.5rem 0 1rem;
  line-height: 1.75;
}
.symptom-blockquote {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--lux-paper-2);
  border: 1px solid var(--lux-line);
  border-left: 4px solid var(--lux-gold-mid);
  border-radius: 0 var(--lux-radius) var(--lux-radius) 0;
  font-size: 0.9rem;
  line-height: 1.8;
}
.symptom-blockquote p {
  margin: 0 0 0.5rem;
}
.symptom-blockquote p:last-child {
  margin-bottom: 0;
}
.symptom-section h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.6rem;
  color: var(--lux-ink);
}

.symptom-section h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 1rem 0 0.4rem;
  color: var(--lux-muted-dark);
  padding-left: 0.6rem;
  border-left: 3px solid var(--lux-gold-mid);
}

/* しっかり系サブグループ（h4 の下にインデント） */
.course-subgroup {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--lux-line);
}

/* ─── 料金ハブ（未使用・削除済み） ─── */

/* ─── 注意喚起（受診の目安） ─── */
.caution-box {
  background: #fdf6ec;
  border-left: 4px solid var(--lux-gold-mid);
  padding: 1.2rem 1.2rem 1rem;
  border-radius: 0 var(--lux-radius) var(--lux-radius) 0;
  margin: 1rem 0;
}
.symptom-section .caution-box h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  padding-top: 0;
  border-top: none;
  color: #8a5a00;
  line-height: 1.45;
}
.caution-box ul {
  margin: 0;
  padding-left: 1.2rem;
}
.caution-box li {
  margin-bottom: 0.3rem;
  line-height: 1.7;
}

/* ─── 当院の対応方針ボックス（医療機関との連携） ─── */
.clinic-policy-box {
  background: #f0f5f3;
  border-left: 4px solid #243d36;
  padding: 1.2rem 1.2rem 1rem;
  border-radius: 0 var(--lux-radius) var(--lux-radius) 0;
  margin: 1rem 0;
}
.clinic-policy-box__heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: #243d36;
  margin: 0 0 0.6rem;
}
.clinic-policy-box ul {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
}
.clinic-policy-box li {
  margin-bottom: 0.3rem;
  line-height: 1.7;
  font-size: 0.875rem;
  color: rgba(0,0,0,0.7);
}

/* ─── 施術の流れ（簡易） ─── */
.approach-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  counter-reset: approach;
}
.approach-list li {
  counter-increment: approach;
  position: relative;
  padding: 0.8rem 0 0.8rem 2.8rem;
  border-bottom: 1px solid var(--lux-line);
  line-height: 1.8;
}
.approach-list li::before {
  content: counter(approach);
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: var(--lux-green);
  color: var(--lux-champagne);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-list.continue-from-6 { counter-reset: approach 6; }
.approach-list.continue-from-9 { counter-reset: approach 9; }
.approach-list.continue-from-12 { counter-reset: approach 12; }

/* ─── Stepper（Material Design 準拠・MUI / Angular Material 互換レイアウト） ─── */
.stepper {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.stepper__step {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 16px;
  position: relative;
  padding-bottom: 24px;
}
.stepper__step:last-child {
  padding-bottom: 0;
}
/* Vertical connector — Material spec: 1dp, rgba black 12% */
.stepper__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
}
.stepper__icon {
  grid-column: 1;
  grid-row: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lux-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.stepper__content {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
.stepper__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.87);
}
.stepper__desc {
  margin: 8px 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}
.stepper__list {
  margin: 8px 0 0;
  padding-left: 1.25rem;
  list-style: disc;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}
.stepper__list li + li {
  margin-top: 0.5rem;
}

/* Horizontal stepper — md+（Material alternative label placement） */
@media (min-width: 900px) {
  .stepper {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .stepper__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 12px 0;
    min-width: 0;
  }
  .stepper__step:not(:last-child)::before {
    display: none;
  }
  .stepper__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 12px;
    left: calc(50% + 12px);
    right: calc(-50% + 12px);
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    z-index: 0;
  }
  .stepper__icon {
    align-self: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .stepper__content {
    margin-top: 16px;
    text-align: left;
  }
  .stepper__title {
    line-height: 1.4;
    text-align: center;
  }
  .stepper__desc {
    margin-top: 8px;
    font-size: 0.82rem;
  }
}
/* ─── 監修バー ─── */
.author-bar {
  background: var(--lux-paper-2);
  border-radius: var(--lux-radius);
  padding: 1.2rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.author-bar__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bar__text { font-size: 0.88rem; line-height: 1.7; }
.author-bar__name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.author-bar__quals { color: var(--lux-muted-dark); }
.author-bar__updated { color: var(--lux-muted-dark); font-size: 0.82rem; margin-top: 0.3rem; }

/* ─── 関連症状グリッド ─── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem;
  margin: 1rem 0;
}
.related-card {
  display: block;
  padding: 0.8rem 1rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  text-decoration: none;
  color: var(--lux-ink);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.related-card:hover {
  border-color: var(--lux-gold);
  box-shadow: var(--lux-shadow-soft);
}
.related-card small {
  display: block;
  font-size: 0.78rem;
  color: var(--lux-muted-dark);
  margin-top: 0.15rem;
}

/* ─── 参考図（症状ページ） ─── */
.symptom-figures {
  display: grid;
  gap: 1.5rem;
  margin: 1.25rem 0 0;
}
.symptom-figure {
  margin: 0;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  overflow: hidden;
  box-shadow: var(--lux-shadow-soft);
}
.symptom-figure img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  height: auto;
  display: block;
}
/* 横長の説明図（院長作図など）— 常にコンテナ幅100%。320px cap・3列グリッドを使わない */
.symptom-figures--diagram .symptom-figure img {
  max-width: 100%;
}
@media (min-width: 720px) {
  .symptom-figures--diagram.symptom-figures--single {
    max-width: none;
  }
}
.symptom-figure figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--lux-muted-dark);
  border-top: 1px solid var(--lux-line);
}
.symptom-figure figcaption strong {
  display: block;
  color: var(--lux-ink);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}
.symptom-figure__lead {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--lux-ink);
}
.symptom-figure__notes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.symptom-figure__notes li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--lux-line);
  line-height: 1.7;
}
.symptom-figure__notes li:first-child {
  border-top: none;
  padding-top: 0;
}

.footnote-mark {
  color: #c0392b;
  font-weight: 600;
}

@media (min-width: 720px) {
  .symptom-figures {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  .symptom-figures--single {
    grid-template-columns: 1fr;
    max-width: 768px;
  }
  .symptom-figure img { max-width: none; }
}

@media (max-width: 719px) {
  .symptom-figure img {
    max-width: 100%;
  }
  .symptom-figures--single .symptom-figure {
    border-left: none;
    border-right: none;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }
  .symptom-figures--single .symptom-figure figcaption {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ─── 埋め込み動画（16:9） ─── */
.symptom-video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 1rem auto 0;
  aspect-ratio: 16 / 9;
  background: var(--lux-void);
  border-radius: var(--lux-radius);
  overflow: hidden;
}
.symptom-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.symptom-video-wrap--file {
  aspect-ratio: auto;
  height: auto;
  background: transparent;
}
.symptom-video-wrap--file video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--lux-radius);
  background: var(--lux-void);
}
.symptom-video-note {
  font-size: 0.85rem;
  color: var(--lux-muted-dark);
  margin: 0;
}
.symptom-video-note-wrap {
  max-width: 720px;
  margin: 0.6rem auto 0;
  text-align: center;
}
.symptom-section .symptom-video-note-wrap .symptom-video-note {
  margin: 0;
}
.symptom-video-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.symptom-video-list li {
  border-bottom: 1px solid var(--lux-line);
}
.symptom-video-list a {
  display: block;
  padding: 0.65rem 0;
  text-decoration: none;
  font-weight: 500;
}
.symptom-video-list a:hover { text-decoration: underline; }
.symptom-video-list small {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--lux-muted-dark);
  margin-top: 0.15rem;
}

/* ─── 関連動画（サムネ付きカード・動画一覧と同型） ─── */
.symptom-video-grid {
  list-style: none;
  padding: 0;
  margin: 1.25rem auto 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (min-width: 420px) {
  .symptom-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}
@media (min-width: 768px) {
  .symptom-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}
.symptom-video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--lux-ink);
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.symptom-video-card:hover {
  border-color: var(--lux-gold);
  box-shadow: var(--lux-shadow-soft);
}
.symptom-video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--lux-void);
  overflow: hidden;
}
.symptom-video-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.symptom-video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.25rem;
  height: 2.25rem;
  margin: -1.125rem 0 0 -1.125rem;
  border-radius: 50%;
  background: rgba(15, 18, 22, 0.72);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.symptom-video-card__play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -0.35rem 0 0 -0.22rem;
  border-style: solid;
  border-width: 0.35rem 0 0.35rem 0.6rem;
  border-color: transparent transparent transparent #fff;
}
@media (min-width: 768px) {
  .symptom-video-card__play {
    width: 3rem;
    height: 3rem;
    margin: -1.5rem 0 0 -1.5rem;
  }
  .symptom-video-card__play::after {
    margin: -0.45rem 0 0 -0.28rem;
    border-width: 0.45rem 0 0.45rem 0.75rem;
  }
}
.symptom-video-card__text {
  display: block;
  padding: 0.5rem 0.45rem 0.55rem;
}
@media (min-width: 768px) {
  .symptom-video-card__text {
    padding: 0.65rem 0.75rem 0.75rem;
  }
}
.symptom-video-card__title {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}
@media (min-width: 420px) {
  .symptom-video-card__title {
    font-size: 0.78rem;
  }
}
@media (min-width: 768px) {
  .symptom-video-card__title {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}
.symptom-video-card__sub {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--lux-muted-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .symptom-video-card__sub {
    margin-top: 0.25rem;
    font-size: 0.78rem;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
}

/* ─── 関連症例報告（サムネ付きカード） ─── */
.symptom-case-grid {
  list-style: none;
  padding: 0;
  margin: 1.25rem auto 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (min-width: 420px) {
  .symptom-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}
@media (min-width: 768px) {
  .symptom-case-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }
}
.symptom-case-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--lux-ink);
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.symptom-case-card:hover {
  border-color: var(--lux-gold);
  box-shadow: var(--lux-shadow-soft);
}
.symptom-case-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 500 / 308;
  overflow: hidden;
  line-height: 0;
  background: var(--lux-white);
}
.symptom-case-card__thumb img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-left: 0;
  object-fit: cover;
  object-position: center center;
}
.symptom-case-card__text {
  display: block;
  padding: 0.5rem 0.45rem 0.55rem;
}
@media (min-width: 768px) {
  .symptom-case-card__text {
    padding: 0.65rem 0.75rem 0.75rem;
  }
}
.symptom-case-card__title {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}
@media (min-width: 420px) {
  .symptom-case-card__title {
    font-size: 0.78rem;
  }
}
@media (min-width: 768px) {
  .symptom-case-card__title {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}
.symptom-case-card__sub {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--lux-muted-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (min-width: 768px) {
  .symptom-case-card__sub {
    margin-top: 0.25rem;
    font-size: 0.78rem;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
}

/* ─── 症状ページ CTA ─── */
.symptom-cta {
  background: var(--lux-void);
  color: var(--lux-paper);
  text-align: center;
  padding: 2.5rem 1rem;
}
.symptom-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.symptom-cta__text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.symptom-cta__text a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--lux-gold);
  text-underline-offset: 0.2em;
}
.symptom-cta__text a:hover {
  color: var(--lux-gold);
}
.symptom-cta__actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── ページ内目次 ─── */
.symptom-toc {
  max-width: var(--max-w);
  margin: 0 auto 0.5rem;
  padding: 1.2rem 1.2rem 1rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
}
.symptom-toc__heading {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--lux-gold-mid);
  margin: 0 0 0.6rem;
}
.symptom-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}
.symptom-toc__list li {
  flex: 0 0 auto;
}
.symptom-toc__list a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--lux-green-bright);
  background: var(--lux-paper-2);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.symptom-toc__list a:hover {
  background: var(--lux-green);
  color: var(--lux-champagne);
}

/* ─── 上へ戻るボタン ─── */
.back-to-top {
  position: fixed;
  bottom: 68px;
  right: 14px;
  z-index: 90;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lux-void);
  color: var(--lux-champagne);
  border: 1px solid var(--lux-line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--lux-green);
}

/* ─── レスポンシブ ─── */
@media (max-width: 600px) {
  .breadcrumb { padding-top: 76px; }
  .symptom-hero { padding: 1.5rem 1rem 2rem; }
  .symptom-hero h1 { font-size: 1.4rem; }
  .author-bar { flex-direction: column; align-items: center; text-align: center; }
  .related-grid { grid-template-columns: 1fr 1fr; }

  /* 表：画面幅に収め、横スクロールなし（文字は折り返し） */
  .symptom-data-table table {
    font-size: 0.72rem;
    line-height: 1.5;
  }
  .symptom-data-table th,
  .symptom-data-table td {
    padding: 0.45rem 0.35rem;
  }
  .symptom-data-table thead th {
    font-size: 0.68rem;
  }
}

/* ─── プロフィール仕様表（/greeting/ 等） ─── */
.profile-spec {
  margin: 1.25rem 0 1.75rem;
  max-width: 600px;
}
.profile-spec__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.profile-spec__row:first-child {
  border-top: 1px solid rgba(0,0,0,.08);
}
.profile-spec dt {
  flex: 0 0 7em;
  font-size: 0.78em;
  color: var(--lux-muted-dark);
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.profile-spec--career {
  max-width: 720px;
}
.profile-spec--career dt {
  flex: 0 0 8.5em;
}
.profile-spec dd {
  flex: 1;
  margin: 0;
  font-size: 0.9em;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .profile-spec dt { flex: 0 0 5.5em; font-size: 0.74em; }
  .profile-spec--career dt { flex: 0 0 7em; }
  .profile-spec dd { font-size: 0.85em; }
}
.profile-intro {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 1rem 0 0;
}
.profile-intro__photo {
  flex: 0 0 auto;
  max-width: 220px;
  margin: 0;
}
.profile-intro__spec {
  flex: 1 1 260px;
  max-width: none;
  margin: 0;
}

/* ─── ポリシー・規約ページ ─── */
.symptom-hero--compact {
  padding: 1.75rem 1rem 2rem;
}
.symptom-hero--compact h1 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
}
.legal-doc {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.legal-doc__intro {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--lux-muted-dark);
}
/* WordPress 移植本文：条題が <p><strong> の段落のみのとき見出し風に */
.legal-doc p:has(> strong:only-child) {
  margin: 1.85rem 0 0.55rem;
}
.legal-doc p:has(> strong:only-child) strong {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--lux-ink);
  letter-spacing: 0.02em;
}
.legal-doc > p:first-child {
  margin-bottom: 1.15rem;
}
.legal-doc ol ol {
  margin: 0.35rem 0 0.6rem;
  padding-left: 1.15rem;
}
.legal-doc ol ol ol {
  margin-top: 0.3rem;
}
.legal-doc h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--lux-ink);
  letter-spacing: 0.02em;
}
.legal-doc h2:first-of-type {
  margin-top: 0.5rem;
}
.legal-doc p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--lux-muted-dark);
}
.legal-doc ol {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--lux-muted-dark);
}
.legal-doc li + li {
  margin-top: 0.35rem;
}
.legal-doc__contact {
  margin: 1rem 0 0;
  padding: 1rem 1.2rem;
  background: var(--lux-paper);
  border-radius: var(--lux-radius);
  border: 1px solid var(--lux-line);
}
.legal-doc__contact p {
  margin: 0 0 0.4rem;
}
.legal-doc__contact p:last-child {
  margin-bottom: 0;
}
.legal-doc__closing {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--lux-ink);
}
.legal-doc__nav {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lux-line);
  font-size: 0.88rem;
}
.legal-doc__nav a {
  font-weight: 600;
  color: var(--lux-green-bright);
}

/* ─── /specialty/ 検索・ショートカット（sticky） ─── */
.page-specialty {
  /* パンくず padding-top と同じ — fixed .site-header の高さ */
  --specialty-header-height: 90px;
  --specialty-toolbar-sticky-height: 5.75rem;
  --specialty-jumpbar-height: 3.25rem;
  /* アンカージャンプ用 — 実際の sticky 高さより多めに取る */
  --specialty-scroll-toolbar-height: 8.25rem;
  --specialty-scroll-extra: 0.875rem;
}
@media (max-width: 600px) {
  .page-specialty {
    --specialty-header-height: 76px;
    --specialty-toolbar-sticky-height: 7.5rem;
    --specialty-scroll-toolbar-height: 9.75rem;
    --specialty-scroll-extra: 1rem;
  }
}

.specialty-toolbar {
  position: sticky;
  top: var(--specialty-header-height);
  z-index: 40;
  max-width: var(--max-w);
  margin: 0 auto 0.75rem;
  padding: 0 1.2rem;
}
.specialty-toolbar__inner {
  padding: 0.85rem 1rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: 0 4px 16px rgba(26, 46, 36, 0.08);
}
.specialty-toolbar__search {
  display: block;
  margin-bottom: 0.65rem;
}
.specialty-toolbar__search-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lux-ink);
  margin-bottom: 0.45rem;
}
.specialty-toolbar__search-field {
  position: relative;
  display: block;
}
.specialty-toolbar__search-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lux-green-bright);
  opacity: 0.65;
  pointer-events: none;
  line-height: 0;
}
.specialty-toolbar__search input {
  width: 100%;
  box-sizing: border-box;
  min-height: 3rem;
  padding: 0.8rem 2.85rem 0.8rem 2.85rem;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--lux-ink);
  background: #fff;
  border: 2px solid rgba(45, 106, 79, 0.4);
  border-radius: 10px;
  box-shadow: inset 0 2px 5px rgba(36, 61, 54, 0.07);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.specialty-toolbar__search input::-webkit-search-cancel-button,
.specialty-toolbar__search input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.specialty-toolbar__search-clear {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  color: var(--lux-muted-dark);
  background: var(--lux-paper-2);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.specialty-toolbar__search-clear:hover {
  color: var(--lux-ink);
  background: rgba(45, 106, 79, 0.12);
}
.specialty-toolbar__search-clear:focus-visible {
  outline: 2px solid var(--lux-green-bright);
  outline-offset: 2px;
}
.specialty-toolbar__search-clear[hidden] {
  display: none;
}
.specialty-toolbar__search input::placeholder {
  color: var(--lux-muted-dark);
  opacity: 1;
}
.specialty-toolbar__search input:hover {
  border-color: rgba(45, 106, 79, 0.6);
}
.specialty-toolbar__search input:focus {
  outline: none;
  border-color: var(--lux-green-bright);
  box-shadow:
    inset 0 2px 5px rgba(36, 61, 54, 0.07),
    0 0 0 3px rgba(45, 106, 79, 0.18);
}
.specialty-toolbar__status {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lux-green);
}
.specialty-toolbar__sections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
}
.specialty-toolbar__sections a {
  display: inline-block;
  padding: 0.32rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lux-green-bright);
  background: var(--lux-paper-2);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.specialty-toolbar__sections a:hover {
  background: var(--lux-green);
  color: var(--lux-champagne);
}

/* アンカージャンプ — fixed ヘッダー + sticky ツールバー分のオフセット */
.page-specialty .symptom-section[id] {
  scroll-margin-top: calc(var(--specialty-header-height) + var(--specialty-scroll-toolbar-height) + var(--specialty-scroll-extra));
}
.page-specialty .specialty-index-group[id] {
  scroll-margin-top: calc(var(--specialty-header-height) + var(--specialty-scroll-toolbar-height) + var(--specialty-jumpbar-height) + var(--specialty-scroll-extra));
}
/* WHO — 系統別ジャンプ（10項目・折り返し多）用の追加オフセット */
.page-specialty .specialty-index-container--who .specialty-index-group[id] {
  scroll-margin-top: calc(var(--specialty-header-height) + var(--specialty-scroll-toolbar-height) + 5.5rem + var(--specialty-scroll-extra));
}
@media (max-width: 600px) {
  .page-specialty .specialty-index-container--who .specialty-index-group[id] {
    scroll-margin-top: calc(var(--specialty-header-height) + var(--specialty-scroll-toolbar-height) + 7rem + var(--specialty-scroll-extra));
  }
}

body.specialty-is-searching .specialty-index-container--columns {
  column-count: 1;
}

.specialty-index-list li.is-search-match {
  background: rgba(45, 106, 79, 0.08);
  border-radius: 4px;
  margin-left: -0.25rem;
  padding-left: 1.25rem;
}
.specialty-search-mark {
  background: rgba(212, 168, 75, 0.55);
  color: inherit;
  padding: 0.05em 0.15em;
  border-radius: 3px;
  font-weight: inherit;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.specialty-index-list a .specialty-search-mark,
.symptom-card .specialty-search-mark {
  font-weight: 700;
}

/* ─── /specialty/ 五十音ジャンプバー ─── */
.specialty-jump-bar {
  position: sticky;
  top: calc(var(--specialty-header-height) + var(--specialty-toolbar-sticky-height));
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.1rem;
  margin: 1rem 0 1.5rem;
  padding: 0.75rem 1rem;
  background: var(--lux-paper-2);
  border-radius: var(--lux-radius);
  border: 1px solid var(--lux-line);
}
.specialty-jump-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.3rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lux-green-bright);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
}
.specialty-jump-bar a:hover {
  background: var(--lux-green-bright);
  color: #fff;
}

/* ─── /specialty/ シンプル・インデックス ─── */
.specialty-index-container {
  margin-top: 1rem;
}
.specialty-index-group {
  margin-bottom: 1.5rem;
}
.specialty-index-group__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lux-ink);
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--lux-gold);
  display: inline-block;
}
.specialty-index-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.specialty-index-list li {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  position: relative;
}
.specialty-index-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lux-gold);
}
.specialty-index-list a {
  font-weight: 600;
  color: var(--lux-green-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(45, 106, 79, 0.3);
}
.specialty-index-list a:hover {
  text-decoration-color: var(--lux-gold);
}
.specialty-index-list span {
  color: var(--lux-ink);
}

@media (min-width: 768px) {
  .specialty-index-container--columns {
    column-count: 2;
    column-gap: 2.5rem;
  }
  .specialty-index-group {
    break-inside: avoid;
  }
}

.symptom-section__after-block--cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

/* ─── /voice/ 患者様の声 ─── */
.voice-page-disclaimer { margin-top: 0.75rem; }
.voice-jreviews-embed {
  margin-top: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f0;
}
.voice-jreviews-embed iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}
@media (min-width: 768px) {
  .voice-jreviews-embed iframe { min-height: 640px; }
}
.voice-jreviews-note {
  font-size: 0.78rem;
  color: var(--lux-muted);
  margin-top: 0.75rem;
  text-align: center;
}
.voice-jreviews-note a { color: var(--lux-green-bright); }
.voice-empty { color: var(--lux-muted); font-size: 0.9rem; }
.symptom-cta__sub { font-size: 0.82rem; margin-top: 0.75rem; text-align: center; }
.symptom-cta__sub a { color: rgba(255, 255, 255, 0.92); }

/* --- 見出し一覧 --- */
.voice-index { margin-top: 1rem; }
.voice-index--outside { margin-top: 1.5rem; }
.voice-outside-heading { font-size: 1rem; margin-top: 2rem; margin-bottom: 0.25rem; }
.voice-outside-lead { font-size: 0.82rem; color: var(--lux-muted); margin-bottom: 0.5rem; }
.voice-idx {
  display: grid;
  grid-template-columns: 60px 1fr 2rem;
  gap: 0.6rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  margin-bottom: 2px;
  background: #eee;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.voice-idx:hover { background: #ffc; }
.voice-idx--ext { background: #ffe4e1; }
.voice-idx--ext:hover { background: #ffd7b8; }
.voice-idx__avatar {
  display: block;
  width: 60px;
  height: 60px;
  justify-self: center;
  margin-inline: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.voice-avatar--illust {
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
  padding: 4px;
}
.voice-idx__main { min-width: 0; }
.voice-idx__name { display: block; font-size: 0.8rem; }
.voice-idx__title { display: block; font-size: 0.82rem; font-weight: 700; line-height: 1.4; margin-top: 0.15rem; }
.voice-idx__tags { display: block; font-size: 0.7rem; color: var(--lux-muted); margin-top: 0.2rem; }
.voice-idx__go { font-size: 1.2rem; text-align: center; color: #666; }
.voice-idx__go--ext { font-size: 0.65rem; line-height: 1.3; }

/* --- 詳細カード --- */
.voice-details { margin-top: 2rem; }
.voice-card {
  border: 6px solid #20b2aa;
  border-radius: 24px;
  margin-bottom: 3rem;
  overflow: hidden;
  scroll-margin-top: 5rem;
}
.voice-card--alt { border-color: #808000; }

.voice-card__head {
  background: #aaffff;
  padding: 1rem;
  text-align: center;
}
.voice-card--alt .voice-card__head { background: #ffe4b5; }
.voice-card__name { font-size: 1.6rem; margin: 0; }
.voice-card__course { font-size: 0.75rem; color: var(--lux-muted); margin: 0.3rem 0 0; }
.voice-card__course a { color: var(--lux-green-bright); }

.voice-card__title-bar {
  padding: 0.7rem 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  background: #99cc66;
  color: #2f4f4f;
}
.voice-card--alt .voice-card__title-bar { background: #c5e1a5; }

/* 手書き画像 = メインビジュアル（大きく） */
.voice-card__handwriting {
  margin: 0;
  padding: 1rem;
  text-align: center;
  background: #fffde7;
}
.voice-card__hw-btn {
  display: inline-block;
  border: 3px solid var(--lux-gold);
  border-radius: 8px;
  padding: 4px;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.voice-card__hw-btn:hover { box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35); }
.voice-card__hw-btn img {
  display: block;
  width: 90%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
}
.voice-card__handwriting figcaption {
  font-size: 0.78rem;
  color: #8a6b00;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* プロフィール画像 */
.voice-card__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  text-align: center;
}
.voice-card__profile-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}
.voice-card__profile-img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.voice-card__profile-img.voice-avatar--illust {
  object-fit: contain;
  background: #fff;
  padding: 6px;
  box-sizing: border-box;
}
.voice-card__gender { font-size: 0.78rem; color: var(--lux-muted); }

/* 患者の言葉 */
.voice-card__message {
  margin: 0 1rem 1rem;
  border-radius: 20px;
  overflow: hidden;
  background: #f3ffd8;
}
.voice-card__msg-label {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  background: #ffccbc;
  color: #222;
  border-radius: 20px;
}
.voice-card__msg-body {
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.9;
  color: green;
}
.voice-card__note {
  padding: 0 1rem 0.75rem;
  font-size: 0.72rem;
  color: #8a5a52;
  margin: 0;
}

/* 院長返信 */
.voice-card__reply {
  margin: 0 1rem 1rem;
  border-radius: 20px;
  overflow: hidden;
  background: #eee;
}
.voice-card__reply-label {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  background: #ffccbc;
  color: #222;
  border-radius: 20px;
}
.voice-card__reply-body {
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.85;
  color: #333;
}

/* 症状タグ */
.voice-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.voice-card__tags a, .voice-card__tags span {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(45, 106, 79, 0.08);
  color: var(--lux-green-bright);
  text-decoration: none;
}

/* ミニ CTA */
.voice-card__cta {
  text-align: center;
  padding: 1rem;
  background: rgba(45, 106, 79, 0.04);
  border-top: 1px solid rgba(45, 106, 79, 0.1);
}
.voice-card__cta p { margin: 0 0 0.6rem; font-size: 0.85rem; font-weight: 600; }
.voice-card__cta .button { margin: 0.25rem; }

/* 見出しに戻る */
.voice-card__back {
  text-align: center;
  padding: 1.25rem 1rem;
}
.voice-card__back a {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: #a4c6ff;
  color: #0d47a1;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.voice-card__back a:hover { background: #82b1ff; }

/* --- モーダル --- */
.voice-modal[hidden] { display: none !important; }
.voice-modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.voice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}
.voice-modal__panel {
  position: relative;
  z-index: 1;
  max-width: min(94vw, 780px);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.voice-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.voice-modal__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.voice-modal__caption {
  font-size: 0.82rem;
  text-align: center;
  margin: 0.75rem 0 0;
  color: var(--lux-muted);
}
body.voice-modal-open { overflow: hidden; }

/* ── GCT ゲートコントロール簡略図（2状態切替・縦並びHTML） ── */
.gct-gate-demo {
  margin-bottom: 1.75rem;
}
.gct-gate-demo__intro {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--lux-ink);
}
.gct-gate-demo__flow {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--lux-muted-dark);
}
.gct-gate-demo__flow li + li {
  margin-top: 0.35rem;
}
.gct-gate-demo__frame {
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
  overflow: hidden;
}
.gct-gate-demo__banner-slot {
  display: grid;
  border-top: 1px solid var(--lux-line);
}
.gct-gate-demo__banner {
  grid-area: 1 / 1;
  margin: 0;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
}
.gct-gate-demo__banner--pain {
  visibility: visible;
  background: #fef2f2;
  color: #7f1d1d;
}
.gct-gate-demo__banner--relief {
  visibility: hidden;
  background: #eff6ff;
  color: #1e3a8a;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__banner--pain {
  visibility: hidden;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__banner--relief {
  visibility: visible;
}
.gct-gate-demo__note {
  margin: 1rem 0 0;
}

/* 縦型 SVG 模式図 */
.gct-gate-demo__figure {
  margin: 0;
  padding: 0.75rem 0.75rem 0.5rem;
  overflow: hidden;
}
.gct-gate-demo__input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto 0.5rem;
  padding-top: 0.65rem;
}
.gct-gate-demo__input-cell {
  position: relative;
}
.gct-gate-demo__tap-hint {
  display: none;
  position: absolute;
  top: -0.6rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  border: 2px solid #fff;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.45);
  animation: gct-tap-hint-bounce 1.4s ease-in-out infinite;
}
.gct-gate-demo__tap-hint::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 9px;
  height: 9px;
  background: #0f172a;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}
.gct-gate-demo:not(.is-engaged) .gct-gate-demo__input-cell:not(:has(.is-active)) .gct-gate-demo__tap-hint {
  display: block;
}
.gct-gate-demo.is-engaged .gct-gate-demo__tap-hint {
  display: none !important;
}
@keyframes gct-tap-hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(3px); }
}
.gct-gate-demo__input {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-height: 4.75rem;
  padding: 0.45rem 0.35rem;
  border: 2px solid var(--lux-line);
  border-radius: var(--lux-radius);
  background: var(--lux-white);
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, opacity 0.2s, filter 0.2s, transform 0.2s;
}
.gct-gate-demo__input-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--lux-ink);
}
.gct-gate-demo__input-sub {
  display: block;
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--lux-muted-dark);
}
.gct-gate-demo__input--pain {
  border-color: #c4a484;
  background: #fff7ed;
}
.gct-gate-demo__input--pain .gct-gate-demo__input-title {
  color: #9a3412;
}
.gct-gate-demo__input--pain .gct-gate-demo__input-sub {
  color: #8b5e3c;
}
.gct-gate-demo__input--care {
  border-color: #93c5fd;
  background: #fff;
}
.gct-gate-demo__input--care .gct-gate-demo__input-title {
  color: #1d4ed8;
  font-size: 0.68rem;
}
/* 選択中＝はっきり / 非選択＝グレー */
.gct-gate-demo__input.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1.02);
  border-width: 3px;
}
.gct-gate-demo__input--pain.is-active {
  border-color: #ea580c;
  background: #ffedd5;
  box-shadow: 0 3px 0 #c2410c, 0 0 0 2px rgba(234, 88, 12, 0.15);
}
.gct-gate-demo__input--care.is-active {
  border-color: #2563eb;
  background: #dbeafe;
  box-shadow: 0 3px 0 #1d4ed8, 0 0 0 2px rgba(37, 99, 235, 0.15);
}
.gct-gate-demo__input:not(.is-active) {
  opacity: 0.5;
  filter: grayscale(0.45);
  border-color: #d6d3d1;
  background: #f5f5f4;
  border-width: 2px;
  box-shadow: none;
  transform: none;
}
.gct-gate-demo__input:not(.is-active) .gct-gate-demo__input-title,
.gct-gate-demo__input:not(.is-active) .gct-gate-demo__input-sub {
  color: #78716c;
}
.gct-gate-demo:not(.is-engaged) .gct-gate-demo__input-cell:not(:has(.is-active)) .gct-gate-demo__input {
  animation: gct-btn-invite 1.8s ease-in-out infinite;
}
@keyframes gct-btn-invite {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0); }
  50% { box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.2); }
}
.gct-gate-demo__input:not(.is-active):hover {
  opacity: 0.68;
  filter: grayscale(0.2);
}
.gct-gate-demo__input.is-active:hover {
  filter: brightness(0.98);
}
.gct-gate-demo__svg {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}
.gct-gate-demo__caption {
  margin: 0.5rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
  color: var(--lux-muted);
}
.gct-gate-demo__t {
  font-family: system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 12px;
}
.gct-gate-demo__t--strong {
  font-size: 13px;
  font-weight: 700;
}

/* 経路の色（痛み＝茶 / セルフケア＝青） */
.gct-gate-demo__route-pain,
.gct-gate-demo__route-site,
.gct-gate-demo__route-main {
  color: #b45309;
}
.gct-gate-demo__route-abeta {
  color: #2563eb;
}

/* 初期：②用要素は非表示 */
.gct-gate-demo__route-abeta,
.gct-gate-demo__gate-bar-full,
.gct-gate-demo__gate-closed,
.gct-gate-demo__tag-block,
.gct-gate-demo__tag-i-stop,
.gct-gate-demo__tag-signal-relief,
.gct-gate-demo__tag--ok {
  opacity: 0;
}
.gct-gate-demo__gate-open,
.gct-gate-demo__gate-seg-left,
.gct-gate-demo__gate-seg-right,
.gct-gate-demo__tag-signal-pain {
  opacity: 1;
}
.gct-gate-demo__tag--hurt {
  opacity: 1;
}

/* ① 痛いとき */
.gct-gate-demo[data-state="pain"] .gct-gate-demo__route-abeta,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__gate-bar-full,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__gate-closed,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__tag-block,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__tag-i-stop,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__tag-signal-relief,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__tag--ok {
  opacity: 0;
}
.gct-gate-demo[data-state="pain"] .gct-gate-demo__route-pain,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__route-site,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__route-main {
  opacity: 1;
  color: #b45309;
}
.gct-gate-demo[data-state="pain"] .gct-gate-demo__gate-seg-left,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__gate-seg-right,
.gct-gate-demo[data-state="pain"] .gct-gate-demo__gate-open {
  opacity: 1;
}
.gct-gate-demo[data-state="pain"] .gct-gate-demo__gate-closed {
  opacity: 0;
}
.gct-gate-demo[data-state="pain"] .gct-gate-demo__tag-signal-pain {
  opacity: 1;
}
.gct-gate-demo[data-state="pain"] .gct-gate-demo__tag-signal-relief {
  opacity: 0;
}
.gct-gate-demo[data-state="pain"] .gct-gate-demo__brain-pain {
  opacity: 1;
}
.gct-gate-demo[data-state="pain"] .gct-gate-demo__tag--hurt {
  opacity: 1;
}
.gct-gate-demo[data-state="pain"] .gct-gate-demo__tag--ok {
  opacity: 0;
}

/* ② セルフケア — 痛みはT細胞まで、ゲート以降を遮断 */
.gct-gate-demo[data-state="relief"] .gct-gate-demo__route-pain,
.gct-gate-demo[data-state="relief"] .gct-gate-demo__route-site,
.gct-gate-demo[data-state="relief"] .gct-gate-demo__route-i-t,
.gct-gate-demo[data-state="relief"] .gct-gate-demo__route-t-gate {
  opacity: 0.85;
  color: #b45309;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__route-abeta {
  opacity: 1;
  color: #2563eb;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__node-i circle {
  stroke: #ca8a04;
  stroke-width: 2.5;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__route-gate-brain {
  color: #a8a29e;
  opacity: 0.35;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__tag-signal-pain {
  opacity: 0;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__tag-signal-relief,
.gct-gate-demo[data-state="relief"] .gct-gate-demo__tag-i-stop {
  opacity: 1;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__gate-seg-left,
.gct-gate-demo[data-state="relief"] .gct-gate-demo__gate-seg-right,
.gct-gate-demo[data-state="relief"] .gct-gate-demo__gate-open {
  opacity: 0;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__gate-bar-full,
.gct-gate-demo[data-state="relief"] .gct-gate-demo__gate-closed,
.gct-gate-demo[data-state="relief"] .gct-gate-demo__tag-block {
  opacity: 1;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__brain-pain {
  opacity: 0;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__tag--hurt {
  opacity: 0;
}
.gct-gate-demo[data-state="relief"] .gct-gate-demo__tag--ok {
  opacity: 1;
}

.gct-gate-demo__gate-bar-full,
.gct-gate-demo__gate-seg-left,
.gct-gate-demo__gate-seg-right {
  transition: opacity 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
}
.gct-gate-demo.is-switching .gct-gate-demo__gate-bar-full,
.gct-gate-demo.is-switching .gct-gate-demo__gate-seg-left,
.gct-gate-demo.is-switching .gct-gate-demo__gate-seg-right {
  animation: gct-gate-highlight 0.8s ease-in-out 1;
}
@keyframes gct-gate-highlight {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}
.gct-gate-demo__route-pain,
.gct-gate-demo__route-site,
.gct-gate-demo__route-abeta,
.gct-gate-demo__route-main,
.gct-gate-demo__route-i-t,
.gct-gate-demo__route-t-gate,
.gct-gate-demo__route-gate-brain {
  transition: opacity 0.3s ease, color 0.3s ease;
}
.gct-gate-demo__gate-open,
.gct-gate-demo__gate-closed,
.gct-gate-demo__tag-block,
.gct-gate-demo__tag-i-stop,
.gct-gate-demo__tag-signal-pain,
.gct-gate-demo__tag-signal-relief,
.gct-gate-demo__tag--hurt,
.gct-gate-demo__tag--ok,
.gct-gate-demo__brain-pain {
  transition: opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .gct-gate-demo__tap-hint,
  .gct-gate-demo:not(.is-engaged) .gct-gate-demo__input-cell:not(:has(.is-active)) .gct-gate-demo__input,
  .gct-gate-demo.is-switching .gct-gate-demo__gate-bar-full,
  .gct-gate-demo.is-switching .gct-gate-demo__gate-seg-left,
  .gct-gate-demo.is-switching .gct-gate-demo__gate-seg-right {
    animation: none;
  }
  .gct-gate-demo__gate-bar-full,
  .gct-gate-demo__route-pain,
  .gct-gate-demo__route-site,
  .gct-gate-demo__route-abeta,
  .gct-gate-demo__route-main,
  .gct-gate-demo__route-i-t,
  .gct-gate-demo__route-t-gate,
  .gct-gate-demo__route-gate-brain,
  .gct-gate-demo__gate-open,
  .gct-gate-demo__gate-closed,
  .gct-gate-demo__tag-block,
  .gct-gate-demo__tag-i-stop,
  .gct-gate-demo__tag-signal-pain,
  .gct-gate-demo__tag-signal-relief,
  .gct-gate-demo__tag--hurt,
  .gct-gate-demo__tag--ok,
  .gct-gate-demo__brain-pain {
    transition: none;
  }
}

/* ─── /type/ タイプカード ─── */
.pain-type-intro {
  margin: 0 0 1.25rem;
}
.pain-type-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.pain-type-nav a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: left;
  text-decoration: none;
  color: var(--lux-ink);
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: 10px;
  box-shadow: var(--lux-shadow-soft);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.pain-type-nav a:hover {
  border-color: var(--lux-green-bright);
  box-shadow: 0 2px 12px rgba(45, 106, 90, 0.12);
}
.pain-type-nav__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lux-white);
  background: var(--lux-green);
  border-radius: 50%;
}
.pain-type-nav__text {
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
}
.pain-type-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pain-type-card {
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  overflow: hidden;
  box-shadow: var(--lux-shadow-soft);
  scroll-margin-top: 5.5rem;
}
.pain-type-card--tone-a {
  border-left: 4px solid #c9768e;
}
.pain-type-card--tone-b {
  border-left: 4px solid var(--lux-green-bright);
}
.pain-type-card--featured {
  border-color: var(--lux-gold-mid);
  border-left-width: 4px;
  border-left-color: var(--lux-gold);
  box-shadow: 0 3px 18px rgba(80, 68, 48, 0.1);
}
.pain-type-card--positive {
  border-left: 4px solid var(--lux-green);
  background: linear-gradient(180deg, rgba(45, 106, 90, 0.05) 0%, var(--lux-white) 12%);
}
.pain-type-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem 0.85rem;
  background: var(--lux-paper);
  border-bottom: 1px solid var(--lux-line);
}
.pain-type-card--positive .pain-type-card__head {
  background: rgba(45, 106, 90, 0.07);
}
.pain-type-card__num {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lux-white);
  background: var(--lux-green);
  border-radius: 50%;
}
.pain-type-card--tone-a .pain-type-card__num {
  background: #c9768e;
}
.pain-type-card--featured .pain-type-card__num {
  background: var(--lux-gold);
  color: var(--lux-ink);
}
.pain-type-card--positive .pain-type-card__num {
  background: var(--lux-green-bright);
}
.pain-type-card__heading {
  flex: 1;
  min-width: 0;
}
.pain-type-card__label {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lux-muted);
}
.pain-type-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--lux-ink);
}
.pain-type-card__body {
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--lux-muted-dark);
}
.pain-type-card__body p {
  margin: 0 0 0.9rem;
}
.pain-type-card__body p:last-child {
  margin-bottom: 0;
}
.pain-type-card__note {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--lux-paper-2);
  border-radius: 8px;
  border-left: 3px solid var(--lux-gold);
  font-size: 0.92rem;
  line-height: 1.8;
}
.pain-type-card__note p {
  margin: 0 0 0.75rem;
}
.pain-type-card__note p:last-child {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .pain-type-nav a {
    padding: 0.95rem 1.15rem;
    font-size: 0.95rem;
  }
  .pain-type-card__head {
    padding: 1.15rem 1.35rem 1rem;
  }
  .pain-type-card__body {
    padding: 1.15rem 1.35rem 1.25rem;
  }
}

/* ─── 自律神経ページ：交感／副交感比較 ─── */
.autonomic-flame {
  max-width: 960px;
  margin: 1.5rem auto 1.25rem;
}
.autonomic-flame__video {
  max-width: none;
  margin: 0;
}
.autonomic-flame.symptom-figure figcaption {
  margin-top: 0;
  padding: 1rem 1.15rem 1.15rem;
  text-align: left;
}
.autonomic-flame .autonomic-compare {
  margin: 0 0 0.85rem;
}
.autonomic-flame__lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--lux-muted-dark);
}
.autonomic-compare {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}
@media (min-width: 560px) {
  .autonomic-compare {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.autonomic-compare__card {
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--lux-shadow-soft);
}
.autonomic-compare__card--sympathetic {
  border-left: 4px solid #c0392b;
}
.autonomic-compare__card--parasympathetic {
  border-left: 4px solid #2471a3;
}
.autonomic-compare__card h3 {
  margin: 0 0 0.65rem;
  padding: 0;
  border: none;
  font-size: 1rem;
  line-height: 1.45;
}
.autonomic-compare__card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.85;
}

/* ─── 自律神経ページ：シーソー比較アニメ ─── */
.autonomic-seesaw-compare {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 1.15rem 1rem 1rem;
  background: var(--lux-paper-2);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
}
.autonomic-seesaw-compare--in-about {
  margin: 1.15rem 0 0.75rem;
}
#evidence-hotcold,
#evidence-stomatitis,
#director-sun-stomatitis,
#symptom-stress-entry,
#approach-case-1996 {
  scroll-margin-top: 5.5rem;
}
@media (min-width: 720px) {
  .autonomic-seesaw-compare {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.15rem;
  }
}
.autonomic-seesaw-compare__arrow {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lux-green-bright);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.autonomic-seesaw-compare__arrow::after {
  content: "↓";
  display: block;
  font-size: 1.15rem;
  line-height: 1;
}
@media (min-width: 720px) {
  .autonomic-seesaw-compare__arrow {
    flex-direction: row;
    gap: 0.35rem;
  }
  .autonomic-seesaw-compare__arrow::after {
    content: "→";
    font-size: inherit;
    display: inline;
  }
}
@media (max-width: 719px) {
  .autonomic-seesaw-compare__arrow {
    order: 2;
  }
  .autonomic-seesaw-panel--violent { order: 1; }
  .autonomic-seesaw-panel--gentle { order: 3; }
  .autonomic-seesaw-compare__copyright { order: 4; }
}
.autonomic-seesaw-compare__copyright {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid #c9a227;
  border-left: 4px solid #a93226;
  border-radius: var(--lux-radius);
  background: var(--lux-white);
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--lux-muted-dark);
}
.autonomic-seesaw-compare__copyright-heading {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  color: var(--lux-ink);
}
.autonomic-seesaw-compare__copyright p {
  margin: 0 0 0.55rem;
}
.autonomic-seesaw-compare__copyright p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--lux-ink);
}
.autonomic-seesaw-compare__copyright ul {
  margin: 0 0 0.55rem;
  padding-left: 1.15rem;
}
.autonomic-seesaw-compare__copyright li {
  margin: 0.2rem 0;
}
.autonomic-seesaw-panel {
  margin: 0;
}
.autonomic-seesaw-panel__title {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--lux-ink);
  text-align: center;
}
.autonomic-seesaw-panel--violent .autonomic-seesaw-panel__title {
  color: #a93226;
}
.autonomic-seesaw-panel--gentle .autonomic-seesaw-panel__title {
  color: var(--lux-green);
}
.autonomic-seesaw__stage {
  position: relative;
  height: 156px;
  max-width: 280px;
  margin: 0 auto;
}
.autonomic-seesaw__arm {
  position: absolute;
  left: 50%;
  bottom: 54px;
  display: flex;
  width: min(100%, 260px);
  transform: translateX(-50%);
  transform-origin: 50% 100%;
}
.autonomic-seesaw__side {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3rem;
  padding-bottom: 0.45rem;
}
.autonomic-seesaw__side--sym { align-items: flex-start; padding-left: 0.15rem; }
.autonomic-seesaw__side--para { align-items: flex-end; padding-right: 0.15rem; }
.autonomic-seesaw__label {
  display: inline-block;
  transform-origin: center center;
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 600;
  text-align: center;
  color: var(--lux-ink);
}
.autonomic-seesaw__label small {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lux-muted-dark);
}
.autonomic-seesaw__weight {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  box-shadow: inset 0 -3px 8px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.12);
}
.autonomic-seesaw__weight--sym {
  background: radial-gradient(circle at 35% 30%, #ff6b4a, #c0392b 55%, #922b21);
}
.autonomic-seesaw__weight--para {
  background: radial-gradient(circle at 35% 30%, #5dade2, #2471a3 55%, #1a5276);
}
.autonomic-seesaw__arm::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #c0392b 0%, #c0392b 48%, #555 48%, #555 52%, #2471a3 52%, #2471a3 100%);
  z-index: 1;
}
.autonomic-seesaw__fulcrum {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 22px solid #666;
  transform: translateX(-50%);
  z-index: 2;
}
.autonomic-seesaw__fulcrum::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  width: 120px;
  height: 4px;
  margin-left: -60px;
  background: #888;
  border-radius: 2px;
}
.autonomic-seesaw__arm--violent {
  animation: autonomic-seesaw-violent 1.25s ease-in-out infinite alternate;
}
.autonomic-seesaw__arm--violent .autonomic-seesaw__label {
  animation: autonomic-seesaw-label-violent 1.25s ease-in-out infinite alternate;
}
.autonomic-seesaw__arm--gentle {
  animation: autonomic-seesaw-gentle 4.2s ease-in-out infinite alternate;
}
.autonomic-seesaw__arm--gentle .autonomic-seesaw__label {
  animation: autonomic-seesaw-label-gentle 4.2s ease-in-out infinite alternate;
}
@keyframes autonomic-seesaw-violent {
  from { transform: translateX(-50%) rotate(-36deg); }
  to   { transform: translateX(-50%) rotate(36deg); }
}
@keyframes autonomic-seesaw-label-violent {
  from { transform: rotate(36deg); }
  to   { transform: rotate(-36deg); }
}
@keyframes autonomic-seesaw-gentle {
  from { transform: translateX(-50%) rotate(-8deg); }
  to   { transform: translateX(-50%) rotate(8deg); }
}
@keyframes autonomic-seesaw-label-gentle {
  from { transform: rotate(8deg); }
  to   { transform: rotate(-8deg); }
}
.autonomic-seesaw-panel__note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--lux-muted-dark);
}
@media (prefers-reduced-motion: reduce) {
  .autonomic-seesaw__arm--violent,
  .autonomic-seesaw__arm--gentle {
    animation: none;
  }
  .autonomic-seesaw__arm--violent .autonomic-seesaw__label,
  .autonomic-seesaw__arm--gentle .autonomic-seesaw__label {
    animation: none;
  }
  .autonomic-seesaw__arm--violent {
    transform: translateX(-50%) rotate(-22deg);
  }
  .autonomic-seesaw__arm--violent .autonomic-seesaw__label {
    transform: rotate(22deg);
  }
  .autonomic-seesaw__arm--gentle {
    transform: translateX(-50%) rotate(-5deg);
  }
  .autonomic-seesaw__arm--gentle .autonomic-seesaw__label {
    transform: rotate(5deg);
  }
}

/* ─── 自律神経ページ：症状カード内レイアウト ─── */
.page-autonomic .autonomic-stress-entry {
  margin: 1.35rem 0 1.75rem;
  padding: 1.15rem 1.1rem 1.05rem;
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  background: linear-gradient(165deg, var(--lux-paper-2) 0%, var(--lux-white) 100%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.page-autonomic .autonomic-stress-entry__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--lux-ink);
}
.page-autonomic .autonomic-chain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  counter-reset: autonomic-chain;
}
.page-autonomic .autonomic-chain li {
  position: relative;
  margin: 0;
  padding: 0.65rem 0.75rem 0.65rem 2.65rem;
  border-radius: calc(var(--lux-radius) - 2px);
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  font-size: 0.9rem;
  line-height: 1.72;
  counter-increment: autonomic-chain;
}
.page-autonomic .autonomic-chain li::before {
  content: counter(autonomic-chain);
  position: absolute;
  left: 0.75rem;
  top: 0.62rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lux-white);
  background: linear-gradient(145deg, #c0392b, #922b21);
}
@media (min-width: 720px) {
  .page-autonomic .autonomic-chain {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .page-autonomic .autonomic-chain li:nth-child(4) {
    grid-column: 1 / -1;
  }
}
.page-autonomic .autonomic-symptom-body {
  display: grid;
  gap: 0.85rem;
}
.page-autonomic .autonomic-symptom-panel {
  margin: 0;
  padding: 0.95rem 1rem 0.9rem;
  border-radius: calc(var(--lux-radius) - 2px);
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-left-width: 4px;
}
.page-autonomic .autonomic-symptom-panel--cause { border-left-color: #c0392b; }
.page-autonomic .autonomic-symptom-panel--rebound { border-left-color: #2471a3; }
.page-autonomic .autonomic-symptom-panel--episode { border-left-color: #b7950b; background: #fffdf5; }
.page-autonomic .autonomic-symptom-panel--link { border-left-color: #7d6608; }
.page-autonomic .autonomic-symptom-panel--takeaway { border-left-color: var(--lux-green-bright); background: var(--lux-paper-2); }
.page-autonomic .autonomic-symptom-panel__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lux-muted-dark);
}
.page-autonomic .autonomic-symptom-panel p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.82;
}
.page-autonomic .autonomic-symptom-panel p + p,
.page-autonomic .autonomic-symptom-panel p + ul {
  margin-top: 0.7rem;
}
.page-autonomic .autonomic-voice {
  margin: 0.65rem 0 0;
  padding: 0.75rem 0.85rem;
  border-left: 3px solid #b7950b;
  border-radius: 0 var(--lux-radius) var(--lux-radius) 0;
  background: rgba(183, 149, 11, 0.08);
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--lux-ink);
}
.page-autonomic .autonomic-voice p {
  margin: 0;
}
.page-autonomic .autonomic-voice p + p {
  margin-top: 0.55rem;
}
.page-autonomic .autonomic-metaphor-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
@media (min-width: 640px) {
  .page-autonomic .autonomic-metaphor-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.page-autonomic .autonomic-metaphor-card {
  margin: 0;
  padding: 0.85rem 0.9rem;
  border-radius: calc(var(--lux-radius) - 2px);
  border: 1px solid var(--lux-line);
  font-size: 0.88rem;
  line-height: 1.75;
}
.page-autonomic .autonomic-metaphor-card--life {
  background: linear-gradient(165deg, #eafaf1 0%, var(--lux-white) 100%);
  border-color: #a9dfbf;
}
.page-autonomic .autonomic-metaphor-card--daily {
  background: linear-gradient(165deg, #fdedec 0%, var(--lux-white) 100%);
  border-color: #f5b7b1;
}
.page-autonomic .autonomic-metaphor-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.page-autonomic .autonomic-role-list {
  margin: 0.55rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.75;
}
.page-autonomic .autonomic-role-list li + li {
  margin-top: 0.35rem;
}
.page-autonomic .autonomic-case-teaser {
  margin: 1.25rem 0 0;
  padding: 1rem 1.05rem;
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  background: var(--lux-paper-2);
}
.page-autonomic .autonomic-case-teaser__label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--lux-muted-dark);
}
.page-autonomic .autonomic-case-teaser p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
}
.page-autonomic .autonomic-case-teaser p + p {
  margin-top: 0.65rem;
}
.page-autonomic .autonomic-metaphor-grid + p {
  margin-top: 0.75rem;
}
.page-autonomic .pain-type-card__body.autonomic-symptom-body {
  padding-top: 0.15rem;
}

/* ─── 鎮痛薬ページ（/otsukadai-drugstore/chintsu-yaku/ 等） ─── */
.drug-mech-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}
@media (min-width: 640px) {
  .drug-mech-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.drug-mech-card {
  background: var(--lux-paper-2);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  padding: 1.1rem 1.2rem;
  margin: 0;
}
.drug-mech-card--wide {
  grid-column: 1 / -1;
}
.drug-mech-card__title {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 0.7rem;
  padding: 0;
  border: none;
  line-height: 1.45;
  color: var(--lux-ink);
}
.symptom-section .drug-mech-card__title {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.drug-mech-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.78;
}
.drug-mech-card p + p {
  margin-top: 0.75rem;
}

.drug-policy-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
}
@media (min-width: 640px) {
  .drug-policy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.drug-policy-grid .symptom-key-box {
  margin-bottom: 0;
  height: 100%;
}
.drug-policy-box--wide {
  grid-column: 1 / -1;
}
.drug-policy-box__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--lux-gold);
  margin: 0 0 0.65rem;
}

.drug-product-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 0;
  max-width: 720px;
}
.drug-product-card {
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  padding: 1.15rem 1.25rem 1.2rem;
  box-shadow: var(--lux-shadow-soft);
}
.drug-product-card__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--lux-line);
}
.drug-product-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  padding: 0;
  border: none;
  line-height: 1.4;
  color: var(--lux-ink);
}
.symptom-section .drug-product-card__title {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.drug-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.drug-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.22em 0.55em;
  border-radius: 4px;
  background: var(--lux-paper-2);
  border: 1px solid var(--lux-line);
  color: var(--lux-muted-dark);
  line-height: 1.35;
}
.drug-tag--accent {
  border-color: var(--lux-gold-mid);
  color: var(--lux-gold);
}
.drug-spec {
  margin: 0;
}
.drug-spec__row {
  display: grid;
  grid-template-columns: 4.8em 1fr;
  gap: 0.45rem 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.88rem;
  line-height: 1.7;
}
.drug-spec__row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.drug-spec dt {
  margin: 0;
  font-size: 0.78em;
  font-weight: 600;
  color: var(--lux-muted-dark);
  letter-spacing: 0.02em;
}
.drug-spec dd {
  margin: 0;
}
.drug-product-card__note {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.9rem;
  background: var(--lux-paper-2);
  border-radius: 8px;
  border-left: 3px solid var(--lux-gold);
  font-size: 0.88rem;
  line-height: 1.75;
}
@media (max-width: 480px) {
  .drug-spec__row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .drug-spec dt {
    font-size: 0.74em;
  }
}

/* ─── 重要事項説明ハブ（/important_matter_explanation/） ─── */
.ime-start-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.ime-start-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0;
  padding: 1rem 1.1rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
}
.ime-start-card__num {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lux-gold);
  color: var(--lux-white);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}
.ime-start-card__body {
  flex: 1;
  min-width: 0;
}
.ime-start-card__title {
  margin: 0 0 0.35rem;
  padding: 0;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
}
.symptom-section .ime-start-card__title {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.ime-start-card__title a {
  color: var(--lux-ink);
  text-decoration: none;
}
.ime-start-card__title a:hover {
  color: var(--lux-gold-dark, #8a6d2f);
  text-decoration: underline;
}
.ime-start-card__body > p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--lux-muted-dark);
}
.ime-pdf-note {
  margin-top: 1.25rem;
}
.ime-pdf-note p:last-child {
  margin-bottom: 0;
}

/* ─── 重要事項説明ハブ：PDF目次（/important_matter_explanation/） ─── */
.ime-doc-toc {
  margin-top: 1.35rem;
}
.ime-doc-toc:first-of-type {
  margin-top: 0.5rem;
}
.ime-doc-toc__heading {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 0.65rem;
  padding: 0 0 0.5rem;
  border: none;
  border-bottom: 2px solid var(--lux-gold);
  color: var(--lux-ink);
}
.symptom-section .ime-doc-toc__heading {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.ime-doc-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.ime-doc-toc__item {
  display: grid;
  gap: 0.35rem 0.75rem;
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
}
@media (min-width: 640px) {
  .ime-doc-toc__item {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .ime-doc-toc__actions {
    align-self: center;
  }
  .ime-doc-toc__related {
    grid-column: 1 / -1;
  }
}
.ime-doc-toc__label {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--lux-ink);
}
.ime-doc-toc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ime-doc-toc__link {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
}
.ime-doc-toc__link--web {
  color: var(--lux-white);
  background: var(--lux-gold-dark, #8a6d2f);
}
.ime-doc-toc__link--web:hover {
  background: var(--lux-gold);
  color: var(--lux-white);
}
.ime-doc-toc__link--pdf {
  color: var(--lux-ink);
  background: var(--lux-paper-2);
  border: 1px solid var(--lux-line);
}
.ime-doc-toc__link--pdf:hover {
  border-color: var(--lux-gold);
  color: var(--lux-gold-dark, #8a6d2f);
}
.ime-doc-toc__related {
  margin-top: 0.15rem;
  padding: 0.65rem 0.75rem;
  background: var(--lux-paper-2);
  border-radius: calc(var(--lux-radius) - 2px);
  border-left: 3px solid var(--lux-gold);
}
.ime-doc-toc__related-lead {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--lux-muted-dark);
}
.ime-doc-toc__related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ime-doc-toc__link--related {
  color: var(--lux-gold-dark, #8a6d2f);
  background: var(--lux-white);
  border: 1px solid var(--lux-gold);
}
.ime-doc-toc__link--related:hover {
  background: var(--lux-gold-dark, #8a6d2f);
  color: var(--lux-white);
  border-color: var(--lux-gold-dark, #8a6d2f);
}

/* ─── 無段階調整（/medical-fee_standard/）タイプ別カード ─── */
.patient-type-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 0;
}
@media (min-width: 720px) {
  .patient-type-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.15rem;
  }
  .patient-type-card--solo,
  .patient-type-card--wide {
    grid-column: 1 / -1;
  }
}
.patient-type-card {
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
  padding: 1rem 1.1rem 1.05rem;
}
.patient-type-card__heading {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 0.75rem;
  padding: 0 0 0.65rem;
  border: none;
  border-bottom: 2px solid var(--lux-gold);
  color: var(--lux-ink);
}
.symptom-section .patient-type-card__heading {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.patient-type-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.patient-type-card__list--scale {
  counter-reset: patient-scale;
}
.patient-type-card__item {
  margin: 0;
  padding: 0.65rem 0.75rem 0.65rem 0.85rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--lux-muted-dark);
  background: var(--lux-paper-2);
  border-radius: calc(var(--lux-radius) - 2px);
  border-left: 3px solid var(--lux-line);
}
.patient-type-card__list--scale .patient-type-card__item {
  position: relative;
  padding-left: 2.5rem;
  border-left-color: var(--lux-gold);
}
.patient-type-card__list--scale .patient-type-card__item::before {
  counter-increment: patient-scale;
  content: counter(patient-scale);
  position: absolute;
  left: 0.75rem;
  top: 0.62rem;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lux-gold);
  color: var(--lux-white);
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.patient-type-card__list--scale .patient-type-card__item:nth-child(5) {
  border-left-color: #8a6d2f;
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.12), var(--lux-paper-2) 55%);
}
.patient-type-card__ref {
  margin: 0.35rem 0 0.75rem;
  text-align: right;
  font-size: 0.88rem;
  line-height: 1.6;
}
.patient-type-card__ref a {
  font-weight: 600;
  color: var(--lux-green-bright);
  text-decoration: none;
}
.patient-type-card__ref a:hover {
  text-decoration: underline;
}
.patient-type-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--lux-muted-dark);
}

/* ─── メンバー制度ページ（/gold/） ─── */
.page-gold .symptom-hero__deck strong {
  color: var(--lux-champagne);
  font-weight: 600;
}
.page-gold .symptom-section--highlight .symptom-pull {
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
  text-align: center;
  border-left: none;
  border-radius: var(--lux-radius);
  background: var(--lux-paper);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.35);
}
.page-gold .patient-type-card > p {
  margin: 0.9rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--lux-line);
  font-size: 0.88rem;
  line-height: 1.6;
}
.page-gold .patient-type-card > p a {
  font-weight: 600;
  color: var(--lux-green-bright);
  text-decoration: none;
}
.page-gold .patient-type-card > p a:hover {
  text-decoration: underline;
}

/* 矢印以降だけ赤系で目立たせる（/gold/） */
.cause-list .member-match__answer {
  color: #b33a2e;
  font-weight: 700;
}

/* 宮日「元気のススメ」連載ナビ */
.genki-susume-nav {
  margin: 0 0 1.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--lux-radius);
  background: var(--lux-paper);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.35);
}
.genki-susume-nav__heading {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--lux-ink-muted);
}
.genki-susume-nav__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.genki-susume-nav__link {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
  color: var(--lux-ink);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 0 0 1px var(--lux-line);
}
a.genki-susume-nav__link:hover {
  color: var(--lux-green-bright);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.55);
}
.genki-susume-nav__item.is-current .genki-susume-nav__link {
  font-weight: 600;
  color: var(--lux-green-deep);
  background: rgba(201, 169, 98, 0.12);
  box-shadow: inset 0 0 0 2px rgba(201, 169, 98, 0.45);
}

.genki-susume-nav__item.is-unpublished .genki-susume-nav__link {
  color: var(--lux-ink-muted);
  cursor: default;
}

.genki-susume-nav__soon {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--lux-ink-muted);
}

.genki-susume-nav__num {
  display: block;
  font-size: 0.78rem;
  color: var(--lux-ink-muted);
}
.genki-susume-nav__title {
  display: block;
}

/* §5-3 デザイン — 以下は F′「元気のススメ」4連載の実装。全ページ共通方針は page-sakusei-rule §5-3 */
.page-genki-susume .genki-susume-editorial-note {
  max-width: 42rem;
  margin: 0 auto 1rem;
  padding: 0 1.25rem;
}

.page-genki-susume .genki-susume-page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}

.page-genki-susume .genki-susume-article {
  margin: 0 0 2rem;
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: var(--lux-radius);
  background: var(--lux-paper);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.28);
}

.page-genki-susume .genki-susume-article__byline {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--lux-ink-muted);
}

.page-genki-susume .genki-susume-article__summary {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.35rem;
  background: rgba(201, 169, 98, 0.1);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.35);
  font-size: 0.98rem;
  line-height: 1.7;
}

.page-genki-susume .genki-susume-article__summary p {
  margin: 0;
}

.page-genki-susume .genki-susume-article__content {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--lux-ink);
}

.page-genki-susume .genki-susume-article__content > :first-child {
  margin-top: 0;
}

.page-genki-susume .genki-susume-article__content p {
  margin: 0 0 1.1rem;
}

.page-genki-susume .genki-susume-article__content h3 {
  margin: 1.75rem 0 0.65rem;
  padding-left: 0.65rem;
  border-left: 3px solid rgba(201, 169, 98, 0.75);
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--lux-green-deep);
}

.page-genki-susume .genki-susume-article__content .symptom-note {
  margin: 0.75rem 0 1rem;
  font-size: 0.9rem;
}

.page-genki-susume .genki-susume-article__content .genki-susume-inline-figure {
  margin: 0.25rem 0 1.5rem;
}

.page-genki-susume .genki-susume-block {
  margin: 0 0 2.25rem;
  padding: 0;
}

.page-genki-susume .genki-susume-block > h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lux-green-deep);
  letter-spacing: 0.02em;
}

.page-genki-susume .genki-susume-block > p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

/* ─── スタッフ：資格ギャラリー（人ごとのパネル） ─── */
.staff-shikaku-subheading {
  margin: 2rem 0 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lux-line);
  font-size: 1.05rem;
  color: var(--lux-ink);
}
.staff-shikaku-panel {
  margin-top: 1rem;
  padding: 1.25rem 1rem 1rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
}
.staff-shikaku-panel__head {
  margin-bottom: 1rem;
}
.staff-shikaku-panel__role {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--lux-muted-dark);
  text-transform: uppercase;
}
.staff-shikaku-panel__name {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--lux-ink);
}
.staff-shikaku-panel__lead {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--lux-muted-dark);
}
.staff-shikaku-panel__link {
  margin: 0;
  font-size: 0.9rem;
}
.staff-shikaku-panel__note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--lux-muted-dark);
}
.staff-shikaku-figures {
  margin-top: 0;
}
@media (min-width: 720px) {
  .staff-shikaku-panel {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .staff-shikaku-figures {
    grid-template-columns: repeat(3, 1fr);
  }
}
.staff-shikaku-figures .symptom-figure--portrait img {
  max-width: 220px;
}

.page-genki-susume .genki-susume-block .symptom-figures {
  margin-top: 0.5rem;
}

.page-genki-susume .genki-susume-block--faq {
  padding: 1.25rem 1.1rem 1.35rem;
  border-radius: var(--lux-radius);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px var(--lux-line);
}

.page-genki-susume .genki-susume-block--related .related-grid {
  margin-top: 0.25rem;
}

.page-genki-susume .genki-susume-hero.symptom-hero .genki-susume-hero__lead {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(240, 236, 228, 0.92);
}

.page-genki-susume .author-bar {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
