/* 1. 説明文エリア */
.form-desc-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 0 20px;
}

.f-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #b39352, transparent);
  max-width: 150px;
}

.form-desc-box {
  background-color: #fdfaf2;
  padding: 10px 25px;
  border: 1px solid #e2c072;
  font-family: "serif", "Sawarabi Mincho", serif;
  font-size: 1.1rem;
  color: #3d2b1f;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

/* 2. ボタンの配置コンテナ */
.form-button-container {
  text-align: center;
  padding: 20px 20px 80px;
}

/* 3. 黄金ボタンの本体（アニメーション付き） */
.form-button-gold {
  display: inline-block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  /* 光のエフェクトがはみ出さないように */

  font-family: "serif", "Sawarabi Mincho", serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #3d2b1f;

  padding: 20px 80px;
  border-radius: 20px;

  background: linear-gradient(to bottom, #fcf3d2 0%, #efd79a 50%, #e2c072 100%);
  border: 2px solid #b39352;
  box-shadow: 0 8px 0 #967a3f, 0 15px 20px rgba(0, 0, 0, 0.2);

  transition: all 0.2s ease;
  cursor: pointer;

  /* ふわふわ揺れるアニメーションを適用 */
  animation: floating 3s ease-in-out infinite;
}

/* 光がキラッと走るエフェクト（疑似要素） */
.form-button-gold::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.6);
  transform: rotate(30deg);
  transition: none;
  animation: shine 4s infinite;
}

/* ホバー時 */
.form-button-gold:hover {
  background: linear-gradient(to bottom, #fff8e1 0%, #f7e0a8 50%, #ebce84 100%);
  transform: translateY(2px);
  box-shadow: 0 6px 0 #967a3f, 0 10px 15px rgba(0, 0, 0, 0.2);
  animation-play-state: paused;
  /* ホバー中は揺れを止める */
}

/* クリック時 */
.form-button-gold:active {
  transform: translateY(8px);
  box-shadow: 0 0 0 #967a3f, 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* --- アニメーションの定義 --- */

/* ふわふわ浮く動き */
@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* キラッと光る動き */
@keyframes shine {
  0% {
    left: -60%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  20% {
    left: 120%;
    opacity: 0;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

/* 4. スマホ用のレスポンシブ調整 */
@media (max-width: 600px) {
  .form-desc-row {
    flex-direction: column;
    gap: 10px;
  }

  .f-line {
    width: 60%;
    max-width: none;
  }

  .form-desc-box {
    font-size: 0.95rem;
    padding: 10px 15px;
    width: 90%;
  }

  .form-button-gold {
    padding: 15px 40px;
    font-size: 1.2rem;
  }
}

.arrow-down {
  display: block;
  /* ブロック要素にする */
  margin-left: auto;
  /* 左の余白を自動調整 */
  margin-right: auto;
  /* 右の余白を自動調整 */

  /* 以下は今の設定のまま */
  text-align: center;
  font-size: 2.5rem;
  color: #000000;
  font-weight: bold;
  margin-top: -10px;
  margin-bottom: 5px;
  animation: bounce 1.5s infinite;
}