/* ==================================================================================
   疾患別ページ用スタイルシート (disease-hero.css)
   堂島針灸接骨院ウェブサイト
   ================================================================================== */

/* ==================================================================================
   1. Google Fonts インポート
   ================================================================================== */
/* 多言語対応のため、日本語フォント(Kaisei Decol, Shippori Mincho)と
   欧文フォント(Lato, Montserrat, Open Sans, Questrial, Roboto, Rubik)を読み込み */
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Questrial&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Shippori+Mincho+B1&display=swap');


/* ==================================================================================
   2. グローバルリセット
   ================================================================================== */
/* すべての要素にborder-boxモデルを適用し、paddingとborderを幅に含める */
*, *::before, *::after {
  box-sizing: border-box;
}


/* ==================================================================================
   3. CSS変数定義 (レスポンシブ対応)
   ================================================================================== */
/* デスクトップ・タブレット・モバイルの3段階でフォントサイズを自動調整 */

/* --- デスクトップ用のデフォルト値 (1201px以上) --- */
:root {
  /* --- 基本フォントサイズ --- */
  --disease-base-font-size: 16px;           /* 本文テキスト */
  --disease-point-font-size: 20px;          /* 重要ポイント */
  --disease-point-title-font-size: 24px;    /* ポイントタイトル */
  --disease-small-text-size: 15px;          /* 小さいテキスト */
  --disease-extra-small-text-size: 13px;    /* 注釈・備考 */
  
  /* --- 見出しフォントサイズ --- */
  --disease-title-font-size: 38px;          /* ページタイトル */
  --disease-subtitle-font-size: 28px;       /* サブタイトル */
  --disease-section-title-size: 28px;       /* セクションタイトル */
  --disease-section-subtitle-size: 20px;    /* セクションサブタイトル */
  --disease-card-title-size: 22px;          /* カードタイトル */
  
  /* --- ヒーローセクション専用 --- */
  --disease-hero-title-size: 48px;          /* ヒーロータイトル */
  --disease-hero-subtitle-size: 28px;       /* ヒーローサブタイトル */
  --disease-hero-en-size: 14px;             /* ヒーロー英語テキスト */
  --disease-hero-text-size: 16px;           /* ヒーロー説明文 */
  
  /* --- 装飾要素 --- */
  --disease-number-size: 72px;              /* 大きな数字（STEP番号など） */
  --disease-flow-number-size: 54px;         /* フロー番号 */
  --disease-flow-title-size: 28px;          /* フロータイトル */
  --disease-btn-pdf-size: 14px;             /* PDFボタンテキスト */
  
  /* レスポンシブブレークポイント（参照用） */
  /* タブレット: 1200px以下 */
  /* スマートフォン: 768px以下 */
}

/* --- タブレット用フォントサイズ設定 (769px〜1200px) --- */
@media screen and (max-width: 1200px) {
  :root {
    --disease-base-font-size: 16px;           /* 本文は維持 */
    --disease-title-font-size: 34px;          /* タイトルを縮小 */
    --disease-subtitle-font-size: 26px;       /* サブタイトルを縮小 */
    --disease-section-title-size: 26px;       /* セクションタイトルを縮小 */
    --disease-section-subtitle-size: 18px;    /* セクションサブタイトルを縮小 */
    --disease-flow-number-size: 56px;         /* フロー番号を縮小 */
    --disease-flow-title-size: 24px;          /* フロータイトルを縮小 */
  }
}

/* --- スマートフォン用フォントサイズ設定 (768px以下) --- */
@media screen and (max-width: 768px) {
  :root {
    --disease-base-font-size: 14.4px;         /* 本文を縮小 */
    --disease-point-font-size: 16px;          /* ポイントを縮小 */
    --disease-title-font-size: 24px;          /* タイトルを大幅縮小 */
    --disease-subtitle-font-size: 18px;       /* サブタイトルを大幅縮小 */
    --disease-hero-title-size: 32px;          /* ヒーロータイトルを縮小 */
    --disease-hero-en-size: 12px;             /* ヒーロー英語を縮小 */
    --disease-hero-text-size: 13px;           /* ヒーローテキストを縮小 */
    --disease-section-title-size: 22px;       /* セクションタイトルを縮小 */
    --disease-section-subtitle-size: 18px;    /* セクションサブタイトルを縮小 */
    --disease-card-title-size: 18px;          /* カードタイトルを縮小 */
    --disease-small-text-size: 15px;          /* 小さいテキストを縮小 */
    --disease-extra-small-text-size: 13px;    /* 注釈を縮小 */
    --disease-number-size: 48px;              /* 大きな数字を縮小 */
    --disease-flow-number-size: 48px;         /* フロー番号を縮小 */
    --disease-flow-title-size: 20px;          /* フロータイトルを縮小 */
  }
}


/* ==================================================================================
   4. 基本レイアウト設定
   ================================================================================== */

/* --- ページ全体の背景色 --- */
body {
  background-color: #FBF8F6;  /* 温かみのあるベージュ系背景 */
}

/* --- コンテンツラッパー (最大幅1400px) --- */
.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ==================================================================================
   5. ヒーローセクション
   ================================================================================== */
/* 疾患別ページのトップに表示される大きなビジュアルエリア */

/* --- ヒーローセクション基本設定 --- */
.disease-hero-section {
  margin: 0;
}

/* --- ヒーロー背景画像エリア --- */
.disease-hero-image {
  position: relative;
  min-height: 400px;
  background-image: url('/assets/img/sinkyu/disease-hero.webp');  /* デフォルト背景画像 */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
}

/* --- ヒーローバリエーション (ページ別の背景画像) --- */
.disease-hero-section .normal {
  background-image: url('/assets/img/sinkyu/disease-hero-normal.webp');  /* 一般鍼灸用 */
}
.disease-hero-section .child {
  background-image: url('/assets/img/sinkyu/disease-hero-child.webp');  /* 小児鍼灸用 */
}

/* --- 大画面対応 (1600px以上) --- */
/* デスクトップで背景画像を縦幅固定・右寄せ表示 */
@media screen and (min-width: 1600px) {
  .disease-hero-image {
    background-image: url('/assets/img/sinkyu/disease-hero-large.webp');
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
  }
  .disease-hero-section .normal {
    background-image: url('/assets/img/sinkyu/disease-hero-large-normal.webp');
  }
  .disease-hero-section .child {
    background-image: url('/assets/img/sinkyu/disease-hero-large-child.webp');
  }
}

/* --- ヒーローコンテンツボックス --- */
/* 半透明の白背景でテキストを読みやすくする */
.disease-hero-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px 50px;
  max-width: 650px;
}

/* --- ヒーロー英語タイトル --- */
.disease-hero-en {
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--disease-hero-en-size);
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;  /* 英字を大文字に変換 */
}

/* --- ヒーロー日本語タイトル --- */
.disease-hero-title {
  font-size: var(--disease-hero-title-size);
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

/* --- ヒーロー説明文 --- */
.disease-hero-text {
  font-size: var(--disease-small-text-size);
  line-height: 1.8;
  color: #333;
  margin: 0;
  font-weight: 400;
}


/* ==================================================================================
   6. パンくずリンク (Breadcrumbs)
   ================================================================================== */
/* ページの階層構造を示すナビゲーション */

.disease-breadcrumbs-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
}

.disease-breadcrumbs-wrapper #breadcrumbs {
  text-align: right;
  font-size: 13px;
  color: #999;
}

.disease-breadcrumbs-wrapper #breadcrumbs a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.disease-breadcrumbs-wrapper #breadcrumbs a:hover {
  color: #333;
}

.disease-breadcrumbs-wrapper #breadcrumbs a::after {
  content: 'ー';
  margin: 0 8px;
  color: #ccc;
}

.disease-breadcrumbs-wrapper #breadcrumbs .current {
  color: #333;
  font-weight: 600;
}


/* ==================================================================================
   7. コンテンツラッパー
   ================================================================================== */
/* メインコンテンツエリアの幅と余白を制御 */

.disease-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.disease-content-wrapper .wpr {
  max-width: 100%;
  padding: 0 40px;
}


/* ==================================================================================
   8. レスポンシブ基本調整 (Responsive Base Adjustments)
   ================================================================================== */
/* 基本レイアウト要素(wrapper, breadcrumbs, hero)のレスポンシブ対応
   より詳細な各セクションの調整は後半のセクション25-26を参照 */

/* --- タブレット用 (769px〜1200px) --- */
@media screen and (max-width: 1200px) {

  .wrapper {
    padding: 0 20px;
  }
  
  .disease-content-wrapper {
    max-width: 1080px;
  }
  
  .disease-breadcrumbs-wrapper {
    max-width: 1080px;
    padding: 15px 30px;
  }
  
  .disease-content-wrapper .wpr {
    padding: 0 30px;
  }
}

/* --- スマートフォン用 (768px以下) --- */
@media screen and (max-width: 768px) {
  .disease-hero-section {
    padding-bottom: 50px;
  }
  .disease-hero-image {
    min-height: 300px;
    padding: 40px 20px 0;
    align-items: flex-end;
  }
  
  .disease-hero-content {
    padding: 25px 20px;
    max-width: 100%;
    margin-bottom: -60px;
  }
  
  .disease-hero-en {
    font-size: var(--disease-hero-en-size);
    margin-bottom: 8px;
  }
  
  .disease-hero-title {
    font-size: var(--disease-hero-title-size);
    margin-bottom: 15px;
  }
  
  .disease-hero-text {
    font-size: var(--disease-hero-text-size);
    line-height: 1.7;
  }
  
  .disease-content-wrapper {
    max-width: 100%;
  }
  
  .disease-breadcrumbs-wrapper {
    max-width: 100%;
    padding: 15px 20px;
  }
  
  .disease-breadcrumbs-wrapper #breadcrumbs {
    font-size: 11px;
  }
  
  .disease-content-wrapper .wpr {
    padding: 0 20px;
  }
}


/* ==================================================================================
   9. 治療一覧セクション (Treatment List)
   ================================================================================== */
/* 複数の治療メニューをカード形式で表示するセクション */

.disease-treatment-list {
  padding: 60px 40px;
}

/* --- 治療一覧タイトル --- */
.disease-treatment-list-title {
  font-size: var(--disease-title-font-size);
  font-weight: 700;
  color: #333;
  margin: 0 0 50px 0;
  text-align: left;
  letter-spacing: 0.05em;
}

.disease-treatment-list-title .title-bar {
  font-size: 32px;
  font-weight: 600;
  margin-right: 15px;
  color: #333;
}

/* --- 治療カードグリッド --- */
/* デスクトップでは3列表示 */
.disease-treatment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* --- 治療カード --- */
.disease-treatment-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* ホバー時に上に浮き上がる効果 */
.disease-treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* カード内の画像エリア */
.disease-treatment-card .card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.disease-treatment-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

/* ホバー時に画像を拡大する効果 */
.disease-treatment-card:hover .card-image img {
  transform: scale(1.05);
}

.disease-treatment-card .card-title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  text-align: center;
  padding: 25px 20px;
  margin: 0;
  letter-spacing: 0.05em;
}

.disease-treatment-card .card-description {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  padding: 0 20px 20px 20px;
  margin: 0;
}

/* --- カード内ボタンエリア --- */
.disease-treatment-card .card-buttons {
  padding: 0 20px 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 詳細ボタン (緑) */
.disease-treatment-card .btn-detail {
  display: block;
  background: #2b9c6f;
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s;
}

.disease-treatment-card .btn-detail:hover {
  background: #238156;
}

/* ボタングループ (2列並び) */
.disease-treatment-card .btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* 症例・患者様の声ボタン (ゴールド) */
.disease-treatment-card .btn-case,
.disease-treatment-card .btn-voice {
  display: block;
  background: #a89968;
  color: #fff;
  text-align: center;
  padding: 12px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}

.disease-treatment-card .btn-case:hover,
.disease-treatment-card .btn-voice:hover {
  background: #8f7f52;
}

/* normal.html専用スタイル */
.page-normal-sinkyu .disease-treatment-card .card-title {
  padding-bottom: 10px;
}


/* ==================================================================================
   10. 一般鍼灸治療 概要セクション
   ================================================================================== */
/* 一般的な鍼灸治療の概要と説明を表示するセクション */

.normal-treatment-overview {
  padding: 40px 0;
}

/* --- イントロダクション --- */
.normal-treatment-overview .overview-intro {
  margin-bottom: 40px;
}

.normal-treatment-overview .overview-intro p {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

/* --- 画像エリア --- */
.normal-treatment-overview .overview-image {
  text-align: center;
  margin: 50px 0;
}

.normal-treatment-overview .overview-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.normal-treatment-overview .overview-description {
  margin: 40px 0;
}

.normal-treatment-overview .overview-description p {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

/* --- ヘルパークラス: 赤色強調テキスト --- */
.red-text {
  color: #CC4242;
  font-weight: 700;
}

/* --- 未病セクション (黄色い背景ボックス) --- */
.normal-treatment-overview .mibyou-section {
  background: #FDFAE7;
  border: 2px solid #DCE8B7;
  border-radius: 8px;
  padding: 10px 30px 20px;
  margin: 0px 0;
}

.normal-treatment-overview .mibyou-title {
  font-size: var(--disease-point-font-size);
  font-weight: 700;
  color: #333;
  padding: 0 10px;
  margin-left: -10px;
}

.normal-treatment-overview .mibyou-text {
  font-size: var(--disease-base-font-size);
  line-height: 2;
  color: #333;
  text-align: justify;
}

.normal-treatment-overview .overview-footer {
  font-size: var(--disease-base-font-size);
  line-height: 2;
  color: #333;
  margin-top: 40px;
  text-align: justify;
}

.normal-treatment-overview .overview-footer p {
  margin-bottom: 20px;
}

.normal-treatment-overview .overview-footer p:last-child {
  margin-bottom: 0;
}

/* タブレット対応（治療一覧） */
@media screen and (max-width: 1200px) {
  .disease-treatment-list {
    padding: 50px 30px;
  }
  
  .disease-treatment-cards {
    gap: 25px;
  }
}

/* スマートフォン対応（治療一覧） */
@media screen and (max-width: 768px) {
  .disease-treatment-list {
    padding: 40px 20px;
  }
  
  .disease-treatment-list-title {
    font-size: var(--disease-title-font-size);
    margin-bottom: 35px;
  }
  
  .disease-treatment-list-title .title-bar {
    font-size: var(--disease-subtitle-font-size);
    margin-right: 10px;
  }
  
  .disease-treatment-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .disease-treatment-card .card-image {
    height: 200px;
  }
  
  .disease-treatment-card .card-title {
    font-size: var(--disease-card-title-size);
    padding: 20px 15px;
  }
  
  .disease-treatment-card .card-description {
    font-size: var(--disease-base-font-size);
    padding: 0 15px 15px 15px;
  }
  
  .disease-treatment-card .card-buttons {
    padding: 0 15px 20px 15px;
  }

  /* 一般鍼灸治療 概要セクション（スマートフォン） */
  .normal-treatment-overview {
    padding: 40px 0px;
  }

  .normal-treatment-overview .overview-intro p,
  .normal-treatment-overview .overview-description p,
  .normal-treatment-overview .overview-footer {
    font-size: var(--disease-base-font-size);
    line-height: 2;
    text-align: left;
  }

  .normal-treatment-overview .overview-footer p {
    margin-bottom: 15px;
  }

  .normal-treatment-overview .overview-footer p:last-child {
    margin-bottom: 0;
  }

  .normal-treatment-overview .overview-image {
    margin: 30px 0;
  }

  .normal-treatment-overview .mibyou-section {
    padding: 20px;
  }

  .normal-treatment-overview .mibyou-title {
    font-size: var(--disease-subtitle-font-size);
    padding: 0 8px;
    margin-left: -8px;
  }

  .normal-treatment-overview .mibyou-text {
    text-align: left;
  }
}


/* ==================================================================================
   11. 真頭皮針療法セクション
   ================================================================================== */
/* 当院の専門的な真頭皮針療法について詳しく説明するセクション */

.disease-therapy-section {
  padding: 60px 40px;
}

.disease-section-title {
  font-size: var(--disease-title-font-size);
  font-weight: 700;
  color: #333;
  margin: 0 0 40px 0;
  text-align: left;
  padding: 20px 0;
  border-bottom: 2px dotted #e0e0e0;
  display: flex;
  align-items: flex-start;
}

.disease-section-title::before {
  content: 'ー';
  font-size: 32px;
  font-weight: 600;
  margin-right: 15px;
  margin-top: 0.65em;
  color: #333;
  flex-shrink: 0;
  line-height: 1;
}

.therapy-intro {
  margin-bottom: 50px;
}

.therapy-highlight {
  font-size: calc(var(--disease-base-font-size) + 4px);
  line-height: 1.9;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
}

.therapy-highlight .red-highlight {
  color: #d32f2f;
}

.therapy-text {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin: 0;
}

.brain-section {
  margin-bottom: 50px;
}

.brain-image-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

/* --- 脳・頭皮セクションのタイトル --- */
.brain-title,
.scalp-title {
  font-size: var(--disease-subtitle-font-size);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 30px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

/* --- 脳コンテンツラッパー (画像+テキストの横並び) --- */
.brain-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 脳の画像エリア */
.brain-image {
  flex: 0 0 auto;
  width: 450px;
}

.brain-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 脳のテキストボックス */
.brain-text-box {
  flex: 1;
  display: flex;
  align-items: center;
}

.brain-description {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin: 0;
}

/* --- 頭皮針セクション --- */
.scalp-acupuncture-section {
  margin-bottom: 0;
}

.scalp-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.scalp-image-box {
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.scalp-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.scalp-description {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin: 30px 0 0 0;
}

.research-highlight {
  background-color: #FDFAE7;
  padding: 25px 30px;
  margin: 30px 0;
  text-align: center;
  border-radius: 4px;
}

.research-highlight p {
  font-size: var(--disease-base-font-size);
  line-height: 1.8;
  color: #333;
  margin: 0;
  font-weight: 600;
}

/* ==================================================================================
   12. 療法アプローチセクション
   ================================================================================== */
/* 治療方法のアプローチや考え方を説明するセクション */

.therapy-approach-section {
  padding: 60px 0;
}

.approach-description {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin: 0 0 20px 0;
}

.approach-list {
  list-style-type: disc !important;
  list-style-position: outside !important;
  padding: 20px 30px 20px 50px;
  margin: 0 0 15px 0;
  background-color: #FDFAE7;
  border-radius: 4px;
}

.approach-list li {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin-bottom: 8px;
}

.red-text {
  color: #d32f2f;
  font-weight: 600;
}

.approach-footer {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin: 0 0 40px 0;
}

.approach-center {
  text-align: center;
  margin: 40px 0;
}

.approach-therefore {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
}

.arrow-down {
  width: 50px;
  height: auto;
  display: inline-block;
}

.approach-highlight-box {
  background-color: #FDFFF4;
  border: 2px solid #DCE8B7;
  border-radius: 8px;
  padding: 30px 40px;
  margin: 0 0 50px 0;
}

.approach-highlight-box p {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin: 0;
}

.approach-highlight-box .mt20 {
  margin-top: 20px;
}

.approach-highlight-box .underline {
  text-decoration: underline;
  font-weight: 700;
}

/* ==================================================================================
   13. 患者様の声セクション
   ================================================================================== */
/* 実際に治療を受けた患者様の感想を表示 */

.patient-voice-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  border-radius: 8px;
  padding: 40px;
}

.voice-image {
  flex: 0 0 auto;
  width: 350px;
}

.voice-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.voice-content {
  flex: 1;
}

.voice-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px 0;
}

.voice-note {
  font-size: 13px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.voice-list {
  list-style: disc !important;
  list-style-position: outside !important;
  padding: 20px 30px 20px 50px;
  margin: 0 0 20px 0;
  background-color: #FDFAE7;
  border-radius: 4px;
}

.voice-list li {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin-bottom: 8px;
}

.voice-footer {
  font-size: var(--disease-base-font-size);
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* ==================================================================================
   14. 真頭皮針適応症セクション
   ================================================================================== */
/* 真頭皮針療法で治療できる症状の一覧 */

.disease-indications-section {
  padding: 40px 0;
}

.indications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0px;
}

.indications-category-box {
  border: 2px solid #DCE8B7;
  border-radius: 8px;
  padding: 15px 30px;
  background: #FDFFF4;
  margin: 0;
}

.indications-category-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  padding: 0 15px;
  margin: 0;
  float: none;
  width: auto;
}

.indication-text {
  font-size: var(--disease-base-font-size);
  line-height: 1.8;
  color: #333;
  margin: 0 0 10px 0;
}

/* ==================================================================================
   15. 真頭皮針の治療目的セクション
   ================================================================================== */
/* 治療の3つの主要な目的を提示 */

.disease-goals-section {
  padding: 40px 0;
}

.goals-intro {
  font-size: 24px;
  line-height: 1.9;
  color: #333;
  text-align: center;
  margin: 30px 0 60px 0;
  font-weight: 600;
}

/* 赤色ハイライト (重要箇所の強調) */
.goals-intro .highlight-red {
  color: #d32f2f;
  font-weight: 700;
}

/* --- 治療目的グリッド (3列表示) --- */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* 目的カード (緑色のトップボーダー) */
.goal-item {
  border-top: 4px solid #2b9c6f;
  padding: 40px 0px;
  text-align: center;
  position: relative;
}

/* 目的番号 (大きなグレーの数字) */
.goal-number {
  font-size: 72px;
  color: #AAA;
  line-height: 1;
  margin-bottom: 20px;

  font-family: "Roboto", sans-serif;
  font-weight: 200;
}

/* 目的タイトル */
.goal-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

/* 目的説明文 */
.goal-text {
  font-size: var(--disease-base-font-size);
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: left;
}

.goals-cta {
  text-align: center;
}

.btn-reservation {
  display: block;
  background: #2b9c6f;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 80px;
  border-radius: 50px;
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(43, 156, 111, 0.3);
}

.btn-reservation:hover {
  background: #238156;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 156, 111, 0.4);
}

/* ==================================================================================
   16. よくある質問 (FAQ) セクション
   ================================================================================== */
/* 患者様からよく寄せられる質問と回答 */

.disease-faq-section {
  padding: 60px 0;
}

.faq-box {
  background: #FDFAE7;
  border: 3px solid #DCE8B7;
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #DCE8B7;
}

/* Q ラベル (赤色の正方形) */
.faq-label-q {
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  flex-shrink: 0;
}

/* 質問テキスト */
.faq-q-text {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.6;
  padding-top: 5px;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* A ラベル (緑色の正方形) */
.faq-label-a {
  display: inline-block;
  background: #2b9c6f;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.faq-a-content {
  flex: 1;
}

/* 回答タイトル */
.faq-a-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
  padding-top: 5px;
}

.faq-a-text {
  font-size: var(--disease-base-font-size);
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.faq-images {
  margin: 40px 0;
}

.faq-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.faq-notes {
  margin: 40px 0;
  background-color: #FDFAE7;
  padding: 25px 30px;
  border-radius: 4px;
}

.faq-note {
  font-size: var(--disease-base-font-size);
  line-height: 1.8;
  color: #333;
  margin: 8px 0;
  padding-left: 15px;
  position: relative;
}

.faq-note::before {
  content: '※';
  position: absolute;
  left: 0;
}

.faq-conclusion {
  font-size: var(--disease-point-font-size);
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin: 40px 0;
  font-weight: 600;
}

.faq-cta {
  text-align: center;
}

.btn-treatment-cases {
  display: inline-block;
  background: #2b9c6f;
  color: #fff;
  width: 80%;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(43, 156, 111, 0.3);
}

.btn-treatment-cases:hover {
  background: #238156;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 156, 111, 0.4);
}

/* ==================================================================================
   17. 治療風景動画セクション
   ================================================================================== */
/* 実際の治療風景をYouTube動画で紹介 */

.treatment-video-section {
  padding: 40px 0;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================================================================================
   18. 治療の種類セクション
   ================================================================================== */
/* 年齢や症状に応じた治療方法の種類を説明 */

.treatment-types-section {
  padding: 40px 0;
}

.treatment-types-section .wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.treatment-type-item {
  margin-bottom: 80px;
}

.treatment-type-subtitle {
  font-size: var(--disease-subtitle-font-size);
  font-weight: 700;
  color: #2b9c6f;
  margin-bottom: 15px;
  padding-bottom: 15px;
  line-height: 1.6;
  border-bottom: 2px dotted #1BA67A;
}

.treatment-method-label {
  font-size: var(--disease-point-font-size);
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.treatment-age-highlight {
  background: linear-gradient(135deg, #6fbc6a 0%, #5da958 100%);
  color: #fff;
  text-align: center;
  padding: 20px 30px;
  font-size: var(--disease-point-title-font-size);
  font-weight: 700;
  border-radius: 8px;
  margin: 30px 0 40px;
  box-shadow: 0 4px 12px rgba(111, 188, 106, 0.25);
}

.treatment-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: flex-start;
}

.treatment-text-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.treatment-description p {
  font-size: var(--disease-base-font-size);
  line-height: 2;
  color: #333;
}

.treatment-image-circle {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.treatment-image-circle img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.treatment-tools-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.treatment-tools-column img {
  width: 70%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}

/* ==================================================================================
   19. 小児はりの治療効果セクション
   ================================================================================== */
/* 小児鍼灸で期待できる効果のリスト */

.treatment-effects-section {
  padding: 40px 0;
}

.effects-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.effects-box {
  background-color: #FDFFF4;
  border: 3px solid #a8c965;
  border-radius: 12px;
  padding: 40px 45px;
}

.effects-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.effects-list li {
  font-size: var(--disease-point-font-size);
  color: #333;
  padding: 1.2em 0;
  border-bottom: 2px dotted #d4d4d4;
  position: relative;
  text-align: center;
}

.effects-list li:first-child {
  padding-top: 0;
}

.effects-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.effects-list .highlight-text {
  color: #CC4242;
  font-weight: 700;
}

.effects-image-circle {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.effects-image-circle img {
  width: 80%;
  height: auto;
  border-radius: 50%;
}

/* ==================================================================================
   20. 小児鍼灸治療（真頭皮針療法）セクション
   ================================================================================== */
/* 子供向けの真頭皮針療法の詳細と適応症 */

.acupuncture-method-section {
  padding: 40px 0;
}

.method-weight-highlight {
  background: linear-gradient(135deg, #6fbc6a 0%, #5da958 100%);
  color: #fff;
  text-align: center;
  padding: 20px 30px;
  font-size: var(--disease-point-title-font-size);
  font-weight: 700;
  border-radius: 8px;
  margin: 0 0 40px;
  box-shadow: 0 4px 12px rgba(111, 188, 106, 0.25);
}

.pediatric-indication-box {
  background-color: #FDFFF4;
  border: 3px solid #DCE8B7;
  border-radius: 12px;
  padding: 40px 50px;
  margin-bottom: 10px;
}

.pediatric-indication-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #DCE8B7;
}

.indication-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.indication-list li {
  font-size: var(--disease-base-font-size);
  color: #333;
  padding: 15px 0;
  border-bottom: 1px dotted #D4C4A8;
  line-height: 1.8;
}

.indication-list li:last-child {
  border-bottom: none;
}

.indication-note {
  font-size: var(--disease-base-font-size);
  color: #333;
  margin-top: 0px;
  font-weight: 500;
}

.method-description {
  margin-bottom: 25px;
}

.method-description p {
  font-size: var(--disease-base-font-size);
  line-height: 2;
  color: #333;
}

.method-cta {
  text-align: center;
  margin: 50px 0 40px;
}

.btn-voice-link {
  display: block;
  width: 60%;
  margin: 0 auto;
  background: linear-gradient(135deg, #2b9c6f 0%, #1d7653 100%);
  color: #fff;
  font-size: var(--disease-subtitle-font-size);
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(43, 156, 111, 0.3);
  transition: all 0.3s ease;
}

.btn-voice-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 156, 111, 0.4);
  background: linear-gradient(135deg, #1d7653 0%, #156845 100%);
}

.method-media-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding-top: 30px;
}

.method-media-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.method-media-caption {
  text-align: center;
  margin: 20px 0 60px 0;
}

.method-media-caption p {
  font-size: var(--disease-base-font-size);
  line-height: 1.8;
  color: #333;
}

/* ==================================================================================
   21. 当院独自の真頭皮針療法セクション
   ================================================================================== */
/* 堂島針灸接骨院オリジナルの治療法について */

.unique-method-section {
  padding: 60px 0;
}

.unique-method-content {
  margin-bottom: 30px;
}

.unique-method-content p {
  font-size: var(--disease-base-font-size);
  line-height: 2;
  color: #333;
  margin-bottom: 15px;
}

.unique-method-content p:last-child {
  margin-bottom: 0;
}

.unique-method-content a {
  color: #2b9c6f;
  text-decoration: underline;
}

.unique-method-content a:hover {
  text-decoration: none;
}

.unique-method-cta {
  text-align: center;
  margin: 50px 0 0;
}

.btn-treatment-cases {
  display: block;
  width: 60%;
  margin: 0 auto;
  background: linear-gradient(135deg, #2b9c6f 0%, #1d7653 100%);
  color: #fff;
  font-size: var(--disease-subtitle-font-size);
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(43, 156, 111, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn-treatment-cases:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1d7653 0%, #156845 100%);
}

/* ==================================================================================
   22. 治療の流れセクション
   ================================================================================== */
/* 初診から治療までのステップを説明 */

.disease-flow-section {
  padding: 60px 0;
}

.flow-intro {
  margin-bottom: 50px;
}

.flow-note {
  font-size: var(--disease-base-font-size);
  line-height: 1.8;
  color: #333;
  margin: 8px 0;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow-step {
  border-radius: 12px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* フロー番号 (大きなイタリック数字) */
.flow-number {
  font-size: var(--disease-flow-number-size);
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  color: #2b9c6f;
  line-height: 1;
  flex-shrink: 0;
  padding-right: 40px;
  border-right: 1px solid #2b9c6f;
  align-self: stretch;
}

/* フローコンテンツエリア (画像+テキスト) */
.flow-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex: 1;
}

/* フロー画像 */
.flow-image {
  flex: 0 0 auto;
  width: 350px;
  border-radius: 8px;
  overflow: hidden;
}

.flow-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* フローテキストエリア */
.flow-text {
  flex: 1;
}

/* フロータイトル (赤色) */
.flow-title {
  font-size: var(--disease-flow-title-size);
  font-weight: 700;
  color: #CC4242;
  margin: 0 0 20px 0;
}

/* フロー説明文 */
.flow-description {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin: 0 0 20px 0;
}

.flow-pdf-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-pdf {
  display: inline-block;
  background: #2b9c6f;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(43, 156, 111, 0.3);
}

.btn-pdf:hover {
  background: #238156;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 156, 111, 0.4);
}

/* ==================================================================================
   23. 料金セクション
   ================================================================================== */
/* 治療費用の案内 */

.disease-pricing-section {
  padding: 40px 0;
}

.pricing-intro {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  text-align: center;
  margin: 30px 0 20px 0;
}
.pricing-cta {
  text-align: center;
}

.btn-pricing {
  display: inline-block;
  background: linear-gradient(135deg, #CE667C 0%, #CE667C 100%);
  color: #fff;
  width: 40%;
  font-size: 24px;
  font-weight: 700;
  padding: 25px 100px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(193, 123, 138, 0.4);
}

.btn-pricing:hover {
  background: linear-gradient(135deg, #b86879 0%, #A74652 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(193, 123, 138, 0.5);
}

/* ==================================================================================
   24. 鍼灸割引回数券セクション
   ================================================================================== */
/* お得な回数券の紹介 */

.discount-ticket-section {
  padding: 40px 0;
}

.ticket-content {
  display: flex;
  gap: 60px;
  align-items: top;
  margin-top: 40px;
}

.ticket-text {
  flex: 1;
}

.ticket-text p {
  font-size: var(--disease-base-font-size);
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.ticket-note {
  font-size: var(--disease-small-text-size);
  color: #666;
  margin-top: 30px;
}

.ticket-image {
  flex: 0 0 auto;
  width: 450px;
}

.ticket-image img {
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 8px;
}


/* ==================================================================================
   25. レスポンシブ詳細調整 - タブレット用 (769px〜1200px)
   ================================================================================== */
/* 各コンテンツセクション(治療一覧、療法、FAQ、料金など)のタブレット最適化
   基本調整はセクション8を参照 */

/* --- 治療一覧セクション (タブレット) --- */
@media screen and (max-width: 1200px) {
  .disease-treatment-list {
    padding: 50px 30px;
  }
  
  .disease-treatment-cards {
    gap: 25px;
  }
}

/* --- 真頭皮針療法セクション (タブレット) --- */
@media screen and (max-width: 1200px) {
  .disease-therapy-section {
    padding: 50px 30px;
  }
  
  .brain-content-wrapper {
    gap: 30px;
  }
  
  .brain-image-box,
  .scalp-box {
    padding: 30px;
  }
  
  .brain-image {
    width: 350px;
  }
  
  .therapy-approach-section {
    padding: 50px 0;
  }
  
  .approach-highlight-box {
    padding: 25px 30px;
  }
  
  .patient-voice-section {
    gap: 30px;
    padding: 30px;
  }
  
  .voice-image {
    width: 280px;
  }
  
  .disease-indications-section {
    padding: 50px 0;
  }
  
  .indications-grid {
    gap: 18px;
  }
  
  .indications-category-box {
    padding: 20px 25px;
  }
  
  /* --- 治療目的セクション (タブレット) --- */
  .disease-goals-section {
    padding: 60px 0;
  }
  
  .goals-intro {
    font-size: 18px;
    margin: 25px 0 50px 0;
  }
  
  .goals-grid {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .goal-item {
    padding: 35px 25px;
  }
  
  .goal-number {
    font-size: 60px;
  }
  
  .goal-title {
    font-size: 20px;
  }
  
  .btn-reservation {
    font-size: 18px;
    padding: 18px 60px;
  }
  
  /* --- FAQセクション (タブレット) --- */
  .disease-faq-section {
    padding: 60px 0;
  }
  
  .faq-box {
    padding: 30px;
    margin: 30px 0;
  }
  
  .faq-q-text {
    font-size: 18px;
  }
  
  .faq-a-title {
    font-size: 17px;
  }
  
  .faq-images {
    margin: 30px 0;
  }
  
  .btn-treatment-cases {
    font-size: 18px;
    padding: 18px 50px;
  }

  /* --- 治療風景動画セクション (タブレット) --- */
  .treatment-video-section {
    padding: 50px 0;
  }

  .video-container {
    margin-top: 30px;
  }
  
  /* --- 治療の種類セクション (タブレット) --- */
  .treatment-types-section {
    padding: 50px 0;
  }
  
  .treatment-type-item {
    margin-bottom: 60px;
  }
  
  .treatment-age-highlight {
    font-size: 20px;
    padding: 18px 25px;
  }
  
  .treatment-content-grid {
    gap: 35px;
  }
  
  .treatment-image-circle {
    max-width: 320px;
  }
  
  /* --- 小児はり治療効果セクション (タブレット) --- */
  .treatment-effects-section {
    padding: 50px 0;
  }
  
  .effects-content-grid {
    gap: 40px;
  }
  
  .effects-box {
    padding: 35px 40px;
  }
  
  .effects-image-circle {
    max-width: 350px;
  }
  
  /* --- 小児鍼灸治療セクション (タブレット) --- */
  .acupuncture-method-section {
    padding: 50px 0;
  }
  
  .method-weight-highlight {
    font-size: 20px;
    padding: 18px 25px;
  }
  
  .pediatric-indication-box {
    padding: 35px 40px;
  }
  
  .pediatric-indication-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .indication-list li {
    padding: 12px 0;
  }
  
  .btn-voice-link {
    width: 100%;
    font-size: 20px;
    padding: 18px 50px;
  }
  
  /* --- 当院独自の真頭皮針療法セクション (タブレット) --- */
  .unique-method-section {
    padding: 50px 0;
  }
  
  .unique-method-content p {
    font-size: var(--disease-base-font-size);
  }
  
  .btn-treatment-cases {
    width: 100%;
    font-size: 24px;
    padding: 22px 50px;
  }
  
  /* --- 治療の流れセクション (タブレット) --- */
  .disease-flow-section {
    padding: 60px 0;
  }
  
  .flow-intro {
    margin-bottom: 40px;
  }
  
  .flow-steps {
    gap: 35px;
  }
  
  .flow-step {
    padding: 30px;
    gap: 30px;
  }
  
  .flow-number {
    font-size: var(--disease-flow-number-size);
    padding-right: 30px;
  }
  
  .flow-content {
    gap: 30px;
  }
  
  .flow-image {
    width: 280px;
  }
  
  .flow-title {
    font-size: var(--disease-flow-title-size);
    margin-bottom: 18px;
  }
  
  .btn-pdf {
    font-size: var(--disease-btn-pdf-size);
    padding: 10px 25px;
  }

  /* --- 料金セクション (タブレット) --- */
  .disease-pricing-section {
    padding: 50px 0;
  }

  .pricing-intro {
    font-size: var(--disease-base-font-size);
    margin: 25px 0 45px 0;
  }

  .btn-pricing {
    font-size: 22px;
    padding: 22px 80px;
  }

  /* --- 鍼灸割引回数券セクション (タブレット) --- */
  .discount-ticket-section {
    padding: 50px 0;
  }

  .ticket-content {
    gap: 40px;
    margin-top: 30px;
  }

  .ticket-image {
    width: 380px;
  }
}


/* ==================================================================================
   26. レスポンシブ詳細調整 - スマートフォン用 (768px以下)
   ================================================================================== */
/* 各コンテンツセクション(治療一覧、療法、FAQ、料金など)のスマートフォン最適化
   縦並びレイアウト、タッチ操作対応、小画面の可読性を重視
   基本調整はセクション8を参照 */

/* --- 治療一覧セクション (スマートフォン) --- */
@media screen and (max-width: 768px) {
  .disease-treatment-list {
    padding: 40px 20px;
  }
  
  .disease-treatment-list-title {
    font-size: var(--disease-title-font-size);
    margin-bottom: 35px;
  }
  
  .disease-treatment-list-title .title-bar {
    font-size: var(--disease-subtitle-font-size);
    margin-right: 10px;
  }
  
  .disease-treatment-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .disease-treatment-card .card-image {
    height: 200px;
  }
  
  .disease-treatment-card .card-title {
    font-size: var(--disease-card-title-size);
    padding: 20px 15px;
  }
  
  .disease-treatment-card .card-buttons {
    padding: 0 15px 20px 15px;
  }

  /* 一般鍼灸治療 概要セクション (スマートフォン) */
  .normal-treatment-overview {
    padding: 40px 0px;
  }

  .normal-treatment-overview .overview-intro p,
  .normal-treatment-overview .overview-description p,
  .normal-treatment-overview .overview-footer p {
    font-size: var(--disease-base-font-size);
    line-height: 2;
    text-align: left;
  }

  .normal-treatment-overview .overview-footer p {
    margin-bottom: 15px;
  }

  .normal-treatment-overview .overview-footer p:last-child {
    margin-bottom: 0;
  }

  .normal-treatment-overview .overview-image {
    margin: 30px 0;
  }

  .normal-treatment-overview .mibyou-section {
    padding: 20px;
  }

  .normal-treatment-overview .mibyou-title {
    font-size: var(--disease-subtitle-font-size);
    padding: 0 8px;
    margin-left: -8px;
  }

  .normal-treatment-overview .mibyou-text {
    text-align: left;
  }
}

/* --- 真頭皮針療法セクション (スマートフォン) --- */
@media screen and (max-width: 768px) {
  .disease-therapy-section {
    padding: 40px 20px;
  }
  
  .disease-section-title {
    font-size: var(--disease-title-font-size);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
  }
  
  .disease-section-title::before {
    font-size: var(--disease-subtitle-font-size);
    margin-right: 10px;
    margin-top: 0.75em;
    flex-shrink: 0;
    line-height: 1;
  }
  
  .therapy-intro {
    margin-bottom: 40px;
  }
  
  .therapy-highlight {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .therapy-text {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
  }
  
  .brain-section {
    margin-bottom: 40px;
  }
  
  .brain-image-box {
    padding: 25px;
  }
  
  .brain-title,
  .scalp-title {
    font-size: var(--disease-subtitle-font-size);
    margin-bottom: 20px;
  }
  
  .brain-content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .brain-image-box,
  .scalp-box {
    padding: 25px;
  }
  
  .brain-image {
    width: 100%;
  }
  
  .brain-description,
  .scalp-description {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
  }
  
  .therapy-approach-section {
    padding: 40px 0;
  }
  
  .approach-description,
  .approach-footer {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
  }
  
  .approach-list li {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
  }
  
  .approach-highlight-box {
    padding: 20px 25px;
    margin: 0 0 40px 0;
  }
  
  .approach-highlight-box p {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
  }
  
  /* --- 患者様の声セクション (スマートフォン) --- */
  .patient-voice-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  
  .voice-image {
    width: 100%;
  }
  
  .voice-title {
    font-size: var(--disease-subtitle-font-size);
  }
  
  .voice-list {
    padding: 15px 20px 15px 35px;
  }
  
  .voice-list li {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
  }
  
  .voice-footer {
    font-size: var(--disease-base-font-size);
  }
  
  /* --- 真頭皮針適応症セクション (スマートフォン) --- */
  .disease-indications-section {
    padding: 40px 0;
  }
  
  .indications-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }
  
  .indications-category-box {
    padding: 20px;
  }
  
  .indications-category-title {
    font-size: var(--disease-section-subtitle-size);
    margin-bottom: 0;
    padding: 0 12px;
  }
  
  .indication-text {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
    margin-top: 0;
  }
  
  /* --- 治療目的セクション (スマートフォン) --- */
  .disease-goals-section {
    padding: 50px 0;
  }
  
  .goals-intro {
    font-size: var(--disease-point-font-size);
    margin: 20px 0 40px 0;
    padding: 0 10px;
    text-align: left;
  }
  
  .goals-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .goal-item {
    padding: 30px 20px;
  }
  
  .goal-number {
    font-size: var(--disease-number-size);
    margin-bottom: 15px;
  }
  
  .goal-title {
    font-size: var(--disease-title-font-size);
    margin-bottom: 15px;
  }
  
  .goal-text {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
  }
  
  .btn-reservation {
    font-size: var(--disease-point-font-size);
    padding: 16px 40px;
    width: 80%;
    margin: 0 auto;
  }
  
  /* --- FAQセクション (スマートフォン) --- */
  .disease-faq-section {
    padding: 50px 0;
  }
  
  .faq-box {
    padding: 25px 20px;
    margin: 30px 0;
  }
  
  .faq-question {
    gap: 10px;
    padding-bottom: 20px;
  }
  
  .faq-answer {
    gap: 10px;
  }
  
  .faq-label-q,
  .faq-label-a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: var(--disease-subtitle-font-size);
  }
  
  .faq-q-text {
    font-size: var(--disease-point-font-size);
  }
  
  .faq-a-title {
    font-size: var(--disease-small-text-size);
    margin-bottom: 12px;
  }
  
  .faq-a-text {
    font-size: var(--disease-base-font-size);
  }
  
  .faq-images {
    margin: 30px 0;
  }
  
  .faq-notes {
    margin: 30px 0;
    padding: 20px 25px;
  }
  
  .faq-note {
    font-size: var(--disease-extra-small-text-size);
    padding-left: 16px;
  }
  
  .faq-conclusion {
    font-size: var(--disease-base-font-size);
    margin: 30px 0;
  }
  
  .btn-treatment-cases {
    font-size: var(--disease-small-text-size);
    padding: 16px 30px;
    margin: 0 auto;
  }
  
  /* --- 治療風景動画セクション (スマートフォン) --- */
  .treatment-video-section {
    padding: 40px 0;
  }
  
  .video-container {
    margin-top: 25px;
  }
  
  /* --- 治療の種類セクション (スマートフォン) --- */
  .treatment-types-section {
    padding: 20px 0;
  }
  
  .treatment-type-item {
    margin-bottom: 50px;
  }
  
  .treatment-type-subtitle {
    font-size: var(--disease-subtitle-font-size);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px dotted #e0e0e0;
  }
  
  .treatment-age-highlight {
    padding: 16px 20px;
    font-size: 18px;
    margin: 25px 0 30px;
  }
  
  .treatment-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .treatment-text-column {
    gap: 25px;
  }
  
  .treatment-image-circle {
    max-width: 300px;
  }
  
  /* --- 小児はり治療効果セクション (スマートフォン) --- */
  .treatment-effects-section {
    padding: 20px 0;
  }
  
  .effects-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .effects-box {
    padding: 30px 25px;
  }
  
  .effects-list {
    gap: 0;
  }
  
  .effects-list li {
    padding: 1em 0;
    font-size: var(--disease-small-text-size);
    text-align: left;
  }
  
  .effects-list li:first-child {
    padding-top: 0;
  }
  
  .effects-list li:last-child {
    padding-bottom: 0;
  }
  
  .effects-image-circle {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .effects-image-circle img {
    display: block;
    margin: 0 auto;
  }
  
  /* --- 小児鍼灸治療セクション (スマートフォン) --- */
  .acupuncture-method-section {
    padding: 40px 0;
  }
  
  .method-weight-highlight {
    font-size: var(--disease-point-font-size);
    padding: 15px 20px;
    margin-bottom: 30px;
  }
  
  .pediatric-indication-box {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
  
  .pediatric-indication-title {
    font-size: var(--disease-point-title-font-size);
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  
  .indication-list li {
    font-size: var(--disease-base-font-size);
    padding: 12px 0;
  }
  
  .indication-note {
    font-size: var(--disease-base-font-size);
  }
  
  .method-description {
    margin-bottom: 20px;
  }
  
  .method-description p {
    font-size: var(--disease-base-font-size);
  }
  
  .method-cta {
    margin: 40px 0 30px;
  }
  
  .btn-voice-link {
    width: 100%;
    font-size: var(--disease-point-font-size);
    padding: 15px 40px;
  }
  
  .method-media-caption p {
    font-size: var(--disease-base-font-size);
  }
  
  /* --- 当院独自の真頭皮針療法セクション (スマートフォン) --- */
  .unique-method-section {
    padding: 40px 0;
  }
  
  .unique-method-content {
    margin-bottom: 20px;
  }
  
  .unique-method-content p {
    font-size: var(--disease-base-font-size);
    line-height: 1.9;
    margin-bottom: 12px;
  }
  
  .unique-method-cta {
    margin: 35px 0 0;
  }
  
  .btn-treatment-cases {
    width: 100%;
    font-size: var(--disease-point-font-size);
    padding: 16px 30px;
  }
  
  /* --- 治療の流れセクション (スマートフォン) --- */
  .disease-flow-section {
    padding: 50px 0;
  }
  
  .flow-intro {
    margin-bottom: 35px;
  }
  
  .flow-note {
    font-size: 14px;
  }
  
  .flow-steps {
    gap: 10px;
  }
  
  .flow-step {
    padding: 15px 20px;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    position: relative;
  }
  
  .flow-number {
    font-size: var(--disease-flow-number-size);
    padding-right: 0;
    border-right: none;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
  }
  
  /* flow-numberからflow-contentの末尾まで縦線を追加 */
  .flow-step::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 70px;
    bottom: 15px;
    width: 1px;
    background-color: #2b9c6f;
  }
  
  .flow-content {
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }
  
  .flow-image {
    width: 100%;
  }
  
  .flow-title {
    font-size: var(--disease-flow-title-size);
    margin-bottom: 15px;
  }
  
  .flow-description {
    font-size: var(--disease-base-font-size);
    line-height: 1.8;
  }
  
  .flow-pdf-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-pdf {
    font-size: 13px;
    padding: 10px 20px;
    text-align: center;
  }

  /* --- 料金セクション (スマートフォン) --- */
  .disease-pricing-section {
    padding: 40px 0;
  }

  .pricing-intro {
    font-size: var(--disease-base-font-size);
    margin: 20px 0 40px 0;
    padding: 0 20px;
  }

  .btn-pricing {
    font-size: var(--disease-point-font-size);
    padding: 18px 0px;
    width: 85%;
    max-width: 85%;
  }

  /* --- 鍼灸割引回数券セクション (スマートフォン) --- */
  .discount-ticket-section {
    padding: 40px 0;
  }

  .ticket-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 25px;
  }

  .ticket-text p {
    font-size: var(--disease-base-font-size);
    margin-bottom: 15px;
  }

  .ticket-note {
    font-size: var(--disease-extra-small-text-size);
    margin-top: 20px;
  }

  .ticket-image {
    width: 100%;
    text-align: center;
  }

  .ticket-image img {
    margin: 0 auto;
  }
  
  /* --- その他の調整 --- */
  .research-highlight {
    padding: 20px;
    margin: 25px 0;
  }
}


/* ==================================================================================
   ファイル終了
   disease-hero.css - 堂島針灸接骨院
   ================================================================================== */