/* --- 基本スタイル --- */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

h2 {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
}

.hidden-text {
  display: none;
}

img.normalimg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 667px;
  margin: 0 auto;
}

a.cta-agent-form {
  display: inline-block;
  width: 100%;
  text-align: center;
}

a.cta-agent-form img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 667px;
}

.fixed-banner a{
  display: inline-block;
}

/* --- 画面下部の追従バナー --- */
.fixed-banner {
  position: fixed;
  bottom: -5px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  z-index: 9999;
  
  /* フェードインアニメーション */
  animation: fadeIn 1.5s ease-in-out;
}

/* 追従バナーの画像（ぶるぶるアニメーション） */
.fixed-banner img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  
}

/* フェードイン（最初にふわっと登場） */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}



/* --- 最下部に100pxの余白を追加 --- */
.lp-bottom-space {
  height: 100px;
}

/* --- レスポンシブ対応（800px以下） --- */
@media only screen and (max-width: 800px) {
  img.normalimg {
    width: 100%;
  }

  a.cta-agent-form img {
    width: 100%;
  }

}