@charset "UTF-8";

/* =========================================
   ご利用料金ページ (Price) 特有のスタイル
   ========================================= */

.page-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
}

h3.section-title {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 50px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  font-family: "Yuji Syuku", serif;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- 基本情報ブロック（利用可能時間 / 最低利用時間） --- */
.info-blocks {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 50px;
}

.info-block {
  display: flex;
  flex: 1;
  border-right: 1px solid var(--line);
}

.info-block:last-child {
  border-right: none;
}

.info-th {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--gold);
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 1.05rem;
}

.info-td {
  padding: 20px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.6;
  color: var(--ink);
}

/* --- 料金テーブル --- */
.table-wrap {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 15px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  border: 1px solid var(--line);
  padding: 18px 10px;
  text-align: center;
  color: var(--ink);
  font-size: 1.05rem;
}

.price-table th {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--gold);
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
}

.price-table td:first-child {
  background-color: rgba(0, 0, 0, 0.15);
  font-weight: normal;
}

.small-text {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- 注意書きリスト --- */
.price-notes {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.price-notes li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.4em;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* --- 特記事項ボックス --- */
.notes-box {
  margin-top: 60px;
  padding: 25px 30px;
  background-color: rgba(0, 0, 0, 0.15);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.notes-box h4 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
}

.notes-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.notes-box li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  color: var(--muted);
  line-height: 1.6;
}

.notes-box li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--gold);
  font-size: 0.8em;
}

.back-action {
  text-align: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 800px) {
  .info-blocks {
    flex-direction: column;
  }

  .info-block {
    border-right: none;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }

  .info-block:last-child {
    border-bottom: none;
  }

  .info-th {
    width: auto;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }

  .info-td {
    padding: 15px 20px;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .price-table th,
  .price-table td {
    padding: 12px 5px;
    font-size: 0.85rem;
  }

  .small-text {
    font-size: 0.7rem;
  }

  .price-notes li {
    font-size: 0.85rem;
  }
}