@charset "utf-8";
/* CSS Document */
html body * {
  font-family: "Zen Kaku Gothic New", serif;
}

/* =========================
   THANKS PAGE（PC & SP共通）
========================= */
.thanks-page {
  font-family: "Zen Kaku Gothic New", serif;
  color: #313195;
  text-align: left;
  padding: 140px 0 120px;
  max-width: 100%;
  margin: 0 auto;
}

/* -------------------------
   パンくずリスト
------------------------- */
.thanks-breadcrumb {
  margin-bottom: 40px;
  font-size: 14px;
  color: #313195;
  border-bottom: 1px solid #bdcdff;
  padding-bottom: 8px;
}

.thanks-breadcrumb ul {
  list-style: none;
  padding: 0 130px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.thanks-breadcrumb a {
  color: #313195;
  text-decoration: none;
}

.thanks-breadcrumb .separator {
  color: #313195;
}

/* -------------------------
   メインメッセージ
------------------------- */
.thanks-content {
  position: relative;
  text-align: center;
  padding: 120px 20px 50px;
}

.thanks-bg-text {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  font-weight: 700;
  color: #e6ebff; /* 薄いブルー */
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.thanks-title,
.thanks-message,
.thanks-text,
.thanks-btn {
  position: relative;
  z-index: 1;
}

.thanks-title {
  font-size: 35px;
  font-weight: 700;
  color: #313195;
  margin-bottom: 40px;
  line-height: 130%;
}

.thanks-message {
  font-size: 17px;
  margin-bottom: 40px;
 line-height: 200%;
}

.thanks-text {
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.8;
}


/* -------------------------
   ボタン
------------------------- */
.thanks-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #bdcdff;
  color: #313195;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  font-weight: 700;    
}

.thanks-btn:hover {
  background: #a9bbf2;
}

/* -------------------------
   Responsive（SP専用調整）
------------------------- */
@media (max-width: 768px) {
  .thanks-page {
    text-align: left;
    padding: 80px 0 60px;
  }

  .thanks-breadcrumb {
    display: flex;
    justify-content: flex-start;
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .thanks-breadcrumb ul {
    padding: 0;
    justify-content: flex-start;
  }

  .thanks-content {
    padding: 27px 20px;
  }

  .thanks-bg-text {
    font-size: 48px;
    top: 10px;
  }

  .thanks-title {
    font-size: 24px;
    line-height: 130%;
  }

  .thanks-message,
  .thanks-text {
    font-size: 16px;
    line-height: 170%;
    margin-top: 8px;
    margin-bottom: 40px;
  }

  .thanks-btn {
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 700;
  }
}
