/* =============================================
   THANKS PAGE
   ============================================= */

.thanks-main {
  min-height: 80vh;
  background: #f8f7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.thanks-inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

/* アイコン */
.thanks-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eef4ec;
  color: #2f5d34;
  margin: 0 auto 24px;
}

.thanks-label {
  font-size: 11px;
  letter-spacing: 6px;
  font-weight: 700;
  color: #9aa890;
  margin: 0 0 12px;
}

.thanks-h1 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 3.5vw, 28px);
  color: #33332c;
  margin: 0 0 20px;
  letter-spacing: 1px;
}

.thanks-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin: 0 0 36px;
}
.thanks-text strong {
  color: #2f5d34;
  font-weight: 700;
}

/* 連絡先ボックス */
.thanks-note {
  background: #fff;
  border: 1.5px solid #e8e4da;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 36px;
}
.thanks-note p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 14px;
}
.thanks-tel {
  display: inline-block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #2f5d34;
  text-decoration: none;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: opacity .2s;
}
.thanks-tel:hover { opacity: .75; }
.thanks-hours {
  font-size: 12px;
  color: #9aa890;
  margin: 0 !important;
}

/* ボタン */
.thanks-actions {
  display: flex;
  justify-content: center;
}
.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}
.thanks-btn--primary {
  background: #2f5d34;
  color: #fff;
  box-shadow: 0 4px 16px rgba(47,93,52,.25);
}
.thanks-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(47,93,52,.35);
}

@media (max-width: 480px) {
  .thanks-main { padding: 60px 24px; }
  .thanks-note { padding: 22px 20px; }
  .thanks-tel { font-size: 22px; }
}
