/* =======================================================
   Price Page Specific Styles (price.css)
   ======================================================= */

/* -------------------------------------------------------
   Header & Layout
   ------------------------------------------------------- */
   .page-price .page-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .page-price h1 {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  
  /* -------------------------------------------------------
     Plan Card (Card Design)
     ------------------------------------------------------- */
  .price-plan-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .plan-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
  }
  
  /* PCレイアウト: 横並びにする */
  @media (min-width: 768px) {
    .plan-card {
      flex-direction: row;
      align-items: stretch;
    }
  }
  
  /* カード左側：プラン名 */
  .plan-card__header {
    background: var(--color-main, #315a89);
    color: #fff;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px; /* PCでの幅確保 */
    text-align: center;
  }
  
  .plan-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.4;
  }
  
  /* カード右側：内容 */
  .plan-card__body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  @media (min-width: 768px) {
    .plan-card__body {
      flex-direction: row;
      align-items: center;
      gap: 32px;
      padding: 32px 40px;
    }
  }
  
  /* 金額エリア */
  .plan-card__price-area {
    margin-bottom: 16px;
    text-align: center;
    min-width: 180px; /* PCでの幅確保 */
  }
  
  @media (min-width: 768px) {
    .plan-card__price-area {
      margin-bottom: 0;
      text-align: left;
      border-right: 1px solid #eee;
      padding-right: 32px;
    }
  }
  
  .plan-card__price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text, #333);
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
  }
  
  /* 説明文エリア */
  .plan-card__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    flex-grow: 1;
  }
  
  /* -------------------------------------------------------
     Info Box (ご利用案内)
     ------------------------------------------------------- */
  .price-info-box {
    background: var(--color-main-light, #f0f5fb);
    border-radius: 12px;
    padding: 40px 24px;
    margin-bottom: 60px;
  }
  
  @media (min-width: 768px) {
    .price-info-box {
      padding: 40px 60px;
    }
  }
  
  .price-info-box__title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: var(--color-main, #315a89);
  }
  
  .price-info-box__title i {
    margin-right: 8px;
  }
  
  /* 定義リスト（2列レイアウト） */
  .price-info-list {
    display: grid;
    gap: 24px;
  }
  
  @media (min-width: 768px) {
    .price-info-list {
      grid-template-columns: 1fr 1fr; /* 2列にする */
      gap: 24px 40px;
    }
  }
  
  .price-info-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 12px;
  }
  
  .price-info-item dt {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-main, #315a89);
    margin-bottom: 4px;
  }
  
  .price-info-item dd {
    margin: 0;
    font-size: 0.95rem;
  }
  
  /* -------------------------------------------------------
     CTA Area
     ------------------------------------------------------- */
  .page-price__cta {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  
  /* 大きなボタン（reserve.cssと同じ定義があれば流用可能だが念のため記述） */
  .btn--lg {
    padding: 16px 48px;
    font-size: 1.1rem;
    min-width: 280px;
  }
  
  .btn--shadow {
    box-shadow: 0 4px 15px rgba(49, 90, 137, 0.3);
  }
  
  .mb-16 { margin-bottom: 16px; }