/*
 * 送信完了ページ（thanks）専用スタイル
 * @概要: 送信完了メッセージとトップページに戻るボタンを中央揃え・余白多めで表示
 * @主な仕様: シンプルな中央揃え、レスポンシブ対応
 * @制限事項: 他ページには影響しない
 */

.thanks-content-wrapper {
  max-width: 600px;
  margin: 60px auto 80px auto;
  padding: 40px 20px 60px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks-title {
  text-align: center;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  color: #222;
}

.thanks-content {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

.thanks-back-btn {
  margin-top: 32px;
  min-width: 220px;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .thanks-content-wrapper {
    padding: 20px 1vw 40px;
  }

  .thanks-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}