/* =====================================================================
   はる整骨院サイト（リニューアル） — デザインシステム
   ===================================================================== */

:root {
  /* Colors */
  --ink: #2b2b2b;
  --ink-soft: #62625d;
  --paper: #fbfaf6;
  --paper-deep: #f6f2ea;
  --teal: #2f7d68;
  --teal-deep: #1f5c4c;
  --teal-soft: #e6efe9;
  --teal-tint: #f4f8f6;
  --line: rgba(43, 43, 43, 0.1);
  --white: #ffffff;
  --accent-warm: #b98a4e;
  --warn-tint: #faf3e8;
  --danger: #c4574f;
  --danger-tint: #fbf0ee;

  /* Typography */
  --font-heading: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  /* Spacing / Layout */
  --container: min(92%, 1080px);
  --container-narrow: min(92%, 760px);
  --section-pad: clamp(56px, 8vw, 96px);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 28px rgba(31, 44, 39, 0.06);
  --shadow-card: 0 6px 18px rgba(31, 44, 39, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.container-narrow {
  width: var(--container-narrow);
  margin: 0 auto;
}

/* 開発用セクションラベル：既定は完全非表示。手元の dev.css を読み込んだ時だけ見える */
.dev-label {
  display: none;
}

/* ----------------------------------------------------------------
   ボタン
   ---------------------------------------------------------------- */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: none;
}

.btn-line {
  background: var(--teal-deep);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-tel {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--line);
}

/* ----------------------------------------------------------------
   ヘッダー
   ---------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(16px, 4vw, 32px);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.site-header__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-header__name {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.site-header__name-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.site-header__name-sub {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

.site-header__menu {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--teal-deep);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.site-header__menu-lines {
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
  border-radius: 99px;
}

.site-header__menu-lines::before,
.site-header__menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
}

.site-header__menu-lines::before {
  top: -6px;
}

.site-header__menu-lines::after {
  top: 6px;
}

/* ----------------------------------------------------------------
   ドロワーメニュー
   ---------------------------------------------------------------- */

body.no-scroll {
  overflow: hidden;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 22, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 190;
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(84vw, 340px);
  height: 100svh;
  background: var(--white);
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.14);
  transform: translateX(102%);
  transition: transform 0.28s ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.drawer__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 18px;
  cursor: pointer;
}

.drawer__group-title {
  margin: 14px 0 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
}

.drawer__nav a {
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-size: 14.5px;
}

.drawer__nav a.is-primary {
  color: var(--teal-deep);
  font-weight: 700;
}

.drawer__social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.drawer__social a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--ink-soft);
  text-decoration: none;
}

.drawer__social svg {
  width: 22px;
  height: 22px;
  fill: var(--ink-soft);
}

/* ----------------------------------------------------------------
   セクション共通
   ---------------------------------------------------------------- */

.section {
  padding: var(--section-pad) clamp(16px, 4vw, 32px);
}

.section--tint {
  background: var(--paper-deep);
}

.section__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 14px;
}

.section__lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 42em;
  margin: 0;
}

/* ----------------------------------------------------------------
   ヒーロー
   ---------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 30, 26, 0.35) 0%, rgba(15, 24, 20, 0.78) 100%);
}

.hero__content {
  position: relative;
  padding: clamp(64px, 14vw, 120px) clamp(20px, 5vw, 40px) clamp(40px, 8vw, 64px);
  color: var(--white);
  text-align: center;
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--teal-soft);
  margin-bottom: 14px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 6.4vw, 44px);
  line-height: 1.5;
  margin: 0 0 18px;
}

.hero__title em {
  font-style: normal;
  color: #bfe3d4;
}

.hero__sub {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
  max-width: 30em;
  margin: 0 auto 28px;
}

.hero .btn-row {
  justify-content: center;
}

.hero__features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.hero__feature {
  background: var(--paper);
  padding: 20px 10px;
  text-align: center;
}

.hero__feature-icon {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 auto 8px;
  color: var(--teal);
}

.hero__feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.hero__feature p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ----------------------------------------------------------------
   お悩みチェックリスト
   ---------------------------------------------------------------- */

.worry-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.worry-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  line-height: 1.7;
}

.worry-item__mark {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.worry-item__mark svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.worry-item a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.worry-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  text-align: center;
}

/* ----------------------------------------------------------------
   選ばれる理由
   ---------------------------------------------------------------- */

.reason-grid {
  display: grid;
  gap: 14px;
}

.reason-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reason-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
}

.reason-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.reason-card h3 {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 700;
}

.reason-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.reason-figure {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.reason-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ----------------------------------------------------------------
   メカニズム
   ---------------------------------------------------------------- */

.mechanism__figure {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.mechanism__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mechanism__callout {
  font-size: 16px;
  line-height: 1.9;
  padding: 18px 20px;
  background: var(--white);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm);
  margin: 0 0 24px;
}

.mechanism__callout mark {
  background: none;
  color: var(--teal-deep);
  font-weight: 700;
}

.mechanism__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.mechanism__points li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.mechanism__check {
  display: block;
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--teal);
  margin-top: 2px;
}

.mechanism__check svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

/* ----------------------------------------------------------------
   施術の流れ
   ---------------------------------------------------------------- */

.approach-list {
  display: grid;
  gap: 16px;
}

.approach-item {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.approach-item__photo {
  margin: 0;
  aspect-ratio: 16 / 9;
}

.approach-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-item__body {
  padding: 18px 20px 20px;
}

.approach-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.approach-item__num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--teal-deep);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.approach-item__head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.approach-item__body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.approach-sub {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--teal-tint);
  border-radius: var(--radius-sm);
}

.approach-sub__title {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-deep);
}

.approach-sub ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.approach-sub li {
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 6px;
}

.approach-sub li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
}

@media (min-width: 720px) {
  .approach-item {
    grid-template-columns: 220px 1fr;
  }

  .approach-item__photo {
    aspect-ratio: auto;
  }
}

/* ----------------------------------------------------------------
   症状別ページ一覧
   ---------------------------------------------------------------- */

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.symptom-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.15s ease;
}

.symptom-card:active {
  box-shadow: var(--shadow-card);
}

.symptom-card__icon {
  width: 34px;
  height: 34px;
  color: var(--teal-deep);
}

.symptom-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.symptom-card h3 {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
}

.symptom-card span {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.symptom-card__link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-deep);
}

/* ----------------------------------------------------------------
   院内ギャラリー
   ---------------------------------------------------------------- */

.gallery-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.gallery-slider::-webkit-scrollbar {
  height: 0;
}

.gallery-slide {
  flex: none;
  width: min(78vw, 320px);
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-slide figcaption {
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--white);
}

/* ----------------------------------------------------------------
   院長メッセージ
   ---------------------------------------------------------------- */

.message-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 40px);
  box-shadow: var(--shadow-soft);
}

.message-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.message-profile__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--teal-soft);
}

.message-profile__role {
  margin: 0;
  font-size: 11px;
  color: var(--ink-soft);
}

.message-profile__name {
  margin: 2px 0 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}

.message-body p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-soft);
}

.message-body mark {
  background: none;
  color: var(--teal-deep);
  font-weight: 700;
}

.message-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.message-footer p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ----------------------------------------------------------------
   お客様の声
   ---------------------------------------------------------------- */

.review-banner {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.review-banner img {
  width: 100%;
}

/* ----------------------------------------------------------------
   掲載実績バナー
   ---------------------------------------------------------------- */

.feature-banner {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-banner img {
  width: 100%;
}

/* ----------------------------------------------------------------
   料金
   ---------------------------------------------------------------- */

.price-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 24px);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}

.price-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--teal-deep);
}

.price-block__icon {
  flex: none;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--teal);
  border-radius: 7px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.price-rows {
  border-top: 1px solid var(--line);
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.price-row__badge {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
}

.price-row__value {
  font-size: clamp(17px, 4.5vw, 21px);
  font-weight: 700;
}

.price-row__value span {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 4px;
}

.price-note {
  display: flex;
  gap: 10px;
  padding: 11px 13px;
  background: var(--warn-tint);
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.price-note__icon {
  flex: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--accent-warm);
  border-radius: 50%;
  color: var(--accent-warm);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.case-grid {
  display: grid;
  gap: 10px;
}

.case-box {
  padding: 13px 15px;
  border-radius: var(--radius-sm);
}

.case-box.is-ok {
  background: var(--teal-tint);
}

.case-box.is-ng {
  background: var(--danger-tint);
}

.case-box__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.case-box.is-ok .case-box__head {
  color: var(--teal-deep);
}

.case-box.is-ng .case-box__head {
  color: var(--danger);
}

.case-box__mark {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

.case-box.is-ok .case-box__mark {
  background: var(--teal);
}

.case-box.is-ng .case-box__mark {
  background: var(--danger);
}

.case-box ul {
  margin: 0;
  padding-left: 1.1em;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.price-initial {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.4fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.price-initial__label {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-tint);
  text-align: center;
  padding: 10px 6px;
  font-size: 13px;
  color: var(--teal-deep);
  font-weight: 700;
}

.price-initial__value {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 4px;
}

.price-initial__note {
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  padding: 4px 8px;
  color: var(--ink-soft);
}

.price-initial__note strong {
  color: var(--accent-warm);
}

.price-course-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 4px 0 12px;
}

.price-course-title::before,
.price-course-title::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--line);
}

.course-list {
  display: grid;
  gap: 8px;
}

.course-card {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px;
}

.course-card img {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

.course-card h4 {
  margin: 0 0 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--teal-deep);
}

.course-card p {
  margin: 0;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.course-card__price {
  text-align: right;
  color: var(--teal-deep);
}

.course-card__price strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.course-card__price .unit {
  display: block;
  font-size: 10.5px;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 2px;
}

/* ----------------------------------------------------------------
   今月の予定・休診日
   ---------------------------------------------------------------- */

.schedule-box {
  padding: 22px;
  border: 1px dashed rgba(47, 125, 104, 0.35);
  border-radius: var(--radius);
  background: var(--teal-tint);
  text-align: center;
}

.schedule-box__icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  color: var(--teal-deep);
}

.schedule-box__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.schedule-box p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ----------------------------------------------------------------
   アクセス
   ---------------------------------------------------------------- */

.access-rows {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.access-row {
  display: grid;
  grid-template-columns: 30px 68px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px 16px;
  background: var(--white);
  font-size: 13.5px;
}

.access-row__icon {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--teal-deep);
}

.access-row__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.access-row__label {
  color: var(--ink-soft);
  font-weight: 700;
}

.access-row__value {
  line-height: 1.7;
}

.access-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  font-size: 11px;
  border: 1px solid var(--teal);
  color: var(--teal-deep);
  border-radius: var(--radius-pill);
}

.access-hours {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 14px;
}

.access-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.access-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.faq-item__q {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.faq-item__a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.faq-badge {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

.faq-badge.q {
  background: var(--teal-deep);
  color: var(--white);
}

.faq-badge.a {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

/* ----------------------------------------------------------------
   フッターCTA・フッター
   ---------------------------------------------------------------- */

.footer-cta {
  background: var(--teal);
  color: var(--white);
  text-align: center;
}

.footer-cta .section__eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.footer-cta .section__title {
  color: var(--white);
}

.footer-cta .section__lead {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
}

.footer-cta .btn-row {
  justify-content: center;
  margin-bottom: 24px;
}

.footer-cta .btn-tel {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* 「そのままにしておくと／今、相談すると」の柔らかい対比ブロック（症状ページのCTA上部） */
.cta-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  max-width: 640px;
  margin: 0 auto 26px;
  text-align: left;
}

.cta-compare__item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 15px 17px;
}

.cta-compare__item.is-positive {
  background: var(--white);
  border-color: transparent;
}

.cta-compare__label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-compare__item.is-positive .cta-compare__label {
  color: var(--teal-deep);
}

.cta-compare__item p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.cta-compare__item.is-positive p {
  color: var(--ink-soft);
}

.cta-compare__arrow {
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
}

@media (max-width: 639px) {
  .cta-compare {
    grid-template-columns: 1fr;
  }

  .cta-compare__arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-social a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-footer {
  padding: 24px 16px;
  text-align: center;
  background: var(--paper);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 34px;
  margin: 0 auto 10px;
  opacity: 0.85;
}

.site-footer small {
  font-size: 11px;
}

/* ----------------------------------------------------------------
   スマホ固定CTAバー
   ---------------------------------------------------------------- */

.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.12);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}

.fixed-cta a svg {
  width: 18px;
  height: 18px;
}

.fixed-cta__line {
  background: var(--teal);
  color: var(--white);
}

.fixed-cta__tel {
  background: var(--accent-warm);
  color: var(--white);
}

/* モバイルは固定CTAバーの高さ分、フッターの下にゆとりを足す（帯を作らないよう背景色は継承） */
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: calc(24px + 60px + env(safe-area-inset-bottom, 0px));
  }
}

/* ----------------------------------------------------------------
   レイアウト（768px以上）
   ---------------------------------------------------------------- */

@media (min-width: 768px) {
  .reason-grid,
  .mechanism-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .reason-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .symptom-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .course-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-rows {
    grid-template-columns: 1fr;
  }

  .fixed-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .symptom-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ----------------------------------------------------------------
   フォーカス表示（キーボード操作時）
   ---------------------------------------------------------------- */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ----------------------------------------------------------------
   モーション配慮
   ---------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
