/* =======================
   キャンセルポリシー page 共通レイアウト
   ======================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  color: #145087;
}

/* 背景より前に出す */
.page-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

/* 共通レイアウト（SPメイン） */
.main {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

/* ヘッダーは最前面 */
.site-header {
  position: relative;
  z-index: 500;
}

/* =======================
   キャンセルポリシー 本文
   ======================= */

.section-cancel {
  margin-top: 40px;
}

.cancel-title {
  font-size: 20px;
  letter-spacing: 0.18em;
  color: #145087;
  margin: 0 0 24px;
  text-align: center;
  font-weight: 700;
}

/* 白カード */
.cancel-card {
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 18px 32px;
  border: 1px solid #dfeeff;
  box-shadow: 0 3px 12px rgba(13, 71, 125, 0.08);
}

/* セクション */
.cancel-block {
  margin-bottom: 28px;
}

.cancel-block--last {
  margin-bottom: 0;
}

/* セクションタイトル（信頼寄り＝控えめマーカー） */
.cancel-block__title {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #145087;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 2px;
}

.cancel-block__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 0.35em;
  background: rgba(255, 228, 140, 0.45); /* 淡い信頼系の黄色 */
  border-radius: 4px;
  z-index: -1;
}

/* 小見出し（信頼寄りアイコン：薄い青の四角） */
.cancel-block__subtitle {
  font-size: 12px;
  margin: 12px 0 6px;
  color: #145087;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cancel-block__subtitle::before {
  content: "■";
  font-size: 8px;
  color: #7bb7ff; /* 青系で信頼＆上品 */
}

/* 本文テキスト */
.cancel-block__text {
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
  margin-bottom: 12px;
}

/* 箇条書き（信頼寄り＝小さめ青丸） */
.cancel-list {
  margin: 0 0 6px;
  padding-left: 0;
  list-style: none;
}

.cancel-list li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

.cancel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #97c7ff; /* ちょい濃い青で信頼感UP */
}

/* 重要部（青で強調） */
.cancel-list li strong {
  font-weight: 700;
  color: #144a7a;
}

/* 半金プラン注意枠 */
.cancel-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff9e0;
  border: 1px solid #ffe3a8;
}

.cancel-note__heading {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #b27f18;
}

/* PC向け微調整 */
@media (min-width: 768px) {
  .section-cancel {
    margin-top: 60px;
  }

  .cancel-title {
    font-size: 22px;
  }

  .cancel-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 36px 40px;
  }

  .cancel-block {
    margin-bottom: 32px;
  }

  .cancel-block__text,
  .cancel-list li {
    font-size: 13px;
  }
}
