/* ===== リセット・共通 ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #302c2c;
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== ヘッダー ===== */
.header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 30px 30px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo img { width: 226px; height: 68px; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 20px; }
.header-menu {
  display: flex; align-items: center; gap: 20px; list-style: none;
}
.header-menu a {
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
  color: #302c2c; transition: opacity 0.3s;
}
.header-menu a:hover { opacity: 0.7; }

/* ===== ボタン共通 ===== */
.btn-reserve {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 12px 34px;
  border: 1px solid #302c2c; border-radius: 24px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px; font-weight: 500;
  color: #302c2c; background: rgba(255,255,255,0.8);
  transition: all 0.3s; cursor: pointer;
}
.btn-reserve:hover { background: #538148; border-color: #538148; color: #fff; }
.btn-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid #302c2c; border-radius: 24px;
  background: rgba(255,255,255,0.8); transition: all 0.3s; cursor: pointer; flex-shrink: 0;
}
.btn-circle:hover { border-color: #538148; background: rgba(255,255,255,0.8); }
.btn-circle:hover svg path { fill: #538148; }
.btn-circle svg { transition: all 0.3s; }

/* ===== ハンバーガーボタン ===== */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 48px; height: 48px; padding: 0;
  position: relative; z-index: 1001;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #302c2c; position: absolute;
  left: 12px; transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 31px; }
/* 開いた時の × アニメーション */
.hamburger.is-open span:nth-child(1) {
  top: 23px; transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) {
  top: 23px; transform: rotate(-45deg);
}

/* ===== モバイルメニュー ===== */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 1000;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0; opacity: 0;
  transition: opacity 0.3s;
  overflow-y: auto;
}
.mobile-menu.is-open {
  display: flex; opacity: 1;
}
.mobile-menu-list {
  list-style: none; display: flex; flex-direction: column;
  align-items: center; gap: 0; width: 100%;
}
.mobile-menu-list li {
  width: 100%; text-align: center;
  border-bottom: 1px solid #e8e8e8;
}
.mobile-menu-list li:first-child {
  border-top: 1px solid #e8e8e8;
}
.mobile-menu-list a {
  display: block; padding: 10px; font-size: 18px;
  font-weight: 500; letter-spacing: 1.8px;
  color: #302c2c; transition: background 0.3s;
}
.mobile-menu-list a:hover { background: #f9f4e9; }
.mobile-menu-tel {
  margin-top: 30px; text-align: center;
}
.mobile-menu-tel a {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 28px; font-weight: 500; letter-spacing: 2px;
  color: #302c2c;
}
.mobile-menu-tel-label {
  font-size: 14px; font-weight: 500; color: #907768;
  letter-spacing: 1.4px; margin-bottom: 4px;
}

/* ===== スマホ固定予約バー ===== */
.sp-fixed-reserve {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999; background: #fff;
  padding: 10px 16px; box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}
.sp-fixed-reserve .btn-reserve {
  display: flex; width: 100%;
  height: 52px; font-size: 16px; font-weight: 700;
  background: #302c2c; color: #fff;
  border: none; border-radius: 26px;
}
.sp-fixed-reserve .btn-reserve:hover {
  background: #538148; border-color: #538148;
}
/* メニュー開時のスクロールロック */
body.menu-open { overflow: hidden; }

/* ===== セクション見出し共通 ===== */
.section-heading { margin-bottom: 30px; }
.section-heading-en {
  font-family: 'Ubuntu', sans-serif;
  font-size: 58px; font-weight: 400; letter-spacing: 17.4px; line-height: 1.26;
}
.section-heading-en--bai { font-family: 'Bai Jamjuree', sans-serif; }
.section-heading-en .first-letter { color: #fb8f1a; }
.section-heading-ja { font-size: 16px; font-weight: 500; letter-spacing: 3.2px; }

/* ===== ヒーロー（トップページ） ===== */
.hero { position: relative; padding-top: 0; overflow-x: clip; overflow-y: visible; }
.hero-bg-rect {
  position: absolute; top: 0; left: 0; right: 0; height: 750px;
  background: #f9f4e9; z-index: 0;
}
.hero-bg-curve {
  position: absolute; top: 0; left: 0; right: 0; height: 460px; z-index: 0;
}
.hero-bg-curve svg { width: 100%; height: 100%; }
.hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 130px 0 0; z-index: 1;
}
.hero-images { position: relative; height: 260px; margin: 0 auto; }
/* メイン画像 */
.hero-image-main {
  position: absolute; right: calc((1200px - 100vw) / 2); top: 97px;
  width: 800px; height: 600px;
}
.hero-image-main-shadow {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, #e3eac4, #f5ca9b);
  border-radius: 4px;
}
.hero-image-main-img {
  position: relative; top: -14px; left: 14px;
  width: 800px; height: 600px; border-radius: 4px;
  overflow: hidden;
}
.hero-image-main-img img { width: 100%; height: 100%; object-fit: cover; }
/* サブ画像 */
.hero-image-sub {
  position: absolute; left: 0; top: 0;
  width: 300px; height: 200px;
}
.hero-image-sub-shadow {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, #e3eac4, #f5ca9b);
  border-radius: 4px;
}
.hero-image-sub-img {
  position: relative; top: -10px; left: 10px;
  width: 300px; height: 200px; border-radius: 4px;
  overflow: hidden;
}
.hero-image-sub-img img { width: 100%; height: 100%; object-fit: cover; }
/* ヒーローコンテンツ */
.hero-content {
  position: relative; max-width: 1200px; margin: 0 auto; z-index: 2;
}
.hero-sakura { margin-bottom: 10px; line-height: 1; }
.hero-sakura svg { width: 30px; height: 29px; }
.hero-title {
  font-size: 38px; font-weight: 700; letter-spacing: 3.8px;
  line-height: 60px; margin-bottom: 10px;
}
.hero-desc {
  font-size: 16px; font-weight: 400; letter-spacing: 1.6px;
  line-height: 32px; max-width: 740px; margin-bottom: 30px;
}
.hero-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.hero-tag {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 22px; height: 38px;
  border: 1px solid #907768; border-radius: 3px;
  font-size: 16px; font-weight: 400; color: #907768; letter-spacing: 1.6px;
  line-height: 32px;
}

/* ===== インフォセクション（トップページ） ===== */
.info-section { padding: 250px 0 20px; }
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 1200px; margin: 0 auto;
}
.info-card { padding: 30px; }
.info-card--schedule { background: #f9f9f9; }
.info-card--access { background: #fff; }
.info-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 30px;
}
.info-card-accent { width: 3px; height: 34px; background: #fb8f1a; }
.info-card-title { font-size: 16px; font-weight: 500; letter-spacing: 1.6px; }

/* 診療スケジュール */
.schedule-table { width: 100%; }
.schedule-row {
  display: grid; grid-template-columns: 120px repeat(7, 1fr);
  align-items: center; padding: 10px 0;
  border-bottom: 1px solid #d0d0d0;
}
.schedule-time {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 16px; font-weight: 400; color: #fb8f1a; letter-spacing: 1.6px;
}
.schedule-day { text-align: center; font-size: 16px; letter-spacing: 1.6px; }
.schedule-mark { text-align: center; font-size: 16px; color: #fb8f1a; letter-spacing: 1.6px; }
.schedule-note { margin-top: 16px; font-size: 16px; letter-spacing: 1.6px; }

/* アクセス */
.cv-area { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; flex-wrap: nowrap; }
.cv-tel { display: flex; align-items: baseline; gap: 0; white-space: nowrap; }
.cv-tel-label {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
}
.cv-tel-number {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 30px; font-weight: 500; letter-spacing: 2px;
}
.cv-area .btn-reserve { white-space: nowrap; flex-shrink: 0; }
.access-divider { width: 100%; height: 1px; background: #d0d0d0; margin-bottom: 24px; }
.access-info { display: flex; align-items: flex-start; justify-content: space-between; }
.access-text p { font-size: 16px; line-height: 1.6; letter-spacing: 1.6px; }
.btn-map-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid #302c2c; border-radius: 50%;
  background: #fff; flex-shrink: 0; transition: all 0.3s;
}
.btn-map-circle:hover { border-color: #538148; background: #fff; }
.btn-map-circle img { width: 32px; height: 32px; object-fit: contain; }

/* ===== 元競輪選手だからこそ（トップページ） ===== */
.mission { padding: 80px 0; }
.mission-bg { background: #fff; padding: 0; }
.mission-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: center;
}
.mission-image { position: relative; width: 100%; aspect-ratio: 400/587; }
.mission-image-shadow {
  position: absolute; top: 14px; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, #e3eac4, #f5ca9b);
  border-radius: 4px;
}
.mission-image img {
  position: relative; width: 100%; height: 100%; object-fit: cover;
  border-radius: 4px; z-index: 1;
  left: 15px;
}
.mission-title {
  font-size: 28px; font-weight: 700; line-height: 1.6; letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.mission-text { font-size: 15px; font-weight: 400; line-height: 2; letter-spacing: 0.5px; color: #555; }
.mission-text p { margin-bottom: 16px; }
.mission-text p:last-child { margin-bottom: 0; }

/* ===== 5つの理由（トップページ） ===== */
.reasons { background: #f9f4e9; padding: 80px 0; }
.reasons-inner { max-width: 1200px; margin: 0 auto; }
.reasons-lead { font-size: 16px; line-height: 2; letter-spacing: 1.6px; color: #312c2c; margin-top: 16px; }
.reason-list { display: flex; flex-direction: column; gap: 0; margin-top: 30px; }
.reason-item { display: grid; grid-template-columns: 1fr 1fr; height: 260px; }
.reason-item--reverse { direction: rtl; }
.reason-item--reverse > * { direction: ltr; }
.reason-content {
  background: #f9f9f9; padding: 15px 30px 20px;
  display: flex; flex-direction: column;
}
.reason-header { display: flex; align-items: flex-end; gap: 0; margin-bottom: 14px; }
.reason-num {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 38px; font-weight: 400; color: #fb8f1a; line-height: 1;
  flex-shrink: 0; margin-top: 4px;margin-right: 6px;
}
.reason-slash {
  width: 35px; height: 35px; position: relative; flex-shrink: 0;
}
.reason-slash::after {
  content: ''; position: absolute; top: 100%; left: 0;
  width: 50px; height: 0; border-bottom: 1px solid #d1d1d1;
  transform: rotate(-45deg); transform-origin: left center;
}
.reason-title { font-size: 18px; font-weight: 500; line-height: 1.4; letter-spacing: 1.8px; }
.reason-desc { font-size: 16px; line-height: 1.5; letter-spacing: 1.6px; }
.reason-image { overflow: hidden; }
.reason-image img { width: 100%; height: 100%; object-fit: cover; }
.btn-detail {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 6px 0; border-top: 1px solid #d1d1d1; margin-top: auto;
  font-size: 16px; letter-spacing: 1.6px; cursor: pointer; transition: opacity 0.3s;
}
.btn-detail:hover { opacity: 0.7; }
.btn-detail svg { width: 6px; height: 10px; flex-shrink: 0; }

/* ===== 診療科目カード（トップページ） ===== */
.menu-section { padding: 80px 0; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 30px; }
.menu-card { cursor: pointer; transition: opacity 0.3s; text-decoration: none; color: inherit; display: block; }
.menu-card:hover .menu-card-link { background: #538148; }
.menu-card-image { height: 360px; overflow: hidden; }
.menu-card-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; background: #302c2c; color: #fff;
  font-size: 18px; font-weight: 500; letter-spacing: 1.8px;
}
.menu-card-link svg { width: 6px; height: 10px; }

/* ===== サブセクション（ABOUT / FREECARE / VOICE） ===== */
.sub-section { padding: 30px 0; }
.sub-section-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 600px; gap: 0; align-items: start;
}
.sub-section-divider {
  grid-column: 1 / -1; height: 1px; background: #d0d0d0; margin-top: 30px;
}
.sub-links { display: flex; flex-direction: column; }
.sub-link {
  margin-bottom: 6px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border: 1px solid #302c2c;
  font-size: 18px; font-weight: 500; letter-spacing: 1.8px; transition: background 0.3s;
}
.sub-link:hover { background: rgba(0,0,0,0.02); }
.sub-link svg {
  width: 6px; height: 10px; flex-shrink: 0;
}

/* 矢印アイコン */
.arrow-right {
  display: inline-block; width: 6px; height: 10px;
}

/* ===== 下層ページ：背景カーブ ===== */
.page-bg {
  position: absolute; top: 0; left: 0; right: 0;
  height: 460px; z-index: 0; pointer-events: none;
}
.page-bg svg { width: 100%; height: 100%; }

/* ===== 下層ページ：ページタイトル ===== */
.page-title-section {
  position: relative; z-index: 1;
  padding: 209px 0 120px;
}
.page-title-inner { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.page-title-sakura { line-height: 1; }
.page-title-sakura svg { width: 30px; height: 29px; }
.page-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 32px; font-weight: 700; letter-spacing: 9.6px;
  color: #302c2c; line-height: 1.4;
}
.page-title-first { color: #fb8f1a; }
.page-title-line { display: flex; gap: 0; }
.page-title-line-green {
  width: 30px; height: 3px; background: #538148;
}
.page-title-line-orange {
  width: 30px; height: 3px; background: #fb8f1a;
}

/* ===== 下層ページ：腰痛・ひざ痛・肩痛 ===== */
.pain-section {
  position: relative; z-index: 1;
  padding: 80px 0 0;
}
.pain-section:last-of-type {
  padding-bottom: 100px;
}
.pain-inner { max-width: 1200px; margin: 0 auto; }

/* 見出し（h3） */
.pain-h3 {
  display: flex; align-items: center; gap: 14px;
}
.pain-h3-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #fb8f1a; flex-shrink: 0;
}
.pain-h3 h3 {
  font-size: 26px; font-weight: 500; letter-spacing: 2.6px;
  color: #302c2c; line-height: 1;
}
.pain-h3-line {
  width: 100%; height: 1px; background: #d0d0d0;
  margin: 20px 0 30px;
}

/* コンテンツグリッド */
.pain-content-grid {
  display: grid; grid-template-columns: 1fr 495px; gap: 0;
  align-items: start;
}

/* 左カラム */
.pain-left { display: flex; flex-direction: column; }

/* 吹き出し */
.pain-bubble {
  position: relative;
  background: #e8edd9; border-radius: 5px;
  padding: 15px 21px;
  margin-bottom: 28px;
  max-width: 645px;
}
.pain-bubble p {
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
  line-height: 24px; color: #302c2c;
}
.pain-bubble-arrow {
  position: absolute; bottom: -19px; left: 30px;
  width: 18px; height: 20px;
}

/* チェック項目 */
.pain-checks { display: flex; flex-direction: column; gap: 18px; }
.pain-check {
  display: flex; align-items: center; gap: 14px;
}
.pain-check-icon { width: 28px; height: 28px; flex-shrink: 0; }
.pain-check p {
  font-size: 18px; font-weight: 500; letter-spacing: 1.8px;
  line-height: 30px; color: #302c2c;
}
.text-green { color: #538148; }

/* 警告ボックス */
.pain-warning {
  display: flex; align-items: center; gap: 16px;
  background: #feeeb9; border: 2px solid #fb8f1a;
  padding: 12px 20px;
  margin-top: 24px;
  max-width: 645px;
}
.pain-warning-icon { width: 32px; height: 28px; flex-shrink: 0; }
.pain-warning p {
  font-size: 18px; font-weight: 500; letter-spacing: 1.8px;
  line-height: 30px; color: #302c2c;
}

/* 右カラム（画像） */
.pain-right { padding-left: 15px; }
.pain-image {
  position: relative; width: 480px; height: 320px;
}
.pain-image-shadow {
  position: absolute; top: 14px; left: 0;
  width: 480px; height: 320px;
  background: linear-gradient(to bottom, #e3eac4, #f5ca9b);
  
}
.pain-image img {
  position: relative; z-index: 1;
  width: 480px; height: 320px;
  object-fit: cover; 
  left: 15px;
}

/* 回答ボックス */
.pain-answer {
  position: relative;
  background: #fafafa;
  padding: 30px;
  margin-top: 40px;
}
.pain-answer-accent {
  position: absolute; top: 30px; left: 30px;
  width: 3px; height: 34px;
  background: #fb8f1a;
}
.pain-answer-title {
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
  line-height: 24px; color: #302c2c;
  padding-left: 14px;
  margin-bottom: 24px;
}
.pain-answer p {
  font-size: 16px; font-weight: 400; letter-spacing: 1.6px;
  line-height: 24px; color: #302c2c;
  margin-bottom: 14px;
}
.pain-answer p:last-child { margin-bottom: 0; }

/* 黄色ハイライト */
.highlight {
  background: linear-gradient(transparent 60%, #feeeb9 60%);
}

/* 回答内の箇条書き */
.pain-answer-bullets {
  list-style: none;
  padding: 0; margin: 0 0 14px;
}
.pain-answer-bullets li {
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
  line-height: 28px; color: #538148;
  padding-left: 16px; position: relative;
}
.pain-answer-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #538148;
}

/* ===== 医院について（下層ページ） ===== */
/* ページタイトル */
.page-title-section { position: relative; z-index: 2; padding: 140px 0 120px; }
.page-title-inner { max-width: 1200px; margin: 0 auto; }
.page-title-text {
  font-size: 32px; font-weight: 700; color: #302c2c;
  letter-spacing: 9.6px; margin-top: 20px;
}
.page-title-text::first-letter { color: #fb8f1a; }
.page-title-line { display: flex; gap: 0; margin-top: 20px; }
.page-title-line-green { width: 30px; height: 3px; background: #538148; }
.page-title-line-orange { width: 30px; height: 3px; background: #fb8f1a; }

/* リード文 */
.info-lead { padding: 30px 0 0; position: relative; z-index: 2; }
.info-lead p { font-size: 16px; line-height: 1.5; letter-spacing: 1.6px; }

/* 各セクション共通 */
.info-detail { padding: 50px 0 0; }
.info-detail-inner { max-width: 1200px; margin: 0 auto; }
.info-detail-heading {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid #d1d1d1;
  margin-bottom: 30px;
}
.info-detail-dot {
  width: 12px; height: 12px; background: #fb8f1a; border-radius: 50%; flex-shrink: 0;
}
.info-detail-heading h2 {
  font-size: 26px; font-weight: 500; letter-spacing: 2.6px;
}

/* 2カラムグリッド（テーブル＋画像） */
.info-detail-grid {
  display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: start;
}
.info-detail-image { position: relative; }
.info-detail-image-shadow {
  position: absolute; top: 14px; left: 0;
  width: 100%; height: calc(100% - 14px);
  background: linear-gradient(to bottom, #e3eac4, #f5ca9b);
}
.info-detail-image img {
  position: relative; width: 100%; height: 320px; object-fit: cover;
   z-index: 1; left: 15px; bottom: 15px;
}

/* 医院概要テーブル */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr:nth-child(odd) { background: #fafafa; }
.info-table tr:nth-child(even) { background: #fff; }
.info-table th {
  text-align: left; padding: 15px 20px; font-size: 16px; font-weight: 700;
  color: #fb8f1a; letter-spacing: 1.6px; vertical-align: top; width: 130px;
  white-space: nowrap;
}
.info-table td {
  padding: 15px 20px; font-size: 16px; line-height: 1.5;
  letter-spacing: 1.6px; vertical-align: top;
}

/* 診療スケジュールカード */
.info-schedule-card { background: #fafafa; padding: 30px; }
.info-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.info-card-accent { width: 3px; height: 34px; background: #fb8f1a; }
.info-card-header h3 { font-size: 16px; font-weight: 500; letter-spacing: 1.6px; }
.schedule-note { font-size: 16px; margin-top: 16px; letter-spacing: 1.6px; }

/* 院内設備 */
.info-facility-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.info-facility-item { text-align: center; }
.info-facility-item img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; }
.info-facility-item p { font-size: 16px; margin-top: 10px; letter-spacing: 1.6px; }
.info-facility-desc { margin-top: 20px; }
.info-facility-desc p { font-size: 16px; line-height: 1.5; letter-spacing: 1.6px; }

/* 治療機器 */
.info-equipment-grid {
  display: grid; grid-template-columns: 290px 1fr; gap: 30px; margin-top: 20px;
}
.info-equipment-image img { width: 100%; height: 432px; object-fit: cover; }
.info-equipment-body { font-size: 16px; line-height: 1.5; letter-spacing: 1.6px; }
.info-equipment-body p { margin-bottom: 14px; }
.info-equipment-label { font-weight: 700; color: #538148; font-size: 16px; margin-bottom: 8px; }
.info-equipment-list { list-style: none; padding: 0; }
.info-equipment-list li { font-size: 16px; line-height: 1.5; letter-spacing: 1.6px; }
.info-equipment-list li::before { content: '・'; }

/* 連携先医療機関 */
.info-partner-lead { font-size: 16px; line-height: 1.5; letter-spacing: 1.6px; margin-bottom: 30px; }
.info-partner-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 7px;
}
.info-partner-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px; border: 1px solid #d1d1d1; background: rgba(255,255,255,0.8);
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
  text-decoration: none; color: #312c2c; transition: opacity 0.3s;
}
.info-partner-link:hover { opacity: 0.7; }
.ex-link-icon {
  display: inline-block; width: 12px; height: 10px; position: relative;
}
.ex-link-icon::before, .ex-link-icon::after {
  content: ''; position: absolute; border: 1px solid #666;
}
.ex-link-icon::before { width: 9.6px; height: 7.5px; top: 2.5px; left: 0; }
.ex-link-icon::after { width: 9.6px; height: 7.5px; top: 0; left: 2.4px; }
.info-partner-photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  margin-top: 40px;
}
.info-partner-photo { text-align: center; }
.info-partner-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }
.info-partner-photo p { font-size: 16px; margin-top: 10px; letter-spacing: 1.6px; }

/* ===== アクシスパワーマスタリーメソッド ===== */
.axis-inner { max-width: 1200px; margin: 0 auto; }
.axis-section { padding: 80px 0 0; }
.axis-section--beige { background: #f9f4e9; }
/* 大見出し（オレンジドット + 下線） */
.axis-section-heading {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid #d0d0d0;
  margin-bottom: 30px;
}
.axis-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #fb8f1a; flex-shrink: 0;
}
.axis-section-heading h2 {
  font-size: 26px; font-weight: 500; letter-spacing: 2.6px;
  color: #312c2c; line-height: 1.4;
}
/* 小見出し（オレンジバー + テキスト） */
.axis-sub-heading {
  display: flex; align-items: center; gap: 12px;
  margin: 30px 0 16px;
}
.axis-sub-bar {
  width: 3px; height: 24px; background: #fb8f1a;
  flex-shrink: 0;
}
.axis-sub-heading h3 {
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
  color: #312c2c; line-height: 1.5;
}
/* APMグリッド */
.axis-apm-grid {
  display: grid; grid-template-columns: 645px 480px; gap: 60px;
  align-items: start;
}
.axis-apm-text p {
  font-size: 16px; line-height: 24px; letter-spacing: 1.6px;
  color: #312c2c; margin-bottom: 14px;
}
.axis-apm-text p:last-child { margin-bottom: 0; }
.axis-apm-image {
  position: relative; width: 495px; height: 364px;
}
.axis-apm-image-shadow {
  position: absolute; left: 0; top: 14px;
  width: 480px; height: 350px;
  background: linear-gradient(to bottom, #e3eac4, #f5ca9b);
}
.axis-apm-image img {
  position: absolute; left: 15px; top: 0;
  width: 480px; height: 350px;
  object-fit: cover; object-position: top center;
  display: block;
}

/* 質問グリッド（吹き出し+チェックリスト+画像） */
.axis-question-grid {
  display: grid; grid-template-columns: 1fr 495px; gap: 60px;
  align-items: start; margin-top: 30px;
}
.axis-question-content {}
.axis-speech-bubble {
  position: relative; display: inline-block;
  background: #e8edd9; border-radius: 5px;
  padding: 15px 30px; margin-bottom: 30px;
  min-width: 645px; max-width: 100%;
}
.axis-speech-bubble p {
  font-size: 16px; line-height: 24px; letter-spacing: 1.6px;
  color: #312c2c; font-weight: 500; margin: 0;
}
.axis-speech-arrow {
  position: absolute; left: 30px; bottom: -19px;
  width: 18px; height: 20px;
  background: url('images/axis_bubble_arrow.svg') no-repeat center / contain;
}
.axis-check-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.axis-check-list li {
  display: flex; align-items: flex-end; gap: 14px;
}
.axis-check-icon {
  flex-shrink: 0; display: block; width: 28px; height: 28px;
}
.axis-check-icon img { width: 100%; height: 100%; display: block; }
.axis-check-text {
  font-size: 18px; font-weight: 500; line-height: 30px;
  letter-spacing: 1.8px; color: #538148;
}
/* 悩みリストのデフォルト文字色は黒、emで緑強調 */
.axis-check-list--worries .axis-check-text {
  color: #312c2c;
}
.axis-check-list--worries .axis-check-text em {
  color: #538148; font-style: normal;
}
/* 画像（影+クロップ） */
.axis-question-image {
  position: relative; width: 495px; height: 334px;
}
.axis-question-image-shadow {
  position: absolute; left: 0; top: 14px;
  width: 480px; height: 320px;
  background: linear-gradient(to bottom, #e3eac4, #f5ca9b);
}
.axis-question-image img {
  position: absolute; left: 15px; top: 0;
  width: 480px; height: 320px;
  object-fit: cover; display: block;
}
.axis-question-image--woman img { object-position: center top; }
.axis-question-image--runners img { object-position: center center; }

/* 成績向上のために 3要素 */
.axis-elements-grid {
  display: grid; grid-template-columns: 309px 1fr; gap: 30px;
  align-items: center; margin: 30px 0;
}
.axis-elements-circles img {
  display: block; width: 100%; height: auto; max-width: 309px;
}
.axis-elements-list p {
  font-size: 16px; line-height: 24px; letter-spacing: 1.6px;
  color: #312c2c; margin-bottom: 14px;
}
.axis-elements-list p:last-child { margin-bottom: 0; }
.axis-elements-list p strong {
  font-weight: 700;
}
/* ハイライト付きテキスト */
.axis-apm-text--highlight p mark {
  background: #feeeb9; color: #312c2c; padding: 0 2px;
}
/* 料金 強調テキスト（赤太字） */
.axis-apm-text p.axis-price-emp {
  color: #e60012; font-weight: 700;
}

/* アクシスメソッドの特徴 - 6カードグリッド */
.axis-features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 30px; margin-top: 30px;
}
.axis-feature-card {
  display: grid; grid-template-columns: 210px 1fr; gap: 30px;
  align-items: start;
}
.axis-feature-card-img {
  width: 210px; height: 140px; overflow: hidden;
}
.axis-feature-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.axis-feature-card-body { width: 345px; max-width: 100%; }
.axis-feature-card-body h4 {
  font-size: 16px; font-weight: 700; line-height: 30px;
  letter-spacing: 1.6px; color: #538148; margin: 0 0 14px;
}
.axis-feature-card-body p {
  font-size: 16px; font-weight: 400; line-height: 24px;
  letter-spacing: 1.6px; color: #312c2c; margin: 0;
}
.axis-features-conclusion { margin-top: 30px; }

/* ヒーロー */
.axis-hero { padding: 20px 0 80px; position: relative; z-index: 2; }
.axis-hero-grid {
  display: grid; grid-template-columns: 415px 1fr; gap: 60px;
  align-items: start;
}
.axis-hero-visual {
  position: relative; width: 415px; height: 601px;
}
.axis-hero-visual-shadow {
  position: absolute; left: 0; top: 14px;
  width: 400px; height: 587px;
  background: linear-gradient(to bottom, #E3EAC4, #F5CA9B);
}
.axis-hero-visual-img {
  position: absolute; left: 15px; top: 0;
  width: 400px; height: 586px;
  overflow: hidden;
}
.axis-hero-visual-img img {
  position: absolute; max-width: none;
  width: 153.39%; height: 104.7%;
  left: -53.5%; top: -2.79%;
  display: block;
}
.axis-hero-content { padding-top: 40px; }
.axis-hero-logo { display: block; max-width: 280px; margin-bottom: 40px; }
.axis-hero-heading {
  font-size: 24px; font-weight: 700; line-height: 1.7;
  letter-spacing: 2.4px; color: #302c2c; margin-bottom: 30px;
}
.axis-hero-p {
  font-size: 14px; line-height: 2; letter-spacing: 1.4px;
  color: #302c2c; margin-bottom: 14px;
}
.axis-hero-p mark {
  background: #fff4a3; color: #302c2c;
  padding: 0 2px;
}

/* YouTube検索セクション */
.axis-youtube { padding: 30px 0; background: #fafafa; margin-top: 80px; }
.axis-youtube-heading {
  display: block; width: 440px; max-width: 100%;
  margin: 0 0 30px;
}
.axis-youtube-heading img {
  width: 100%; height: auto; display: block;
}
.axis-youtube-text p {
  font-size: 16px; line-height: 32px; letter-spacing: 1.6px;
  color: #312c2c; margin: 0;
}
.axis-youtube-text p:first-child { margin-bottom: 20px; }
.axis-youtube-text p:nth-of-type(2) { line-height: 25.6px; margin-bottom: 15px; }
.axis-youtube-search {
  display: block; width: 464px; max-width: 100%;
  margin: 0 0 20px;
}
.axis-youtube-search img {
  width: 100%; height: auto; display: block;
}

/* ===== 料金・診療のご案内 ===== */
.guide-section { padding: 0 0 80px; position: relative; z-index: 2; }
.guide-inner { max-width: 1200px; margin: 0 auto; }
.guide-notice {
  font-size: 16px; line-height: 24px; letter-spacing: 1.6px;
  color: #302c2c; margin-bottom: 60px;
}
.guide-notice-red { color: red; }
.guide-item { margin-bottom: 60px; }
.guide-item:last-child { margin-bottom: 0; }
.guide-item-heading {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid #d0d0d0;
  margin-bottom: 24px;
}
.guide-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #fb8f1a; flex-shrink: 0;
}
.guide-item-heading h2 {
  font-size: 26px; font-weight: 500; letter-spacing: 2.6px;
  color: #302c2c; line-height: 1.4;
}
.guide-item-body p {
  font-size: 16px; line-height: 24px; letter-spacing: 1.6px;
  color: #302c2c; margin-bottom: 10px;
}
.guide-item-body p:last-child { margin-bottom: 0; }
.guide-subtitle { font-weight: 500; }
.guide-price { margin-top: 6px; }
.guide-warning {
  display: flex; align-items: center; gap: 8px;
}
.guide-warning-icon {
  width: 18px; height: 16px; flex-shrink: 0;
}

/* ===== 患者様の声・よくあるご質問 ===== */
/* 患者様の声リスト */
.faq-voice-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 40px;
}
.faq-voice-item {
  display: grid; grid-template-columns: 160px 1fr; gap: 30px;
  padding-bottom: 40px; border-bottom: 1px dashed #d0d0d0;
}
.faq-voice-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-voice-image {
  width: 160px; height: 160px; border-radius: 50%;
  overflow: hidden; background: #f9f4e9; flex-shrink: 0;
  position: relative;
}
.faq-voice-image::before {
  content: ''; position: absolute;
  top: 6px; left: 6px; right: -6px; bottom: -6px;
  border-radius: 50%; background: #fb8f1a; z-index: 0;
}
.faq-voice-image img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; display: block;
}
.faq-voice-body { padding-top: 4px; }
.faq-voice-name {
  font-size: 20px; font-weight: 700; color: #302c2c;
  letter-spacing: 2px; margin-bottom: 6px;
}
.faq-voice-attr {
  font-size: 14px; font-weight: 500;
  color: #907768; letter-spacing: 1.4px; margin-left: 4px;
}
.faq-voice-sub {
  display: inline-block;
  font-size: 15px; font-weight: 600; color: #e24848;
  letter-spacing: 1.3px; padding: 4px 14px;
  background: #ffeded; border-radius: 4px; margin-bottom: 14px;
}
.faq-voice-text {
  font-size: 16px; line-height: 1.9; letter-spacing: 1.4px;
  color: #302c2c; margin: 0;
}

/* よくあるご質問リスト */
.faq-qa-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 24px;
}
.faq-qa-item {
  background: #fff; border: 1px solid #ebe4d5;
  border-radius: 8px; padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(48, 44, 44, 0.04);
}
.faq-qa-q {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid #f0ead9;
}
.faq-qa-q p {
  flex: 1; font-size: 17px; font-weight: 600;
  line-height: 1.6; letter-spacing: 1.2px; color: #302c2c;
  margin: 0; padding-top: 4px;
}
.faq-qa-a {
  display: flex; gap: 14px; align-items: flex-start;
}
.faq-qa-a p {
  flex: 1; font-size: 15px; line-height: 1.9;
  letter-spacing: 1.2px; color: #302c2c;
  margin: 0; padding-top: 4px;
}
.faq-qa-mark {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1;
  color: #fb8f1a; flex-shrink: 0;
  width: 34px; text-align: center;
}
.faq-qa-mark--a { color: #538148; }
.faq-qa-red { color: #e24848; font-weight: 600; }

/* ===== 自律神経の乱れ・不調 ===== */
.nerves-section { padding: 0 0 60px; position: relative; z-index: 2; }
.nerves-inner { max-width: 1200px; margin: 0 auto; }
.nerves-check-list {
  list-style: none; margin: 0 0 40px; padding: 24px 28px;
  background: #fff7f0; border-left: 4px solid #fb8f1a;
  border-radius: 0 8px 8px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.nerves-check-list li {
  font-size: 16px; line-height: 1.7; letter-spacing: 1.2px;
  color: #e24848; font-weight: 600;
  padding-left: 24px; position: relative;
}
.nerves-check-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid #fb8f1a;
}
.nerves-lead {
  margin-bottom: 0;
}
.nerves-lead p {
  font-size: 16px; line-height: 1.9; letter-spacing: 1.4px;
  color: #302c2c; margin-bottom: 16px;
}
.nerves-lead p:last-child { margin-bottom: 0; }
.nerves-red { color: #e24848; }
.nerves-blue { color: #3a7bc8; }
.nerves-strong {
  font-weight: 600; color: #302c2c;
  background: linear-gradient(transparent 60%, #fff4a3 60%);
  display: inline;
}
.nerves-block { margin-bottom: 50px; }
.nerves-block:last-child { margin-bottom: 0; }
.nerves-block-title {
  font-size: 20px; font-weight: 600; color: #302c2c;
  letter-spacing: 1.8px; padding: 12px 18px;
  background: #f5f0e6; border-radius: 6px;
  margin-bottom: 24px;
}
.nerves-block-grid {
  display: grid; grid-template-columns: 1fr 280px; gap: 30px;
  margin-bottom: 24px;
}
.nerves-block-grid--reverse {
  grid-template-columns: 280px 1fr;
}
.nerves-block-grid--reverse .nerves-block-text { order: 2; }
.nerves-block-grid--reverse .nerves-block-image { order: 1; }
.nerves-block-text p {
  font-size: 16px; line-height: 1.9; letter-spacing: 1.2px;
  color: #302c2c; margin-bottom: 14px;
}
.nerves-block-text p:last-child { margin-bottom: 0; }
.nerves-bone-list {
  list-style: none; padding: 0; margin: 0 0 14px;
}
.nerves-bone-list li {
  font-size: 16px; line-height: 1.7; letter-spacing: 1.2px;
  color: #302c2c; padding-left: 16px; position: relative;
}
.nerves-bone-list li::before {
  content: '・'; position: absolute; left: 0;
}
.nerves-block-image {
  display: flex; align-items: flex-start; justify-content: center;
}
.nerves-block-image img {
  width: 100%; max-width: 280px; height: auto;
  border-radius: 8px; display: block;
}
.nerves-summary {
  margin-top: 24px;
}
.nerves-summary p {
  font-size: 16px; line-height: 1.9; letter-spacing: 1.2px;
  color: #302c2c; margin-bottom: 14px;
}
.nerves-summary p:last-child { margin-bottom: 0; }
.nerves-example {
  background: #f0f4ff; padding: 16px 20px;
  border-radius: 6px; margin: 14px 0;
}
.nerves-example p {
  font-size: 15px; line-height: 1.7; letter-spacing: 1px;
  color: #3a7bc8; margin: 0 0 4px; font-weight: 500;
}
.nerves-example p:last-child { margin-bottom: 0; }

/* ===== スポーツ障害 ===== */
.injury-section { padding-bottom: 60px; }
.injury-inner { padding-left: 30px; padding-right: 30px; }
.injury-section--photos { padding-top: 60px; padding-bottom: 40px; }
.injury-photos {
  display: flex; gap: 8px;
}
.injury-photos img {
  flex: 1; min-width: 0; height: 160px; object-fit: cover;
}
.injury-check-list {
  list-style: none; background: #fff7f0;
  border-left: 4px solid #fb8f1a; border-radius: 0 8px 8px 0;
  padding: 24px 28px; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.injury-check-list li {
  position: relative; padding-left: 24px;
  font-size: 16px; line-height: 1.7; letter-spacing: 1.2px;
  color: #302c2c;
}
.injury-check-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px; border: 2px solid #fb8f1a;
  border-radius: 50%;
}
.injury-check-list li strong { color: #e24848; }
.injury-warning {
  background: #e24848; color: #fff; text-align: center;
  padding: 14px 20px; border-radius: 8px; margin-bottom: 30px;
}
.injury-warning p {
  font-size: 18px; font-weight: 700; letter-spacing: 2px; margin: 0;
}
.injury-explain {
  display: grid; grid-template-columns: 1fr 200px; gap: 30px;
  align-items: start;
}
.injury-explain-text p {
  font-size: 16px; line-height: 1.8; letter-spacing: 1.2px; margin-bottom: 14px;
}
.injury-highlight {
  background: linear-gradient(transparent 60%, #fff4a3 60%);
  font-weight: 600;
}
.injury-explain-image img { border-radius: 8px; }
.injury-steps {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 16px;
}
.injury-step {
  display: flex; align-items: stretch;
  border: 1px solid #ebe4d5; border-bottom: none;
}
.injury-step:last-child { border-bottom: 1px solid #ebe4d5; }
.injury-step:first-child { border-radius: 8px 8px 0 0; }
.injury-step:last-child { border-radius: 0 0 8px 8px; }
.injury-step-num {
  display: flex; align-items: center; justify-content: center;
  width: 120px; padding: 16px;
  background: #538148; color: #fff;
  font-family: 'Bai Jamjuree', sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: 2px; flex-shrink: 0;
}
.injury-step:first-child .injury-step-num { border-radius: 7px 0 0 0; }
.injury-step:last-child .injury-step-num { border-radius: 0 0 0 7px; }
.injury-step-text {
  display: flex; align-items: center;
  padding: 16px 20px;
  font-size: 16px; font-weight: 500; letter-spacing: 1.4px;
  background: #fff;
}
.injury-steps-note {
  font-size: 15px; letter-spacing: 1.2px; color: #666; margin-bottom: 0;
}
.injury-price-table { margin-bottom: 10px; }
.injury-price-table table {
  width: 100%; border-collapse: collapse;
  border: 1px solid #ebe4d5; border-radius: 8px; overflow: hidden;
}
.injury-price-table th, .injury-price-table td {
  padding: 16px 20px; font-size: 16px; letter-spacing: 1.2px;
  border-bottom: 1px solid #ebe4d5; text-align: left;
}
.injury-price-table th {
  background: #f5f0e6; font-weight: 600; width: 200px;
}
.injury-price-table td { font-weight: 700; background: #fff; }
.injury-price-note { font-weight: 400; font-size: 14px; color: #888; margin-left: 6px; }
.injury-message {
  background: #f9f4e9; border-radius: 12px; padding: 30px 36px;
}
.injury-message p {
  font-size: 16px; line-height: 1.8; letter-spacing: 1.2px; margin-bottom: 14px;
}
.injury-message p:last-child { margin-bottom: 0; }
.injury-message-lead {
  font-size: 17px; font-weight: 500; text-align: center; margin-bottom: 20px;
}
.injury-red { color: #e24848; }
.injury-blue { color: #3a7bc8; }
.injury-workshop {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  align-items: start;
}
.injury-workshop-image img { border-radius: 8px; }
.injury-workshop-text p {
  font-size: 16px; line-height: 1.8; letter-spacing: 1.2px; margin-bottom: 14px;
}
.injury-workshop-text p:last-child { margin-bottom: 0; }
.sp-hide { }

/* ===== 院長ごあいさつ ===== */
.greeting-intro {
  display: grid; grid-template-columns: 1fr 280px; gap: 40px;
  align-items: flex-start; margin-bottom: 40px;
}
.greeting-intro-text p {
  font-size: 16px; line-height: 2; letter-spacing: 1.6px; margin-bottom: 16px;
}
.greeting-intro-photo img {
  width: 100%; border-radius: 8px;
}
.greeting-subtitle {
  font-size: 18px; font-weight: 700; letter-spacing: 1.8px;
  padding: 12px 20px; background: #f9f4e9; border-left: 4px solid #fb8f1a;
  margin-bottom: 24px;
}
.greeting-career {
  display: grid; grid-template-columns: 1fr 280px; gap: 40px;
  align-items: flex-start; margin-bottom: 24px;
}
.greeting-career-list {
  list-style: none; padding: 0; margin: 0;
}
.greeting-career-list li {
  font-size: 16px; line-height: 2; letter-spacing: 1.6px;
  padding: 8px 0; border-bottom: 1px solid #e8e8e8;
}
.greeting-career-list li span {
  display: inline-block; width: 80px; font-weight: 700; color: #538148;
}
.greeting-career-photo img {
  width: 100%; border-radius: 8px;
}
.greeting-keirin-photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 40px;
}
.greeting-keirin-photos img {
  width: 100%; height: 200px; object-fit: cover; border-radius: 8px;
}
.greeting-guidance-list {
  list-style: none; padding: 0; margin: 0;
}
.greeting-guidance-list li {
  padding: 14px 0; border-bottom: 1px solid #e8e8e8;
  font-size: 16px; line-height: 1.8; letter-spacing: 1.6px;
}
.greeting-guidance-list li strong {
  color: #538148; margin-right: 8px;
}
.greeting-guidance-list li span {
  display: block; padding-left: 20px; color: #555;
}

/* ===== アクセスマップ ===== */
.info-access-text {
  font-size: 16px; line-height: 1.8; letter-spacing: 1.6px; margin-bottom: 24px;
}
.info-map {
  margin-bottom: 30px; border-radius: 8px; overflow: hidden;
}
.info-map iframe { display: block; }
.info-access-detail { margin-top: 10px; }
.info-access-item {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid #e8e8e8;
  font-size: 16px; line-height: 1.8; letter-spacing: 1.6px;
}
.info-access-label {
  flex-shrink: 0; width: 70px; font-weight: 700; color: #538148;
}

/* ===== 交通事故 ===== */
.acc-section { padding-bottom: 60px; }
.acc-inner { padding-left: 30px; padding-right: 30px; }
.acc-lead-box {
  text-align: center; background: #538148; color: #fff;
  border-radius: 12px; padding: 30px 20px; margin-bottom: 30px;
}
.acc-lead-title {
  font-size: 24px; font-weight: 700; letter-spacing: 2px;
  line-height: 1.6; margin-bottom: 10px;
}
.acc-lead-sub { font-size: 16px; letter-spacing: 1.5px; margin: 0; }
.acc-intro p {
  font-size: 16px; line-height: 1.8; letter-spacing: 1.2px; margin-bottom: 14px;
}
.acc-blue { color: #3a7bc8; }
.acc-alert-box {
  background: #fff7f0; border-left: 4px solid #e24848;
  border-radius: 0 8px 8px 0; padding: 20px 24px; margin-bottom: 10px;
}
.acc-alert-box p {
  font-size: 16px; line-height: 1.7; letter-spacing: 1.2px; margin-bottom: 8px;
}
.acc-alert-box p:last-child { margin-bottom: 0; }
.acc-alert-strong { color: #e24848; font-size: 18px; font-weight: 700; }
.acc-points { display: flex; flex-direction: column; gap: 30px; }
.acc-point {
  background: #fff; border: 1px solid #ebe4d5; border-radius: 12px;
  overflow: hidden;
}
.acc-point-header {
  display: flex; align-items: center; gap: 16px;
  background: #f5f0e6; padding: 16px 20px;
}
.acc-point-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fb8f1a; color: #fff;
  font-family: 'Bai Jamjuree', sans-serif; font-size: 20px; font-weight: 700;
  flex-shrink: 0;
}
.acc-point-header h3 {
  font-size: 17px; font-weight: 500; letter-spacing: 1.2px; line-height: 1.5; margin: 0;
}
.acc-point-header h3 strong { color: #fb8f1a; font-weight: 700; }
.acc-point-body {
  display: grid; grid-template-columns: 1fr 180px; gap: 24px;
  padding: 20px; align-items: center;
}
.acc-point-body--reverse { grid-template-columns: 180px 1fr; }
.acc-point-body--reverse .acc-point-image { order: -1; }
.acc-point-text p {
  font-size: 15px; line-height: 1.8; letter-spacing: 1px; margin-bottom: 10px;
}
.acc-point-text p:last-child { margin-bottom: 0; }
.acc-point-image img { width: 100%; }
.acc-flow-lead {
  background: #f9f4e9; border-radius: 8px; padding: 16px 20px; margin-bottom: 24px;
}
.acc-flow-lead p {
  font-size: 16px; font-weight: 600; letter-spacing: 1.2px;
  text-align: center; margin: 0;
}
.acc-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 30px; }
.acc-step {
  display: flex; align-items: stretch;
  border: 1px solid #ebe4d5; border-bottom: none;
}
.acc-step:last-child { border-bottom: 1px solid #ebe4d5; }
.acc-step:first-child { border-radius: 8px 8px 0 0; }
.acc-step:last-child { border-radius: 0 0 8px 8px; }
.acc-step-num {
  display: flex; align-items: center; justify-content: center;
  width: 110px; padding: 16px;
  background: #538148; color: #fff;
  font-family: 'Bai Jamjuree', sans-serif; font-size: 15px; font-weight: 600;
  letter-spacing: 2px; flex-shrink: 0;
}
.acc-step:first-child .acc-step-num { border-radius: 7px 0 0 0; }
.acc-step:last-child .acc-step-num { border-radius: 0 0 0 7px; }
.acc-step-content {
  padding: 16px 20px; background: #fff;
}
.acc-step-content h4 {
  font-size: 16px; font-weight: 600; letter-spacing: 1.2px; margin: 0 0 6px;
}
.acc-step-content p {
  font-size: 14px; line-height: 1.7; letter-spacing: 1px; color: #555; margin: 0;
}
.acc-root-message {
  background: #f9f4e9; border-radius: 12px; padding: 24px 28px;
}
.acc-root-message p {
  font-size: 16px; line-height: 1.8; letter-spacing: 1.2px; margin-bottom: 14px;
}
.acc-root-message p:last-child { margin-bottom: 0; }
.acc-cta-box {
  background: #e24848; color: #fff; border-radius: 12px;
  padding: 28px 24px; text-align: center;
}
.acc-cta-box p {
  font-size: 16px; line-height: 1.7; letter-spacing: 1.2px; margin-bottom: 6px;
}
.acc-cta-box p:last-child { margin-bottom: 0; }
.acc-cta-strong { font-size: 20px; font-weight: 700; letter-spacing: 2px; }
.acc-transfer-lead {
  background: #f5f0e6; border-radius: 8px; padding: 20px 24px;
  text-align: center; margin-bottom: 24px;
}
.acc-transfer-title {
  font-size: 18px; font-weight: 600; letter-spacing: 1.5px; margin: 0 0 6px;
}
.acc-transfer-sub {
  font-size: 16px; font-weight: 700; color: #fb8f1a; letter-spacing: 1.5px; margin: 0;
}
.acc-transfer-text { margin-bottom: 30px; }
.acc-transfer-text p {
  font-size: 16px; line-height: 1.8; letter-spacing: 1.2px; margin-bottom: 14px;
}
.acc-transfer-text p:last-child { margin-bottom: 0; }

/* ===== フッター ===== */
.footer { padding: 60px 0 30px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 40px;
}
.footer-map { width: 100%; height: 400px; overflow: hidden; border-radius: 4px; }
.footer-map img { width: 100%; height: 100%; object-fit: cover; }
.footer-map iframe { width: 100%; height: 100%; display: block; }
.footer-info { padding-top: 20px; }
.footer-logo { margin-bottom: 30px; }
.footer-logo img { width: 226px; }
.footer-cv { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.footer-tel { display: flex; align-items: baseline; }
.footer-tel-label {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
}
.footer-tel-number {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 38px; font-weight: 500; letter-spacing: 3.8px;
}
.footer-buttons { display: flex; align-items: center; gap: 6px; }
.footer-divider { width: 100%; height: 1px; background: #d0d0d0; margin-bottom: 20px; }
.footer-address p { font-size: 16px; line-height: 1.5; letter-spacing: 1.6px; }
.footer-copyright {
  max-width: 1200px; margin: 30px auto 0;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 12px; font-weight: 500; color: #000; letter-spacing: 1.2px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 1200px) {
  /* ヒーロー画像 */
  .hero-image-main, .hero-image-main-img { width: 60vw; }
  .hero-image-sub, .hero-image-sub-img { width: 220px; height: 150px; }
  /* コンテンツ横padding */
  .container, .hero-inner, .hero-content, .reasons-inner, .menu-section > .section-heading,
  .menu-grid, .footer-inner, .footer-copyright,
  .page-title-inner, .info-lead, .info-detail-inner { padding-left: 20px; padding-right: 20px; }
  /* 下層ページ：画像 */
  .pain-image, .pain-image-shadow { width: 400px; }
  .pain-image img { width: 400px; }
  .pain-content-grid { grid-template-columns: 1fr 415px; }
  .pain-inner { padding: 0 20px; }
  /* アクシスページ */
  .axis-inner { padding-left: 20px; padding-right: 20px; }
  /* 料金ページ */
  .guide-inner { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 1024px) {
  /* ヘッダー・ナビ */
  .hamburger { position: fixed; top: 20px; right: 20px; }
  .header-menu { display: none; }
  .header-nav .btn-reserve { display: none; }
  .header-nav .btn-circle { display: none; }
  .hamburger { display: block; }
  .sp-fixed-reserve { display: block; }
  body { padding-bottom: 72px; }
  /* ヒーロー */
  .hero-bg-curve { height: 340px; }
  .hero-images { height: 200px; }
  .hero-image-main { right: 0; }
  .hero-image-main, .hero-image-main-img { width: 55vw; height: 420px; }
  .hero-title { font-size: 30px; line-height: 48px; }
  /* インフォ */
  .info-section { padding-top: 200px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card { padding: 30px 20px; }
  /* 元競輪選手だからこそ */
  .mission { padding: 60px 0; }
  .mission-inner { grid-template-columns: 1fr; gap: 30px; padding: 0 20px; }
  .mission-image { max-width: 400px; }
  /* 5つの理由 */
  .reason-item, .reason-item--reverse { grid-template-columns: 1fr; height: auto; direction: ltr; }
  .reason-item--reverse > * { direction: ltr; }
  .reason-image { height: 250px; }
  /* 診療科目カード */
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card-image { height: 240px; }
  /* サブセクション */
  .sub-section-inner { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
  /* フッター */
  .footer-inner { grid-template-columns: 1fr; }
  /* 見出し */
  .section-heading-en { font-size: 42px; letter-spacing: 8px; }
  /* 下層ページ */
  .page-bg { height: 340px; }
  .page-title-section { padding: 140px 0 100px; }
  .pain-content-grid { grid-template-columns: 1fr; gap: 30px; }
  /* 医院について */
  .info-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .info-detail-image img { left: 0; }
  .info-equipment-grid { grid-template-columns: 1fr; }
  .info-partner-grid { grid-template-columns: repeat(2, 1fr); }
  .info-partner-photos { grid-template-columns: repeat(2, 1fr); }
  .pain-right { padding-left: 0; }
  .pain-image, .pain-image-shadow { width: 100%; max-width: 480px; }
  .pain-image img { width: 100%; max-width: 480px; left: 0; }
  .pain-image-shadow { display: none; }
  /* スケジュール表 */
  .schedule-row { grid-template-columns: 90px repeat(7, 1fr); }
  .schedule-time { font-size: 14px; }
  .schedule-day, .schedule-mark { font-size: 14px; }
  /* アクシスページ */
  .axis-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .axis-hero-visual { width: 100%; max-width: 415px; height: auto; aspect-ratio: 415/601; margin: 0 auto; }
  .axis-hero-visual-shadow { width: calc(100% - 15px); height: auto; aspect-ratio: 400/587; }
  .axis-hero-visual-img { width: calc(100% - 15px); height: auto; aspect-ratio: 400/586; }
  .axis-apm-grid { grid-template-columns: 1fr; gap: 30px; }
  .axis-apm-image { width: 100%; max-width: 495px; height: auto; margin: 0 auto; aspect-ratio: 495/364; }
  .axis-apm-image-shadow { width: calc(100% - 15px); aspect-ratio: 480/350; height: auto; }
  .axis-apm-image img { width: calc(100% - 15px); height: auto; aspect-ratio: 480/350; }
  /* 可能性について */
  .axis-question-grid { grid-template-columns: 1fr; gap: 30px; }
  .axis-speech-bubble { min-width: 0; width: 100%; }
  .axis-question-image { width: 100%; max-width: 495px; height: auto; margin: 0 auto; aspect-ratio: 495/334; }
  .axis-question-image-shadow { width: calc(100% - 15px); aspect-ratio: 480/320; height: auto; }
  .axis-question-image img { width: calc(100% - 15px); height: auto; aspect-ratio: 480/320; }
  .axis-elements-grid { grid-template-columns: 1fr; gap: 20px; }
  .axis-elements-circles { text-align: center; }
  /* 特徴カード */
  .axis-features-grid { grid-template-columns: 1fr; gap: 24px; }
  .axis-feature-card-body { width: auto; }
  /* 患者様の声・よくあるご質問 */
  .faq-voice-item { grid-template-columns: 130px 1fr; gap: 20px; }
  .faq-voice-image { width: 130px; height: 130px; }
  .faq-voice-name { font-size: 18px; }
  /* 自律神経 */
  .nerves-block-grid, .nerves-block-grid--reverse { grid-template-columns: 1fr; gap: 20px; }
  .nerves-block-grid--reverse .nerves-block-text { order: 1; }
  .nerves-block-grid--reverse .nerves-block-image { order: 2; }
  .nerves-block-image img { max-width: 240px; margin: 0 auto; }
  /* スポーツ障害 */
  .injury-explain { grid-template-columns: 1fr; }
  .injury-explain-image { max-width: 200px; margin: 0 auto; }
  .injury-workshop { grid-template-columns: 1fr; }
  .injury-workshop-image { max-width: 480px; }
  /* 院長ごあいさつ */
  .greeting-intro { grid-template-columns: 1fr 220px; gap: 30px; }
  .greeting-career { grid-template-columns: 1fr 220px; gap: 30px; }
  .greeting-keirin-photos img { height: 160px; }
  /* 交通事故 */
  .acc-point-body, .acc-point-body--reverse { grid-template-columns: 1fr; }
  .acc-point-body--reverse .acc-point-image { order: 0; }
  .acc-point-image { max-width: 180px; margin: 0 auto; }
}
@media (max-width: 768px) {
  /* ヘッダー */
  .header-inner { padding: 10px 20px; }
  .header-logo img { width: 160px; height: auto; }
  /* ヒーロー */
  .hero { background: #f9f4e9; padding-bottom: 20px; }
  .hero-bg-rect { display: none; }
  .hero-bg-curve { height: 260px; }
  .hero-inner { padding-top: 100px; }
  .hero-images { height: auto; position: static; margin-bottom: 20px; }
  .hero-image-main { position: relative; right: auto; top: auto; width: 100%; height: 250px; }
  .hero-image-main-shadow { display: none; }
  .hero-image-main-img { width: 100%; height: 250px; top: 0; left: 0; }
  .hero-image-sub { display: none; }
  .hero-title { font-size: 22px; line-height: 36px; letter-spacing: 2px; }
  .hero-desc { font-size: 14px; line-height: 26px; }
  .hero-tag { font-size: 13px; padding: 3px 14px; height: 32px; }
  /* インフォ */
  .info-section { padding-top: 0; }
  /* 元競輪選手だからこそ */
  .mission { padding: 40px 0; }
  .mission-image { max-width: 100%; }
  .mission-image img { left: 0; }
  .mission-image-shadow { display: none; }
  .mission-title { font-size: 22px; }
  .mission-text { font-size: 14px; }
  /* 5つの理由 */
  .reasons { padding: 50px 0; }
  .reasons-lead { font-size: 14px; }
  .reason-content { padding: 15px 20px; }
  .reason-num { font-size: 30px; }
  .reason-title { font-size: 16px; }
  .reason-desc { font-size: 14px; }
  .reason-image { height: 200px; }
  /* 診療科目カード */
  .menu-section { padding: 50px 0; }
  .menu-grid { grid-template-columns: 1fr; padding: 0; }
  .menu-card-image { height: 200px; }
  .menu-card-link { font-size: 16px; padding: 14px 20px; }
  /* サブセクション */
  .sub-section { padding: 20px 0; }
  .sub-link { font-size: 15px; padding: 14px; }
  /* 電話番号 */
  .cv-tel-number, .footer-tel-number { font-size: 28px; }
  .cv-area { flex-direction: column; align-items: flex-start; gap: 10px; }
  /* 見出し */
  .section-heading-en { font-size: 32px; letter-spacing: 6px; }
  .section-heading-ja { font-size: 14px; }
  /* スケジュール表 */
  .schedule-row { grid-template-columns: 70px repeat(7, 1fr); gap: 2px; }
  .schedule-time { font-size: 12px; letter-spacing: 0.5px; }
  .schedule-day, .schedule-mark { font-size: 12px; letter-spacing: 0; }
  .schedule-note { font-size: 13px; }
  /* フッター */
  .footer { padding: 40px 0 20px; }
  .footer-buttons { flex-wrap: wrap; }
  /* 下層ページ共通 */
  .page-bg { height: 200px; }
  .page-title-section { padding: 100px 0 80px; }
  .page-title { font-size: 22px; letter-spacing: 3px; }
  .page-title-text { font-size: 22px; letter-spacing: 3px; }
  /* 腰痛・ひざ痛・肩痛 */
  .pain-section { padding: 40px 0 0; }
  .pain-section:last-of-type { padding-bottom: 60px; }
  .pain-h3 h3 { font-size: 20px; letter-spacing: 1.5px; }
  .pain-check { gap: 10px; }
  .pain-check-icon { width: 22px; height: 22px; }
  .pain-check p { font-size: 14px; line-height: 1.5; letter-spacing: 1px; }
  .pain-bubble p { font-size: 14px; }
  .pain-warning { padding: 10px 14px; gap: 10px; }
  .pain-warning-icon { width: 24px; height: 22px; }
  .pain-warning p { font-size: 14px; letter-spacing: 1px; }
  .pain-image { height: auto; }
  .pain-image-shadow { display: none; }
  .pain-image img { position: static; width: 100%; height: auto; left: 0; }
  .pain-answer { padding: 20px; margin-top: 24px; }
  .pain-answer-accent { top: 20px; left: 20px; }
  .pain-answer-title { font-size: 15px; }
  .pain-answer p { font-size: 14px; line-height: 1.6; letter-spacing: 1px; }
  .pain-answer-bullets li { font-size: 14px; }
  /* 医院について */
  .info-lead p { font-size: 14px; }
  .info-detail { padding: 30px 0 0; }
  .info-detail-heading h2 { font-size: 20px; letter-spacing: 1.5px; }
  .info-detail-image img { left: 0; height: 220px; }
  .info-detail-image-shadow { display: none; }
  .info-table th { font-size: 14px; padding: 10px 12px; width: 90px; }
  .info-table td { font-size: 14px; padding: 10px 12px; letter-spacing: 0.8px; }
  .info-schedule-card { padding: 20px; }
  .info-facility-grid { grid-template-columns: 1fr; }
  .info-facility-item img { height: 180px; }
  .info-facility-desc p { font-size: 14px; }
  .info-equipment-grid { gap: 20px; }
  .info-equipment-image img { height: 260px; }
  .info-equipment-body { font-size: 14px; }
  .info-equipment-body p { font-size: 14px; }
  .info-equipment-list li { font-size: 14px; }
  .info-partner-lead { font-size: 14px; }
  .info-partner-grid { grid-template-columns: 1fr; }
  .info-partner-link { font-size: 14px; padding: 12px; }
  .info-partner-photos { grid-template-columns: 1fr; }
  .info-partner-photo p { font-size: 14px; }
  /* フッター */
  .footer-map { height: 250px; }
  /* アクシスページ */
  .axis-section { padding: 50px 0 0; }
  .axis-section-heading { margin-bottom: 20px; padding-bottom: 12px; }
  .axis-section-heading h2 { font-size: 20px; letter-spacing: 1.5px; }
  .axis-sub-heading h3 { font-size: 15px; letter-spacing: 1.2px; }
  .axis-apm-text p { font-size: 14px; letter-spacing: 1px; line-height: 22px; }
  .axis-hero { padding: 20px 0 40px; }
  .axis-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .axis-hero-visual { margin: 0 auto; }
  .axis-hero-content { padding-top: 0; }
  .axis-hero-logo { max-width: 220px; margin-bottom: 24px; }
  .axis-hero-heading { font-size: 20px; letter-spacing: 1.5px; margin-bottom: 20px; }
  .axis-hero-p { font-size: 14px; letter-spacing: 1px; }
  /* 可能性について */
  .axis-speech-bubble { padding: 12px 20px; }
  .axis-speech-bubble p { font-size: 14px; letter-spacing: 1px; line-height: 22px; }
  .axis-speech-arrow { left: 20px; }
  .axis-check-list { gap: 12px; }
  .axis-check-icon { width: 22px; height: 22px; }
  .axis-check-text { font-size: 14px; line-height: 22px; letter-spacing: 1px; }
  .axis-elements-list p { font-size: 14px; line-height: 22px; letter-spacing: 1px; }
  .axis-feature-card { grid-template-columns: 140px 1fr; gap: 16px; }
  .axis-feature-card-img { width: 140px; height: 94px; }
  .axis-feature-card-body h4 { font-size: 14px; line-height: 22px; letter-spacing: 1px; margin-bottom: 8px; }
  .axis-feature-card-body p { font-size: 14px; line-height: 22px; letter-spacing: 1px; }
  .axis-youtube { padding: 30px 0; margin-top: 50px; }
  .axis-youtube-heading { width: 280px; margin-bottom: 20px; }
  .axis-youtube-text p { font-size: 14px; line-height: 22px; letter-spacing: 1px; }
  .axis-youtube-text p:first-child { margin-bottom: 14px; }
  .axis-youtube-text p:nth-of-type(2) { line-height: 22px; margin-bottom: 12px; }
  .axis-youtube-search { width: 100%; max-width: 320px; margin: 0 0 14px; }
  /* 料金ページ */
  .guide-section { padding-bottom: 50px; }
  .guide-notice { font-size: 14px; margin-bottom: 40px; }
  .guide-item { margin-bottom: 40px; }
  .guide-item-heading h2 { font-size: 20px; letter-spacing: 1.5px; }
  .guide-item-body p { font-size: 14px; letter-spacing: 1px; }
  /* 患者様の声・よくあるご質問 */
  .faq-voice-list { gap: 30px; }
  .faq-voice-item {
    grid-template-columns: 100px 1fr; gap: 16px;
    padding-bottom: 30px;
  }
  .faq-voice-image { width: 100px; height: 100px; }
  .faq-voice-name { font-size: 16px; letter-spacing: 1.4px; }
  .faq-voice-attr { display: block; font-size: 12px; margin-left: 0; margin-top: 2px; }
  .faq-voice-sub { font-size: 13px; padding: 3px 10px; letter-spacing: 0.8px; margin-bottom: 10px; }
  .faq-voice-text { font-size: 14px; line-height: 1.8; letter-spacing: 1px; }
  .faq-qa-list { gap: 16px; }
  .faq-qa-item { padding: 18px 18px; }
  .faq-qa-q { gap: 10px; padding-bottom: 12px; margin-bottom: 12px; }
  .faq-qa-q p { font-size: 15px; letter-spacing: 0.8px; padding-top: 3px; }
  .faq-qa-a { gap: 10px; }
  .faq-qa-a p { font-size: 14px; line-height: 1.8; letter-spacing: 0.8px; padding-top: 3px; }
  .faq-qa-mark { font-size: 22px; width: 26px; }
  /* 自律神経 */
  .nerves-section { padding-bottom: 40px; }
  .nerves-inner { padding-left: 20px; padding-right: 20px; }
  .nerves-check-list { padding: 18px 20px; gap: 10px; }
  .nerves-check-list li { font-size: 14px; letter-spacing: 0.8px; padding-left: 20px; }
  .nerves-check-list li::before { width: 12px; height: 12px; top: 6px; }
  .nerves-lead p { font-size: 14px; letter-spacing: 1px; }
  .nerves-block { margin-bottom: 36px; }
  .nerves-block-title { font-size: 17px; letter-spacing: 1.2px; padding: 10px 14px; }
  .nerves-block-text p { font-size: 14px; letter-spacing: 1px; line-height: 1.8; }
  .nerves-bone-list li { font-size: 14px; }
  .nerves-summary p { font-size: 14px; letter-spacing: 1px; line-height: 1.8; }
  .nerves-example { padding: 12px 16px; }
  .nerves-example p { font-size: 13px; letter-spacing: 0.6px; }
  .nerves-block-image img { max-width: 200px; }
  /* スポーツ障害 */
  .injury-section { padding-bottom: 40px; }
  .injury-inner { padding-left: 20px; padding-right: 20px; }
  .injury-photos { gap: 4px; }
  .injury-photos img { height: 90px; }
  .injury-check-list { padding: 18px 20px; gap: 10px; }
  .injury-check-list li { font-size: 14px; letter-spacing: 0.8px; padding-left: 20px; }
  .injury-check-list li::before { width: 12px; height: 12px; top: 6px; }
  .injury-warning p { font-size: 16px; letter-spacing: 1.4px; }
  .injury-explain-text p { font-size: 14px; letter-spacing: 1px; }
  .injury-step-num { width: 90px; font-size: 14px; padding: 12px; }
  .injury-step-text { font-size: 14px; letter-spacing: 1px; padding: 12px 16px; }
  .injury-price-table th, .injury-price-table td { padding: 12px 16px; font-size: 14px; }
  .injury-price-table th { width: 140px; }
  .injury-message { padding: 24px 20px; }
  .injury-message p { font-size: 14px; letter-spacing: 1px; }
  .injury-message-lead { font-size: 15px; }
  .injury-workshop-text p { font-size: 14px; letter-spacing: 1px; }
  .sp-hide { display: none; }
  /* 院長ごあいさつ */
  .greeting-intro { grid-template-columns: 1fr; }
  .greeting-intro-photo { max-width: 200px; margin: 0 auto; }
  .greeting-intro-text p { font-size: 14px; letter-spacing: 1px; }
  .greeting-career { grid-template-columns: 1fr; }
  .greeting-career-photo { max-width: 200px; }
  .greeting-career-list li { font-size: 14px; }
  .greeting-keirin-photos img { height: 140px; }
  .greeting-subtitle { font-size: 16px; }
  .greeting-guidance-list li { font-size: 14px; }
  /* 交通事故 */
  .acc-section { padding-bottom: 40px; }
  .acc-inner { padding-left: 20px; padding-right: 20px; }
  .acc-lead-title { font-size: 20px; letter-spacing: 1.5px; }
  .acc-lead-sub { font-size: 14px; }
  .acc-intro p { font-size: 14px; letter-spacing: 1px; }
  .acc-alert-box p { font-size: 14px; }
  .acc-alert-strong { font-size: 16px; }
  .acc-point-header h3 { font-size: 15px; }
  .acc-point-text p { font-size: 14px; letter-spacing: 0.8px; }
  .acc-step-num { width: 90px; font-size: 13px; padding: 12px; }
  .acc-step-content h4 { font-size: 14px; letter-spacing: 1px; }
  .acc-step-content p { font-size: 13px; }
  .acc-root-message { padding: 20px; }
  .acc-root-message p { font-size: 14px; letter-spacing: 1px; }
  .acc-cta-box p { font-size: 14px; }
  .acc-cta-strong { font-size: 17px; }
  .acc-transfer-title { font-size: 16px; }
  .acc-transfer-text p { font-size: 14px; letter-spacing: 1px; }
}
