/* ============================
   サンクスページ（Thanks）
   ============================ */

/* カード内余白（他ページと統一） */
.thanks-card .asc-card__inner {
  padding: 32px 28px;
}

@media (max-width: 768px) {
  .thanks-card .asc-card__inner {
    padding: 20px 16px;
  }
}

/* ステップ：完了画面では STEP3 をアクティブ表示 */
.thanks-card .steps {
  margin-bottom: 24px;
}

.thanks-card .steps .stepbox .dot {
  background: #f3f3f3;
  color: #666;
}

.thanks-card .steps .stepbox .label {
  color: #777;
}

/* 完了ステップを強調 */
.thanks-card .steps.steps--3 .step3 .dot {
  background: var(--vk-color-primary, #e53935);
  color: #fff;
}

.thanks-card .steps.steps--3 .step3 .label {
  color: var(--vk-color-primary, #e53935);
  font-weight: 700;
}

/* === 本文レイアウト === */
.thanks {
  text-align: center;
}

/* イラスト */
.thanks__illust {
  margin: 0 0 16px;
}

.thanks__illust img {
  max-width: 260px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* タイトル・リード文 */
.thanks__title {
  font-size: 1.6rem;
  margin: 8px 0 12px;
  color: #333;
  font-weight: 700;
}

.thanks__lead {
  margin: 0 0 24px;
  color: #555;
  line-height: 1.8;
}

/* === メール未着 Tips === */
.thanks__tips {
  margin: 0 auto;
  max-width: 860px;                 /* ← 横幅ひろめ */
  text-align: left;
  padding: 24px 28px;               /* 少しゆったり */
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fafafa;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

/* タイトル（災害お知らせと同じデザイン） */
.thanks__tips-title {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

/* Lightning テーマなどが付けるデフォルト線を打ち消す */
.thanks__tips-title::before {
  content: none !important;
}

/* 下のグラデーションライン */
.thanks__tips-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;                     /* 災害通知と同じ長さ */
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--vk-color-primary, #c9333e),
    rgba(201, 51, 62, 0)
  );
}

.thanks__tips-list {
  margin: 0;
  padding-left: 1.2em;
  color: #555;
}

.thanks__tips-list li {
  line-height: 1.9;
  margin: .25em 0;
}

.thanks__tips a {
  color: var(--vk-color-primary, #e53935);
  text-decoration: underline;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .thanks__title {
     font-size: 1.2rem;
  }

  .thanks__tips {
    max-width: 100%;
    padding: 18px 16px;
  }
}
