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

/* ページ全体の背景色 */
body {
  background-color: #f8f7f4;
}

/* LP全体のラッパー：最大幅480px、PCでは中央寄せ */
.lp-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background-color: #f8f7f4;
}

/* 各セクションのコンテナ */
.slide {
  position: relative; /* 透明ボタンの位置基準 */
  line-height: 0;     /* img要素下の余白（行高由来）を消す */
}

/* 画像は幅100%、ブロック表示で隙間をゼロに */
.slide img {
  width: 100%;
  display: block;
}

/* 画面下部に常時表示される固定CTAボタン */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  background: rgba(248, 247, 244, 0.95);
  backdrop-filter: blur(4px); /* 背景を少しぼかして浮いて見せる */
  z-index: 100;
}

.fixed-cta a {
  display: block;
  background-color: #06C755;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 14px;
  border-radius: 4px;
}

/* スクロール中にコンテンツが固定ボタンの裏に隠れないよう余白を確保 */
.lp-wrapper {
  padding-bottom: 72px;
}

/* ===== HTML化セクション 共通 ===== */

.html-section {
  background-color: #f8f7f4;
  padding: 48px 24px 40px;
}

.html-section--dark {
  background-color: #f0ede8;
}

.html-section--campaign {
  background-color: #fff;
}

.html-section--last {
  padding-bottom: 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-eyebrow {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.section-title {
  font-size: 22px;
  font-weight: bold;
  color: #2c2c2c;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.section-lead {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* 共通CTAボタン */
.section-cta {
  margin-top: 36px;
  text-align: center;
}

.cta-btn {
  display: block;
  background-color: #06C755;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

.section-cta-sub {
  font-size: 11px;
  color: #888;
  margin-top: 10px;
}

/* ===== 03: 理由リスト ===== */

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.reason-num {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: bold;
  color: #c8bfb0;
  line-height: 1;
  padding-top: 2px;
}

.reason-title {
  font-size: 14px;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 4px;
}

.reason-text {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.section-conclusion {
  margin-top: 36px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
}

.conclusion-label {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.conclusion-main {
  font-size: 18px;
  font-weight: bold;
  color: #2c2c2c;
  line-height: 1.7;
  margin-bottom: 16px;
}

.conclusion-main strong {
  font-size: 22px;
}

.conclusion-sub {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* ===== 04: 効果が出る理由 ===== */

.effect-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.effect-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.effect-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.effect-num {
  font-size: 16px;
  font-weight: bold;
  color: #3a5c40;
}

.effect-title {
  font-size: 15px;
  font-weight: bold;
  color: #2c2c2c;
  line-height: 1.5;
  margin-bottom: 8px;
}

.effect-text {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ===== 07: トレーナー紹介 ===== */

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

.trainer-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
}

/* 5枚目（小川）だけ中央に表示 */
.trainer-card--center {
  grid-column: 1 / -1;
  max-width: 160px;
  margin: 0 auto;
  width: 100%;
}

.trainer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #d6e4d8;
  color: #3a5c40;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.trainer-name {
  font-size: 14px;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 4px;
}

.trainer-career {
  font-size: 11px;
  color: #888;
}

/* ===== 09: 料金 ===== */

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
}

.price-card--trial {
  border: 2px solid #06C755;
}

.price-card-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.price-card-amount {
  font-size: 15px;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.price-card-amount span {
  font-size: 36px;
  font-weight: bold;
}

.price-card-note {
  font-size: 11px;
  color: #888;
  line-height: 1.7;
}

.price-card-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.price-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-row-min {
  font-size: 14px;
  color: #555;
}

.price-row-amt {
  font-size: 18px;
  font-weight: bold;
  color: #2c2c2c;
}

.price-features {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 24px;
}

.price-feature {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #666;
  line-height: 1.6;
  padding: 0 4px;
}

.price-feature-icon {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

/* ===== 10: キャンペーン ===== */

.campaign-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f8f7f4;
  border-radius: 12px;
  padding: 24px 16px;
  margin-bottom: 16px;
}

.campaign-price-before {
  text-align: center;
}

.campaign-before-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
}

.campaign-before-amount {
  font-size: 16px;
  color: #aaa;
  text-decoration: line-through;
}

.campaign-arrow {
  font-size: 20px;
  color: #06C755;
  font-weight: bold;
}

.campaign-price-after {
  text-align: center;
}

.campaign-after-badge {
  display: inline-block;
  background: #e8f5ec;
  color: #3a5c40;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.campaign-after-amount {
  font-size: 15px;
  color: #2c2c2c;
  font-weight: bold;
}

.campaign-after-amount span {
  font-size: 40px;
}

.campaign-note {
  font-size: 11px;
  color: #888;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ===== 11: FAQ ===== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e5e0d8;
}

.faq-item {
  border-bottom: 1px solid #e5e0d8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #2c2c2c;
  text-align: left;
  cursor: pointer;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: #3a5c40;
  transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.faq-answer.is-open {
  display: block;
}

/* ===== 12: 店舗情報 ===== */

.store-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.store-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.store-name {
  font-size: 16px;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.store-info {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 12px;
  font-size: 13px;
}

.store-info dt {
  color: #888;
  padding-top: 1px;
}

.store-info dd {
  color: #2c2c2c;
  line-height: 1.6;
}

.store-hours {
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-radius: 12px;
  padding: 20px 12px;
  margin-bottom: 0;
}

.store-hours-item {
  text-align: center;
}

.store-hours-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 6px;
}

.store-hours-value {
  font-size: 12px;
  color: #2c2c2c;
  font-weight: bold;
  line-height: 1.6;
}

/* ===== 代表挨拶 ===== */

.greeting-section {
  background-color: #f8f7f4;
  padding: 48px 24px 40px;
}

/* タイトルと写真を横並び */
.greeting-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 16px;
}

.greeting-title-block {
  flex: 1;
}

.greeting-title {
  font-size: 22px;
  font-weight: bold;
  color: #2c2c2c;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.greeting-name {
  font-size: 14px;
  color: #555;
  text-align: right; /* 末尾は右寄せ */
  margin-top: 8px;
}

/* 代表の写真 */
.greeting-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%; /* 丸く切り抜く */
  flex-shrink: 0;
}

/* 本文 */
.greeting-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.greeting-body p {
  font-size: 14px;
  color: #444;
  line-height: 1.9;
}

/* CTAボタン */
.greeting-cta {
  margin-top: 36px;
}

.greeting-cta-btn {
  display: block;
  background-color: #06C755;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

/* ===== よくある質問 ===== */

.faq-section {
  background-color: #f8f7f4;
  padding: 48px 24px 40px;
}

.faq-section-header {
  text-align: center;
  margin-bottom: 32px;
}

.faq-section-title {
  font-size: 22px;
  font-weight: bold;
  color: #2c2c2c;
  letter-spacing: 0.05em;
}

.faq-list {
  border-top: 1px solid #e0dbd3;
}

.faq-item {
  border-bottom: 1px solid #e0dbd3;
}

/* 質問ボタン */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #2c2c2c;
  text-align: left;
  cursor: pointer;
  line-height: 1.6;
  font-family: inherit;
}

/* ＋ / × アイコン */
.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  color: #6a9c72;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

/* 回答エリア（最初は非表示） */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.is-open {
  max-height: 400px; /* 十分な高さ */
  padding-bottom: 16px;
}

.faq-answer p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* CTAボタン */
.faq-cta {
  margin-top: 36px;
}

.faq-cta-btn {
  display: block;
  background-color: #06C755;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

/* ===== Google口コミ セクション ===== */

.reviews-section {
  background-color: #f8f7f4;
  padding: 40px 0 0;
}

/* ヘッダー部分 */
.reviews-header {
  text-align: center;
  padding: 0 20px 24px;
}

.reviews-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #888;
  margin-bottom: 8px;
}

.reviews-title {
  font-size: 20px;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.reviews-meta {
  font-size: 13px;
  color: #555;
}

.reviews-stars {
  color: #f5a623;
}

/* 横スクロールコンテナ */
.reviews-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 20px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* iOSでなめらかにスクロール */
}

/* スクロールバーを非表示（見た目をすっきりさせる） */
.reviews-scroll::-webkit-scrollbar {
  display: none;
}

/* 口コミカード1枚 */
.review-card {
  flex: 0 0 260px; /* 横幅固定でスクロール */
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* カード上部（アバター＋名前） */
.review-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* アイコン代わりの丸いイニシャル */
.review-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #d6e4d8;
  color: #3a5c40;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-size: 13px;
  font-weight: bold;
  color: #2c2c2c;
}

.review-date {
  font-size: 11px;
  color: #f5a623;
  margin-top: 2px;
}

/* 口コミ本文 */
.review-text {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
}

/* セクション下部のCTAエリア */
.reviews-cta {
  text-align: center;
  padding: 24px 20px 32px;
}

.reviews-cta-btn {
  display: block;
  background-color: #06C755;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 14px;
  border-radius: 4px;
}

.reviews-cta-sub {
  font-size: 11px;
  color: #888;
  margin-top: 10px;
}

/* 「初回体験はこちら」ボタン画像の上に重ねる透明リンク */
.cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px; /* ボタン＋下余白をカバーする高さ */
  display: block;
  cursor: pointer;
}
