/* =========================================================
 *  Contact Thanks Page
 *  お問い合わせ完了ページ専用CSS
 * ========================================================= */

/* SWELLの自動タイトルを非表示 */
.aind-thanks-body .c-pageTitle { display: none; }

/* ── 全体ラッパー ── */
.aind-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 64px 24px;
  text-align: center;
}

/* ── チェックマーク アニメーション ── */
.aind-thanks__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: aind-thanks-pop .45s cubic-bezier(.34,1.56,.64,1) both;
}

.aind-thanks__icon svg {
  width: 36px;
  height: 36px;
  stroke: #22c55e;
  stroke-width: 2.5;
  fill: none;
}

.aind-thanks__check-path {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: aind-thanks-draw .5s .3s ease forwards;
}

@keyframes aind-thanks-pop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes aind-thanks-draw {
  to { stroke-dashoffset: 0; }
}

/* ── テキスト ── */
.aind-thanks__title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px;
  line-height: 1.4;
}

.aind-thanks__desc {
  font-size: 13.5px;
  color: #64748b;
  margin: 0 0 8px;
  line-height: 1.8;
  max-width: 440px;
}

.aind-thanks__note {
  font-size: 11.5px;
  color: #94a3b8;
  margin: 0 0 36px;
  line-height: 1.6;
}

/* ── ボタン ── */
.aind-thanks__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  padding: 10px 28px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  transition: all .15s ease;
}

.aind-thanks__btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
}

.aind-thanks__btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ── 透かし ── */
.aind-thanks__watermark {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: .04em;
  color: rgba(0, 0, 0, .02);
  line-height: 1;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}

/* ── レスポンシブ ── */
@media (max-width: 599px) {
  .aind-thanks {
    padding: 48px 20px;
    min-height: 40vh;
  }
  .aind-thanks__title {
    font-size: 18px;
  }
  .aind-thanks__watermark {
    font-size: 40px;
    right: 12px;
  }
}
