/* ===== 動作確認済み版 - 以前の設定 ===== */

/* 1. iframe基本設定 - 以前の動作版 */
iframe[src*="bownow"] {
  width: 100% !important;
  height: 1000px !important; /* 以前の大きめ設定 */
  border: none !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 2. フォームセクション固定 */
.sec18 {
  padding-bottom: 50px !important;
  margin-bottom: 0 !important;
  min-height: 1000px !important; /* 確実に高さ確保 */
}

/* 3. SP時の調整 - 以前の設定 */
@media (max-width: 768px) {
  iframe[src*="bownow"] {
    height: 1200px !important; /* SP時はさらに大きく */
  }

  .sec18 {
    padding-bottom: 30px !important;
    min-height: 1200px !important;
  }
}

/* 4. フォーム内のiframe - 以前の設定 */
.form_wrap iframe[id*="bownow"] {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 1000px !important;
  height: 1000px !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 5. SP時のform_wrap調整 */
@media screen and (max-width: 768px) {
  .form_wrap iframe[id*="bownow"] {
    min-height: 1200px !important;
    height: 1200px !important;
  }
}

/* 6. 背景画像の修正 */
.sec18 {
  background-size: cover !important;
  background-position: center 0 !important;
  background-repeat: no-repeat !important;
}

/* 7. 追加の安全策 */
.sec18 * {
  box-sizing: border-box !important;
}

/* 8. スクロール防止 - 以前の設定 */
html,
body {
  scroll-behavior: auto !important;
}

.sec18,
.sec19,
footer {
  scroll-margin-top: 0 !important;
}
