/* ===============================
   共通
================================ */
.thanks-page {
  background: #f1f5f9;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.center {
  text-align: center;
}

/* ===============================
 メインエリア
================================ */
/* セクション全体の背景と余白 */
.thanks-main {
  padding: 160px 20px 100px;
  background-color: #fff; /* 背景が白の場合 */
  text-align: center;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.thanks-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* チェックアイコンの円形デザイン */
.thanks-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 40px;
  background-color: #f0f3ff; /* 薄い青色 */
  border-radius: 50%;
}

.icon-check {
  display: inline-block;
  width: 25px;
  height: 15px;
  margin-top: -5px;
  border-left: 4px solid #08a298;
  border-bottom: 4px solid #08a298;
  transform: rotate(-45deg);
}

/* タイトル */
.thanks-title {
  font-size: 34px;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

/* テキスト */
.thanks-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 50px;
}

/* ボタンのスタイル */
.thanks-btn-wrap {
  margin-top: 40px;
}

.thanks-btn {
  display: inline-block;
  padding: 18px 60px;
  font-size: 18px;
  font-weight: bold;
  /* color: #1a202c; */
  text-decoration: none;
  /* border: 2px solid #1a202c; */
  border-radius: 50px; /* 角丸ボタン */
  transition: all 0.3s ease;
  background: linear-gradient(to right, #f0400a, #ffc300);
  box-shadow: 0 0 4px 0 rgba(1, 42, 68, 0.25);
  color: white;
  border: 2px solid white;
}

/* ボタンホバー時 */
.thanks-btn:hover {
  opacity: 0.7;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .thanks-title {
    font-size: 24px;
  }
  .thanks-text {
    font-size: 14px;
    text-align: left; /* スマホでは左寄せが見やすい場合が多いです */
    display: inline-block;
  }
  .thanks-btn {
    width: 100%;
    padding: 15px 0;
  }
}

/* ===============================
 クロスセル
================================ */
/* セクション全体の背景と余白 */
.thanks-cross {
  padding: 80px 20px;
  background-color: #f8fafc; /* 非常に薄いグレーの背景 */
}

/* ヘッド部分 */
.cross-head {
  text-align: center;
  margin-bottom: 50px;
}

.cross-title {
  font-size: 32px;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 15px;
}

.cross-lead {
  font-size: 18px;
  color: #4a5568;
}

/* グリッドレイアウト */
.cross-grid {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

/* カードスタイル */
.cross-card {
  flex: 0 1 auto;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden; /* 角丸からはみ出さないように */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cross-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* カードの上半分（グレー背景） */
.cross-thumb {
  position: relative;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* おすすめバッジ */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(to right, #f0400a, #ffc300);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 4px;
}

/* 仮のアイコンスタイル */
.cross-icon-img {
  font-size: 40px;
  color: #94a3b8;
}
/* アイコンを画像で入れる場合は .cross-icon-img img { width: 60px; } などで調整 */

/* カードの下半分 */
.cross-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 20px;
}

.card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 30px;
  flex-grow: 1; /* テキスト量にかかわらずボタンの位置を揃える */
}

/* ボタン（枠線のみ） */
.cross-btn {
  display: block;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  color: #ec7a23;
  text-decoration: none;
  border: 1px solid #ec7a23;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

/* 矢印を疑似要素で追加 */
.cross-btn::after {
  content: '>';
  position: absolute;
  right: 20px;
  font-weight: normal;
}

.cross-btn:hover {
  background: linear-gradient(to right, #f0400a, #ffc300);
  color: #fff;
  opacity: 0.9;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .cross-grid {
    flex-direction: column;
  }
  .cross-title {
    font-size: 22px;
  }
  .cross-thumb {
    min-height: 140px;
  }
  .badge {
    top: 8px;
    left: 8px;
    padding: 4px 12px;
  }
  .cross-body {
    padding: 30px 20px;
  }
  .card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .card-text {
    font-size: 14px;
    line-height: 1.7;
  }
  .cross-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 463px) {
  .cross-body {
    padding: 10px 20px 20px;
  }
}
