/* ═══════════════════════════════════════════
   es5000.css — 伊藤超短波 ES-5000 専用ページ
   前提: top.css + symptom.css（ボタン・caution-box 等）
   ═══════════════════════════════════════════ */

.page-es5000 {
  --es-accent: #2a6b7a;
  --es-accent-soft: #e8f2f4;
  --es-accent-glow: rgba(42, 107, 122, 0.12);
  --es-ink-band: #1c2228;
  background: var(--lux-paper, #f0ece4);
}

/* 症状LPと同じ基準（symptom.css）。max-width のみ上書き */
.page-es5000 .breadcrumb {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* ─── ヒーロー ─── */
.es5000-hero {
  position: relative;
  background: var(--es-ink-band);
  color: var(--lux-champagne);
  overflow: hidden;
}
.es5000-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(42, 107, 122, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 90%, rgba(201, 169, 98, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #252a30 0%, #1a1f24 48%, #12161a 100%);
  pointer-events: none;
}
.es5000-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 48px,
    rgba(255, 255, 255, 0.015) 48px,
    rgba(255, 255, 255, 0.015) 49px
  );
  pointer-events: none;
}
/* ヒーロー：スマホ基準 → 900px 以上で2カラム */
.es5000-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.es5000-hero__copy {
  order: 1;
}
.es5000-hero__aside {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 900px) {
  .es5000-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    padding: clamp(3.25rem, 7vw, 4.5rem) 1.25rem clamp(2.5rem, 5vw, 3.5rem);
    align-items: start;
  }
  .es5000-hero__copy,
  .es5000-hero__aside {
    order: unset;
  }
  .es5000-hero__aside {
    gap: 1.15rem;
  }
}
.es5000-hero__eyebrow {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--lux-gold);
}
.es5000-device-shot {
  margin: 0;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.es5000-device-shot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 10.5rem;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}
@media (min-width: 900px) {
  .es5000-device-shot img {
    max-height: none;
    object-fit: unset;
    object-position: unset;
  }
}
.es5000-device-shot figcaption {
  margin: 0.55rem 0 0;
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(232, 226, 216, 0.55);
  text-align: center;
}
.es5000-device-shot a {
  color: var(--lux-gold);
  text-decoration: none;
}
.es5000-device-shot a:hover { text-decoration: underline; }
.es5000-credit {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--lux-muted);
}
.es5000-credit a { color: var(--lux-green-bright); }

/* ─── コラム・症例ボックス ─── */
.es5000-column {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.35rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-left: 4px solid var(--es-accent);
  border-radius: 0 10px 10px 0;
  box-shadow: var(--lux-shadow-soft);
}
.es5000-column h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lux-ink);
}
.es5000-column p,
.es5000-column li {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--lux-muted-dark);
}
.es5000-column p { margin: 0 0 0.85rem; }
.es5000-column p:last-child { margin-bottom: 0; }
.es5000-column ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}
.es5000-column li { margin-bottom: 0.35rem; }
.es5000-diagram {
  margin: 1rem 0;
  padding: 1rem;
  background: var(--es-accent-soft);
  border-radius: 8px;
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--lux-ink);
}
.es5000-diagram strong { color: var(--es-accent); }
.es5000-column__badge {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--es-accent);
  background: var(--es-accent-soft);
  border-radius: 4px;
}
.es5000-column__badge--staff {
  color: var(--lux-ink);
  background: rgba(184, 150, 90, 0.2);
}
.es5000-column--staff {
  margin-top: 1.25rem;
  border-left-color: var(--lux-gold-mid);
  background: var(--lux-paper-2);
}

/* ─── コラム・機器（任意で開くアコーディオン）─── */
.es5000-accordion {
  border: 1px solid var(--lux-line);
  border-radius: 10px;
  background: var(--lux-white);
  box-shadow: var(--lux-shadow-soft);
}
.es5000-section--accent .es5000-accordion {
  background: rgba(255, 255, 255, 0.65);
}
.es5000-accordion__summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
}
.es5000-accordion__summary::-webkit-details-marker {
  display: none;
}
.es5000-accordion__summary::after {
  flex-shrink: 0;
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-left: auto;
  border-right: 2px solid var(--es-accent);
  border-bottom: 2px solid var(--es-accent);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.es5000-accordion[open] > .es5000-accordion__summary::after {
  transform: rotate(-135deg);
  margin-top: 0.25rem;
}
.es5000-accordion__summary-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.es5000-accordion__summary .es5000-head__label {
  margin: 0;
}
.es5000-accordion__title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--lux-ink);
}
.es5000-accordion__hint {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--lux-muted);
}
.es5000-accordion__panel {
  padding: 0 1.1rem 1.15rem;
  border-top: 1px solid var(--lux-line);
}
.es5000-accordion__panel > .es5000-head__lead {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--lux-muted-dark);
}
.es5000-accordion__panel > .es5000-column {
  margin-top: 1rem;
}
.es5000-accordion__panel > .es5000-mode-grid {
  margin-top: 1rem;
}
.es5000-accordion__panel > .es5000-gallery {
  margin-top: 1rem;
}
.es5000-accordion__panel > .es5000-note,
.es5000-accordion__panel > .es5000-credit {
  margin-top: 1rem;
}
/* 折りたたみブロックはセクション余白を抑える */
#carrier-wave.es5000-section,
#modes.es5000-section,
#device-gallery.es5000-section {
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
}
.es5000-staff-lead {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--lux-muted-dark);
  background: var(--lux-white);
  border-radius: 6px;
  border: 1px dashed var(--lux-line);
}
.es5000-glossary {
  margin: 0 0 1rem;
  padding: 0;
}
.es5000-glossary dt {
  margin: 0.85rem 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--es-accent);
}
.es5000-glossary dt:first-child { margin-top: 0; }
.es5000-glossary dd {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--lux-muted-dark);
}
.es5000-table-wrap {
  margin: 0.75rem 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.es5000-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.8rem;
  line-height: 1.55;
}
.es5000-table th,
.es5000-table td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--lux-line);
}
.es5000-table th {
  font-weight: 600;
  color: var(--lux-ink);
  background: var(--es-accent-soft);
}
.es5000-table td {
  color: var(--lux-muted-dark);
  background: var(--lux-white);
}
.es5000-talk-lines li {
  font-style: normal;
}
.es5000-case {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--lux-paper-2);
  border: 1px solid var(--lux-line);
  border-radius: 10px;
}
.es5000-case__label {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lux-gold-mid);
}
.es5000-case h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--lux-ink);
}
.es5000-case p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--lux-muted-dark);
}
.es5000-case p:last-child { margin-bottom: 0; }

.es5000-intro-visual {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}
@media (min-width: 720px) {
  .es5000-intro-visual {
    grid-template-columns: 1fr 280px;
  }
}
.es5000-intro-visual__figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--lux-line);
  background: var(--lux-white);
  box-shadow: var(--lux-shadow-soft);
}
.es5000-intro-visual__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.es5000-intro-visual__figure figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--lux-muted);
}
.es5000-hero__place {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(232, 226, 216, 0.6);
}
.es5000-hero h1 {
  margin: 0;
  padding: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.05rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
}
.es5000-hero__tagline {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(232, 226, 216, 0.82);
}
@media (max-width: 899px) {
  .es5000-hero__copy {
    text-align: center;
  }
  .es5000-hero__eyebrow,
  .es5000-hero__place,
  .es5000-hero__tagline {
    text-align: center;
  }
  .es5000-hero__tagline {
    max-width: 16em;
    margin-left: auto;
    margin-right: auto;
  }
  .es5000-hero__actions {
    align-items: stretch;
  }
}
@media (min-width: 900px) {
  .es5000-hero__copy {
    max-width: 26rem;
  }
}
.es5000-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.es5000-hero__actions .button {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .es5000-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
    justify-content: flex-start;
  }
  .es5000-hero__actions .button {
    width: auto;
  }
}
.es5000-hero__panel {
  display: grid;
  gap: 0.55rem;
  overflow: hidden;
}
.es5000-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--es-accent);
}
.es5000-pillar__icon {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lux-gold);
  line-height: 1;
  padding-top: 0.1rem;
}
.es5000-pillar__title {
  margin: 0 0 0.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.es5000-pillar__text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(232, 226, 216, 0.7);
}
.es5000-device-shot figcaption strong {
  font-weight: 600;
  color: rgba(232, 226, 216, 0.75);
}

/* ─── 信頼帯 ─── */
.es5000-trust {
  background: var(--lux-white);
  border-bottom: 1px solid var(--lux-line);
}
.es5000-trust__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--lux-muted-dark);
}
.es5000-trust__inner p { margin: 0 0 0.45rem; }
.es5000-trust__inner p:last-child { margin-bottom: 0; }
.es5000-trust__inner strong { color: var(--lux-ink); }
.es5000-trust__inner a { color: var(--lux-green-bright); }

/* ─── 目次（症状LPと同じ symptom-toc）─── */
.page-es5000 .symptom-toc {
  max-width: 1080px;
  margin: 1rem auto 0.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ─── セクション共通 ─── */
.es5000-section {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}
.es5000-section--cream { background: var(--lux-cream, #faf8f4); }
.es5000-section--paper { background: var(--lux-paper, #f0ece4); }
.es5000-section--white { background: var(--lux-white); }
.es5000-section--accent { background: var(--es-accent-soft); }
.es5000-section--ink {
  background: var(--es-ink-band);
  color: var(--lux-champagne);
}
.es5000-section__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.es5000-head { margin-bottom: 1.75rem; max-width: 42em; }
.es5000-section--ink .es5000-head { max-width: 40em; }
.es5000-head__label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--es-accent);
}
.es5000-section--ink .es5000-head__label { color: var(--lux-gold); }
.es5000-head__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--lux-ink);
}
.es5000-section--ink .es5000-head__title { color: #fff; }
.es5000-head__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--lux-muted-dark);
}
.es5000-section--ink .es5000-head__lead { color: rgba(232, 226, 216, 0.8); }
.es5000-prose {
  font-size: 0.94rem;
  line-height: 1.9;
  color: var(--lux-ink);
}
.es5000-prose p { margin: 0 0 1rem; }
.es5000-prose p:last-child { margin-bottom: 0; }
.es5000-prose--gap { margin-top: 1.5rem; }
.es5000-prose a { color: var(--lux-green-bright); }
.es5000-section--ink .es5000-prose { color: rgba(240, 236, 228, 0.88); }
.es5000-section--ink .es5000-prose a { color: var(--lux-gold); }
.es5000-note {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--lux-muted);
}

/* ─── お悩みグリッド ─── */
.es5000-check-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
@media (min-width: 600px) {
  .es5000-check-grid { grid-template-columns: repeat(2, 1fr); }
}
.es5000-check-grid li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.75rem 0.95rem;
  font-size: 0.88rem;
  line-height: 1.55;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  box-shadow: var(--lux-shadow-soft);
}
.es5000-check-grid li::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: 700;
  color: var(--es-accent);
}

/* ─── 理由カード ─── */
.es5000-reason-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .es5000-reason-grid { grid-template-columns: repeat(2, 1fr); }
}
.es5000-reason {
  padding: 1.15rem 1.2rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: 10px;
  box-shadow: var(--lux-shadow-soft);
}
.es5000-reason__tag {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--es-accent);
  background: var(--es-accent-soft);
  border-radius: 4px;
}
.es5000-reason p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--lux-muted-dark);
}

/* ─── モードカード ─── */
.es5000-mode-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 560px) {
  .es5000-mode-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .es5000-mode-grid { grid-template-columns: repeat(3, 1fr); }
}
.es5000-mode {
  padding: 0;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: 10px;
  border-top: 3px solid var(--es-accent);
  box-shadow: var(--lux-shadow-soft);
  overflow: hidden;
}
.es5000-mode__thumb {
  margin: 0;
  background: var(--es-accent-soft);
  border-bottom: 1px solid var(--lux-line);
}
.es5000-mode__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.es5000-mode__body {
  padding: 1rem 1.1rem 1.05rem;
}
.es5000-mode--soft { border-top-color: var(--lux-gold-mid); }
.es5000-mode__name {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--lux-ink);
}
.es5000-mode__body p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--lux-muted-dark);
}

/* ─── 製品ギャラリー（公式画像） ─── */
.es5000-gallery {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .es5000-gallery { grid-template-columns: repeat(3, 1fr); }
}
.es5000-gallery__item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--lux-line);
  background: var(--lux-white);
  box-shadow: var(--lux-shadow-soft);
}
.es5000-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.es5000-gallery__item figcaption {
  padding: 0.5rem 0.65rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--lux-muted);
}

/* ─── 当院の組み立て（2列） ─── */
.es5000-approach {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 800px) {
  .es5000-approach {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }
}
.es5000-approach__figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--lux-line);
  box-shadow: var(--lux-shadow-soft);
}
.es5000-approach__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.es5000-approach__figure figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.75rem;
  line-height: 1.55;
  background: var(--lux-white);
  color: var(--lux-muted);
}
.es5000-quote {
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.2rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--lux-ink);
  background: var(--lux-white);
  border-left: 4px solid var(--es-accent);
  border-radius: 0 10px 10px 0;
  box-shadow: var(--lux-shadow-soft);
}

/* ─── 施術の流れ ─── */
.es5000-timeline {
  margin: 0;
  padding: 0 0 0 0.5rem;
  list-style: none;
  border-left: 2px solid var(--es-accent);
  counter-reset: es-step;
}
.es5000-timeline__item {
  position: relative;
  padding: 0 0 1.5rem 2rem;
  counter-increment: es-step;
}
.es5000-timeline__item:last-child { padding-bottom: 0; }
.es5000-timeline__item::before {
  content: counter(es-step, decimal-leading-zero);
  position: absolute;
  left: -0.5rem;
  top: 0;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--es-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--lux-paper);
}
.es5000-section--cream .es5000-timeline__item::before {
  box-shadow: 0 0 0 4px var(--lux-cream, #faf8f4);
}
.es5000-section--white .es5000-timeline__item::before {
  box-shadow: 0 0 0 4px var(--lux-white);
}
.es5000-timeline__title {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--lux-ink);
}
.es5000-timeline__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--lux-muted-dark);
}

/* ─── 症状リンク ─── */
.es5000-symptom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
}
.es5000-symptom-links a {
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--lux-ink);
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: 999px;
  transition: border-color 0.15s, background 0.15s;
}
.es5000-symptom-links a:hover {
  border-color: var(--es-accent);
  background: var(--es-accent-soft);
}

/* ─── FAQ ─── */
.es5000-faq .qa-list { margin: 0; }
.es5000-faq .qa-item {
  margin-bottom: 0.65rem;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--lux-shadow-soft);
}
.es5000-faq .qa-item dt {
  padding: 1rem 1.1rem 0.65rem;
  font-size: 0.95rem;
  border-bottom: none;
}
.es5000-faq .qa-item dd {
  padding: 0 1.1rem 1rem;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--lux-muted-dark);
}

/* ─── 関連リンク ─── */
.es5000-link-grid {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 520px) {
  .es5000-link-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 800px) {
  .es5000-link-grid { grid-template-columns: repeat(3, 1fr); }
}
.es5000-link {
  display: block;
  padding: 1rem 1.05rem;
  text-decoration: none;
  background: var(--lux-white);
  border: 1px solid var(--lux-line);
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.es5000-link:hover {
  border-color: var(--es-accent);
  box-shadow: 0 6px 20px var(--es-accent-glow);
}
.es5000-link strong {
  display: block;
  font-size: 0.92rem;
  color: var(--lux-ink);
  margin-bottom: 0.2rem;
}
.es5000-link small {
  display: block;
  font-size: 0.76rem;
  color: var(--lux-muted);
  line-height: 1.45;
}

/* ─── booking-guide 差し込み ─── */
.page-es5000 #booking-guide {
  margin: 0;
  padding: clamp(2.75rem, 6vw, 4rem) 1.25rem;
  background: linear-gradient(180deg, var(--lux-white) 0%, var(--es-accent-soft) 100%);
  border: none;
  box-shadow: none;
}
.page-es5000 #booking-guide h2 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}
.page-es5000 #booking-guide h2 .section-heading__eyebrow {
  color: var(--es-accent);
}
.page-es5000 #booking-guide .answer-lead,
.page-es5000 #booking-guide h3,
.page-es5000 #booking-guide p,
.page-es5000 #booking-guide ul,
.page-es5000 #booking-guide .symptom-data-table,
.page-es5000 #booking-guide .symptom-cta__actions,
.page-es5000 #booking-guide hr,
.page-es5000 #booking-guide .symptom-section__after-block {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.page-es5000 #related {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

/* ─── 安全・著者 ─── */
.page-es5000 .es5000-safety .caution-box { margin-top: 0; }
.page-es5000 .author-bar {
  max-width: 1080px;
  margin: 0 auto 2rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ─── CTA（既存 es-cta-band をページ内で統一） ─── */
.page-es5000 .es-cta-band {
  background: linear-gradient(155deg, var(--es-accent) 0%, #1a4a55 55%, var(--es-ink-band) 100%);
}

