/* ============================================================
   forme pilates studio — 参考LP由来の追加セクション
   (クイックナビ / offerチェック / 悩み連番 / 声 / キャンペーン /
    電話予約 / 設備 / ギャラリー)
   ============================================================ */

/* ---------- クイックナビ（Rintosull参考） ---------- */
.quicknav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.quicknav a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--sage-deep);
  text-decoration: none;
  background: var(--sage-pale);
  border: 1px solid var(--sage);
  border-radius: 999px;
  padding: 9px 22px;
  transition: background 0.2s ease, color 0.2s ease;
}
.quicknav a::after { content: " ›"; }
.quicknav a:hover { background: var(--sage-deep); color: #fff; }
@media (max-width: 640px) {
  .quicknav { gap: 8px; padding: 14px 10px; }
  .quicknav a { font-size: 13px; padding: 8px 14px; }
}

/* ---------- offerカードの安心チェックリスト ---------- */
.offer__checks {
  display: inline-block;
  text-align: left;
  margin-bottom: 16px;
}
.offer__checks li {
  font-size: 14.5px;
  font-weight: 700;
  padding: 3px 0 3px 30px;
  position: relative;
}
.offer__checks li::before {
  content: "";
  position: absolute;
  left: 6px; top: 12px;
  width: 7px; height: 12px;
  border-right: 2.5px solid var(--sage);
  border-bottom: 2.5px solid var(--sage);
  transform: rotate(45deg);
}

/* ---------- 悩みリストを連番スタイルに（IVY参考） ---------- */
.worries__list li {
  padding-left: 74px;
}
.worries__list li::before { display: none; }
.worries__num {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--en);
  font-size: 24px;
  color: var(--sage);
  border-right: 1px solid var(--line);
  padding-right: 14px;
  line-height: 1;
}

/* ---------- お客様の声 ---------- */
.voices { background: var(--white); }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 28px 24px;
  position: relative;
}
.voice::before {
  content: "\201C";
  font-family: var(--en);
  font-size: 64px;
  line-height: 1;
  color: var(--greige-deep);
  position: absolute;
  top: 14px; left: 20px;
}
.voice__quote {
  font-size: 15.5px;
  padding-top: 26px;
  margin-bottom: 18px;
}
.voice__meta {
  font-size: 13.5px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.voice__meta span {
  display: block;
  font-weight: 700;
  color: var(--sage-deep);
  font-size: 14.5px;
}
.voices__note {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 28px;
}
@media (max-width: 800px) { .voices__grid { grid-template-columns: 1fr; } }

/* ---------- キャンペーン帯（Rintosull参考） ---------- */
.campaign {
  background: var(--sage-deep);
  text-align: center;
  padding: 64px 0;
}
.campaign__badge {
  display: inline-block;
  background: #fff;
  color: #b0563f;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.14em;
  border-radius: 999px;
  padding: 7px 24px;
  margin-bottom: 20px;
}
.campaign__text {
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: 0.08em;
  line-height: 1.9;
  margin-bottom: 28px;
}
.campaign__text .nw { white-space: nowrap; }
.campaign__text strong {
  color: #f4d8a0;
  font-size: 1.35em;
  padding: 0 2px;
}
.btn--white {
  background: #fff;
  color: var(--sage-deep);
  border-radius: 999px;
  padding: 17px 52px;
  font-size: 16.5px;
  letter-spacing: 0.06em;
}

/* ---------- 電話予約（zen place参考） ---------- */
.reserve__alt {
  text-align: center;
  margin-top: 32px;
  color: #fff;
}
.reserve__alt p { font-size: 14.5px; margin-bottom: 14px; opacity: 0.9; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 16px;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ---------- 設備・サービス（Rintosull参考） ---------- */
.facility { margin-top: 64px; }
.facility__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 28px;
}
.facility__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.6;
}
.facility__grid li {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px 8px 16px;
}
.facility__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  margin: 0 auto 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
}
@media (max-width: 800px) {
  .facility__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- スタジオフォト（zen place参考） ---------- */
.gallery { margin-top: 56px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery__grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
