@charset "UTF-8";
/* ============================================================
       1. CSS変数（デザインシステムの定義）
       ここを変えるだけでLP全体のデザインが変わる
    ============================================================ */
:root {
  /* カラー */
  --color-ivory: #F5F4F0;
  /* ページ背景 */
  --color-white: #FFFFFF;
  /* カード・白セクション */
  --color-charcoal: #1D1D1B;
  /* メインCTA・強調テキスト */
  --color-sage: #1D9E75;
  /* アクセント（信頼・安心） */
  --color-sage-light: #E1F5EE;
  /* Sageの薄色（バッジ背景など） */
  --color-blush: #D4537E;
  /* 感情ポイント（共感ドット） */
  --color-blush-light: #FBEAF0;
  /* Blushの薄色 */
  /* テキスト */
  --text-primary: #1D1D1B;
  --text-secondary: #5F5E5A;
  --text-tertiary: #888780;
  /* ボーダー */
  --border-color: #E0DED8;
  --border-width: 0.5px;
  /* タイポグラフィ */
  --font-base: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  --line-height-body: 1.8;
  --line-height-heading: 1.4;
  /* スペーシング */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  /* セクション内余白 */
  --space-2xl: 80px;
  /* Hero・CTA余白 */
  /* 角丸 */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  /* コンテンツ幅 */
  --content-width: 760px;
  --side-padding: 16px;
}

/* ============================================================
       2. リセット・ベーススタイル
       ブラウザごとの差異をなくす
    ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  /* スムーズスクロール */
}

body {
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--text-primary);
  background-color: var(--color-white);
  line-height: var(--line-height-body);
  -webkit-font-smoothing: antialiased;
  /* フォントを滑らかに */
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
       3. 共通ユーティリティ
       繰り返し使うパターンをクラス化する
    ============================================================ */
/* コンテンツを中央揃えにする共通ラッパー */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}

/* バッジ（小さなラベル） */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
}

.badge--category {
  background: var(--color-ivory);
  color: var(--text-secondary);
  border: var(--border-width) solid var(--border-color);
}

.badge--sage {
  background: var(--color-sage-light);
  color: #085041;
}

/* カード */
.card {
  background: var(--color-white);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.treatment-card,
.reason-card,
.concern-card,
.voice-card,
.access-card,
.faq-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-card:hover,
.reason-card:hover,
.concern-card:hover,
.voice-card:hover,
.access-card:hover,
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(35, 53, 47, 0.08);
}

/* ボタン */
.btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-base);
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn--primary {
  background: var(--color-charcoal);
  color: var(--color-ivory);
}

.btn--secondary {
  background: transparent;
  color: var(--text-secondary);
  border: var(--border-width) solid var(--border-color);
}

/* 背景色の切り替えクラス */
.bg-ivory {
  background-color: var(--color-ivory);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-dark {
  background-color: var(--color-charcoal);
}

/* ============================================================
       スクロールアニメーション
       画面に入ったときにフェードインする
    ============================================================ */
/* 初期状態：非表示（少し下にずれている）*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 画面に入ったら表示（JSでクラス付与）*/
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延クラス：複数要素を順番にアニメーションさせる */
.fade-in--delay-1 {
  transition-delay: 0.1s;
}

.fade-in--delay-2 {
  transition-delay: 0.2s;
}

.fade-in--delay-3 {
  transition-delay: 0.3s;
}

.fade-in--delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
       レスポンシブ対応
       375px未満（小さいスマホ）では2列グリッドを1列に切り替える
    ============================================================ */
@media (max-width: 480px) {
  .reason-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
       4. ナビゲーション
    ============================================================ */
.nav {
  position: sticky;
  /* スクロールしても上部に固定 */
  top: 0;
  z-index: 100;
  background: rgba(245, 244, 240, 0.92);
  backdrop-filter: blur(8px);
  /* 背景をぼかして透過感を出す */
  border-bottom: var(--border-width) solid var(--border-color);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.nav__logo {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--color-charcoal);
  color: var(--color-ivory);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav__cta:hover {
  opacity: 0.8;
}

/* セクション見出しブロック */
.section-header {
  margin-bottom: var(--space-lg);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: 22px;
  font-weight: 500;
  line-height: var(--line-height-heading);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: var(--line-height-body);
}

/* ============================================================
   Section Heading
============================================================ */
.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading__sub {
  margin: 0 0 12px;
  color: #6a8f85;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading__title {
  margin: 0;
  color: #1f2a28;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.section-heading__text {
  margin: 18px 0 0;
  color: #5b6a66;
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 767px) {
  .section-heading {
    text-align: left;
  }
  .section-heading__title {
    font-size: 24px;
    line-height: 1.45;
  }
  .section-heading__text {
    font-size: 14px;
    line-height: 1.85;
  }
  .section-heading__text br {
    display: none;
  }
}
/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 20px 72px;
  background: radial-gradient(circle at top left, rgba(76, 175, 142, 0.1), transparent 38%), linear-gradient(180deg, #fcfefe 0%, #f7f9f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.2) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 48px;
  align-items: center;
}

.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  margin: 0 0 18px;
  color: #6a8f85;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  color: #1f2a28;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.hero__title span {
  color: #4d9b84;
}

.hero__lead {
  margin: 24px 0 0;
  color: #4f5f5b;
  font-size: 17px;
  line-height: 2;
}

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

.hero__points li {
  position: relative;
  padding-left: 28px;
  color: #33403d;
  font-size: 15px;
  line-height: 1.8;
}

.hero__points li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63b398 0%, #3f8b74 100%);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(99, 179, 152, 0.12);
}

.hero__cta {
  margin-top: 34px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5aa58d 0%, #3f8b74 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(63, 139, 116, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(63, 139, 116, 0.28);
  opacity: 0.96;
}

.hero__note {
  margin: 12px 0 0;
  color: #70807c;
  font-size: 13px;
  line-height: 1.7;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #eef3f1;
  box-shadow: 0 24px 56px rgba(35, 53, 47, 0.12);
}

.hero__image {
  display: block;
  width: 100%;
  height: clamp(420px, 52vw, 640px);
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   Hero - Featured variant
============================================================ */
.hero--featured {
  position: relative;
  padding: 100px 20px 80px;
  overflow: hidden;
  background: #f7f9f8;
}

.hero--featured .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 20% 30%, rgba(99, 179, 152, 0.12), transparent 40%), radial-gradient(circle at 80% 20%, rgba(99, 179, 152, 0.08), transparent 40%), linear-gradient(180deg, #fcfefe 0%, #f4f7f6 100%);
}

.hero--featured .hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 56px;
  align-items: center;
}

.hero--featured .hero__title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.25;
  color: #1f2a28;
}

.hero--featured .hero__title span {
  color: #4d9b84;
}

.hero--featured .hero__lead {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
  color: #4f5f5b;
}

.hero--featured .hero__points {
  margin-top: 28px;
}

.hero--featured .hero__image-wrap {
  box-shadow: 0 30px 60px rgba(40, 60, 55, 0.12);
}

.hero--featured .hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.2) 100%);
}

.hero--featured .hero__image {
  height: 560px;
  object-position: center;
}

/* タブレット */
@media (max-width: 1024px) {
  .hero {
    padding: 84px 20px 64px;
  }
  .hero__inner {
    gap: 32px;
    grid-template-columns: 1fr 440px;
  }
  .hero__lead br {
    display: none;
  }
  .hero--featured .hero__inner {
    grid-template-columns: 1fr 420px;
  }
}
/* スマホ */
@media (max-width: 767px) {
  .hero {
    padding: 72px 16px 56px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__content {
    max-width: none;
  }
  .hero__title {
    font-size: 32px;
    line-height: 1.35;
  }
  .hero__lead {
    font-size: 15px;
    line-height: 1.9;
  }
  .hero__points {
    gap: 10px;
  }
  .hero__points li {
    font-size: 14px;
  }
  .hero__button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 15px;
  }
  .hero__image {
    height: 420px;
  }
  .hero--featured {
    padding: 72px 16px 56px;
  }
  .hero--featured .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* ============================================================
       S2 お悩み共感
       役割：「自分のことだ」という共感を確定させる
   Concern
============================================================ */
.concern {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.concern__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.concern-card {
  height: 100%;
  padding: 28px 26px 26px;
  border: 1px solid rgba(77, 155, 132, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(34, 53, 47, 0.06);
  backdrop-filter: blur(8px);
}

.concern-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #63b398 0%, #3f8b74 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.concern-card__title {
  margin: 18px 0 0;
  color: #1f2a28;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.concern-card__text {
  margin: 14px 0 0;
  color: #556562;
  font-size: 15px;
  line-height: 1.95;
}

.concern__foot {
  margin-top: 32px;
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(99, 179, 152, 0.08) 0%, rgba(99, 179, 152, 0.04) 100%);
}

.concern__foot-text {
  margin: 0;
  color: #33403d;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

/* タブレット */
@media (max-width: 1024px) {
  .concern {
    padding: 80px 0 88px;
  }
  .concern-card {
    padding: 24px 22px 22px;
  }
  .concern-card__title {
    font-size: 20px;
  }
}
/* スマホ */
@media (max-width: 767px) {
  .concern {
    padding: 72px 0 80px;
  }
  .concern__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .concern-card {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }
  .concern-card__icon {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
  .concern-card__title {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.5;
  }
  .concern-card__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.85;
  }
  .concern__foot {
    margin-top: 24px;
    padding: 22px 18px;
    border-radius: 20px;
  }
  .concern__foot-text {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }
}
/* ============================================================
       S3 選ばれる理由
       役割：「なぜここか」を具体的な行動・仕組みで証明する
    ============================================================ */
.reason {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

.reason__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.reason-card {
  height: 100%;
  padding: 30px 28px 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(77, 155, 132, 0.1);
  box-shadow: 0 20px 42px rgba(35, 53, 47, 0.06);
}

.reason-card__head {
  display: grid;
  gap: 16px;
}

.reason-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #63b398 0%, #3f8b74 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reason-card__title {
  margin: 0;
  color: #1f2a28;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.reason-card__text {
  margin: 18px 0 0;
  color: #556562;
  font-size: 15px;
  line-height: 1.95;
}

/* タブレット */
@media (max-width: 1024px) {
  .reason {
    padding: 80px 0 88px;
  }
  .reason-card {
    padding: 26px 22px 22px;
  }
  .reason-card__title {
    font-size: 21px;
  }
}
/* スマホ */
@media (max-width: 767px) {
  .reason {
    padding: 72px 0 80px;
  }
  .reason__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .reason-card {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }
  .reason-card__head {
    gap: 14px;
  }
  .reason-card__number {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .reason-card__title {
    font-size: 19px;
    line-height: 1.45;
  }
  .reason-card__text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.85;
  }
}
/* ============================================================
       S4 医師・院長紹介
       役割：人格と哲学を伝え「この先生に診てもらいたい」を作る
    ============================================================ */
.doctor {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.doctor__main {
  display: grid;
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  margin-top: 40px;
}

.doctor__media {
  position: relative;
  max-width: 360px;
}

.doctor__image-wrap {
  overflow: hidden;
  border-radius: 28px;
  background: #edf3f1;
  box-shadow: 0 24px 52px rgba(34, 53, 47, 0.1);
}

.doctor__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.doctor__content {
  min-width: 0;
  max-width: 720px;
}

.doctor__label {
  margin: 0 0 14px;
  color: #6a8f85;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doctor__name {
  margin-bottom: 6px;
  color: #1f2a28;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.doctor__position {
  margin: 10px 0 0;
  color: #556562;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.doctor__message {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.doctor__message p {
  margin: 0;
  color: #4f5f5b;
  font-size: 16px;
  line-height: 2;
}

.doctor__message strong {
  color: #1f2a28;
  font-weight: 700;
}

.doctor__meta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 48px;
}

.doctor__meta-item {
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(77, 155, 132, 0.1);
  box-shadow: 0 16px 34px rgba(35, 53, 47, 0.05);
}

.doctor__meta-title {
  margin: 0 0 12px;
  color: #1f2a28;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.doctor__meta-text {
  margin: 0;
  color: #556562;
  font-size: 15px;
  line-height: 1.9;
}

/* タブレット */
@media (max-width: 1024px) {
  .doctor {
    padding: 80px 0 88px;
  }
  .doctor__main {
    grid-template-columns: 340px 1fr;
    gap: 36px;
  }
  .doctor__image {
    min-height: 460px;
  }
  .doctor__message p {
    font-size: 15px;
  }
  .doctor__meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* スマホ */
@media (max-width: 767px) {
  .doctor {
    padding: 72px 0 80px;
  }
  .doctor__main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 32px;
  }
  .doctor__image-wrap {
    border-radius: 22px;
  }
  .doctor__image {
    min-height: 380px;
  }
  .doctor__name {
    font-size: 28px;
    line-height: 1.35;
  }
  .doctor__position {
    font-size: 14px;
    line-height: 1.7;
  }
  .doctor__message {
    margin-top: 22px;
    gap: 14px;
  }
  .doctor__message p {
    font-size: 14px;
    line-height: 1.9;
  }
  .doctor__meta {
    margin-top: 24px;
    gap: 14px;
  }
  .doctor__meta-item {
    padding: 20px 18px;
    border-radius: 20px;
  }
  .doctor__meta-title {
    font-size: 15px;
  }
  .doctor__meta-text {
    font-size: 14px;
    line-height: 1.85;
  }
}
/* ============================================================
       S5 施術メニュー
       役割：「自分の悩みに合う施術がある」という確信を作る
    ============================================================ */
.treatment {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

.treatment__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.filter-tag {
  appearance: none;
  border: 1px solid rgba(77, 155, 132, 0.18);
  background: #ffffff;
  color: #3f4c49;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.filter-tag:hover {
  transform: translateY(-1px);
  border-color: rgba(77, 155, 132, 0.28);
  box-shadow: 0 8px 18px rgba(35, 53, 47, 0.06);
}

.filter-tag.is-active {
  background: linear-gradient(135deg, #63b398 0%, #3f8b74 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(63, 139, 116, 0.18);
}

.treatment__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(77, 155, 132, 0.1);
  box-shadow: 0 18px 40px rgba(35, 53, 47, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.treatment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(35, 53, 47, 0.08);
}

.treatment-card.is-hidden {
  display: none;
}

.treatment-card__body {
  padding: 28px 26px 22px;
}

.treatment-card__label {
  margin: 0 0 12px;
  color: #6a8f85;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-card__title {
  margin: 0;
  color: #1f2a28;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.treatment-card__text {
  margin: 16px 0 0;
  color: #556562;
  font-size: 15px;
  line-height: 1.9;
}

.treatment-card__meta {
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.treatment-card__meta div {
  padding-top: 14px;
  border-top: 1px solid rgba(77, 155, 132, 0.12);
}

.treatment-card__meta dt {
  margin: 0 0 6px;
  color: #1f2a28;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.treatment-card__meta dd {
  margin: 0;
  color: #556562;
  font-size: 14px;
  line-height: 1.8;
}

.treatment-card__foot {
  padding: 0 26px 24px;
}

.treatment-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  background: #f3f7f5;
  color: #2d3a37;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.treatment-card__button:hover {
  background: linear-gradient(135deg, #63b398 0%, #3f8b74 100%);
  color: #ffffff;
  transform: translateY(-1px);
}

/* タブレット */
@media (max-width: 1024px) {
  .treatment {
    padding: 80px 0 88px;
  }
  .treatment-card__body {
    padding: 24px 22px 20px;
  }
  .treatment-card__foot {
    padding: 0 22px 22px;
  }
  .treatment-card__title {
    font-size: 21px;
  }
}
/* スマホ */
@media (max-width: 767px) {
  .treatment {
    padding: 72px 0 80px;
  }
  .treatment__filter {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 28px;
  }
  .filter-tag {
    padding: 11px 16px;
    font-size: 13px;
  }
  .treatment__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }
  .treatment-card {
    border-radius: 20px;
  }
  .treatment-card__body {
    padding: 22px 18px 18px;
  }
  .treatment-card__foot {
    padding: 0 18px 18px;
  }
  .treatment-card__title {
    font-size: 19px;
    line-height: 1.45;
  }
  .treatment-card__text,
  .treatment-card__meta dd {
    font-size: 14px;
    line-height: 1.85;
  }
  .treatment-card__meta dt {
    font-size: 13px;
  }
}
/* ============================================================
       S6 患者の声
       役割：第三者の言葉でS1〜S5の信頼を確定させる
    ============================================================ */
.voice {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.voice-card {
  padding: 26px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(77, 155, 132, 0.1);
  box-shadow: 0 18px 40px rgba(35, 53, 47, 0.06);
}

.voice-card__tag {
  margin: 0 0 16px;
  font-size: 12px;
  color: #6a8f85;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.voice-card__block {
  margin-top: 14px;
}

.voice-card__label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: #4d9b84;
}

.voice-card__text {
  margin: 0;
  font-size: 14px;
  color: #556562;
  line-height: 1.9;
}

.voice__note {
  margin-top: 28px;
  font-size: 13px;
  color: #7b8a86;
  text-align: center;
}

/* タブレット */
@media (max-width: 1024px) {
  .voice__grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* スマホ */
@media (max-width: 767px) {
  .voice__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .voice-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .voice-card__text {
    font-size: 14px;
    line-height: 1.85;
  }
}
/* ============================================================
       S7 来院の流れ
       役割：初めての患者の「未知への不安」を図解で解消する
    ============================================================ */
.flow {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

.flow__list {
  margin-top: 40px;
  display: grid;
  gap: 0;
}

.flow-item {
  display: grid;
  grid-template-columns: 84px 1px minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
  position: relative;
}

.flow-item:not(:last-child) {
  padding-bottom: 28px;
}

.flow-item:not(:first-child) {
  padding-top: 12px;
}

.flow-item__side {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.flow-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #63b398 0%, #3f8b74 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(63, 139, 116, 0.16);
}

.flow-item__line {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(99, 179, 152, 0.1) 0%, rgba(99, 179, 152, 0.32) 20%, rgba(99, 179, 152, 0.32) 80%, rgba(99, 179, 152, 0.1) 100%);
}

.flow-item:last-child .flow-item__line {
  background: linear-gradient(180deg, rgba(99, 179, 152, 0.1) 0%, rgba(99, 179, 152, 0.28) 45%, rgba(99, 179, 152, 0) 100%);
}

.flow-item__content {
  padding: 8px 0 0;
}

.flow-item__title {
  margin: 0;
  color: #1f2a28;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.flow-item__text {
  margin: 12px 0 0;
  color: #556562;
  font-size: 15px;
  line-height: 1.95;
}

/* タブレット */
@media (max-width: 1024px) {
  .flow {
    padding: 80px 0 88px;
  }
  .flow-item {
    grid-template-columns: 76px 1px minmax(0, 1fr);
    column-gap: 20px;
  }
  .flow-item__num {
    width: 50px;
    height: 50px;
    font-size: 13px;
  }
  .flow-item__title {
    font-size: 22px;
  }
}
/* スマホ */
@media (max-width: 767px) {
  .flow {
    padding: 72px 0 80px;
  }
  .flow__list {
    margin-top: 32px;
  }
  .flow-item {
    grid-template-columns: 60px 1px minmax(0, 1fr);
    column-gap: 16px;
  }
  .flow-item:not(:last-child) {
    padding-bottom: 24px;
  }
  .flow-item__num {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }
  .flow-item__content {
    padding-top: 2px;
  }
  .flow-item__title {
    font-size: 18px;
    line-height: 1.45;
  }
  .flow-item__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.85;
  }
}
/* ============================================================
       S9 よくある質問（アコーディオン）
       役割：予約直前の「最後の迷い」を全部回収する
    ============================================================ */
.faq {
  position: relative;
  padding: 88px 0 96px;
  background: #ffffff;
}

.faq-list {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(77, 155, 132, 0.1);
  box-shadow: 0 14px 30px rgba(35, 53, 47, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: #1f2a28;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #4d9b84;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded=true] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.is-open {
  max-height: 240px;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: #556562;
  font-size: 15px;
  line-height: 1.95;
}

/* タブレット */
@media (max-width: 1024px) {
  .faq {
    padding: 80px 0 88px;
  }
  .faq-question {
    padding: 22px 22px;
    font-size: 16px;
  }
  .faq-answer p {
    padding: 0 22px 22px;
  }
}
/* スマホ */
@media (max-width: 767px) {
  .faq {
    padding: 72px 0 80px;
  }
  .faq-list {
    margin-top: 32px;
    gap: 12px;
  }
  .faq-item {
    border-radius: 20px;
  }
  .faq-question {
    padding: 18px 18px;
    font-size: 15px;
    line-height: 1.65;
  }
  .faq-answer.is-open {
    max-height: 320px;
  }
  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
    line-height: 1.85;
  }
}
/* ============================================================
       S8 アクセス・診療時間
       役割：「行けそう」という感覚を作る情報設計
    ============================================================ */
/* ============================================================
   Access
============================================================ */
.access {
  position: relative;
  padding: 88px 0 96px;
}

.access__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

.access__info,
.access__side {
  display: grid;
  gap: 24px;
}

.access-card {
  padding: 28px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(77, 155, 132, 0.1);
  box-shadow: 0 18px 40px rgba(35, 53, 47, 0.06);
}

.access-card__title {
  margin: 0 0 18px;
  color: #1f2a28;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.access-card__text {
  margin: 0;
  color: #556562;
  font-size: 15px;
  line-height: 1.9;
}

.access-card__caption {
  margin: 14px 0 0;
  color: #7b8a86;
  font-size: 13px;
  line-height: 1.8;
}

.access-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.access-list__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.access-list dt {
  margin: 0;
  color: #1f2a28;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.access-list dd {
  margin: 0;
  color: #556562;
  font-size: 15px;
  line-height: 1.9;
}

.access-list a {
  color: #3f8b74;
  text-decoration: none;
}

.access-hours {
  width: 100%;
  border-collapse: collapse;
}

.access-hours th,
.access-hours td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(77, 155, 132, 0.12);
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
}

.access-hours th {
  width: 96px;
  color: #1f2a28;
  font-weight: 700;
}

.access-hours td {
  color: #556562;
}

.access-card__actions {
  margin-top: 22px;
}

.access-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #63b398 0%, #3f8b74 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(63, 139, 116, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.access-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(63, 139, 116, 0.24);
  opacity: 0.96;
}

.access-map {
  margin-top: 32px;
}

.access-map__frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(35, 53, 47, 0.08);
}

.access-map__frame iframe {
  display: block;
  width: 100%;
  height: 420px;
}

/* タブレット */
@media (max-width: 1024px) {
  .access {
    padding: 80px 0 88px;
  }
  .access__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .access-card {
    padding: 24px 22px;
  }
  .access-card__title {
    font-size: 20px;
  }
}
/* スマホ */
@media (max-width: 767px) {
  .access {
    padding: 72px 0 80px;
  }
  .access__grid {
    margin-top: 32px;
    gap: 16px;
  }
  .access__info,
  .access__side {
    gap: 16px;
  }
  .access-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .access-card__title {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .access-card__text,
  .access-list dd,
  .access-hours th,
  .access-hours td {
    font-size: 14px;
    line-height: 1.85;
  }
  .access-list__row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }
  .access-card__caption {
    font-size: 12px;
    line-height: 1.7;
  }
  .access-map {
    margin-top: 24px;
  }
  .access-map__frame {
    border-radius: 20px;
  }
  .access-map__frame iframe {
    height: 320px;
  }
}
/* ============================================================
       S10 クロージングCTA
       役割：S1の伏線を回収しLP全体を一つの物語として完結させる
    ============================================================ */
.cta {
  padding: 96px 0 0;
  background: #1f2a28;
  color: #ffffff;
}

.cta__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta__eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #9fbab3;
  font-weight: 700;
}

.cta__title {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.3;
  font-weight: 700;
}

.cta__title span {
  color: #63b398;
}

.cta__lead {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 2;
  color: #c7d6d1;
}

.cta__guarantee {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.cta__guarantee-item {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta__guarantee-item h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.cta__guarantee-item p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #9fbab3;
}

.cta__actions {
  margin-top: 40px;
}

.cta__button {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 16px 24px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta__button + .cta__button {
  margin-top: 14px;
}

.cta__button--primary {
  background: linear-gradient(135deg, #63b398 0%, #3f8b74 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(63, 139, 116, 0.3);
}

.cta__button--primary:hover {
  transform: translateY(-2px);
}

.cta__button--secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.cta__button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.cta__note {
  margin-top: 16px;
  font-size: 12px;
  color: #9fbab3;
}

/* Footer */
.footer {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  color: #8ea6a0;
}

/* SP */
@media (max-width: 767px) {
  .cta {
    padding: 80px 0 0;
  }
  .cta__title {
    font-size: 28px;
  }
  .cta__lead {
    font-size: 14px;
    line-height: 1.9;
  }
}

/*# sourceMappingURL=style.css.map */
