/* ========================================
   料金ページ
======================================== */

/* 料金詳細テーブル（coming-of-age と共通） */
.price-detail {
  max-width: 780px;
  margin: 64px auto 0;
}

.price-detail__group {
  margin-bottom: 48px;
}

.price-detail__heading {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 400;
  color: var(--sumi);
  border-left: 4px solid #c8b79c;
  padding-left: 12px;
  margin-bottom: 20px;
  line-height: 1;
}

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

.price-detail__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  padding: 0 24px 0 28px;
  background: var(--white);
  border-radius: 5px;
  gap: 16px;
}

.price-detail__name {
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: 500;
  color: var(--sumi);
  flex: 1;
}

.price-detail__name small {
  font-size: 13px;
  font-weight: 400;
  color: var(--sumi);
  font-family: var(--font-gothic);
  display: block;
  margin-top: 2px;
}

.price-detail__price {
  font-family: var(--font-mincho);
  font-size: 27px;
  font-weight: 500;
  color: var(--beige);
  white-space: nowrap;
  text-align: right;
  letter-spacing: 0.06em;
}

.price-detail__price small {
  font-family: var(--font-gothic);
  font-size: 10px;
  font-weight: 500;
  color: var(--sumi);
}

.price-detail__note {
  font-size: 15px;
  color: var(--sumi);
  margin-top: 16px;
  line-height: 1.9;
}

.price-detail__sub {
  font-family: var(--font-gothic);
  font-size: 13px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.1em;
  margin: 28px 0 12px;
  padding-left: 4px;
}

/* 冒頭リード文 */
.price-intro__lead {
  font-size: 16px;
  line-height: 2;
  color: var(--sumi);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--sp-md);
}

.price-intro__cta {
  text-align: center;
  margin-top: calc(-1 * var(--sp-md) / 2);
  margin-bottom: var(--sp-md);
}

.price-intro__cta .btn small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}

.price-intro__cta-note {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

/* ========================================
   参考プラン
======================================== */
.price-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.price-plan {
  background: var(--white);
  border: 1px solid var(--light-beige);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-plan--featured {
  border-color: var(--beige);
  border-width: 2px;
}

/* バッジ */
.price-plan__badge {
  display: inline-block;
  background: var(--beige);
  color: var(--white);
  font-family: var(--font-gothic);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 99px;
  align-self: flex-start;
}

/* ヘッド */
.price-plan__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-plan__label {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 400;
  color: var(--sumi);
  letter-spacing: 0.06em;
}

.price-plan__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-plan__price strong {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 500;
  color: var(--beige);
  letter-spacing: 0.04em;
}

.price-plan__price span {
  font-size: 14px;
  color: #999;
}

.price-plan--featured .price-plan__price strong {
  color: var(--beige);
}

/* 説明 */
.price-plan__desc {
  font-family: var(--font-gothic);
  font-size: 14px;
  font-weight: 500;
  color: var(--sumi);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-beige);
}

/* アイテムリスト */
.price-plan__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price-plan__items li {
  font-size: 13px;
  color: var(--sumi);
  line-height: 1.7;
  padding-left: 1em;
  text-indent: -1em;
}

.price-plan__note {
  font-size: 12px;
  color: #999;
  line-height: 1.8;
}

/* ========================================
   その他の撮影 / オプション（テーブル）
======================================== */
.price-table {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.price-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 0 24px 0 28px;
  background: var(--white);
  border-radius: 5px;
  gap: 16px;
}

.price-table__name {
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: 500;
  color: var(--sumi);
  flex: 1;
}

.price-table__name small {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

.price-table__price {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 500;
  color: var(--beige);
  white-space: nowrap;
  text-align: right;
  letter-spacing: 0.04em;
}

.price-table__price small {
  font-family: var(--font-gothic);
  font-size: 10px;
  font-weight: 400;
  color: #999;
}

.price-table__row--with-img {
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}

.price-table__item-img {
  display: block;
  margin-top: 12px;
  width: 100%;
  max-width: 260px;
  border-radius: 4px;
}

.price-table__note {
  font-size: 13px;
  color: #999;
  max-width: 780px;
  margin-inline: auto;
  margin-top: 12px;
}

/* ========================================
   残し方の考え方
======================================== */
.price-keep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-inline: auto;
}

.price-keep__item {
  background: var(--off-white);
  border-radius: 4px;
  padding: 32px 28px;
}

.price-keep__title {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 400;
  color: var(--sumi);
  margin-bottom: 16px;
}

.price-keep__text {
  font-size: 14px;
  line-height: 2;
  color: var(--sumi);
}

.price-keep__note {
  font-size: 14px;
  line-height: 2;
  color: var(--sumi);
  max-width: 900px;
  margin-inline: auto;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--light-beige);
  border-radius: 4px;
}

.price-keep__cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.price-keep__cta p {
  font-size: 15px;
  color: var(--sumi);
}

/* ========================================
   お支払い方法
======================================== */
.price-payment {
  margin-top: var(--sp-md);
}

.price-payment__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   モバイル
======================================== */
@media (max-width: 768px) {
  .price-intro__lead {
    text-align: left !important;
  }

  .price-plans {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-detail__row {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 4px;
    min-height: auto;
  }

  .price-detail__price {
    font-size: 22px;
  }

  .price-table__row {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 4px;
    min-height: auto;
  }

  .price-table__price {
    font-size: 18px;
  }

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