/* ===== リセット・共通 ===== */
*, *::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;
  overflow-x: hidden;
}
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: 1480px; margin: 0 auto;
  padding: 30px 30px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header-logo img { width: 188px; height: 57px; object-fit: contain; }
.header-brand { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-logo { flex-shrink: 0; }
.header-brand-text {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 22px; line-height: 1.15; letter-spacing: 0.88px;
  color: #000; text-align: center; white-space: nowrap; margin: 0;
  position: relative; top: -2px;
}
.header-brand-text span { display: block; }
.header-brand-divider { width: 1px; height: 48px; background: #ddc2b2; flex-shrink: 0; }
.header-nav { display: flex; align-items: center; gap: 16px; }
.header-menu {
  display: flex; align-items: center; gap: 16px; list-style: none;
}
.header-menu a {
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
  color: #302c2c; transition: opacity 0.3s; white-space: nowrap;
}
/* ヘッダーが狭くなる帯（メニュー表示中のみ）と極小画面では、ロゴの下に文字を縦積み */
@media (min-width: 1025px) and (max-width: 1300px), (max-width: 560px) {
  .header-brand { flex-direction: column; align-items: flex-start; gap: 6px; }
  .header-brand-divider { display: none; }
  .header-brand-text { font-size: 14px; line-height: 1.3; letter-spacing: 0.5px; text-align: left; top: 0; }
  .header-brand .header-logo img { width: 150px; height: auto; }
}
/* スマホ：ブランドを左寄せでコンパクトに（MV写真との重なりを避ける） */
@media (max-width: 560px) {
  .header-inner { display: block; text-align: left; padding: 14px 20px 0; }
  .header-brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px; }
  .header-brand-text { text-align: left; font-size: 16px; line-height: 1.3; letter-spacing: 0.3px; }
  .header-brand .header-logo img { width: 130px; }
}
.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; }

/* ===== ヒーロー（トップページ・2026-07リニューアル） ===== */
.hero2 {
  position: relative;
  /* コンテンツ量に応じて伸びるよう min-height に（固定だとタグが溢れて隠れる） */
  min-height: clamp(540px, 52.5vw, 840px);
  background: #f9f4e9;
  overflow: hidden;
  display: flex; align-items: center;
}
/* 右側の大きなメイン写真（画像のアスペクト比に近い幅にして左の選手が潰れないようにする） */
.hero2-photo {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 62%;
}
/* 各競技の選手が均等に見えるよう中央基準で切り取る */
.hero2-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
/* 左のベージュへ溶け込むグラデーション */
.hero2-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #f9f4e9 0%, rgba(249,244,233,0.82) 9%, rgba(249,244,233,0.35) 20%, rgba(249,244,233,0) 32%);
}
/* 写真上部をわずかに明るく落とし、透過ヘッダー（ロゴ・ナビ）の視認性を確保 */
.hero2-photo::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(to bottom, rgba(249,244,233,0.9), rgba(249,244,233,0));
  z-index: 1;
}
/* 丸バッジ（全力でサポートします） */
.hero2-circle {
  position: absolute; right: 10%; top: 30%;
  width: clamp(200px, 18.75vw, 300px); height: clamp(200px, 18.75vw, 300px);
  background: #f9f4e9; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; z-index: 2;
  /* 内側のピンクのぼかし（Figma: INNER_SHADOW #f9c4cb 80% / offset -5,-8 / blur 6 / spread 3） */
  box-shadow: inset -5px -8px 8px 3px rgba(249,196,203,0.8);
}
.hero2-circle-sub {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(13px, 1.3vw, 21px); font-weight: 600;
  line-height: 1.65; color: #3c352d;
}
.hero2-circle-main {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(20px, 2vw, 33px); font-weight: 700;
  letter-spacing: 3px; line-height: 1.45; color: #79876e;
}
.hero2-circle-sakura { position: absolute; right: 6%; bottom: 8%; width: 22%; }
.hero2-circle-petal { position: absolute; right: 14%; bottom: 31%; width: 13%; }
/* 左コンテンツ */
.hero2-inner {
  position: relative; z-index: 3; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 40px 30px;
  display: flex; align-items: center;
}
.hero2-content { max-width: 560px; }
.hero2-ribbon {
  display: inline-block; background: #48753e; color: #fff;
  font-family: 'Shippori Mincho', serif; font-weight: 600;
  font-size: 16px; letter-spacing: 1px;
  padding: 10px 40px 10px 22px; margin-bottom: 26px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
}
.hero2-title {
  position: relative;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(30px, 2.75vw, 42px); font-weight: 700;
  line-height: 1.5; letter-spacing: 2px; color: #302c2c;
  margin-bottom: 24px;
}
.hero2-hana { color: #ee9ca1; }
.hero2-title-sakura { position: absolute; top: 0; left: 5.6em; width: 2.1em; }
.hero2-desc {
  font-size: 16px; line-height: 2; letter-spacing: 1.2px; color: #3c352d;
  margin-bottom: 32px;
}
.hero2-tags { display: flex; gap: 16px; flex-wrap: wrap; }
.hero2-tag {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 10px; padding: 10px 22px;
  font-size: 16px; font-weight: 700; color: #3c352d; letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hero2-tag img { width: 22px; height: auto; }
/* サブキャッチ（緑） */
.hero2-subcatch {
  font-size: clamp(16px, 1.35vw, 20px); font-weight: 700;
  letter-spacing: 1.2px; line-height: 1.7; color: #79876e;
  margin-bottom: 18px;
}
.hero2-doryoku { color: #538148; }

/* ===== MV下：3つの特長＋対応種目（トップページ） ===== */
.hero-features { background: #faf7f0; border-top: 1px solid #ece4d5; }
.hero-features-inner {
  max-width: 1400px; margin: 0 auto; padding: 26px 30px;
  display: grid; grid-template-columns: repeat(3, 1fr) 300px; gap: 0;
}
.hf-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 4px 26px; border-right: 1px solid #e6ddcb;
}
.hf-item:last-child { border-right: none; padding-right: 0; }
.hf-item:first-child { padding-left: 0; }
.hf-icon {
  flex-shrink: 0; width: 62px; height: 62px; aspect-ratio: 1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.hf-icon svg { width: 38px; height: 38px; flex-shrink: 0; }
.hf-icon--green { background: #6f9052; }
.hf-icon--pink { background: #e88a9c; }
.hf-icon--gold { background: #cfae4e; }
.hf-title {
  font-size: 17px; font-weight: 700; letter-spacing: 1px;
  margin-bottom: 7px; line-height: 1.4; color: #302c2c;
}
.hf-title--green { color: #6f9052; }
.hf-title--pink { color: #e07f92; }
.hf-title--gold { color: #c2a144; }
.hf-body p {
  font-size: 13.5px; line-height: 1.75; letter-spacing: 0.5px; color: #4a4340;
}
/* 対応種目 */
.hf-sports { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 14px; }
.hf-sports li {
  position: relative; padding-left: 17px;
  font-size: 13.5px; line-height: 1.7; letter-spacing: 0.5px; color: #4a4340;
}
.hf-sports li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 9px; height: 5px; border-left: 2px solid #6f9052;
  border-bottom: 2px solid #6f9052; transform: rotate(-45deg);
}
/* ブランド文字が縦積みになりヘッダーが高くなる帯では、ヒーロー文言を下げて重なりを防ぐ */
@media (min-width: 1025px) and (max-width: 1300px) {
  .hero2-inner { padding-top: 160px; padding-bottom: 50px; }
}

/* ===== 元競輪選手の視点でサポート（トップページ） ===== */
/* ヒーローとベージュ地続きで余白を空けない（AI画像準拠） */
.support {
  position: relative;
  background: #f9f4e9;
  padding: 56px 0 50px;
}
.support-inner {
  position: relative; z-index: 1; /* 競輪シルエットより前面 */
  max-width: 1200px; margin: 0 auto; padding: 0 30px;
  display: grid; grid-template-columns: 1fr 384px; gap: 44px;
  align-items: center;
}
.support-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-photo img { width: 100%; aspect-ratio: 257 / 171; object-fit: cover; border-radius: 10px; }
.support-photo figcaption {
  margin-top: 10px; font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; text-align: center;
}
.support-title {
  font-size: 26px; font-weight: 700; color: #79876e;
  letter-spacing: 1px; margin-bottom: 14px;
}
.support-text { font-size: 15px; line-height: 1.9; letter-spacing: 0.8px; }
.support-keirin { position: absolute; right: 0; bottom: -28px; width: 220px; z-index: 0; }

/* ===== 選ばれる理由（トップページ） ===== */
/* サポートセクションと地続き（トーン差 #f9f4e9 → #f2eee5 で区切る） */
.whyus { background: #f2eee5; padding: 55px 0 60px; }
.whyus-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.whyus-heading {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-family: 'Shippori Mincho', serif; font-size: 28px; font-weight: 700;
  letter-spacing: 2px; margin-bottom: 42px;
}
.whyus-heading img { width: 50px; }
.whyus-heading img:last-child { transform: scaleX(-1); }
.whyus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.whyus-item { display: flex; gap: 20px; align-items: flex-start; }
.whyus-icon {
  flex-shrink: 0; width: 90px; height: 90px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.whyus-icon img { width: 62%; height: auto; }
.whyus-body h3 {
  font-size: 20px; font-weight: 700; color: #79876e;
  letter-spacing: 0.5px; margin-bottom: 10px;
}
.whyus-body p { font-size: 15px; line-height: 1.85; letter-spacing: 0.5px; }

/* ===== 画面下固定CVバー（トップページ） ===== */
.cv-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: linear-gradient(90deg, #799e69 0%, #a1b66a 25%, #cec06b 50%, #ecc78f 75%, #eaadab 100%);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.12);
}
.cv-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.cv-bar-text {
  display: flex; align-items: center; gap: 12px;
  color: #fff; font-size: 17px; font-weight: 700; letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.cv-bar-text img { width: 34px; flex-shrink: 0; }
.cv-bar-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: #e08e93; border-radius: 10px;
  padding: 13px 26px; font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.cv-bar-btn svg { width: 6px; height: 10px; }
.cv-bar-btn:hover { opacity: 0.85; }
/* CVバーにコンテンツが隠れないようフッター下部に余白 */
body.has-cvbar .footer { padding-bottom: 100px; }

/* ===== インフォセクション（トップページ） ===== */
.info-section { padding: 90px 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);
}
.mission-image img {
  position: relative; width: 100%; height: 100%; object-fit: cover;
  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;
}

/* ===== HANASAKASU ステートマネージメント（旧アクシス） ===== */
/* ページタイトル：2行オレンジ */
.page-title-text--hanasaku { color: #fb8f1a; line-height: 1.6; }
.page-title-text--hanasaku::first-letter { color: #fb8f1a; }
/* 黄色マーカー（このページ共通） */
.axis-intro mark, .axis-section mark {
  background: #feeeb9; color: #302c2c; padding: 0 2px;
}
/* 概要説明（ヒーロー） */
.axis-intro { padding: 20px 0 80px; position: relative; z-index: 2; }
.axis-intro-grid {
  display: grid; grid-template-columns: 415px 1fr; gap: 50px;
  align-items: center;
}
.axis-intro-visual { position: relative; width: 415px; height: 601px; }
.axis-intro-shadow {
  position: absolute; left: 0; top: 14px;
  width: 400px; height: 587px;
  background: linear-gradient(to bottom, #e3eac4, #f5ca9b);
}
.axis-intro-img {
  position: absolute; left: 15px; top: 0;
  width: 400px; height: 586px; overflow: hidden;
}
.axis-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.axis-intro-content { padding-top: 0; }
.axis-intro-lead {
  font-size: 28px; font-weight: 700; line-height: 1.6;
  letter-spacing: 2.8px; color: #302c2c; margin-bottom: 30px;
}
/* 概要説明 本文の段落間隔（デザイン：20px） */
.axis-intro-content .axis-apm-text p { margin-bottom: 20px; }
.axis-intro-content .axis-apm-text p:last-child { margin-bottom: 0; }
/* セクション内リード（小・太字） */
.axis-lead { font-weight: 700; }
/* 2カラム（テキスト＋画像）の下に続く全幅テキストの余白 */
.axis-apm-text--after-grid { margin-top: 30px; }
.axis-program-intro {
  font-size: 16px; line-height: 24px; letter-spacing: 1.6px;
  color: #302c2c; margin-bottom: 12px;
}
/* 箇条書き（丹田など） */
.axis-bullet-list { list-style: none; padding: 0; margin: 0 0 20px; }
.axis-bullet-list li {
  position: relative; padding-left: 18px;
  font-size: 16px; line-height: 28px; letter-spacing: 1.6px; color: #538148;
}
.axis-bullet-list li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: #538148;
}

/* ===== 料金・診療のご案内 ===== */
.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-block { margin-bottom: 60px; }
.guide-block:last-child { margin-bottom: 0; }
/* 大見出し（オレンジドット + 下線） */
.guide-section-heading {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid #d0d0d0;
  margin-bottom: 30px;
}
.guide-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #fb8f1a; flex-shrink: 0;
}
.guide-section-heading h2 {
  font-size: 26px; font-weight: 500; letter-spacing: 2.6px;
  color: #302c2c; line-height: 1.4;
}
/* 中見出し（オレンジバー + テキスト） */
.guide-sub { margin-bottom: 40px; }
.guide-sub:last-child { margin-bottom: 0; }
.guide-sub-heading {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 16px;
}
.guide-sub-bar {
  width: 3px; height: 34px; background: #fb8f1a; flex-shrink: 0;
}
.guide-sub-heading h3 {
  font-size: 16px; font-weight: 500; letter-spacing: 1.6px;
  color: #302c2c; line-height: 1.5;
}
.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;
}
/* スクール＆講座内容 見出し */
.guide-course-label {
  display: flex; align-items: center; gap: 6px;
  margin: 16px 0; font-size: 16px; font-weight: 700;
  letter-spacing: 1.6px; color: #fb8f1a;
}
.guide-course-arrow {
  width: 14px; height: 14px; flex-shrink: 0; display: block;
}
.guide-course-arrow svg { display: block; width: 100%; height: 100%; }
/* 講座リスト */
.guide-course-list { list-style: none; padding: 0; margin: 16px 0 0; }
.guide-course-list li { margin-bottom: 20px; }
.guide-course-list li:last-child { margin-bottom: 0; }
.guide-course-title {
  display: block; font-size: 16px; font-weight: 700;
  line-height: 24px; letter-spacing: 1.6px; color: #302c2c;
}
.guide-course-desc {
  display: block; font-size: 16px; font-weight: 400;
  line-height: 24px; letter-spacing: 1.6px; color: #302c2c;
}

/* ===== 料金・診療：開講中のスクール・講座（2026-07 原稿差し替え） ===== */
/* リード */
.school-lead { text-align: center; margin: 6px 0 20px; }
.school-lead-catch {
  font-family: 'Shippori Mincho', serif; font-size: 24px; font-weight: 700;
  letter-spacing: 2px; line-height: 1.9; color: #302c2c; margin-bottom: 20px;
}
.school-lead p:not(.school-lead-catch) {
  font-size: 16px; line-height: 2; letter-spacing: 1.2px; margin-bottom: 10px;
}
/* 講座ブロック */
.school-course { border-top: 1px dashed #d0d0d0; padding-top: 40px; margin-top: 40px; }
.school-course-heading { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.school-course-num {
  font-family: 'Bai Jamjuree', sans-serif; font-size: 34px; font-weight: 600;
  color: #fb8f1a; line-height: 1.1; flex-shrink: 0;
}
.school-course-heading h3 {
  font-size: 22px; font-weight: 700; letter-spacing: 1.6px; line-height: 1.5;
  color: #302c2c; padding-top: 3px;
}
.school-course-sub {
  display: block; font-size: 15px; font-weight: 500; letter-spacing: 1.2px;
  color: #907768; margin-top: 4px;
}
.school-course-heading--plain h3 { padding-top: 0; }
/* 本文 */
.school-course p {
  font-size: 16px; line-height: 1.95; letter-spacing: 1.2px;
  color: #302c2c; margin-bottom: 14px;
}
.school-course p:last-child { margin-bottom: 0; }
.school-catch {
  font-family: 'Shippori Mincho', serif; font-size: 19px; font-weight: 700;
  letter-spacing: 1.5px; margin-bottom: 18px;
}
.school-poetry { padding-left: 16px; border-left: 2px solid #f5d9b8; color: #555; }
.school-h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; letter-spacing: 1.4px;
  margin: 28px 0 14px;
}
.school-h4::before { content: ''; width: 3px; height: 20px; background: #fb8f1a; flex-shrink: 0; }
.school-emphasis { font-weight: 700; font-size: 17px; text-align: center; margin: 22px 0; }
.school-strong { font-weight: 700; background: linear-gradient(transparent 68%, #ffe9d2 68%); }
.school-divider { width: 60px; height: 1px; background: #d0b8a0; margin: 34px auto; }
/* リスト（オレンジ・） */
.school-list { list-style: none; margin: 4px 0 14px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.school-list li {
  position: relative; padding-left: 20px;
  font-size: 16px; line-height: 1.8; letter-spacing: 1.2px; color: #302c2c;
}
.school-list li::before {
  content: ''; position: absolute; left: 2px; top: 11px;
  width: 7px; height: 7px; border-radius: 50%; background: #fb8f1a;
}
/* 料金 */
.school-price { background: #f9f4e9; border-radius: 12px; padding: 26px 32px; }
.school-price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid #e8dfc8;
}
.school-price-name { font-size: 16px; font-weight: 500; letter-spacing: 1.2px; }
.school-price-value {
  font-family: 'Bai Jamjuree', sans-serif; font-size: 24px; font-weight: 700;
  letter-spacing: 1px; color: #302c2c; white-space: nowrap;
}
.school-price-notes { list-style: none; margin: 16px 0 0; padding: 0; }
.school-price-notes li { font-size: 13px; color: #666; line-height: 1.9; letter-spacing: 0.8px; }
/* 締め */
.school-closing { text-align: center; border-top: 1px dashed #d0d0d0; margin-top: 40px; padding-top: 44px; }
.school-closing p { font-size: 16px; line-height: 2; letter-spacing: 1.2px; margin-bottom: 12px; }
.school-closing .school-closing-catch {
  font-family: 'Shippori Mincho', serif; font-size: 22px; font-weight: 700;
  letter-spacing: 2px; margin-bottom: 22px;
}
.school-closing .school-closing-cta {
  font-family: 'Shippori Mincho', serif; font-size: 19px; font-weight: 700;
  letter-spacing: 1.6px; margin-top: 24px; color: #302c2c;
}

/* ===== 患者様の声・よくあるご質問 ===== */
/* 患者様の声リスト */
.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; }

/* リード（スポーツ障害・急性外傷 早期復帰） */
.injury-section--lead { padding-top: 10px; }
.injury-lead { text-align: center; margin-bottom: 30px; }
.injury-lead-label {
  font-size: 15px; font-weight: 500; letter-spacing: 1.5px;
  color: #fb8f1a; margin-bottom: 14px;
}
.injury-lead-catch {
  font-size: 34px; font-weight: 700; letter-spacing: 3px;
  color: #302c2c; line-height: 1.4; margin-bottom: 14px;
}
.injury-lead-sub { font-size: 16px; letter-spacing: 1.2px; color: #555; }
.injury-message--lead { text-align: center; }
.injury-lead-strong {
  font-size: 20px; font-weight: 700; letter-spacing: 1.6px;
  color: #e24848; margin-bottom: 18px;
}

/* 診察の流れ（STEP 1〜6 カード） */
.injury-flow { display: flex; flex-direction: column; gap: 20px; }
.flow-step {
  background: #fff; border: 1px solid #ebe4d5; border-radius: 12px; overflow: hidden;
}
.flow-step-head {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px; background: #f9f4e9; border-bottom: 1px solid #ebe4d5;
}
.flow-step-num {
  flex-shrink: 0;
  font-family: 'Bai Jamjuree', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 1.5px;
  color: #fff; background: #538148; padding: 6px 14px; border-radius: 20px;
}
.flow-step-title {
  font-size: 20px; font-weight: 500; letter-spacing: 1.4px;
  color: #302c2c; line-height: 1.5;
}
.flow-step-body { padding: 22px 28px; }
.flow-step-body p {
  font-size: 16px; line-height: 1.9; letter-spacing: 1.2px; color: #302c2c;
  margin-bottom: 12px;
}
.flow-step-body p:last-child { margin-bottom: 0; }
.flow-lead { font-weight: 600; }
.flow-emphasis { color: #538148; font-weight: 600; }
/* キーワードのピル */
.flow-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 16px;
}
.flow-tags li {
  background: #fff7f0; border: 1px solid #f6d9bd; border-radius: 20px;
  padding: 6px 16px; font-size: 15px; letter-spacing: 1px; color: #302c2c;
}
/* 確認事項（オレンジ○） */
.flow-check { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 8px 0 4px; }
.flow-check li {
  position: relative; padding-left: 26px;
  font-size: 16px; line-height: 1.7; letter-spacing: 1px; color: #302c2c;
}
.flow-check li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px; border: 2px solid #fb8f1a; border-radius: 50%;
}
/* 選択肢（緑・） */
.flow-dot-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 8px 0 16px; }
.flow-dot-list li {
  position: relative; padding-left: 20px;
  font-size: 16px; line-height: 1.7; letter-spacing: 1px; color: #302c2c;
}
.flow-dot-list li::before {
  content: ''; position: absolute; left: 2px; top: 11px;
  width: 7px; height: 7px; background: #538148; border-radius: 50%;
}
.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-card {
  margin-bottom: 40px; padding: 36px 40px;
  background: #fcfaf5; border: 1px solid #efe6d6; border-radius: 10px;
}
.greeting-card .greeting-intro { margin-bottom: 32px; }
.greeting-body p {
  font-size: 16px; line-height: 2; letter-spacing: 1.6px; margin-bottom: 16px;
}
.greeting-body .axis-bullet-list { margin: 0 0 16px; }
.greeting-body-title {
  font-size: 19px; font-weight: 700; letter-spacing: 1.8px; color: #312c2c;
  margin: 40px 0 18px; padding-bottom: 12px; position: relative;
}
.greeting-body-title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 44px; height: 3px; background: #fb8f1a; border-radius: 2px;
}
.greeting-body-title:first-child { margin-top: 0; }
.greeting-signature {
  text-align: right; margin-top: 28px; line-height: 1.8;
}
.greeting-signature .name { font-size: 18px; font-weight: 700; letter-spacing: 1.8px; }
.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: 460px; 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) {
  /* MV下の特長帯：4カラムだと窮屈なため2カラムに */
  .hero-features-inner { grid-template-columns: 1fr 1fr; gap: 22px 0; padding: 24px 20px; }
  .hf-item { padding: 4px 24px; }
  .hf-item:nth-child(2n) { border-right: none; padding-right: 0; }
  .hf-item:nth-child(2n+1) { padding-left: 0; }
  .hf-icon { width: 56px; height: 56px; }
  .hf-icon svg { width: 32px; height: 32px; }
  /* ヒーロー画像 */
  .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: 70px; }
  .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-intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .axis-intro-visual { width: 100%; max-width: 415px; height: auto; aspect-ratio: 415/601; margin: 0 auto; }
  .axis-intro-shadow { width: calc(100% - 15px); height: auto; aspect-ratio: 400/587; }
  .axis-intro-img { width: calc(100% - 15px); height: auto; aspect-ratio: 400/586; }
  .axis-intro-content { padding-top: 0; }
  .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; }
  /* 新ヒーロー：写真とテキストを縦積みに切替（PCのflex中央揃えを解除） */
  .hero2 { display: block; min-height: 0; }
  .hero2-photo { position: relative; width: 100%; height: 52vw; max-height: 480px; }
  .hero2-photo::after { background: linear-gradient(to bottom, rgba(249,244,233,0) 70%, #f9f4e9 100%); }
  .hero2-circle { right: 5%; top: auto; bottom: 8%; width: 190px; height: 190px; }
  .hero2-circle-sub { font-size: 13px; }
  .hero2-circle-main { font-size: 20px; }
  .hero2-inner { padding: 34px 20px 44px; }
  .hero2-content { max-width: none; }
  /* サポート・選ばれる理由 */
  .support-inner { grid-template-columns: 1fr; gap: 30px; }
  /* 1カラム時は競輪シルエットを本文の背面に薄く敷く */
  .support-keirin { width: 210px; bottom: 8px; opacity: 0.16; }
  .whyus-grid { grid-template-columns: 1fr; gap: 26px; max-width: 560px; margin: 0 auto; }
  /* CVバー */
  .cv-bar-text { font-size: 14px; }
  .cv-bar-btn { padding: 12px 18px; font-size: 14px; }
}
@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; }
  /* 新ヒーロー */
  .hero2-photo { height: 62vw; }
  .hero2-circle { width: 150px; height: 150px; gap: 6px; right: 4%; }
  .hero2-circle-sub { font-size: 11px; }
  .hero2-circle-main { font-size: 16px; letter-spacing: 1.5px; }
  .hero2-ribbon { font-size: 14px; padding: 8px 32px 8px 16px; margin-bottom: 20px; }
  .hero2-title { font-size: 26px; }
  .hero2-subcatch { font-size: 15px; letter-spacing: 0.8px; margin-bottom: 14px; }
  .hero2-desc { font-size: 14px; line-height: 1.9; margin-bottom: 24px; }
  /* MV下の特長帯：1カラムに */
  .hero-features-inner { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .hf-item { padding: 0 0 18px; border-right: none; border-bottom: 1px solid #e6ddcb; gap: 14px; }
  .hf-item:last-child { padding-bottom: 0; border-bottom: none; }
  .hf-icon { width: 48px; height: 48px; }
  .hf-icon svg { width: 26px; height: 26px; }
  .hf-title { font-size: 16px; margin-bottom: 5px; }
  .hf-body p, .hf-sports li { font-size: 13px; }
  .hero2-tags { gap: 10px; }
  .hero2-tag { font-size: 14px; padding: 8px 16px; gap: 8px; }
  .hero2-tag img { width: 18px; }
  /* サポート・選ばれる理由 */
  .support { padding: 30px 0 36px; }
  .support-photos { gap: 10px; }
  .support-photo figcaption { font-size: 12px; margin-top: 6px; }
  .support-title { font-size: 20px; }
  .support-text { font-size: 14px; }
  .whyus { padding: 40px 0 46px; }
  .whyus-heading { font-size: 20px; gap: 10px; margin-bottom: 30px; }
  .whyus-heading img { width: 36px; }
  .whyus-icon { width: 72px; height: 72px; }
  .whyus-body h3 { font-size: 17px; margin-bottom: 6px; }
  .whyus-body p { font-size: 14px; }
  /* CVバー：縦積みに */
  .cv-bar-inner { flex-direction: column; padding: 10px 16px 12px; gap: 8px; }
  .cv-bar-text { font-size: 12px; letter-spacing: 0.3px; gap: 8px; text-align: center; }
  .cv-bar-text img { width: 20px; }
  .cv-bar-btn { padding: 10px 24px; font-size: 13px; gap: 8px; }
  body.has-cvbar .footer { padding-bottom: 150px; }
  /* インフォ */
  .info-section { padding-top: 40px; }
  /* 元競輪選手だからこそ */
  .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-intro { padding: 20px 0 40px; }
  .axis-intro-content { padding-top: 0; }
  .axis-intro-lead { font-size: 20px; letter-spacing: 1.5px; margin-bottom: 20px; }
  .axis-program-intro { font-size: 14px; letter-spacing: 1px; }
  .axis-bullet-list li { font-size: 14px; line-height: 24px; letter-spacing: 1px; }
  .axis-bullet-list li::before { top: 9px; }
  .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-block { margin-bottom: 40px; }
  .guide-section-heading { margin-bottom: 20px; padding-bottom: 12px; }
  .guide-section-heading h2 { font-size: 20px; letter-spacing: 1.5px; }
  .guide-sub { margin-bottom: 30px; }
  .guide-sub-heading h3 { font-size: 15px; letter-spacing: 1.2px; }
  .guide-sub-bar { height: 28px; }
  .guide-item-body p { font-size: 14px; letter-spacing: 1px; }
  .guide-course-label { font-size: 14px; letter-spacing: 1px; }
  /* 開講中のスクール・講座 */
  .sp-br-off { display: none; }
  .school-lead-catch { font-size: 17px; letter-spacing: 1px; }
  .school-lead p:not(.school-lead-catch) { font-size: 14px; letter-spacing: 0.8px; }
  .school-course { padding-top: 30px; margin-top: 30px; }
  .school-course-num { font-size: 26px; }
  .school-course-heading h3 { font-size: 18px; letter-spacing: 1.2px; padding-top: 2px; }
  .school-course-sub { font-size: 13px; }
  .school-course p { font-size: 14px; letter-spacing: 0.8px; }
  .school-catch { font-size: 16px; }
  .school-h4 { font-size: 15px; margin: 22px 0 12px; }
  .school-h4::before { height: 17px; }
  .school-emphasis { font-size: 15px; }
  .school-divider { margin: 26px auto; }
  .school-list li { font-size: 14px; letter-spacing: 0.8px; padding-left: 18px; }
  .school-list li::before { top: 9px; width: 6px; height: 6px; }
  .school-price { padding: 18px 20px; }
  .school-price-name { font-size: 14px; }
  .school-price-value { font-size: 19px; }
  .school-price-notes li { font-size: 12px; }
  .school-closing { margin-top: 30px; padding-top: 34px; }
  .school-closing p { font-size: 14px; letter-spacing: 0.8px; }
  .school-closing .school-closing-catch { font-size: 18px; letter-spacing: 1.2px; }
  .school-closing .school-closing-cta { font-size: 16px; }
  .guide-course-title { font-size: 14px; letter-spacing: 1px; }
  .guide-course-desc { 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; }
  .injury-lead-label { font-size: 13px; }
  .injury-lead-catch { font-size: 24px; letter-spacing: 2px; }
  .injury-lead-sub { font-size: 13px; }
  .injury-lead-strong { font-size: 16px; letter-spacing: 1px; }
  .flow-step-head { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 18px; }
  .flow-step-title { font-size: 17px; letter-spacing: 1px; }
  .flow-step-body { padding: 18px 20px; }
  .flow-step-body p { font-size: 14px; letter-spacing: 1px; }
  .flow-tags li { font-size: 13px; padding: 5px 12px; }
  .flow-check li, .flow-dot-list li { font-size: 14px; letter-spacing: 0.8px; }
  .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-card { padding: 24px 20px; }
  .greeting-body p { font-size: 14px; letter-spacing: 1px; }
  .greeting-body-title { font-size: 16px; }
  .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; }
}

/* 560px以下：ブランド文字を16pxに拡大したぶんヘッダーが高くなるため、
   ヒーロー画像とくっつかないよう上余白を拡大（768pxの100px指定を上書き） */
@media (max-width: 560px) {
  .hero-inner { padding-top: 130px; }
}
