/**
 * お問い合わせ完了ページ専用スタイル
 * 
 * 倉本鐵工株式会社のお問い合わせ完了ページのスタイリング
 * 
 * @package Kuramoto
 * @version 1.0.0
 * @author 倉本鐵工株式会社
 */

/* ページタイトルセクション */
.page-title-section {
  text-align: center;
  margin: 60px 0 80px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

/* 完了メッセージ */
.thanks-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thanks-message {
  background: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.thanks-icon {
  margin-bottom: 30px;
}

.thanks-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.thanks-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.thanks-contact-info {
  background: rgba(30, 150, 252, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.contact-tel {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.contact-tel strong {
  color: #1E96FC;
  font-size: 1.4rem;
}

.contact-hours {
  color: #666;
  font-size: 1rem;
}

/* アクションボタン */
.thanks-actions {
  margin-top: 40px;
}

.thanks-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.thanks-button-group .btn {
  min-width: 200px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .thanks-message {
    padding: 40px 20px;
  }

  .thanks-title {
    font-size: 1.5rem;
  }

  .thanks-button-group {
    flex-direction: column;
    align-items: center;
  }

  .thanks-button-group .btn {
    width: 100%;
    max-width: 300px;
  }
}