/*============================
#cta.cta-section
============================*/
#cta.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-bottom: 100px;
}

.cta-section__left {}

.cta-heading {
  font-size: clamp(40px, 4.5vw, 4.5vw);
  color: #5136cf;
  font-family: "Cambay", sans-serif;
}

/* 期間限定 */
.sub_text {
  font-size: clamp(22px, 2.5vw, 2.5vw);
  font-weight: 700;
  color: #5136cf;
}

.cta-subheading {
  font-size: clamp(18px, 1.5vw, 1.5vw);
  font-weight: 600;
  color: #5136cf;
  margin-bottom: 20px;
}

.cta-subheading span {
  display: block;
}





/* ポップアップのスタイル */

.popup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  /* 背景を暗くする */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
  text-align: center;
}

/* フォームタイトル */
.popup-content h2 {
  font-size: 24px;
  color: #6a0dad;
  /* 濃い紫 */
  margin-bottom: 20px;
}

/* フォームフィールド */
.popup-content label {
  display: block;
  text-align: left;

  font-size: 16px;
  color: #6a0dad;
  /* 濃い紫 */
}

.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f9f9fc;
  /* 薄い紫の背景 */
  color: #333;
  transition: border-color 0.3s;
}

.popup-content input[type="text"]:focus,
.popup-content input[type="email"]:focus,
.popup-content textarea:focus {
  border-color: #6a0dad;
  /* フォーカス時の濃い紫色の枠 */
  outline: none;
}

/* テキストエリア */
.popup-content textarea {
  height: 100px;
  resize: none;
}

/* 送信ボタン */
.popup-content input[type="submit"] {
  background-color: #6a0dad;
  /* ボタンの紫色 */
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.popup-content input[type="submit"]:hover {
  background-color: #8a2be2;
  /* ホバー時の少し明るい紫色 */
}

/* クローズボタン */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #6a0dad;
  /* クローズボタンも紫色に */
  cursor: pointer;
}

.close-btn:hover {
  color: #8a2be2;
  /* ホバー時の少し明るい紫色 */
}


/* セレクトボックスのスタイル */
.popup-content select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f9f9fc;
  /* 薄い紫の背景 */
  color: #333;
  transition: border-color 0.3s;
}

.popup-content select:focus {
  border-color: #6a0dad;
  /* フォーカス時の濃い紫色の枠 */
  outline: none;
}