/* ============================================================
 *  トップページ追加セクション
 *  - About / Greeting / Stats / Video / Trial-CTA / Access / Partners-CTA
 *  - 既存セクションのデザイントーンに揃える
 * ============================================================ */

/* ============================================================
 *  1. About (クラブ紹介)
 * ============================================================ */
.about-front__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 48px;
  align-items: center;
}
.about-front__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius, 8px);
  display: block;
}
.about-front__text {
  font-size: 0.98rem;
  line-height: 2;
  color: var(--color-text, #333);
  margin: 0 0 28px;
}

@media (max-width: 768px) {
  .about-front__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
 *  2. Greeting (代表挨拶)
 * ============================================================ */
.greeting-front__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.greeting-front__photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}
.greeting-front__quote {
  margin: 0 0 16px;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--color-secondary, #00875a);
}
.greeting-front__quote p {
  font-size: 0.98rem;
  line-height: 2;
  color: var(--color-text);
  margin: 0;
}
.greeting-front__author {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.greeting-front__title {
  font-size: 0.85rem;
  color: var(--color-text-light, #64748b);
}
.greeting-front__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .greeting-front__inner { grid-template-columns: 1fr; gap: 20px; justify-items: center; text-align: left; }
  .greeting-front__photo { width: 140px; }
}

/* ============================================================
 *  3. Stats (数字で見るクラブ)
 * ============================================================ */
.stats-front__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stats-front__grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin: 0 auto; }
.stats-front__grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
.stats-front__grid[data-count="4"] { grid-template-columns: repeat(4, 1fr); }

.stats-front__item {
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: var(--radius, 8px);
}
.stats-front__value {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
}
.stats-front__num {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stats-front__suffix {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-light);
}
.stats-front__label {
  font-size: 0.88rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .stats-front__grid,
  .stats-front__grid[data-count="3"],
  .stats-front__grid[data-count="4"] { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stats-front__num { font-size: 2.2rem; }
}

/* ============================================================
 *  4. Video
 * ============================================================ */
.video-front__frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius, 8px);
  overflow: hidden;
}
.video-front__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-front__note {
  padding: 32px;
  color: rgba(255,255,255,0.7);
  text-align: center;
}
.video-front__caption {
  max-width: 920px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.88rem;
}

/* ============================================================
 *  5/7. CTAブロック共通 (Trial / Partners)
 * ============================================================ */
.section-trial-cta-front,
.section-partners-cta-front {
  background-color: var(--color-primary, #0d2137);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-block: 72px;
}
.cta-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-block__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.cta-block__text {
  font-size: 1rem;
  line-height: 1.9;
  margin: 0 0 28px;
  opacity: 0.92;
}
.cta-block__btn.btn--accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .section-trial-cta-front,
  .section-partners-cta-front { padding-block: 56px; }
  .cta-block__title { font-size: 1.35rem; }
  .cta-block__text { font-size: 0.9rem; }
}

/* ============================================================
 *  6. Access (アクセス)
 * ============================================================ */
.access-front__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.access-front__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius, 8px);
  display: block;
}
.access-front__info {
  background: #fff;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: var(--radius, 8px);
  padding: 28px;
}
.access-front__place {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 18px;
}
.access-front__list {
  margin: 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px 16px;
}
.access-front__list dt {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-light);
}
.access-front__list dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .access-front__inner { grid-template-columns: 1fr; gap: 20px; }
}
