/* =========================
  料金・予約 共通
========================= */

.page-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.2rem;
}

.section-title {
  font-size: 1.6rem;
  margin: 2.0rem 0 1.2rem;;
  padding-left: 0.8rem;
  border-left: 5px solid #1e8c5a;
}

.section-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e8c5a;
  margin: 2.4rem 0 1rem;
  padding: 0.6rem 1.2rem;
  background: #f1f7f4;
  border-bottom: 2px solid #cfe4d9;
  border-radius: 4px;
}

.section-subtitle + p{
  padding-left: 1.2rem;
  padding-bottom: 1.2rem;
}
.section-subtitle + .info-list {
  margin-left: 1.2rem;
  padding-bottom: 1.2rem;
}

.note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* =========================
  注意・警告ブロック
========================= */

.notice,
.warning {
  background: #f7f7f7;
  border: 1px solid #f3f3f3;
  border-radius: 6px;
}

.notice {
  background: #fff5f5;
  border-color: #fff2f2;
  margin-bottom: 1.5rem;
}
.warning{
  margin-bottom: 1.4rem;
}

.notice a,
.warning a {
  color: #1e8c5a;
  font-weight: 600;
}

.notice h2,
.warning h2 {
  margin-top: 0.4rem;
}
.notice h2{
  border-left: 5px solid #bd2228;
}


/* =========================
  リスト
========================= */

.info-list {
  list-style: disc;
  padding-left: 1.4rem;
  line-height: 1.7;
}

.info-list li + li {
  margin-top: 0.4rem;
}

/* 予約上 */
.reserve-cta-top {
  background: #1e8c5a; /* 目立つ緑 */
  color: #fff;
  border-radius: 6px;
  padding: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.reserve-cta-top .reserve-cta-text {
  font-size: 1.2rem;
  font-weight: 700;
  margin:0 0 1.2rem;
  line-height: 1.8;
}

.reserve-cta-top .reserve-button {
  display: inline-block;
  background: #fff;
  color: #1e8c5a;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.reserve-cta-top .reserve-button:hover {
  background: #f1f7f4;
  color: #166a44;
}


  


/* =========================
  料金表
========================= */

/* 外枠 */
.price-tables {
  display: flex;
  gap: 0; /* ←重要：テーブル間を詰める */
  margin-top: 1.5rem;
}

/* 共通テーブル */
.price-table {
  width: 100%;
  flex: 1;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  border: 1px solid #ccc;
  padding: 0.6rem;
  text-align: center;
  font-size: 0.95rem;
}

/* ヘッダー（時間帯／料金） */
.price-table thead th {
  background: #1e8c5a;
  color: #fff;
  font-weight: 600;
}

/* 平日／土日祝 見出し行 */
.price-table .table-group {
  background: #f1f7f4;
  color: #333;
  font-weight: 700;
  font-size: 1.05rem;
}

/* 本文 */
.price-table tbody td {
  background: #fff;
}

.price-table-weekday th:last-child,
.price-table-weekday td:last-child {
  border-right: none;
}



/* =========================
  メンバー登録案内
========================= */

.member-guide {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  background: #f1f7f4;
  border: 1px solid #cfe4d9;
  border-radius: 8px;
  text-align: center;
}

.member-guide-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e8c5a;
  margin-bottom: 0.4rem;
}

.member-guide-text {
  font-size: 0.95rem;
}

.member-guide a {
  color: #1e8c5a;
  font-weight: 600;
  text-decoration: underline;
}

/* =========================
  予約について（アイコン版）
========================= */

/* 導入文 */
.lead-text {
  margin-bottom: 1.6rem;
  line-height: 1.7;
}

/* 予約情報カード */
.reserve-box {
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
}

/* 見出し（ラベル） */
.reserve-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e8c5a;
  margin: 0 0 0.8rem;
  display: inline-block;
  border-bottom: 1px solid #1e8c5a;
}

.reserve-box h4 .material-symbols-outlined {
  font-size: 1.3rem;
  color: #1e8c5a;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 0.2rem;
  position: relative;
}
.reserve-box h4::before {
  content: "";
}

/* 本文 */
.reserve-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  color: #333;
  margin-left: 0.8rem;
}

/* 注意書き */
.reserve-box .note {
  margin-top: 0.6rem;
}

/* 予約内のリスト調整 */
.reserve-box .info-list {
  margin-top: 0.6rem;
  margin-left: 1rem;
  list-style: disc;
}

/* オンライン予約（本文内ボタン） */
.reserve-link-button {
  display: inline-block;
  padding: 0.45rem 1.2rem; /* 高さを抑える */
  background: #1e8c5a;    /* メインCTAと同色 */
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 18px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.reserve-link-button:hover {
  background: #166a44; /* 下ボタンと同じhover */
}
.reserve-box .tel-num{
  color: #1e8c5a;
  font-weight: 600;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.reserve-box .tel-num .pc{
  display: inline-block;
}

.reserve-box .tel-num a {
  color: #1e8c5a;
  font-weight: 700;
  text-decoration: none;
}

.page-section a:not(.reserve-button) {
  color: #1e8c5a;
  font-weight: 600;
}

.reserve-button {
  color: #fff;
}

.reserve-button:hover {
  color: #fff;
}



/* =========================
  予約CTA
========================= */

.reserve-cta {
  text-align: center;
  background: #f1f7f4;
  border-radius: 10px;
  margin-top: 1.8rem;
}

.reserve-button {
  display: inline-block;
  background: #1e8c5a;
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.reserve-button:hover {
  background: #166a44;
}

.reserve-sub {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* =========================
  スマホ最適化
========================= */

@media (max-width: 768px) {

  .page-section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .reserve-cta-top {
    padding: 1.5rem 1rem;
  }
  .reserve-cta-top .reserve-cta-text {
    font-size: 1rem;
  }
  .reserve-cta-top .reserve-button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }

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

  .price-table th,
  .price-table td {
    font-size: 0.9rem;
  }
 
  .price-table-weekday th:last-child,
  .price-table-weekday td:last-child {
    border-right: 1px solid #ccc;
  }
  .price-table-weekday tbody tr:last-child td {
    border-bottom: none;
  }

  .member-guide {
    font-size: 0.9rem;
  }
  
  .lead-text {
    font-size: 0.95rem;
  }

  .reserve-box {
    padding: 0.4rem;
  }
  .reserve-box h4{
    font-size: 1.2rem;
  }

  .reserve-box h4 .material-symbols-outlined {
    top:-0.1rem;
  }

  .reserve-box p, .reserve-box .info-list {
    font-size: 1.0rem;
    margin-left: 0.5rem;
  }
  .reserve-box h4 + p, .reserve-box .note{
    margin: 0;
    padding-bottom: 1.0rem;
  }
  .reserve-box .tel-num {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    background: #1e8c5a;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 18px;
    text-decoration: none;
    transition: background 0.2s ease;
    line-height: 1.2;
  }
  .reserve-box .tel-num a {
    display: inline-block !important;
    padding: 0.2rem 0.4rem;
    border-bottom: 2px solid #1e8c5a;
    color:#fff !important;
  }

  .reserve-cta {
    padding: 1rem;
  }

  .reserve-button {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
  }
  
}
