/* =========================================
   THANKS PAGE
========================================= */
/* ページ全体 */
body {
  background-color: #fffdf5 !important;
}

.thanks-page {
  background-color: #fffdf5;
}

/* 外側 */
.thanks-page .contact-outer {
  width: 100%;
  background-color: #fffdf5;
  padding: 140px 0 90px;
  box-sizing: border-box;
}

/* 中央寄せ */
.thanks-page .contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* =========================================
   ステップ表示
========================================= */
.thanks-page .steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.thanks-page .step-item {
  width: 220px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #55b38a;
  background-color: #fff;
  color: #55b38a;
  font-weight: bold;
  font-size: 18px;
  border-radius: 999px;
  box-sizing: border-box;
}

.thanks-page .step-item.active {
  background-color: #55b38a;
  color: #fff;
}

.thanks-page .step-arrow {
  color: #55b38a;
  font-size: 20px;
  font-weight: bold;
}

/* =========================================
   完了メッセージ
========================================= */
.thanks-page .thanks-box {
  text-align: center;
  padding: 75px 24px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(91, 74, 66, 0.08);
  box-sizing: border-box;
}

.thanks-page .thanks-title {
  color: #55b38a;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 30px;
  line-height: 1.5;
}

.thanks-page .thanks-text {
  font-size: 16px;
  line-height: 2;
  color: #5b4a42;
  margin: 0 0 50px;
}

/* =========================================
   TOPへ戻るボタン
========================================= */
.thanks-page .btn-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 56px;
  margin: 0 auto;
  padding: 0;
  background-color: #55b38a;
  color: #fff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}

.thanks-page .btn-submit:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .thanks-page .contact-outer {
    padding: 115px 0 60px;
  }

  .thanks-page .contact-container {
    padding: 0 16px;
  }

  .thanks-page .steps {
    gap: 8px;
    margin-bottom: 40px;
  }

  .thanks-page .step-item {
    width: 95px;
    height: 45px;
    font-size: 13px;
    border-radius: 999px;
  }

  .thanks-page .step-arrow {
    font-size: 14px;
  }

  .thanks-page .thanks-box {
    padding: 50px 18px;
    border-radius: 18px;
  }

  .thanks-page .thanks-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .thanks-page .thanks-text {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 40px;
  }

  .thanks-page .btn-submit {
    width: 100%;
    max-width: 320px;
    height: 54px;
    font-size: 16px;
  }
}