/* ========================================
   いっきづか鍼灸接骨院 LP - スタイルシート
   配色: ネイビー/ブルー × オレンジ × クリーム
   ======================================== */

/* --- CSS変数（デザインシステム） --- */
:root {
  /* メインカラー */
  --navy: #1a2744;
  --navy-light: #2c3e6b;
  --blue: #2e5fa1;
  --blue-light: #4a7ec5;
  --blue-pale: #e8f0fa;

  /* アクセントカラー */
  --orange: #e88b2e;
  --orange-dark: #d07520;
  --orange-light: #fef3e2;

  /* LINEカラー */
  --line-green: #06C755;
  --line-green-hover: #05b04b;

  /* ベースカラー */
  --cream: #faf6f0;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f1f3;
  --gray-300: #ccc;
  --gray-500: #888;
  --gray-700: #444;
  --text: #333;
  --text-light: #666;

  /* サイズ */
  --header-h: 60px;
  --fixed-cta-h: 64px;
  --max-w: 960px;
  --section-py: 80px;

  /* フォント */
  --font-main: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-accent: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;

  /* 影 */
  --shadow-sm: 0 2px 8px rgba(26, 39, 68, .08);
  --shadow-md: 0 4px 20px rgba(26, 39, 68, .12);
  --shadow-lg: 0 8px 32px rgba(26, 39, 68, .16);

  /* 角丸 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* --- リセット --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
  max-width: 100%;
}

/* 横スクロール完全防止ラッパー */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--fixed-cta-h);
  max-width: 100vw;
}

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

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

ul,
ol {
  list-style: none;
}

/* --- ユーティリティ --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- SVGアイコン --- */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.svg-icon--inline {
  vertical-align: middle;
  margin-right: 4px;
}

.troubles__icon .svg-icon,
.signal-card__icon .svg-icon,
.cause-step__icon .svg-icon,
.posture-card__icon .svg-icon,
.pillar-card__icon .svg-icon,
.menu-card__icon .svg-icon,
.choice__card-icon .svg-icon {
  display: block;
  margin: 0 auto;
}


.sp-only {
  display: inline;
}

.pc-only {
  display: none;
}

.text-accent {
  color: var(--blue);
  font-weight: 700;
}

.text-accent-orange {
  color: var(--orange);
  font-weight: 700;
}

.section {
  padding: var(--section-py) 0;
}

.section--blue {
  background: linear-gradient(180deg, var(--blue-pale) 0%, var(--white) 100%);
}

.section--cream {
  background: var(--cream);
}

/* --- セクションヘッダー --- */
.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--orange-light);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--navy);
}

/* ======== ヘッダー ======== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 39, 68, .08);
  z-index: 1000;
  transition: box-shadow .3s;
  overflow: hidden;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  overflow: hidden;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 36px;
  width: auto;
}

.header__line-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--line-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all .3s;
  flex-shrink: 0;
  white-space: nowrap;
}

.header__line-btn:hover {
  background: var(--line-green-hover);
  transform: scale(1.03);
}

/* ======== ヒーロー ======== */
.hero {
  position: relative;
  min-height: unset; /* 画像ベースなので不要に */
  display: block; /* center配置などを解除 */
  overflow: hidden;
  padding-top: var(--header-h);
  background: none; /* 背景色解除 */
}

/* PC/SP 画像表示切り替え */
.hero__image-pc {
  display: block !important;
}

.hero__image-sp {
  display: none !important;
}

@media (max-width: 768px) {
  .hero__image-pc {
    display: none !important;
  }
  .hero__image-sp {
    display: block !important;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(26, 39, 68, 0.65) 0%,
      rgba(26, 39, 68, 0.45) 50%,
      rgba(26, 39, 68, 0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.hero__sub {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.hero__accent {
  color: var(--orange);
  position: relative;
}

.hero__accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.hero__desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero__desc strong {
  color: var(--orange-light);
}

.hero__note {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #ff6b00 0%, #f39c12 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.45);
  animation: offer-pulse 2.5s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
  gap: 6px;
}

/* ヒーロー内のLINEボタンをブロック化して縦積みに */
.hero__content .btn--line {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

a.hero__note {
  text-decoration: none;
  color: #fff;
}

a.hero__note:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(255, 107, 0, 0.7), 0 0 0 4px rgba(255, 255, 255, 0.4);
}

@keyframes offer-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.55), 0 0 0 3px rgba(255, 255, 255, 0.3);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.75), 0 0 0 5px rgba(255, 255, 255, 0.5);
  }
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  border: none;
  text-align: center;
}

.btn--line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(6, 199, 85, .35);
}

.btn--line:hover {
  background: var(--line-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 199, 85, .45);
}

.btn--large {
  padding: 20px 40px;
  font-size: 18px;
}

.btn--pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(6, 199, 85, .35);
  }

  50% {
    box-shadow: 0 4px 32px rgba(6, 199, 85, .6), 0 0 0 8px rgba(6, 199, 85, .1);
  }
}

.line-icon {
  flex-shrink: 0;
}

/* ======== お悩みチェック ======== */
.troubles {
  background: var(--white);
}

.troubles__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.troubles__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 15px;
  border-left: 4px solid var(--blue);
  transition: transform .2s, box-shadow .2s;
}

.troubles__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.troubles__icon {
  font-size: 24px;
  flex-shrink: 0;
}

/* 数字カウンターバッジ */
.troubles__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #f39c12 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  font-family: var(--font-accent);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232, 139, 46, 0.4);
}

.troubles__solution {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  margin-top: 24px;
}

.troubles__solution-text {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

/* ======== 選ばれる理由 ======== */
.reason-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  transition: transform .3s;
}

.reason-card:hover {
  transform: translateY(-4px);
}

.reason-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-accent);
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
  z-index: 2;
}

.reason-card__img-wrap {
  width: 100%;
  overflow: hidden;
}

.reason-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s;
}

.reason-card:hover .reason-card__img {
  transform: scale(1.05);
}

.reason-card__body {
  padding: 24px;
}

.reason-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  border-left: 4px solid var(--orange);
  padding-left: 12px;
}

.reason-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ======== 施術メニュー ======== */
.menu {
  background: var(--white);
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.menu-card {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-card__icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.menu-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.menu-card__text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ======== 患者様の声 ======== */
.voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--blue);
  transition: transform .3s;
}

.voice-card:hover {
  transform: translateY(-2px);
}

.voice-card__stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.voice-card__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.voice-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
}

.voice-card__name {
  font-weight: 700;
  color: var(--navy);
}

/* ======== アスリート実績 ======== */
.athletes {
  background: var(--white);
}

.athletes__content {
  text-align: center;
}

.athletes__img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
}

.athletes__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ======== LINE登録CTA ======== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 139, 46, .15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 199, 85, .1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box {
  position: relative;
  background: linear-gradient(145deg, #0d1f3c 0%, #0a2a1a 50%, #0d1f3c 100%);
  border: 2px solid rgba(255, 215, 0, 0.35);
  border-radius: 24px;
  padding: 56px 28px 44px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(6, 199, 85, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #c97b00, #f5c518, #c97b00);
  color: #1a0800;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 36px;
  border-radius: 0 0 16px 16px;
  letter-spacing: 0.15em;
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.5);
  white-space: nowrap;
}

.cta-box__ribbon::before,
.cta-box__ribbon::after {
  content: '★';
  margin: 0 6px;
  font-size: 11px;
}

.cta-box__title {
  font-size: 23px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
  margin-top: 12px;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.cta-box__highlight {
  color: #f5c518;
  font-size: 34px;
  display: block;
  position: relative;
  text-shadow: 0 0 24px rgba(245, 197, 24, 0.6);
}

.cta-box__highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f5c518, transparent);
  border-radius: 2px;
}

.cta-box__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 36px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box__benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  border: 1px solid rgba(6, 199, 85, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: background 0.2s, border-color 0.2s;
}

.cta-box__benefit:hover {
  background: rgba(6, 199, 85, 0.12);
  border-color: rgba(6, 199, 85, 0.5);
}

.cta-box__benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.cta-section .btn--large {
  font-size: 19px;
  padding: 22px 44px;
  border-radius: 60px;
  box-shadow: 0 6px 32px rgba(6, 199, 85, 0.55), 0 0 0 4px rgba(6, 199, 85, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.cta-section .btn--large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3s ease-in-out infinite 1.5s;
}

@keyframes btn-shine {
  0% {
    left: -75%;
  }

  50%,
  100% {
    left: 125%;
  }
}

.cta-box__note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

/* ======== FAQ ======== */
.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: background .2s;
}

.faq-item__question:hover {
  background: var(--gray-50);
}

.faq-item__icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--blue);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .4s;
  padding: 0 20px;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

.faq-item__answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ======== 院情報 ======== */
.info {
  background: var(--white);
}

.info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.info__table {
  width: 100%;
  border-collapse: collapse;
}

.info__table th,
.info__table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.info__table th {
  width: 100px;
  font-weight: 700;
  color: var(--navy);
  background: var(--blue-pale);
  white-space: nowrap;
}

.info__tel {
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
}

.info__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info__map iframe {
  display: block;
}

/* ======== フッター ======== */
.footer {
  background: var(--navy);
  padding: 40px 0;
  text-align: center;
}

.footer__logo {
  display: block;
  height: 30px;
  width: auto;
  margin: 0 auto 12px;
  background-color: var(--orange);
  -webkit-mask-image: url(images/logo.png);
  mask-image: url(images/logo.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
}

/* ======== 固定CTAバー ======== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--fixed-cta-h);
  background: rgba(26, 39, 68, .95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.fixed-cta.show {
  transform: translateY(0);
}

.fixed-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 400px;
  background: var(--line-green);
  color: #fff;
  white-space: normal;
  text-align: center;
  font-size: clamp(11px, 3.5vw, 15px);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-xl);
  transition: all .3s;
  box-shadow: 0 2px 12px rgba(6, 199, 85, .3);
}

.fixed-cta__btn:hover {
  background: var(--line-green-hover);
  transform: scale(1.02);
}

/* ======== アニメーション初期状態 ======== */
.anim-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======== P1: あなたのお体の未来 ======== */
.future__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.future__accent-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 28px;
  line-height: 1.6;
}

.future__message-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  text-align: left;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.future__message-box p {
  margin-bottom: 16px;
}

.future__message-box p:last-child {
  margin-bottom: 0;
}

.future__goal {
  background: linear-gradient(135deg, var(--orange-light), #fff5e6);
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  color: var(--navy);
}

.future__cta-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-top: 12px;
}

/* ======== P2: 知りたいこと ======== */
.questions {
  background: var(--white);
}

.questions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.question-card {
  background: var(--cream);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.question-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.question-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 12px;
}

.question-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy);
}

.question-card__text strong {
  color: var(--navy);
  font-size: 15px;
}

.questions__bottom {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 24px;
  border-radius: var(--radius-lg);
}

.questions__answer-text {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

/* ======== P3: 危険信号 ======== */
.danger__signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.signal-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}

.signal-card:hover {
  transform: translateY(-4px);
}

.signal-card--yellow {
  border-top: 4px solid #f0c040;
}

.signal-card--orange {
  border-top: 4px solid var(--orange);
}

.signal-card--red {
  border-top: 4px solid #e04040;
}

.signal-card__icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.signal-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.signal-card__text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.signal-card__arrow {
  font-size: 20px;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.danger__solution {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
}

.danger__solution-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}

.danger__solution-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.danger__solution-item {
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.danger__solution-item--wrong {
  background: #fff3f3;
  border: 2px solid #ffcccc;
}

.danger__solution-item--wrong strong {
  color: #c04040;
}

.danger__solution-item--right {
  background: #f0f9f4;
  border: 2px solid #c4e6d0;
}

.danger__solution-item--right strong {
  color: var(--line-green);
}

.danger__solution-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.6;
}

/* ======== P4: 4つの根本原因 ======== */
.causes__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cause-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
  border-bottom: 4px solid var(--orange);
}

.cause-step:hover {
  transform: translateY(-4px);
}

.cause-step__icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.cause-step__num {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.cause-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.cause-step__arrow {
  font-size: 18px;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.causes__summary {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 700;
}

/* --- 4つの根本原因 画像カードグリッド --- */
.causes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.cause-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
  border-bottom: 4px solid var(--orange);
}

.cause-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cause-card__img-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--blue-pale);
}

.cause-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  padding: 0;
  transition: transform .4s;
  display: block;
}

.cause-card:hover .cause-card__img {
  transform: scale(1.04);
}

.cause-card__body {
  padding: 16px;
}

.cause-card__num-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cause-card__num-wrap .cause-step__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0;
}

.cause-card__num-wrap .cause-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.cause-card__desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}


/* ======== P5: 身体を「家」に例えると ======== */
.house {
  background: var(--white);
}

.house__content {
  max-width: 700px;
  margin: 0 auto;
}

.house__diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.house__building {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 240px;
}

.house__roof {
  font-size: 56px;
  margin-bottom: 16px;
}

.house__part {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
}

.house__part--pillar {
  background: rgba(46, 95, 161, .1);
  color: var(--blue);
}

.house__part--base {
  background: rgba(232, 139, 46, .15);
  color: var(--orange-dark);
}

.house__part--foundation {
  background: rgba(26, 39, 68, .08);
  color: var(--navy);
}

.house__part-label {
  font-size: 15px;
}

.house__part-equals {
  color: var(--gray-500);
}

.house__part-body {
  font-size: 18px;
}

.house__note {
  flex: 1;
  min-width: 200px;
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
}

.house__symptoms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.symptom-tag {
  background: linear-gradient(135deg, #fef0e0, #ffe8cc);
  color: var(--orange-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(232, 139, 46, .2);
  transition: transform .2s;
}

.symptom-tag:hover {
  transform: scale(1.05);
}

/* ======== P6: 姿勢タイプ ======== */
.posture__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.posture-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--blue);
  transition: transform .3s;
}

.posture-card:hover {
  transform: translateY(-4px);
}

.posture-card__icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.posture-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.posture__note {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  border-left: 4px solid var(--orange);
}

/* ======== P7: インナーマッスル ======== */
.inner-muscle__content {
  max-width: 700px;
  margin: 0 auto;
}

.inner-muscle__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.inner-muscle__icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.inner-muscle__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.inner-muscle__points {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.inner-muscle__point {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.inner-muscle__point-icon {
  font-size: 20px;
}

/* ======== P8: 鍛え方比較 ======== */
.training {
  background: var(--white);
}

.training__compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.training__group {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.training__group--pro {
  background: linear-gradient(135deg, var(--blue-pale), #e0eaf8);
}

.training__group-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.training__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.training__card:last-child {
  margin-bottom: 0;
}

.training__card--recommend {
  border: 2px solid var(--orange);
}

.training__card-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.training__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.training__card-merit {
  font-size: 14px;
  color: var(--line-green);
  margin-bottom: 4px;
}

.training__card-demerit {
  font-size: 14px;
  color: #c04040;
}

/* ======== P9: 栄養と血流 ======== */
.nutrition__content {
  max-width: 700px;
  margin: 0 auto;
}

.nutrition__lead {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.nutrition__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nutrition__item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--orange);
}

.nutrition__item-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.nutrition__item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.nutrition__item-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ======== P10: 対処vs根本 ======== */
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.compare__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform .3s;
}

.compare__card:hover {
  transform: translateY(-4px);
}

.compare__card--bad {
  border-top: 4px solid #e04040;
}

.compare__card--good {
  border-top: 4px solid var(--line-green);
}

.compare__card-title {
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  white-space: nowrap;
}

.compare__card-list {
  text-align: left;
  margin-bottom: 16px;
}

.compare__card-list li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  padding-left: 8px;
}

.compare__card-list li::before {
  content: '•';
  color: var(--orange);
  font-weight: 700;
  margin-right: 8px;
}

.compare__card-result {
  font-size: 15px;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-sm);
}

.compare__card--bad .compare__card-result {
  background: #fff3f3;
  color: #c04040;
}

.compare__card--good .compare__card-result {
  background: #f0f9f4;
  color: var(--line-green);
}

.compare__goal {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

/* ======== P11: 3本柱 ======== */
.pillars {
  background: var(--white);
}

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.pillar-card {
  background: linear-gradient(135deg, var(--cream), var(--white));
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.pillar-card--highlight {
  background: linear-gradient(145deg, #ffffff 0%, #fef9f3 100%);
  border: 3px solid var(--orange);
  box-shadow: 0 6px 28px rgba(232, 139, 46, 0.18);
}

.pillar-card--highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(232, 139, 46, 0.3);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.pillar-card__number {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-accent);
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  opacity: .15;
  line-height: 1;
}

.pillar-card__icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.pillar-card__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
  letter-spacing: -.01em;
}

.pillar-card__subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-light);
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .06em;
}

.pillar-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.pillars__message {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

/* ======== P12: ロードマップ ======== */
.roadmap__steps {
  max-width: 500px;
  margin: 0 auto 32px;
}

.roadmap__step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform .3s;
}

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

.roadmap__step--1 {
  border-left: 5px solid #4a9eda;
}

.roadmap__step--2 {
  border-left: 5px solid var(--orange);
}

.roadmap__step--3 {
  border-left: 5px solid var(--line-green);
}

.roadmap__step-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: .1em;
}

.roadmap__step-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.roadmap__step-text {
  font-size: 14px;
  color: var(--text-light);
}

.roadmap__connector {
  text-align: center;
  font-size: 24px;
  color: var(--orange);
  padding: 8px 0;
}

.roadmap__warnings {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.roadmap__warning {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.7;
}

.roadmap__warning--caution {
  background: #fff8e6;
  border: 1px solid #f0c040;
  color: #8a6d00;
}

.roadmap__warning--recommend {
  background: #f0f9f4;
  border: 1px solid #c4e6d0;
  color: #1a6b3a;
}

/* ======== P13: 選択の提案 ======== */
.choice__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.choice__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  box-shadow: var(--shadow-md);
  transition: transform .3s;
}

.choice__card:hover {
  transform: translateY(-4px);
}

.choice__card--old {
  border-top: 4px solid #ccc;
}

.choice__card--new {
  border-top: 4px solid var(--line-green);
  box-shadow: var(--shadow-lg);
}

.choice__card-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.choice__card-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.choice__card-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.choice__card-text {
  font-size: 15px;
  font-weight: 700;
}

.choice__card--old .choice__card-text {
  color: #c04040;
}

.choice__card--new .choice__card-text {
  color: var(--line-green);
}

.choice__vs {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
}

.choice__message {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 700;
}

/* ======== P14: クロージング ======== */
.closing {
  background: linear-gradient(135deg, var(--navy), var(--navy-light), var(--blue));
}

.closing__content {
  text-align: center;
  padding: 40px 20px;
}

.closing__title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.closing__text {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  line-height: 1.7;
}


/* ======== レスポンシブ (768px以上) ======== */
@media (min-width: 768px) {
  :root {
    --section-py: 100px;
  }

  .sp-only {
    display: none;
  }

  .pc-only {
    display: inline;
  }

  .section__title {
    font-size: 34px;
  }

  /* ヒーロー */
  .hero__title {
    font-size: 48px;
  }

  .hero__desc {
    font-size: 18px;
  }

  /* お悩み */
  .troubles__list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* 選ばれる理由 */
  .reason-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .reason-card--reverse .reason-card__img-wrap {
    order: 2;
  }

  .reason-card--reverse .reason-card__body {
    order: 1;
  }

  .reason-card__img {
    height: 280px;
  }

  .reason-card__body {
    padding: 32px;
  }

  .reason-card__title {
    font-size: 22px;
  }

  .reason-card__number {
    font-size: 64px;
    top: 20px;
    left: 20px;
  }

  /* メニュー */
  .menu__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* 患者様の声 */
  .voices__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* CTA */
  .cta-box {
    padding: 56px 48px;
  }

  .cta-box__title {
    font-size: 32px;
  }

  .cta-box__highlight {
    font-size: 40px;
  }

  .cta-box__benefits {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
  }

  /* 院情報 */
  .info__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  /* --- Canvaセクション レスポンシブ --- */

  /* 危険信号 - 解決策を横並び */
  .danger__solution-content {
    grid-template-columns: 1fr 1fr;
  }

  /* 姿勢タイプ - 4カラム */
  .posture__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* 鍛え方比較 - 2カラム */
  .training__compare {
    grid-template-columns: 1fr 1fr;
  }

  /* 3本柱 - 3カラム横並び */
  .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* クロージング */
  .closing__title {
    font-size: 36px;
  }

  /* 選択の提案 */
  .compare__card-title {
    font-size: 24px;
  }

  .choice__card {
    min-width: 280px;
  }
}

/* ======== 大画面 (1024px以上) ======== */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 56px;
  }

  .reason-card__img {
    height: 320px;
  }
}

/* ======== ロゴ（テキスト） ======== */
.header__logo-text {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  line-height: 1.2;
  white-space: normal;
}

/* ======== ロゴ（テキスト：フッター） ======== */
.footer__logo-text {
  font-family: var(--font-accent);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 20px;
}

/* ======== 追加：スマホ向けサイズ調整 ======== */
@media (max-width: 767px) {
  /* ヘッダーロゴのサイズ調整 */
  .header__logo-text {
    font-size: 13px !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    max-width: 55vw;
  }

  /* LINEボタンの縮小・折り返し許可 */
  .btn--line {
    font-size: 14px !important;
    padding: 14px 16px !important;
    border-radius: 40px !important;
    white-space: normal !important;
    text-align: center !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .btn--large {
    font-size: 15px !important;
    padding: 16px 14px !important;
  }
  
  /* clinic-reserve-btn クラスを持つボタンも同様に縮小 */
  .clinic-reserve-btn {
    font-size: 14px !important;
    padding: 14px 16px !important;
    border-radius: 40px !important;
    white-space: normal !important;
  }

  /* 固定CTAバーのテキスト折り返し */
  .fixed-cta__btn {
    font-size: clamp(10px, 3.2vw, 14px) !important;
    padding: 10px 12px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }

  .fixed-cta__text {
    display: inline;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* 特典ボックスの余白調整と画像の拡大 */
  .present-box {
    padding: 24px 8px !important;
  }
  .present-img {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }

  /* CTAセクション内の特典ボックス余白 */
  .cta-box {
    padding: 40px 16px 32px !important;
  }

  /* 横スクロール防止 */
  .container {
    overflow-x: hidden;
  }

  /* インラインstyleの初回特典カードがはみ出さないように */
  .cta-section .container > div {
    max-width: 100%;
    box-sizing: border-box;
  }
}
