@charset "UTF-8";
/* ============================================
   Feプロ トップページ専用スタイル
   assets/css/front-page.css
   ※ 変数・ボタン・ヘッダー・フッター・CTAは style.css（共通）に定義
   ============================================ */

/* ===== トップ共通 ===== */
.fp-main { font-family: "BIZ UDPGothic", -apple-system, BlinkMacSystemFont, "Hiragino Sans", sans-serif; color: var(--fp-text); line-height: 1.8; }
.fp-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.fp-section-label {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 12px;
  font-weight: 700;
}
.fp-section-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.fp-section-title .accent { color: var(--gold-dark); }
.fp-section-subtitle {
  color: var(--fp-text-sub);
  font-size: 15px;
  margin-bottom: 48px;
  line-height: 1.9;
}
.fp-section-header { text-align: center; margin-bottom: 56px; }
/* Lightning 親テーマの h2/h3 左寄せ指定を上書きして中央揃えを確実にする */
.fp-section-header .fp-section-title,
.fp-section-header .fp-section-label,
.fp-section-header .fp-section-subtitle {
  text-align: center;
}

/* ===== ① ファーストビュー ===== */
.fp-hero {
  min-height: 680px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.fp-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  z-index: 0;
}
.fp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center; /* 右寄りの選手が見えるように */
  filter: brightness(1.18) contrast(1.03) saturate(1.05);
}
/* オーバーレイ（左下を濃く・右上を明るく＝写真を明るく見せつつ文字を読みやすく） */
.fp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      78deg,
      rgba(20, 28, 48, 0.85) 0%,
      rgba(20, 28, 48, 0.70) 42%,
      rgba(31, 42, 68, 0.34) 65%,
      rgba(31, 42, 68, 0.06) 100%
    );
}
.fp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  text-shadow: 0 2px 16px rgba(10, 16, 30, 0.45);
}
.fp-hero__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  padding: 6px 18px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.fp-hero__subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.fp-hero__catch {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 5.5vw, 58px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.fp-hero__catch .quote {
  color: #D4BC7D;
  text-shadow: 0 2px 12px rgba(10, 16, 30, 0.85), 0 0 2px rgba(10, 16, 30, 0.6);
}
.fp-hero__desc {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 620px;
  line-height: 2;
}
.fp-hero__highlight {
  display: inline-block;
  background: rgba(184,160,99,0.12);
  border: 1px solid rgba(184,160,99,0.45);
  border-left: 4px solid var(--gold);
  padding: 12px 26px;
  margin-bottom: 14px;
}
.fp-hero__highlight-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2px;
}
.fp-hero__highlight-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.fp-hero__highlight-num .unit {
  font-family: "BIZ UDPGothic", -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.fp-hero__achievements {
  display: flex;          /* PC：横一列（必要時のみ折返し） */
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 28px;
}
.fp-hero__achievement {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-hero__achievement::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  font-size: 16px;
}
.fp-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.fp-hero .fp-btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.fp-hero .fp-btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ===== ② お悩み（監督×保護者） ===== */
.fp-problems { padding: 100px 0; background: var(--fp-bg-sub); }
.fp-problems__lead {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.7;
}
.fp-problems__lead .em {
  color: var(--gold-dark);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 2px;
}
.fp-problems__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 48px 0 40px;
}
.fp-problem-card {
  background: #fff;
  padding: 40px 32px;
  position: relative;
  border-top: 4px solid var(--navy);
  box-shadow: 0 4px 24px var(--fp-shadow);
}
.fp-problem-card--parent { border-top-color: var(--gold); }
.fp-problem-card__target {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.fp-problem-card--parent .fp-problem-card__target { background: var(--gold-dark); }
.fp-problem-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--navy);
}
.fp-problem-list { list-style: none; margin: 0; padding: 0; }
.fp-problem-list li {
  padding: 11px 0 11px 30px;
  border-bottom: 1px dashed var(--fp-border);
  font-size: 14px;
  position: relative;
  line-height: 1.7;
}
.fp-problem-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 13px;
  color: #fff;
  font-weight: 900;
  width: 19px; height: 19px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.fp-problem-card--parent .fp-problem-list li::before { background: var(--gold-dark); }
.fp-problem-list li:last-child { border-bottom: none; }
.fp-problems__message {
  background: var(--navy);
  padding: 44px 48px;
  text-align: center;
  border-left: 5px solid var(--gold);
  box-shadow: 0 8px 28px rgba(31,42,68,0.2);
}
.fp-problems__message p { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 2; margin: 0; }
.fp-problems__message strong { color: var(--gold); font-weight: 700; }

/* ===== セクション背景のウォーターマーク文字（共通） ===== */
.fp-why,
.fp-support,
.fp-reasons,
.fp-voices,
.fp-blog {
  position: relative;
  overflow: hidden;
}
.fp-why::before,
.fp-support::before,
.fp-reasons::before,
.fp-voices::before,
.fp-blog::before {
  position: absolute;
  bottom: 10px;
  right: 2%;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: clamp(110px, 16vw, 220px);
  line-height: 0.8;
  color: rgba(31, 42, 68, 0.045);
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.fp-why::before     { content: 'WHY'; }
.fp-support::before { content: 'SUPPORT'; }
.fp-reasons::before { content: 'REASONS'; }
.fp-voices::before  { content: 'VOICES'; }
.fp-blog::before    { content: 'BLOG'; }

.fp-why .fp-container,
.fp-support .fp-container,
.fp-reasons .fp-container,
.fp-voices .fp-container,
.fp-blog .fp-container {
  position: relative;
  z-index: 1;
}

/* ===== セクション内の中央配置ボタン（共通） ===== */
.fp-section-btn { text-align: center; margin-top: 40px; }

/* ===== ③ なぜ身体づくり設計が必要か ===== */
.fp-why { padding: 100px 0; background: #fff; position: relative; overflow: hidden; }
.fp-why__box {
  background: var(--fp-bg-sub);
  border: 1px solid var(--fp-border);
  padding: 48px;
  margin-bottom: 40px;
}
.fp-why__box p { font-size: 15px; color: var(--fp-text-sub); line-height: 2.1; margin-bottom: 16px; }
.fp-why__box p:last-child { margin-bottom: 0; }
.fp-why__box strong { color: var(--navy); font-weight: 700; }
@media (min-width: 969px) {
  .fp-why__box p { text-align: center; }
}
.fp-why__points {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}
.fp-why__point {
  background: #fff;
  border: 1px solid var(--gold);
  padding: 16px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.fp-why__note {
  text-align: center;
  font-size: 14px;
  background: var(--navy);
  color: #fff;
  padding: 24px;
}
.fp-why__note strong { color: var(--gold); }

/* ===== ④ 成長に必要な3つの土台 ===== */
.fp-foundation { padding: 100px 0; background: var(--fp-bg-sub); }
.fp-foundation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fp-foundation-card {
  background: #fff;
  border: 1px solid var(--fp-border);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.fp-foundation-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px var(--fp-shadow); border-color: var(--gold); }
.fp-foundation-card__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-foundation-card__icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  text-align: center;
}
.fp-foundation-card__icon i::before {
  display: inline-block;
  width: auto;
}
.fp-foundation-card__title {
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center; /* Lightning親テーマの h3 左寄せを上書き */
}
.fp-foundation-card__desc { font-size: 14px; color: var(--fp-text-sub); line-height: 1.8; }

/* ===== ⑤ サポート内容 ===== */
.fp-support { padding: 100px 0; background: #fff; position: relative; overflow: hidden; }
.fp-support__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-bottom: 40px;
}
.fp-support__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--fp-border);
  font-size: 14.5px;
  line-height: 1.7;
}
.fp-support__item::before {
  content: '✓';
  color: #fff;
  background: var(--navy);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 3px;
}
.fp-support__note {
  background: var(--fp-bg-sub);
  padding: 24px 32px;
  text-align: center;
  font-size: 14px;
  color: var(--fp-text-sub);
  border-left: 4px solid var(--gold);
}

/* ===== ⑥ サポートプラン（3つ・真ん中強調） ===== */
.fp-plans { padding: 100px 0; background: var(--navy); position: relative; }
.fp-plans .fp-section-title,
.fp-plans .fp-section-subtitle { color: #fff; }
.fp-plans .fp-section-label { color: var(--gold); }
.fp-plans .fp-section-subtitle { color: rgba(255,255,255,0.75); }
.fp-plans__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.fp-plan {
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.fp-plan--featured {
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  z-index: 2;
}
/* featured かつ fadeup の場合、transform の衝突を防ぐ（scale を維持） */
.fp-plan--featured.fp-fadeup {
  transform: translateY(30px) scale(1.04);
}
.fp-plan--featured.fp-fadeup.is-visible {
  transform: translateY(0) scale(1.04);
}
.fp-plan--featured .fp-plan__head { background: var(--gold); }
.fp-plan--featured .fp-plan__head .fp-plan__name,
.fp-plan--featured .fp-plan__head .fp-plan__label { color: var(--navy); }
.fp-plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 3;
}
.fp-plan__head {
  background: var(--navy-light);
  color: #fff;
  padding: 36px 24px 28px;
  text-align: center;
}
.fp-plan__label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.fp-plan__name {
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.fp-plan__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fp-plan__catch {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--fp-border);
  line-height: 1.6;
}
.fp-plan__features { list-style: none; flex: 1; margin: 0; padding: 0; }
.fp-plan__features li {
  font-size: 13.5px;
  padding: 10px 0 10px 26px;
  position: relative;
  line-height: 1.6;
  color: var(--fp-text);
}
.fp-plan__features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  color: var(--gold-dark);
  font-weight: 900;
}
.fp-plan__cta { margin-top: 24px; }
.fp-plan__cta .fp-btn { width: 100%; padding: 14px; font-size: 14px; }

/* ===== ⑦ 選ばれる理由 ===== */
.fp-reasons { padding: 100px 0; background: #fff; position: relative; overflow: hidden; }
.fp-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fp-reason-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F6F9 60%, #ECEEF4 100%);
  padding: 32px 28px;
  border: 1px solid var(--fp-border);
  border-bottom: 3px solid var(--gold);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.fp-reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31,42,68,0.04) 0%, rgba(31,42,68,0) 45%);
  pointer-events: none;
}
.fp-reason-card:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
  box-shadow: 0 10px 30px var(--fp-shadow);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.fp-reason-card__num {
  position: absolute;
  top: 4px;
  right: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(184, 160, 99, 0.22);
  line-height: 1;
  pointer-events: none;
}
.fp-reason-card__text {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  padding-top: 28px;
}

/* ===== ⑧ 代表メッセージ ===== */
.fp-message { padding: 100px 0; background: var(--fp-bg-sub); }
.fp-message__box {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  padding: 48px;
  box-shadow: 0 4px 24px var(--fp-shadow);
}
.fp-message__photo {
  aspect-ratio: 3/4;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  text-align: center;
  overflow: hidden;
}
.fp-message__photo img { width: 100%; height: 100%; object-fit: cover; }
.fp-message__quote {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 24px;
}
.fp-message__text { font-size: 14.5px; color: var(--fp-text-sub); line-height: 2; margin-bottom: 24px; }
.fp-message__sign { font-size: 14px; color: var(--navy); }
.fp-message__sign strong { font-size: 17px; font-family: "Noto Serif JP", serif; }
.fp-message__more { margin-top: 22px; }
.fp-message__more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.fp-message__more a:hover { color: var(--navy); }

/* ===== ⑨ お客様の声 ===== */
.fp-voices { padding: 100px 0; background: #fff; }
.fp-voices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fp-voice-card {
  background: var(--fp-bg-sub);
  border: 1px solid var(--fp-border);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}
.fp-voice-card::before {
  content: '“';
  position: absolute;
  top: 12px; left: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.fp-voice-card:hover { background: #fff; box-shadow: 0 8px 28px var(--fp-shadow); transform: translateY(-3px); }
.fp-voice-card__result {
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.fp-voice-card__badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.fp-voice-card__comment { font-size: 14px; color: var(--fp-text-sub); margin-bottom: 18px; line-height: 1.9; }
.fp-voice-card__author { font-size: 12px; color: var(--fp-text-mute); padding-top: 14px; border-top: 1px solid var(--fp-border); }

/* ===== ⑨ お知らせ ===== */
.fp-news { padding: 100px 0; background: var(--fp-bg-sub); }
.fp-news__inner { max-width: 860px; margin: 0 auto; }
.fp-news__list { list-style: none; background: #fff; border: 1px solid var(--fp-border); margin: 0; padding: 0; }
.fp-news__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--fp-border);
  transition: background 0.2s;
  text-decoration: none;
  color: var(--fp-text);
}
.fp-news__item:last-child { border-bottom: none; }
.fp-news__item:hover { background: var(--fp-bg-sub); }
.fp-news__date {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  color: var(--fp-text-mute);
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.fp-news__cat {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.fp-news__cat--event { background: var(--gold-dark); }
.fp-news__cat--media { background: var(--navy-light); }
.fp-news__title { font-size: 14.5px; line-height: 1.6; }
.fp-news__more { text-align: center; margin-top: 36px; }

/* ===== ⑩ 食育ブログ ===== */
.fp-blog { padding: 100px 0; background: #fff; }
.fp-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.fp-blog-card {
  background: #fff;
  border: 1px solid var(--fp-border);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.fp-blog-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 12px 32px var(--fp-shadow); }
.fp-blog-card__thumb {
  height: 190px;
  background: var(--fp-bg-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-text-mute);
  font-size: 13px;
  position: relative;
  border-bottom: 1px solid var(--fp-border);
  overflow: hidden;
}
.fp-blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.fp-blog-card__cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.05em;
  z-index: 1;
}
.fp-blog-card__body { padding: 24px; }
.fp-blog-card__date {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  color: var(--fp-text-mute);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.fp-blog-card__title { font-size: 16px; font-weight: 700; line-height: 1.7; color: var(--navy); }
.fp-blog__more { text-align: center; }

/* ===== スクロールアニメーション ===== */
.fp-fadeup { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fp-fadeup.is-visible { opacity: 1; transform: translateY(0); }

/* ===== トップ専用レスポンシブ ===== */
@media (max-width: 968px) {
  .fp-problems__grid { grid-template-columns: 1fr; }
  .fp-why__points { grid-template-columns: repeat(2, 1fr); }
  .fp-foundation__grid { grid-template-columns: 1fr; }
  .fp-support__grid { grid-template-columns: 1fr; gap: 0; }
  .fp-plans__grid { grid-template-columns: 1fr; gap: 32px; }
  .fp-plan--featured { transform: scale(1); }
  .fp-reasons__grid { grid-template-columns: 1fr; }
  .fp-voices__grid { grid-template-columns: 1fr; }
  .fp-blog__grid { grid-template-columns: 1fr; }
  .fp-message__box { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .fp-message__photo { max-width: 240px; margin: 0 auto; }
  .fp-why__box { padding: 28px; }
  .fp-hero { min-height: 580px; }
  /* タブレット以下：選手の顔が文字に隠れないよう、やや上＆中央寄りに */
  .fp-hero__bg img { object-position: 70% 20%; }
}
@media (max-width: 600px) {
  .fp-hero { min-height: auto; padding: 40px 0; }
  /* スマホ：写真の焦点を選手寄りにしつつ、オーバーレイを縦方向で強めて可読性確保 */
  .fp-hero__bg img { object-position: 68% 15%; }
  .fp-hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(20, 28, 48, 0.78) 0%,
      rgba(20, 28, 48, 0.70) 45%,
      rgba(20, 28, 48, 0.88) 100%
    );
  }
  .fp-hero__achievements { flex-direction: column; gap: 6px; margin-bottom: 22px; } /* SP：縦並び */
  /* スマホ：実績バッジを少しコンパクトに */
  .fp-hero__highlight { padding: 10px 18px; margin-bottom: 12px; }
  .fp-hero__highlight-num { font-size: 48px; }
  .fp-hero__highlight-num .unit { font-size: 15px; }
  .fp-hero__highlight-text { font-size: 13px; }
  /* スマホ：「ジュニアアスリート専門」と「身体づくり・栄養コンディショニングサポート」の
     間隔を詰めて、FVをCTAボタンまで収まりやすくする */
  .fp-hero__tag { margin-bottom: 7px; }
  .fp-hero__subtitle { margin-bottom: 8px; }
  /* スマホ：説明文下の余白を詰める */
  .fp-hero__desc { margin-bottom: 16px; line-height: 1.85; }
  /* スマホ：キャッチを少し大きく＆自然折り返し（line2のインデント解除） */
  .fp-hero__catch { font-size: 30px; line-height: 1.3; margin-bottom: 14px; }
  .fp-hero__catch .line2 { display: inline; padding-left: 0; }
  /* 2つのボタンを上下に並べ、幅をそろえる */
  .fp-hero__cta { flex-direction: column; gap: 12px; }
  .fp-hero__cta .fp-btn { width: 100%; text-align: center; box-sizing: border-box; }
  /* お悩みボックスの左右パディングを小さく */
  .fp-problems__message { padding: 32px 22px; }
  .fp-why__points { grid-template-columns: 1fr; }
  .fp-news__item { flex-wrap: wrap; gap: 8px 16px; }
}
