@charset "utf-8";

/* =========================================
  PRICE PAGE
  ※ page-about.css と同じ思想で作成
========================================= */

.price-page {
  background: #fff;
}

/* 見出し（aboutと同じトーン） */
.section-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0 0 10px;
}

.section-lead {
  margin: 0;
  color: rgba(15, 23, 42, .72);
  line-height: 1.9;
}

.section-head {
  display: grid;
  gap: 8px;
}

/* aboutのbtnを流用（CTAエリア用） */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid #1e2084;
  background: #1e2084;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.btn.ghost {
  background: transparent;
  color: #1e2084;
}

/* =========================================
  HERO
========================================= */
.price-hero {
  position: relative;
  padding: 64px 0 44px;
  overflow: hidden;
  background: linear-gradient(180deg, #e7f4ff 0%, #ffffff 70%);
}

.price-hero__bg {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(30, 32, 132, .08);
}

.price-hero__eyebrow {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(30, 32, 132, .75);
}

.price-hero__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: .02em;
}

.price-hero__lead {
  margin: 0;
  color: rgba(15, 23, 42, .78);
  line-height: 1.9;
  max-width: 54em;
}

.price-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.price-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #1e2084;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid #1e2084;
  transition: .2s ease;
}

.price-hero__btn.ghost {
  background: transparent;
  color: #1e2084;
}

.price-hero__btn:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.price-hero__note {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(15, 23, 42, .55);
}

/* =========================================
  BREADCRUMB（aboutと同じ）
========================================= */
.breadcrumb {
  border-top: 1px solid rgba(15, 23, 42, .06);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  background: #fff;
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(15, 23, 42, .65);
}

.breadcrumb__item a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb__item a:hover {
  text-decoration: underline;
}

.breadcrumb__item+.breadcrumb__item::before {
  content: ">";
  opacity: .5;
  margin-right: 10px;
}

/* =========================================
  CARDS GRID（ここが崩れると “テキストだけ” になる）
========================================= */
.price-cards {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

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

.price-cards--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* =========================================
  SECTIONS
========================================= */
.price-onetime {
  padding: 52px 0;
}

.price-plans {
  padding: 52px 0;
  background: rgba(30, 32, 132, .03);
}

.price-options {
  padding: 52px 0;
}

/* =========================================
  SIMPLE CARD（入会費 / オプション）
========================================= */
.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
}

.price-card__label {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(15, 23, 42, .9);
}

.price-card__price {
  margin: 0;
  font-weight: 1000;
  font-size: 32px;
  letter-spacing: .02em;
}

.price-card__meta {
  margin: 10px 0 0;
  color: rgba(15, 23, 42, .60);
  font-size: 13px;
}

/* =========================================
  PLAN CARD（FITNESS / KIDS）
  - CTAを下固定して2枚の位置を揃える
========================================= */
.price-plan {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.price-plan__head {
  padding: 18px 18px 14px;
  background: linear-gradient(180deg, rgba(226, 242, 251, .7) 0%, #fff 70%);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.price-plan__title {
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: .02em;
}

.price-plan__desc {
  margin: 8px 0 0;
  color: rgba(15, 23, 42, .72);
  line-height: 1.8;
  font-size: 14px;
}

.price-plan__body {
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* 表 */
.price-table {
  border-top: 1px solid rgba(15, 23, 42, .08);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  margin-top: 6px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px;
  border-top: 1px solid rgba(15, 23, 42, .08);
  align-items: baseline;
}

.price-row:first-child {
  border-top: none;
}

.price-row span {
  font-weight: 900;
  color: rgba(15, 23, 42, .92);
}

.price-row strong {
  font-weight: 1000;
  font-size: 18px;
  white-space: nowrap;
}

.price-row strong span {
  font-weight: 900;
  font-size: 12px;
  opacity: .65;
  margin-left: 4px;
}

/* バッジ */
.price-badges {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-badges li {
  font-size: 13px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(30, 32, 132, .08);
  color: rgba(15, 23, 42, .85);
}

/* CTA（下固定＆中央） */
.price-cta {
  margin-top: auto;
  align-self: center;
  margin-top: 18px;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: min(320px, 100%);
  height: 52px;

  border-radius: 999px;
  background: #1e2084;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  border: 2px solid #1e2084;
  transition: .2s ease;
}

.price-cta:hover {
  transform: translateY(-1px);
  opacity: .92;
}

/* =========================================
  CTA AREA（aboutと同格の見栄え）
========================================= */
.price-ctaarea {
  padding: 52px 0 70px;
}

.price-ctaarea__box {
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(30, 32, 132, .10), rgba(226, 242, 251, .90));
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
  text-align: center;
}

.price-ctaarea__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
}

.price-ctaarea__text {
  margin: 0;
  color: rgba(15, 23, 42, .72);
  line-height: 1.9;
}

.price-ctaarea__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

/* =========================================
  Responsive
========================================= */
@media (max-width: 960px) {
  .price-cards--3 {
    grid-template-columns: 1fr;
  }

  .price-cards--2 {
    grid-template-columns: 1fr;
  }

  .price-hero__actions {
    flex-direction: column;
  }

  .price-hero__btn {
    width: 100%;
    justify-content: center;
  }

  .price-ctaarea__actions .btn {
    width: 100%;
    justify-content: center;
  }
}