/* サンクスページ共通スタイル（LPのstyles.cssを前提に上乗せ） */
.thanks-wrap { padding-block: 72px 96px; }
.thanks-card {
  max-width: 720px; margin-inline: auto; background: #fff;
  border: 1px solid #d9e1eb; border-radius: 16px; padding: 56px 48px;
  box-shadow: 0 14px 40px rgba(20,40,75,.08); text-align: center;
}
.done-mark {
  width: 72px; height: 72px; margin: 0 auto 26px; border-radius: 50%;
  display: grid; place-items: center; background: #e7effb; color: var(--navy);
  font-size: 34px; font-weight: 900;
}
.thanks-card h1 { color: var(--navy); font-size: clamp(27px,4.2vw,38px); line-height: 1.32; margin: 0 0 18px; letter-spacing: -.02em; }
.thanks-lead { color: #4c586e; font-size: 16px; margin: 0 0 6px; }
.thanks-sub { color: var(--muted); font-size: 13px; margin: 0; }

.step-bar { display: flex; align-items: center; justify-content: center; gap: 0; margin: 0 0 34px; }
.step-bar .step { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; color: #97a2b5; }
.step-bar .dot { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: #eaeff6; color: #97a2b5; font-size: 12px; }
.step-bar .step.done .dot { background: var(--navy); color: #fff; }
.step-bar .step.done { color: var(--navy); }
.step-bar .step.current .dot { background: var(--coral); color: #fff; }
.step-bar .step.current { color: var(--coral); }
.step-bar .bar { width: 46px; height: 2px; background: #dfe6ef; margin: 0 12px; }

.next-step { margin-top: 42px; padding-top: 36px; border-top: 1px solid var(--line); }
.next-step .section-kicker { margin-bottom: 10px; }
.next-step h2 { color: var(--navy); font-size: 22px; margin: 0 0 14px; line-height: 1.5; }
.next-step p { color: #4c586e; font-size: 15px; margin: 0 0 26px; }

.line-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; padding: 14px 32px; border-radius: 9px;
  background: #06c755; color: #fff; font-weight: 700; font-size: 16px;
  transition: .2s ease; box-shadow: 0 10px 24px rgba(6,199,85,.26);
}
.line-button:hover { transform: translateY(-1px); }
.redirect-note { font-size: 12px; color: #788396; margin: 16px 0 0; min-height: 18px; }

.summary { margin-top: 40px; text-align: left; background: var(--wash); border-radius: 10px; padding: 24px 26px; }
.summary h3 { color: var(--navy); font-size: 15px; margin: 0 0 12px; }
.summary dl { margin: 0; }
.summary dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid #e3eaf3; font-size: 13.5px; }
.summary dl > div:last-child { border-bottom: 0; }
.summary dt { color: #5c687c; }
.summary dd { margin: 0; color: var(--ink); font-weight: 650; text-align: right; }
.summary p { font-size: 12px; color: #687388; margin: 14px 0 0; }

.help { margin-top: 34px; font-size: 13px; color: #5c687c; }
.help a { color: var(--navy); font-weight: 650; text-decoration: underline; }

@media (max-width: 640px) {
  .thanks-card { padding: 40px 22px; }
  .thanks-wrap { padding-block: 40px 60px; }
  .step-bar .bar { width: 24px; margin: 0 7px; }
  .step-bar .step span:not(.dot) { display: none; }
}
