/* ==============================================
   キャンセルポリシーページ専用スタイル
   ============================================== */

/* このページのみ：メインビジュアルエリアを非表示 */
#main .mainPhoto {
  width:0 ;
}

.areaSeasonal {
  font-family: 'Shippori Mincho', serif;
  -webkit-font-smoothing: antialiased;
  background: url('../images/dress/brg-body.png') repeat-y center top / 100%, #fff;
  color: #1a1a1a;
}
.areaSeasonal .inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* --- メインタイトル --- */
.seasonalTitle {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin: 0 0 36px;
  color: #1a1a1a;
}

/* --- リードテキスト --- */
.leadText {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: #333333;
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}

/* --- 区切り線 --- */
.divider {
  border: none;
  border-top: 1px solid #cccccc;
  margin: 36px 0;
}

/* --- セクションタイトル --- */
.sectionTitle {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 40px 0 14px;
  color: #1a1a1a;
}

/* --- テーブル --- */
.policyTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 14px;
  /* ↓↓↓ この行を削除、またはコメントアウトします ↓↓↓ */
  /* font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; */
}

.policyTable thead tr {
  background-color: #1a1a1a;
  color: #ffffff;
}
.policyTable thead th {
  padding: 12px 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: left;
  /* 縦線：ヘッダー */
  border-right: 1px solid #444444;
}
.policyTable thead th:last-child {
  border-right: none;
}
.policyTable tbody tr {
  border-bottom: 1px solid #d0d0d0;
}
.policyTable tbody td {
  padding: 14px 20px;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  /* 縦線：ボディ */
  border-right: 1px solid #d0d0d0;
}
.policyTable tbody td:last-child {
  border-right: none;
}

/* --- 特記事項ブロック --- */
.noteItem {
  margin-bottom: 24px;
}

/* 箇条書き見出し */
.noteHeading {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  /* ↓↓↓ この行を削除、またはコメントアウトします ↓↓↓ */
  /* font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; */
}
.noteHeading::before {
  content: "●";
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 本文テキスト */
.noteBody {
  font-size: 13.5px;
  line-height: 1.9;
  color: #333333;
  margin: 0 0 10px 1.2em;
  letter-spacing: 0.03em;
  /* ↓↓↓ この行を削除、またはコメントアウトします ↓↓↓ */
  /* font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; */
}

/* --- お問い合わせブロック --- */
.contactBlock {
  text-align: center;
  padding: 20px 0 10px;
}
.contactLabel {
  font-size: 15px;
  letter-spacing: 0.15em;
  color: #333333;
  margin: 0 0 8px;
}
.contactTel {
  display: block;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  text-decoration: none;
}
.contactTel:hover {
  opacity: 0.7;
}

/* --- 表の外枠（左右の縦線）を追加 --- */
.policyTable {
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
}

/* --- 背景を他ページと統一 --- */
.areaSeasonal {
  background: url('../images/dress/brg-body.png') repeat-y center top / 100%, #fff;
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 640px) {
  .areaSeasonal .inner {
    padding: 40px 20px;
  }
  .seasonalTitle {
    font-size: 24px;
    letter-spacing: 0.15em;
  }
  .leadText {
    font-size: 14px;
  }
  .leadText br {
    display: none;
  }
  .policyTable thead th,
  .policyTable tbody td {
    padding: 10px 12px;
    font-size: 13px;
  }
  .contactTel {
    font-size: 20px;
  }
}