/* =========================================
   基本スタイル
========================================= */
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

@media screen and (min-width: 768px) {
  body {
    padding: 0 8vw;
    background-color: #000;
  }
}

.main-content {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .main-content {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* =========================================
   画像セクション
========================================= */
.image-section {
  width: 100%;
  margin-bottom: 0; /* 画像間の余白なし */
}

.image-section picture {
  display: block;
  width: 100%;
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   CTAボタン
========================================= */
/* CTAボタンを設置するセクション */
.image-section--cta {
  position: relative;
}

/* CTAボタン（基本配置: bottom 20px、中央寄せ） */
.cta-btn {
  position: absolute;
  display: block;
  z-index: 100;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 2s ease-in-out infinite;
}

.cta-btn__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* 拡大縮小アニメーション（中央寄せを維持） */
@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
}

/* SP表示時 */
@media screen and (max-width: 767px) {
  .cta-btn {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: 100%;
    transform: scale(1);
    animation: pulse-sp 2s ease-in-out infinite;
  }

  /* 1つ目のCTA（セクション01）: もう少し下に */
  #section-01 .cta-btn {
    bottom: -8px;
  }

  /* 2つ目のCTA（セクション11）: もう少し上に */
  #section-11 .cta-btn {
    bottom: 40px;
  }

  @keyframes pulse-sp {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
}

/* PC表示時 */
@media screen and (min-width: 768px) {
  .cta-btn {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 65vw;
    max-width: 800px;
  }

  /* 1つ目のCTA（セクション01）: 少し下に */
  #section-01 .cta-btn {
    bottom: 4%;
  }

  /* 2つ目のCTA（セクション11） */
  #section-11 .cta-btn {
    bottom: 13%;
  }
}
