/* ===================================================================
   ESWT 体外衝撃波治療 LP  —  rege brand remake
   Emerald + Gold / US-style medical luxury
   Font scale: rege TOP page rule — body 16-18px, allowed set
   {10,12,14,16,18,20,22,24,28,30,32,36,40}
   =================================================================== */

:root {
  /* ---- rege brand tokens ---- */
  --c-primary: #0e6e5a;
  --c-primary-deep: #053b30;
  --c-primary-soft: #d4ebe1;
  --c-accent: #25b18a;
  --c-accent-glow: #6ed4ad;
  --c-gold: #c5a572;
  --c-gold-deep: #a08550;
  --c-gold-soft: #e3d4ad;
  --c-ink: #0f2a23;
  --c-ink-soft: #3a5a50;
  --c-mute: #7a9389;
  --c-line: #d6e4dc;
  --c-bg: #f6faf7;
  --c-bg-soft: #e9f1ec;
  --c-bg-cream: #faf6ec;

  --grad-emerald: linear-gradient(135deg, #053b30 0%, #0e6e5a 45%, #25b18a 100%);
  --grad-emerald-soft: linear-gradient(135deg, #d4ebe1 0%, #b8e0cf 50%, #8fcfb6 100%);
  --grad-gold: linear-gradient(135deg, #a08550 0%, #e3d4ad 50%, #c5a572 100%);

  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Jost", "Helvetica Neue", sans-serif;

  --canvas: 460px;
  --shadow-cta: 0 14px 30px -10px rgba(14, 110, 90, 0.5);
  --shadow-card: 0 20px 48px -28px rgba(10, 58, 48, 0.34);
  --shadow-soft: 0 10px 26px -18px rgba(10, 58, 48, 0.3);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  color: var(--c-ink);
  background:
    radial-gradient(circle at 50% 0, #ffffff 0%, rgba(255, 255, 255, 0) 460px),
    linear-gradient(180deg, #eef5f0 0%, #dfeae4 100%);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  padding-top: var(--header-h, 64px);
  padding-bottom: 68px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(14, 110, 90, 0.4);
  outline-offset: 3px;
}

/* ---- canvas ---- */
.lp {
  position: relative;
  width: 100%;
  max-width: var(--canvas);
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 50px 130px -55px rgba(5, 40, 32, 0.45);
}

/* ===================================================================
   TOPBAR
   =================================================================== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}

.brand__logo {
  display: block;
  height: 36px;
  width: auto;
}

.topbar__pill {
  flex: none;
  padding: 8px 15px;
  border: 1px solid var(--c-gold);
  border-radius: 999px;
  background: var(--grad-emerald);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ===================================================================
   KICKER  (eyebrow)
   =================================================================== */
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
}

.kicker__no {
  flex: none;
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--c-gold-deep);
}

.kicker__line {
  flex: none;
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}

.kicker__en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker--hero {
  margin-bottom: 18px;
}

.kicker--light .kicker__line {
  background: var(--c-gold-soft);
}

.kicker--light .kicker__en {
  background: linear-gradient(135deg, #f4e8c8, #ffffff, #e3d4ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  padding: 32px 26px 54px;
  background: #fff;
}

.hero__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  width: 440px;
  height: 440px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--c-primary-soft) 0%, rgba(212, 235, 225, 0) 68%);
  opacity: 0.85;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(28px, 7.8vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: var(--c-primary-deep);
}

.final__title span {
  white-space: nowrap;
}

.hl,
.hl-em {
  font-style: normal;
  color: var(--c-primary);
}

.hl {
  background-image: linear-gradient(transparent 68%, var(--c-gold-soft) 68%);
}

.hl-strong {
  font-style: normal;
  font-weight: 700;
  color: var(--c-primary);
}

.hero__lead {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--c-ink-soft);
}

.hero__lead-key {
  display: inline-block;
  margin-top: 6px;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

/* ---- trial offer (featured card) ---- */
.trial-offer {
  margin-top: 24px;
  padding: 20px 20px 18px;
  text-align: center;
  background: var(--c-bg-cream);
  border: 1px solid var(--c-gold);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.trial-offer__label {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.trial-offer__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-top: 12px;
  line-height: 1;
  color: var(--c-primary);
}

.trial-offer__price b {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.trial-offer__price i {
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
}

.trial-offer__price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-soft);
}

.trial-offer__note {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink-soft);
}

/* ---- hero photo ---- */
.hero__photo {
  position: relative;
  margin: 28px 0 4px;
}

.hero__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 318px;
  object-fit: cover;
  border-radius: 3px;
}

.hero__frame {
  position: absolute;
  inset: 13px -11px -13px 13px;
  z-index: 0;
  border: 1px solid var(--c-gold);
  border-radius: 3px;
}

.floatcard {
  position: absolute;
  z-index: 2;
  width: 200px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
}

.floatcard span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-primary);
}

.floatcard strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--c-primary-deep);
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 4px;
  padding: 0;
  list-style: none;
}

.hero-point {
  padding: 14px 16px 16px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 2px solid var(--c-accent);
}

.hero-point__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.hero-point__tag {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-primary);
}

.hero-point__no {
  font-family: var(--font-num);
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: var(--c-gold);
}

.hero-point__label {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--c-primary-deep);
}

/* ---- hero fine print ---- */
.hero__fine {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--c-mute);
  text-align: center;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.cta-stack {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    filter 0.25s var(--ease);
}

.btn__arrow {
  font-family: var(--font-en);
  font-style: normal;
  font-size: 18px;
  transition: transform 0.25s var(--ease);
  animation: ctaArrow 1.2s ease-in-out infinite;
}

/* ---- CTA attention animation (pulse + arrow nudge) ---- */
.cta-anim {
  display: block;
  transform-origin: center;
  will-change: transform;
  animation: ctaPress 2.6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 58%, 100% { transform: scale(1); }
  12% { transform: scale(1.05); }
  24% { transform: scale(1); }
  36% { transform: scale(1.03); }
  48% { transform: scale(1); }
}

@keyframes ctaArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* full-width sticky bar button: press-in pulse (no horizontal overflow) */
.cta-anim--bar {
  animation-name: ctaPress;
  transform-origin: center bottom;
}

@keyframes ctaPress {
  0%, 70%, 100% { transform: scale(1); }
  24% { transform: scale(0.975); }
  48% { transform: scale(1); }
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--grad-emerald);
  border: 1px solid var(--c-gold);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  box-shadow: 0 18px 36px -10px rgba(14, 110, 90, 0.58);
  filter: brightness(1.05);
}

.btn--ghost {
  background: #fff;
  border: 1px solid var(--c-primary);
  color: var(--c-primary-deep);
}

.btn--ghost:hover {
  background: var(--c-bg-soft);
}

.btn--gold {
  background: var(--grad-gold);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #1f1f1f;
  font-weight: 700;
  box-shadow: 0 14px 30px -10px rgba(160, 133, 80, 0.6);
}

.btn--gold:hover {
  filter: brightness(1.05);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ===================================================================
   SECTION BASE
   =================================================================== */
.sec {
  position: relative;
  padding: 60px 26px;
}

.sec--proof {
  background: var(--c-bg-cream);
}

.sec--benefit {
  padding-top: 0;
  background: #fff;
}

.sec--recommend {
  background: var(--c-bg-soft);
}

.sec--service {
  background: var(--c-bg-cream);
}

/* ---- generic section backgrounds ---- */
.sec--cream { background: var(--c-bg-cream); }
.sec--white { background: #fff; }
.sec--soft { background: var(--c-bg-soft); }

/* ---- about (体外衝撃波治療とは) ---- */
.about-emph {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--c-primary-deep);
}

.about-text {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-ink-soft);
}

/* ---- other conditions box ---- */
.other-box {
  margin-top: 22px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-gold);
  box-shadow: var(--shadow-soft);
}

.other-box__head {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-primary-deep);
}

.other-box ul {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 9px;
}

.other-box li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--c-ink);
}

.other-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  background: var(--grad-gold);
  transform: rotate(45deg);
}

/* ---- condition cards (feature card without number) ---- */
.feature--cond .feature__title {
  margin-top: 0;
}

/* ---- CTA block (mid-page emerald) ---- */
.cta-block {
  position: relative;
  padding: 56px 26px;
  background: var(--grad-emerald);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-block > * {
  position: relative;
  z-index: 1;
}

.cta-block__glow {
  position: absolute;
  z-index: 0;
  right: -150px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-accent-glow) 0%, rgba(110, 212, 173, 0) 70%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-block .kicker {
  justify-content: center;
}

.cta-block__title {
  margin-top: 14px;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
}

.cta-block__sub {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.cta-block .cta-stack {
  margin-top: 24px;
}

/* ---- hero intro line ---- */
.hero__intro {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink-soft);
}

/* ---- price table ---- */
.price-table-wrap {
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: 3px;
  box-shadow: var(--shadow-card);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.price-table th {
  padding: 14px 8px;
  background: var(--c-primary-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.price-table td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: var(--c-ink-soft);
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table td:first-child {
  font-weight: 600;
  color: var(--c-primary-deep);
  white-space: nowrap;
}

.price-table td:last-child {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-primary);
}

.price-table__hot td {
  background: linear-gradient(135deg, #faf3e2, #f6ecd4);
}

.price-table__hot td:last-child {
  color: var(--c-gold-deep);
}

.price-table__rec {
  display: block;
  width: fit-content;
  margin: 5px auto 0;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.price-note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-mute);
  letter-spacing: 0.02em;
}

/* ---- access (住所 / 電話番号) ---- */
.access__row + .access__row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
}

.access__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-primary);
}

.access__val {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-ink);
}

/* ===================================================================
   VISUAL PLACEHOLDERS (仮置き — 後で実画像/アイコンに差し替え)
   =================================================================== */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--grad-emerald-soft);
  overflow: hidden;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 11px,
    rgba(5, 59, 48, 0.06) 11px 12px
  );
}

.ph__label {
  position: relative;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  opacity: 0.5;
}

/* card-top image placeholder (full-bleed inside card) */
.ph--card {
  margin: -22px -22px 16px;
  aspect-ratio: 16 / 9;
}

/* large photo placeholder */
.ph--photo {
  margin-bottom: 14px;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--c-line);
  border-radius: 3px;
}

/* small icon placeholder */
.ph-icon {
  position: relative;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--grad-emerald-soft);
  overflow: hidden;
}

.ph-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 7px,
    rgba(5, 59, 48, 0.08) 7px 8px
  );
}

/* icon placeholder on dark (flow steps) */
.ph-icon--flow {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

.ph-icon--flow::before {
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 7px,
    rgba(255, 255, 255, 0.16) 7px 8px
  );
}

/* ---- worry list (S2) ---- */
.worry-list {
  display: grid;
  gap: 11px;
  list-style: none;
}

.worry-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-soft);
}

.worry-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-ink);
}

.worry-check {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad-emerald);
}

.worry-check::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  width: 11px;
  height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}

.sec-head {
  margin-bottom: 26px;
}

.sec-title {
  margin-top: 13px;
  font-size: clamp(24px, 6.4vw, 30px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--c-primary-deep);
  text-wrap: balance;
  word-break: auto-phrase;
}

.sec-lead {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--c-ink-soft);
}

.sec-lead--team {
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.05em;
}

/* ===================================================================
   S2  PROOF
   =================================================================== */
.badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 18px 10px 34px;
  position: relative;
  background: var(--c-primary-deep);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.badge::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--c-gold);
}

.sec-photo {
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: 3px;
}

.sec-photo img {
  width: 100%;
  height: 224px;
  object-fit: cover;
}

/* ---- feature cards ---- */
.feature-list {
  display: grid;
  gap: 20px;
}

.feature {
  position: relative;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 2px solid var(--c-accent);
  box-shadow: var(--shadow-soft);
}

.feature__no {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--c-gold);
}

.feature__title {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-primary-deep);
}

.feature__text {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-ink-soft);
}

.feature__img {
  display: block;
  width: calc(100% + 44px);
  max-width: none;
  height: auto;
  margin: -22px -22px 16px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--grad-emerald-soft);
}

/* ===================================================================
   BRIDGE (S2 → S3)
   =================================================================== */
.bridge {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-primary-deep);
  text-align: center;
  overflow: hidden;
}

.bridge__top {
  aspect-ratio: 900 / 680;
  background: url('./assets/images/bridge-bg.webp') center bottom / cover no-repeat;
  padding: 80px 22px 0;
}

.bridge__curve {
  display: block;
  width: 100%;
  height: 64px;
  margin-top: -42px;
  position: relative;
  z-index: 1;
}

.bridge__title {
  margin: 0;
  color: var(--c-primary-deep);
  font-weight: 700;
}

.bridge__lead {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.bridge__keyline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  white-space: normal;
  margin-bottom: 4px;
  padding: 0 12px;
}

.bridge__keyword {
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  word-break: keep-all;
}

.bridge__connector {
  font-size: 18px;
  font-weight: 500;
}

.bridge__hl {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.bridge__tail {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.bridge__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 26px 22px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.bridge__cta-arrow {
  display: block;
  width: 24px;
  height: auto;
  color: #fff;
  animation: bridgeHint 2.4s ease-in-out infinite;
}

@keyframes bridgeHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ===================================================================
   S3  BENEFIT
   =================================================================== */
.band-photo {
  margin: 0 -26px;
}

.band-photo img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.sec--benefit .sec-head {
  margin-top: 40px;
}

.checklist {
  display: grid;
  gap: 11px;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 16px 18px 16px 52px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--c-ink);
  box-shadow: var(--shadow-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad-emerald);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.infostrip {
  display: flex;
  align-items: stretch;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--grad-emerald);
  box-shadow: var(--shadow-soft);
}

.infostrip__label {
  display: grid;
  place-items: center;
  flex: none;
  padding: 0 18px;
  background: rgba(0, 0, 0, 0.16);
  color: var(--c-gold-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.infostrip__text {
  display: grid;
  align-items: center;
  padding: 16px 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===================================================================
   S4  RECOMMEND
   =================================================================== */
.symptom-photo {
  position: relative;
  margin-bottom: 34px;
}

.symptom-photo img {
  width: 100%;
  height: 222px;
  object-fit: cover;
  border-radius: 3px;
}

.symptom-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -18px;
  padding: 13px 14px;
  border-radius: 2px;
  background: var(--c-primary-deep);
  border-bottom: 2px solid var(--c-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.symptom-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.symptom-list li {
  position: relative;
  padding: 15px 18px 15px 44px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--c-ink);
  box-shadow: var(--shadow-soft);
}

.symptom-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 11px;
  height: 11px;
  background: var(--grad-gold);
  transform: rotate(45deg);
}

/* ===================================================================
   S5  SERVICE
   =================================================================== */
.doctor {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
}

.doctor__photo img {
  width: 116px;
  height: 152px;
  object-fit: cover;
  border-radius: 2px;
}

.doctor__body strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--c-primary-deep);
}

.doctor__body p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-ink-soft);
}

/* ---- flow ---- */
.flow {
  display: grid;
  gap: 40px;
  margin-top: 22px;
  list-style: none;
}

.flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--c-primary-deep);
  border-left: 3px solid var(--c-gold);
  color: #fff;
}

.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--c-gold);
  border-bottom: 3px solid var(--c-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.flow__no {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  color: var(--c-gold);
}

.flow__body strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.flow__body small {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.72);
}

/* ---- price card ---- */
.pricecard {
  margin-top: 22px;
  padding: 24px 22px 20px;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
}

.pricecard__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-primary-deep);
}

.pricecard__title span {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-mute);
}

.pricecard__list {
  margin-top: 14px;
}

.pricecard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
}

.pricecard__row:last-child {
  border-bottom: 0;
}

.pricecard__row dt {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink-soft);
}

.pricecard__row dt small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  color: var(--c-mute);
}

.pricecard__row dd {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--c-primary);
}

.pricecard__row dd i {
  font-family: var(--font-jp);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  margin-left: 2px;
}

.pricecard__row--hot {
  margin: 0 -14px;
  padding: 14px;
  background: linear-gradient(135deg, #faf3e2, #f6ecd4);
  border-bottom: 0;
  border-radius: 3px;
}

.pricecard__row--hot dd {
  color: var(--c-gold-deep);
}

.pricecard__tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  vertical-align: 2px;
}

.pricecard__note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-mute);
}

/* ---- access ---- */
.access {
  margin-top: 14px;
  padding: 22px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  text-align: center;
}

.access__head {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-primary-deep);
}

.access__head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--c-gold);
}

.access__addr {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-ink-soft);
}

/* ===================================================================
   S6  FINAL CTA
   =================================================================== */
.sec--final {
  padding-top: 0;
  background: var(--grad-emerald);
  color: #fff;
  overflow: hidden;
}

.final__glow {
  position: absolute;
  right: -160px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-accent-glow) 0%, rgba(110, 212, 173, 0) 70%);
  opacity: 0.28;
  pointer-events: none;
}

.sec--final > * {
  position: relative;
  z-index: 1;
}

.final__photo {
  position: relative;
  margin: 0 -26px 30px;
}

.final__photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 59, 48, 0.12) 0%, rgba(5, 59, 48, 0.62) 100%);
}

.final__badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: var(--c-primary-deep);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px -8px rgba(5, 40, 32, 0.5);
}

.final__title {
  margin-top: 16px;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: #fff;
  text-wrap: balance;
}

.final__lead {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

.sec--final .cta-stack {
  margin-top: 26px;
}

.final__notes {
  margin-top: 22px;
  padding: 18px 20px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.final__notes li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.final__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--c-gold);
  transform: rotate(45deg);
}

.signature {
  margin-top: 32px;
  text-align: center;
}

.signature img {
  display: inline-block;
  height: 46px;
  width: auto;
}

/* ===================================================================
   FIXED CTA
   =================================================================== */
.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, var(--canvas));
  transform: translateX(-50%);
}

.fixed-cta__reserve {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 68px;
  border: none;
  border-top: 2px solid var(--c-gold);
  background: var(--grad-emerald);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 -8px 24px -10px rgba(5, 40, 32, 0.5);
  transition: filter 0.2s var(--ease);
}

.fixed-cta__reserve:active {
  filter: brightness(0.93);
}

/* ===================================================================
   MODAL
   =================================================================== */
.modal {
  width: min(360px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(5, 30, 24, 0.52);
  backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  padding: 30px 26px 26px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-gold);
  box-shadow: 0 30px 70px -24px rgba(5, 40, 32, 0.5);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  background: #fff;
  color: var(--c-primary-deep);
  font-size: 22px;
  line-height: 1;
}

.modal__kicker {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}

.modal__card h2 {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-primary-deep);
}

.modal__card #modal-message {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-ink-soft);
}

.modal__ok {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--grad-emerald);
  border: 1px solid var(--c-gold);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ===================================================================
   REVEAL ON SCROLL
   =================================================================== */
.reveal-anim .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-anim .reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }

/* ===================================================================
   CLINIC CARD (S10)
   =================================================================== */
.clinic-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 3px;
  box-shadow: var(--shadow-card);
}

.clinic-card__photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.clinic-card__body {
  padding: 22px;
}

.clinic-card__row {
  display: grid;
  gap: 9px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}

.clinic-card__row:first-child {
  padding-top: 0;
}

.clinic-card__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.clinic-card__label {
  width: fit-content;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--grad-emerald);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.clinic-card__val {
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-ink);
}

.clinic-card__tel {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-primary);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  position: relative;
  padding: 44px 26px 40px;
  background: var(--c-primary-deep);
  text-align: center;
  overflow: hidden;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer__glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: -130px;
  width: 360px;
  height: 300px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--c-accent-glow) 0%, rgba(110, 212, 173, 0) 70%);
  opacity: 0.16;
  pointer-events: none;
}

.footer__logo {
  height: 42px;
  width: auto;
  margin: 0 auto;
}

.footer__name {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

.footer__addr {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
}

.footer__copy {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-anim .reveal,
  .reveal-anim .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .btn__arrow {
    transition: none;
  }
  .cta-anim,
  .btn__arrow {
    animation: none;
  }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 380px) {
  body { font-size: 16px; }
  .hero { padding: 28px 20px 48px; }
  .sec { padding: 52px 20px; }
  .band-photo,
  .final__photo { margin-left: -20px; margin-right: -20px; }
  .pricecard__row--hot { margin-left: -12px; margin-right: -12px; }
  .floatcard { width: 184px; }
  .floatcard--pain { width: 200px; }
  .floatcard--insurance { width: 156px; }
}

@media (min-width: 520px) {
  body { padding-top: calc(var(--header-h, 88px) + 8px); }
}

/* ===================================================================
   HERO POINTS - 3 columns variant
   =================================================================== */
.hero-points--3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.hero-points--3 .hero-point {
  padding: 14px 10px 14px;
}
.hero-points--3 .hero-point__no {
  font-size: 28px;
}
.hero-points--3 .hero-point__tag {
  font-size: 14px;
}
.hero-points--3 .hero-point__label {
  font-size: 14px;
  letter-spacing: 0.02em;
}
@media (max-width: 380px) {
  .hero-points--3 .hero-point { padding: 12px 8px; }
  .hero-points--3 .hero-point__no { font-size: 24px; }
  .hero-points--3 .hero-point__label { font-size: 14px; }
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  padding: 0;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item__q,
.faq-item__a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 18px 22px;
  margin: 0;
  align-items: start;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.faq-item__q {
  font-weight: 700;
  color: var(--c-primary-deep);
  background: var(--c-bg-cream);
  font-size: 16px;
}
.faq-item__a {
  color: var(--c-ink-soft);
  border-top: 1px solid var(--c-line);
}
.faq-item__qmark,
.faq-item__amark {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  padding-top: 2px;
}
.faq-item__qmark { color: var(--c-gold-deep); }
.faq-item__amark { color: var(--c-primary); }
@media (max-width: 560px) {
  .faq-item__q,
  .faq-item__a { grid-template-columns: 28px 1fr; padding: 16px 18px; gap: 10px; }
  .faq-item__qmark,
  .faq-item__amark { font-size: 18px; }
}

/* ===================================================================
   BRIDGE close (米国式 強調)
   =================================================================== */
.bridge__close {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink-soft);
}
.bridge__brand {
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-primary-deep);
  background: linear-gradient(transparent 62%, rgba(197,165,114,0.45) 62%);
  padding: 0 4px;
  margin-right: 2px;
}

/* ===================================================================
   CAUSE BLOCK / CAUSE LIST
   =================================================================== */
.cause-block {
  margin: 32px 0 20px;
  text-align: center;
}
.cause-block__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 8px;
}
.cause-block__line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--c-gold);
}
.cause-block__label {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}
.cause-block__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-primary-deep);
}

.cause-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.cause-item {
  display: block;
  padding: 18px 20px;
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-gold);
  border-radius: 4px;
  box-shadow: 0 24px 64px -32px rgba(10, 58, 48, 0.12);
}
.cause-item__no {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 38px;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--c-gold-deep);
  text-align: center;
  border-right: 1px solid var(--c-line);
  padding-right: 10px;
}
.cause-item__body { min-width: 0; }
.cause-item__title {
  display: block;
  margin: 0 0 12px;
  padding-left: 56px;
  min-height: 28px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--c-primary-deep);
}
.cause-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-ink-soft);
  letter-spacing: 0.02em;
}
@media (max-width: 560px) {
  .cause-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 16px 16px;
  }
  .cause-item__no { font-size: 22px; padding-right: 10px; }
}

/* ===================================================================
   CAUTION LIST
   =================================================================== */
.caution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.caution-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 22px;
  background: var(--c-bg-cream);
  border: 1px dashed var(--c-gold);
  border-radius: 4px;
}
.caution-item__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 2px;
}
.caution-item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-gold-deep);
  color: #fff;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.caution-item__no {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-gold-deep);
}
.caution-item__body { min-width: 0; }
.caution-item__title {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--c-primary-deep);
}
.caution-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-ink-soft);
  letter-spacing: 0.02em;
}
@media (max-width: 560px) {
  .caution-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px 16px;
  }
  .caution-item__mark { width: 28px; height: 28px; font-size: 18px; }
}

/* ---- cause-item__photo (治療の特徴 画像) ---- */
.cause-item__photo {
  margin: 10px 0 12px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  overflow: hidden;
}
.cause-item__photo img {
  width: 100%;
  height: auto;
  display: block;
}
