html {
  /* ▼ここに「ヘッダーの高さ」を指定します▼ */
  /* 例: ヘッダーの高さが約80pxの場合 */
  scroll-padding-top: 80px;
  /* スムーズスクロールも合わせて設定しておくと親切です */
  scroll-behavior: smooth;
}

/* --- CSS Variables --- */
:root {
  --color-main: #1a3c6e;
  /* 信頼感のあるネイビー */
  --color-accent: #f39c12;
  /* 元気なオレンジ */
  --color-highlight: #ffeb3b;
  /* 強調の黄色（料金表など） */
  --color-text: #333333;
  /* 基本テキスト */
  --color-bg-light: #f4f8fb;
  /* 薄い青グレー背景 */
  --color-line: #06c755;
  /* LINE公式カラー */
  --color-white: #ffffff;
  --color-red: #e74c3c;
  /* 強調用赤 */
  --color-price-bg: #f9f9f9;
  /* 料金カード背景 */

  --font-base: "Noto Sans JP", sans-serif;

  --width-container: 1000px;
  --border-radius: 16px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  padding-bottom: 80px;
  /* フッター追従ボタン用の余白 */
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

/* --- Utilities --- */
.container {
  width: 90%;
  max-width: var(--width-container);
  margin: 0 auto;
}

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

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

.sp-br {
  display: block;
}

@media (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

/* --- Components --- */
/* 見出し */
.section-title {
  font-size: 1.4rem;
  font-weight: 700; /* そのまま700ですが、下で余白を作るので軽く見えます */
  text-align: center;
  margin-bottom: 2rem; /* 余白を広げる */
  color: var(--color-main);
  position: relative;
  padding-bottom: 1rem;
  letter-spacing: 0.1em; /* 文字間を広げて上品に */
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* ボタン */
.btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--color-line);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.btn--primary {
  background: linear-gradient(to right, #06c755, #04b54b);
  font-size: 1.2rem;
}

.btn__sub {
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.2rem;
  opacity: 0.9;
}

/* LINEアイコン（簡易） */
.btn::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12c0 4.42 3.58 8 8 8h1v4l3.5-3.5c4.15-.45 7.5-3.95 7.5-8.5 0-5.52-4.48-10-10-10z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 5.4 2 10c0 2.5 1.3 4.7 3.4 6.2-.1.6-.4 1.6-.7 2 0 0-.2.2 0 .3.1.1.4.2 1.6-.4 2.4-1.2 2.8-1.4 3.2-1.5 6.5 1.2 11.5-2.5 11.5-6.6C21 5.4 17 2 12 2z"/></svg>');
  mask-size: contain;
  -webkit-mask-size: contain;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* --- Sections --- */
/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--width-container);
  margin: 0 auto;
  padding: 0 5%;
}

.header__logo-container {
  display: flex;
  /* gap: 20px; */
  align-items: start;
  flex-direction: column;
}

.header__logo {
  margin: 0;
  padding: 0;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__description {
  font-size: 12px;
  margin-left: 2px;
  color: var(--color-main);
  font-weight: 700;
}

.header__cta {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
}

/* FV (Angled Image Layout Style) */
.fv {
  margin-top: 80px;
  position: relative;
  width: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
  color: var(--color-text);
}

/* 古い設定の残骸があれば消す */
.fv::before {
  content: none;
}

/* ▼▼▼ シンプルな丸いグラデーション設定 ▼▼▼ */
.fv__bg-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(to right, #ff80b5, #9089fc);
  opacity: 0.4;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.fv__bg-circle--top {
  top: -200px;
  left: 50%;
  transform: translateX(-80%);
}

.fv__bg-circle--bottom {
  bottom: -200px;
  left: 50%;
  transform: translateX(0%);
  background: linear-gradient(to left, #f39c12, #ff80b5);
}

/* ▼▼▼ 新しいレイアウト設定 ▼▼▼ */
.fv__container {
  /* スマホ（デフォルト）設定 */
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  align-items: center;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;

  /* ★重要：ここを static にすることで、中の絶対配置画像が「画面全体(.fv)」を基準にできるようにする */
  position: static;
  z-index: 2;
}

/* 2. 左側テキストエリアの設定（スマホ） */
.fv__content-left {
  width: 100%;
  text-align: center;
  /* ★重要：以前の padding-left: calc(...) は削除！これでもう窮屈になりません */
  position: relative;
  z-index: 2; /* 画像より手前に表示 */
}

/* 右側：斜め画像エリア */
.fv__image-right {
  width: 100%;
  max-width: 500px;
  position: relative;
}

/* 画像の斜め切り抜きマスク */
.fv__image-mask {
  width: 100%;
  height: 300px;

  /* スマホ：切り抜かずに通常の角丸 */
  clip-path: none;
  border-radius: var(--border-radius);

  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fv__image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- テキスト要素 --- */
.fv__sub {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 1rem;
  display: inline-block;
  background: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--color-main);
}

.fv__main {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 3rem;
  letter-spacing: 0.08em;
}

.fv__main .highlight {
  background: linear-gradient(transparent 70%, #ffefc1 70%);
}

.fv__offer {
  background: #fff;
  border: 3px solid var(--color-accent);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  margin: 0 auto 2rem; /* スマホでは中央揃え */
  max-width: 500px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
}

.fv__offer-title {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  padding: 0.3rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.fv__offer-detail {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-main);
}

.big-text {
  font-size: 1.6rem;
  color: var(--color-red);
  font-weight: 700;
}

.cross {
  margin: 0 5px;
  color: #999;
}

.fv__offer-note {
  font-size: 1rem;
  color: #666;
  margin-top: 0.5rem;
}

.fv__link {
  margin-top: 10px;
}

.fv__link a {
  font-size: 0.9rem;
  color: #666;
  text-decoration: underline;
}

/* スマホ用調整 */
@media (max-width: 767px) {
  .fv__bg-circle {
    width: 300px;
    height: 300px;
    filter: blur(60px);
  }
}

/* ▼▼▼ PCサイズでのレイアウト調整（ここが重要！） ▼▼▼ */
@media (min-width: 768px) {
  .fv {
    margin-top: 80px;
    min-height: 700px; /* PCでは高さを確保 */
    padding: 0;
  }

  .fv__container {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative; /* PCでは相対配置に戻す（位置合わせのため） */
    height: 100%; /* FVの高さいっぱいに */
  }

  .fv__content-left {
    width: 50%; /* コンテナ（1000px）の半分（500px）を使う */
    text-align: left;
    padding: 4rem 2rem 4rem 8rem;
  }

  /* PCではofferボックスも左寄せ */
  .fv__offer {
    margin: 0 0 2rem 0;
  }

  /* PCではボタンも左寄せ */
  .fv__cta .btn {
    margin: 0;
  }
  .fv__link {
    text-align: left;
  }

  .fv__main {
    font-size: 2.5rem;
    line-height: 1.4;
  }

  /* 右側の画像を「画面の右半分」に配置する */
  .fv__image-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw; /* ★重要：画面幅の50%にする */
    height: 100%;
    max-width: none;
  }

  .fv__image-mask {
    width: 100%;
    height: 100%;
    border-radius: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    box-shadow: none;
  }
}

/* 画面幅がコンテナ幅（1000px）より狭くなった時の安全策 */
@media (min-width: 768px) and (max-width: 1050px) {
  .fv__content-left {
    padding-left: 5%; /* 計算式だとマイナスになる可能性があるので5%固定に切り替え */
  }
}

/* Worry (Text Only List) */
.worry {
  padding: 60px 0;
  background: #fff;
}

.worry__list {
  background: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.worry__list li {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
}

.check {
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 10px;
  font-size: 1.3rem;
}

.worry__message {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Solution */
.solution {
  padding: 60px 0;
  background: var(--color-main);
  color: #fff;
}

/* Solutionセクションの「セミパってなに？」 */
.solution__question {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  /* 吹き出し風のデザイン */
  background: #fff;
  padding: 0.5rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 吹き出しの三角（下） */
.solution__question::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

/* 「Q.」のマーク */
.solution__question .q-mark {
  color: var(--color-accent); /* オレンジ */
  font-size: 1.4rem;
  margin-right: 5px;
  font-weight: 900;
}

/* 「セミパ」の強調 */
.solution__question .accent {
  color: var(--color-red);
  font-size: 1.3rem;
}

/* セクションタイトルの上余白調整（吹き出しを入れた分、少し間隔を調整） */
.solution .section-title {
  margin-top: 1rem;
}

.solution .section-title {
  color: #fff;
}

.solution .section-title::after {
  background: #fff;
}

.solution__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.solution__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.solution__points li {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: left;
}

.solution__points h3 {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.solution__price {
  font-size: 1.2rem;
  margin-top: 2rem;
  font-weight: 700;
}

.solution__price .marker {
  background: #fff;
  color: var(--color-main);
  padding: 0.2rem 0.5rem;
}

/* Solutionセクションの調整 */
.solution__message {
  text-align: center;
  margin-bottom: 3rem;
  color: #fff; /* 背景がネイビーの場合、文字は白 */
}
.lead-text {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-accent); /* オレンジで強調 */
}
.solution__message p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.solution__message strong {
  font-size: 1.2rem;
  background: linear-gradient(
    transparent 70%,
    rgba(243, 156, 18, 0.6) 70%
  ); /* オレンジのマーカー風 */
  font-weight: 700;
}
.message-highlight {
  font-size: 1.3rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .message-highlight {
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .solution__points {
    flex-direction: row;
  }

  .solution__points li {
    flex: 1;
  }
}

/* Reason */
.reason {
  padding: 60px 0;
  background: var(--color-bg-light);
}

.reason__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.reason__img {
  height: auto;
  background-color: #ddd;
  position: relative;
}

.reason__text {
  padding: 2rem;
}

.reason__text h3 {
  font-size: 1.3rem;
  color: var(--color-main);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.num {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.9rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .reason__item {
    flex-direction: row;
    align-items: center;
  }

  .reason__item--reverse {
    flex-direction: row-reverse;
  }

  .reason__img {
    width: 45%;
    min-height: 300px;
    object-fit: cover;
  }

  .reason__text {
    width: 55%;
  }
}

/* --- Health Section (New) --- */
.health {
  padding: 60px 0;
  background-color: #ffffff;
}

.health__box {
  display: flex;
  flex-direction: column-reverse; /* スマホでは画像が上、テキストが下 */
  gap: 2rem;
  align-items: center;
  background: #eaf8f9;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid #b2ebf2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.health__text-area {
  width: 100%;
}

.health__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.health__title .highlight {
  background: linear-gradient(
    transparent 60%,
    #b2ebf2 60%
  ); /* 水色のマーカーで「整う」感を演出 */
}

.health__desc {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--color-text);
  font-size: 0.95rem;
}

.health__list {
  background: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(178, 235, 242, 0.4);
}
.health__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--color-main);
}
.health__list li:last-child {
  margin-bottom: 0;
}
.health__list li::before {
  content: "●";
  color: #26c6da; /* 爽やかな水色 */
  position: absolute;
  left: 0;
  top: 0;
}

.health__img-area {
  width: 100%;
  text-align: center;
}
.health__img-area img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

/* PCサイズ調整 */
@media (min-width: 768px) {
  .health {
    padding: 60px 0;
  }
  .health__box {
    flex-direction: row; /* 横並び */
    padding: 4rem;
    gap: 4rem;
  }
  .health__text-area {
    width: 55%;
  }
  .health__img-area {
    width: 45%;
  }
  .health__title {
    font-size: 2rem;
  }
  .health__img-area img {
    height: 100%;
    max-height: 400px;
  }
}

/* --- Price Section (Added) --- */
.price {
  padding: 60px 0;
  background: #fff;
}

.price__group {
  margin-bottom: 4rem;
}

/* 最後のprice__groupだけ下の余白をゼロにする */
.price__group:last-child {
  margin-bottom: 0;
}

.price__group-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-text);
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.price__note {
  font-size: 0.8rem;
  text-align: right;
  color: #666;
  margin-bottom: 1rem;
}

.price__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .price__grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }

  .price__grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
}

.p-card {
  background: var(--color-price-bg);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.p-card__head {
  background: #333;
  color: #fff;
  padding: 0.8rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.p-card__body {
  padding: 1.5rem 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-card__desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* 価格の強調文字 */
.p-card__price {
  font-size: 1.5rem;
  font-weight: 700; /* 900 → 700 */
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.p-card__price span {
  font-size: 0.9rem;
  font-weight: normal;
}

.p-card--recommend {
  border: 3px solid var(--color-highlight);
  background: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
  z-index: 1;
}

.p-card--recommend .p-card__head {
  background: #333;
  padding-top: 2rem;
}

.badge-rec {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-highlight);
  color: #333;
  font-weight: 700;
  padding: 5px 15px;
  font-size: 0.9rem;
  border-bottom-right-radius: 8px;
}

.discount-box {
  background: #ddd;
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid #999;
}

.discount-box h3 {
  background: #333;
  color: #fff;
  display: inline-block;
  padding: 0.5rem 2rem;
  margin-bottom: 1rem;
}

.discount-box__big {
  font-size: 2rem;
  color: var(--color-text);
  font-weight: 700;
  display: block;
  margin-top: 0.5rem;
}

/* --- Voice Section (New Design) --- */
.voice {
  padding: 60px 0;
  background: var(--color-bg-light);
}

.voice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* PCでは3列表示 */
@media (min-width: 768px) {
  .voice {
    padding: 80px 0;
  }
  .voice__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    /* 高さが違っても上揃え */
  }
}

.voice__card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.voice__card:hover {
  transform: translateY(-5px);
}

.voice__img {
  width: 100%;
  height: 250px;
  background: #f4f4f4;
  border-bottom: 4px solid var(--color-accent);
  /* アクセントカラーのライン */
}

.voice__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 画像の比率を保ちつつ枠を埋める */
}

.voice__body {
  padding: 1.5rem;
}

.voice__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 0.5rem;
}

.voice__name {
  font-weight: 700;
  color: var(--color-main);
  font-size: 1.1rem;
}

.voice__age {
  font-size: 0.8rem;
  background: #eee;
  padding: 2px 8px;
  border-radius: 4px;
  color: #666;
}

.voice__head {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.4;
  min-height: 3em;
  /* 見出しの高さを揃える */
}

.voice__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  /* 文章の両端揃え */
}

/* --- Trainers Section --- */
.trainers {
  padding: 60px 0;
  background: #ffffff;
}

.trainers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trainers {
    padding: 80px 0;
  }

  .trainers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trainers__card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 4px solid var(--color-main);
  /* 上部にアクセント線 */
}

.trainers__img {
  width: 100%;
  background: #fff;
  padding: 1.5rem 1.5rem 0;
}

.trainers__img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  /* 丸く切り抜き */
  border: 3px solid #eee;
}

.trainers__body {
  padding: 1.5rem;
}

.trainers__role {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.8rem;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* トレーナー名など */
.trainers__name {
  font-size: 1.3rem;
  color: var(--color-main);
  margin-bottom: 1rem;
  font-weight: 700; /* 900 → 700 */
  letter-spacing: 0.1em;
}

.trainers__profile {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  text-align: left;
}

.profile-row {
  display: flex;
  margin-bottom: 5px;
}

.profile-row:last-child {
  margin-bottom: 0;
}

.profile-row dt {
  font-weight: 700;
  color: var(--color-main);
  width: 3em;
  flex-shrink: 0;
  margin-right: 10px;
}

.profile-row dd {
  color: #666;
}

.trainers__message {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  position: relative;
  background: #fffceb;
  /* 薄い黄色背景でメッセージっぽく */
  padding: 1rem;
  border-radius: 8px;
}

.trainers__message::before {
  /* 吹き出しの三角 */
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fffceb;
}

/* --- Message Section --- */
.message {
  padding: 60px 0;
  background: var(--color-bg-light);
}

.message__wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.message__img {
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.message__img img {
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.message__caption {
  font-weight: 700;
  color: #666;
}

.message__caption .name {
  font-size: 1.4rem;
  color: var(--color-main);
  margin-left: 10px;
}

.message__body {
  width: 100%;
}

.message__head {
  font-size: 1.4rem;
  color: var(--color-main);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  border-left: 5px solid var(--color-accent);
  padding-left: 15px;
}

.message__text {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--color-text);
  text-align: justify;
}

/* PC Layout */
@media (min-width: 768px) {
  .message {
    padding: 80px 0 60px;
  }
  .message__wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .message__img {
    width: 40%;
    position: sticky;
    /* スクロールしても追従させる演出 */
    top: 100px;
  }

  .message__body {
    width: 60%;
    padding-left: 2rem;
  }

  .message__head {
    font-size: 1.8rem;
  }
}

/* --- Event Section (Special Notice) --- */
.event {
  padding: 0 0 60px 0; /* 上の余白はなし（Messageセクションと近づけるため） */
  background: var(--color-bg-light); /* Message(グレー)からの続きに見せる */
}

.event__box {
  background: #fff;
  border: 3px solid #d4af37; /* ゴールドっぽい色で特別感 */
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

/* 「緊急告知」バッジ */
.event__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 2rem;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
}

.event__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.4;
}
.event__title .highlight {
  color: #d4af37;
  border-bottom: 3px solid #d4af37; /* アンダーライン */
}

.event__content {
  background: #fffceb; /* 薄い黄色背景 */
  padding: 1rem;
  border-radius: 12px;
}

.event__date {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.event__date .label {
  background: var(--color-main);
  color: #fff;
  font-size: 0.9rem;
  padding: 2px 10px;
  border-radius: 4px;
  vertical-align: middle;
}
.event__date .small {
  font-size: 0.7em;
  font-weight: normal;
}

.event__desc {
  font-size: 1rem;
  line-height: 1.8;
}
.event__desc strong {
  color: #e74c3c;
  font-size: 1.1em;
  background: linear-gradient(transparent 70%, #ffefc1 70%);
}
.event__desc .note {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

/* スマホ調整 */
@media (max-width: 767px) {
  .event__title {
    font-size: 1.3rem;
    margin-top: 1rem;
  }
  .event__date {
    font-size: 1.3rem;
  }
}

/* Campaign Section Improvement */
.campaign {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff9f0, #fff);
}

.campaign__box {
  border: 4px solid var(--color-accent);
  border-radius: var(--border-radius);
  padding: 1.5rem; /* 上下の余白を少し増やす */
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  /* text-align: center; ← 削除（または上書き） */
  text-align: left; /* 基本を左揃えにする */
}

/* タイトルだけは中央揃えに戻す */
.campaign__title {
  text-align: center;
  margin-bottom: 2rem;
}

.campaign__lead {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify; /* 両端揃えにするとスマホで綺麗に見える */
}

/* 特典リストのデザイン刷新 */
.campaign__benefits {
  list-style: none;
  margin: 0 0 2rem 0;
  width: 100%;
  max-width: 100%; /* 幅制限を解除 */
}

.campaign__benefits li {
  border-bottom: 1px dashed #ccc;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  /* 読みやすくするためにインデント調整 */
  padding-left: 0.5rem;
}

/* 特典3（目玉）のデザイン強化 */
.campaign__benefits .big-benefit {
  background: #fffceb;
  border: 3px solid var(--color-accent); /* 枠線を少し太く */
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center; /* ここだけは中央揃えで強調 */
  box-shadow: 0 5px 10px rgba(243, 156, 18, 0.15); /* 浮き上がらせる */
}

/* 「特典3：...」のラベル部分 */
.big-benefit-label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* 「永年10%OFF」を巨大化 */
.big-text-campaign {
  display: inline-block;
  font-size: 2.4rem; /* かなり大きく */
  color: var(--color-red);
  font-weight: 900; /* 極太に */
  line-height: 1.2;
  margin: 0.5rem 0;
  background: linear-gradient(transparent 60%, #ffefc1 60%); /* マーカー */
  padding: 0 10px;
}

.campaign__note {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ボタンを中央に */
.campaign__cta {
  text-align: center;
}

/* 1. キャンペーン内のボタンだけ幅制限を緩める */
.campaign__cta .btn {
  width: 100%;
  max-width: 500px; /* 400pxから広げる */
  white-space: nowrap; /* 強制的に1行にする */
  padding-left: 3.5rem; /* アイコンと文字が被らないように左余白確保 */
  padding-right: 1.5rem;
}

/* 2. スマホで文字がはみ出さないようにフォントサイズを微調整 */
@media (max-width: 480px) {
  .campaign__cta .btn {
    font-size: 1rem; /* 少し文字を小さくして1行に収める */
    padding-left: 3rem; /* スマホ用に余白調整 */
    height: auto;
    min-height: 60px; /* 高さを確保 */
  }

  /* アイコンの位置微調整 */
  .campaign__cta .btn::before {
    left: 15px;
  }
}

/* Access */
.access {
  padding: 60px 0;
  background: var(--color-bg-light);
}

.access__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.access dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
}

.access dt {
  font-weight: 700;
  color: var(--color-main);
}

.access__map {
  width: 100%;
  height: 300px;
  background: #ddd;
  border-radius: 16px;
  overflow: hidden;
}

/* Google Mapの調整 */
.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block; /* 余計な隙間を消す */
}

/* --- Access Section Update --- */

/* 営業時間のリスト */
.access__hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.access__hours li {
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
}
.access__hours .day {
  display: inline-block;
  width: 8em; /* ラベルの幅を揃える */
  font-weight: 700;
}
.access__hours .day.note {
  color: #e74c3c; /* 定休日は赤文字 */
}

/* 駅のリスト */
.access__station {
  list-style: none;
  margin: 0 0 1rem 0;
}
.access__station li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

/* 鉄道会社ロゴ風バッジ */
.train-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
  display: inline-block;
  line-height: 1.4;
}

/* 名鉄（赤） */
.train-badge.meitetsu {
  background-color: #ce1126;
}
/* 地下鉄鶴舞線（青） */
.train-badge.subway {
  background-color: #0077c8;
}
/* 城北線（オレンジ） */
.train-badge.johoku {
  background-color: #f39c12;
}

.access__parking {
  font-weight: 700;
  margin-top: 0.5rem;
}
/* 駐車場の詳細テキスト */
.parking-detail {
  font-size: 0.9em;
  font-weight: normal;
  color: var(--color-text);
  display: inline-block;
}

@media (min-width: 768px) {
  .access__content {
    flex-direction: row;
  }

  .access dl {
    flex: 1;
  }

  .access__map {
    flex: 1;
  }
}

/* --- FAQ Section Update --- */
.faq {
  padding: 60px 0;
  /* ▼ 変更：白からグレーに変更 */
  background: var(--color-bg-light);
}

.faq__list {
  /* 中央寄せして幅を制限 */
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  /* ▼ 変更：白いカード状にするデザインを追加 */
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

  /* 以前のボーダー線は不要になるので削除（上書き） */
  border-bottom: none;
}

/* 最後の要素のマージンを消す */
.faq__item:last-child {
  margin-bottom: 0;
}

/* --- 以下は既存のスタイルを維持 --- */
.faq__item dt {
  font-weight: 700;
  color: var(--color-main);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.faq__item dt::before {
  content: "Q";
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.faq__item dd {
  padding-left: 1.5rem;
  /* 読みやすくするために少し行間を空ける */
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq {
    padding: 80px 0;
  }
}

/* Footer */
.footer {
  background: #333;
  color: #999;
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #ddd;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 999;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
}

.fixed-cta__text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
}

.fixed-cta .btn {
  width: 100%;
  max-width: 100%;
  font-size: 1rem;
  padding: 0.8rem;
}

.fixed-cta__sub {
  font-size: 0.7rem;
  text-decoration: underline;
  color: #666;
}

@media (min-width: 768px) {
  .fixed-cta {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 15px;
  }

  .fixed-cta .btn {
    width: auto;
    min-width: 300px;
  }
}

/* アニメーション定義 */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
  }
}

/* ボタンに適用 */
.btn {
  animation: pulse 2s infinite ease-in-out;
}
/* スマホ固定ボタンも動かす */
.fixed-cta .btn {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.badge-rec {
  animation: float 3s infinite ease-in-out;
}

/* フェードイン前の状態 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* フェードイン後の状態 */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header Navigation (PC) --- */
.header__nav {
  display: none; /* デフォルト（スマホ）は非表示 */
}
.sp-only {
  display: block; /* スマホ用ボタン表示 */
}

@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
  .header__nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header__nav a {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-main);
  }
  .header__nav .header__cta {
    color: #fff; /* ボタン内の文字色 */
  }
  .sp-only {
    display: none; /* PCではスマホ用単独ボタンを消す */
  }
}

/* --- Flow Section --- */
.flow {
  padding: 60px 0;
  background: #fff;
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.flow__item {
  display: flex;
  align-items: flex-start; /* 上揃え */
  background: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: 16px;
  position: relative;
}
/* 下向きの矢印（最後の要素以外） */
.flow__item:not(:last-child)::after {
  content: "▼";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-accent);
  font-size: 1.2rem;
}

.flow__step {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.2;
  margin-right: 1.5rem;
  flex-shrink: 0; /* 幅が縮まないように */
  width: 70px;
}
.flow__step span {
  font-size: 1.4rem;
  display: block;
}

.flow__content h3 {
  font-size: 1.2rem;
  color: var(--color-main);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.flow__content p {
  font-size: 0.95rem;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .flow {
    padding: 80px 0;
  }
  .flow__item:not(:last-child)::after {
    left: 50px; /* PCでは矢印の位置をステップ番号の下あたりに */
  }
}
