@charset "UTF-8";

/* ベースリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background-color: #fff9e6; /* 背景の暖色イエロー */
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #333;
}

/* 1300px 中央寄せコンテナ */
.lp-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

/* 画像共通レスポンシブ設定 */
.lp-section {
  width: 100%;
}

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

/* 画像の上にクリックボタンを重ねるコンテナ */
.img-box {
  position: relative;
  width: 100%;
}

/* 画像内ボタン用オーバレイリンク */
.btn-click {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 12%;
  border-radius: 50px;
  cursor: pointer;
  /* 動作確認時は以下を解除 */
  /* background-color: rgba(255, 0, 0, 0.3); */
}

/* ボタンの位置調整（画像内の位置に追従） */
.btn-click--top {
  top: 61%;
}

.btn-click--middle {
  bottom: 5%;
  height: 15%;
}

/* テキストエリア（ご注意・注意事項等） */
.lp-text-section {
  padding: 40px 6%;
  background-color: #ffffff;
}

.text-block {
  border: 2px solid #e00000;
  border-radius: 8px;
  padding: 30px;
  background-color: #fff;
}

.title-red {
  color: #d30000;
  font-size: 22px;
  text-align: center;
  margin: 25px 0 10px;
  font-weight: bold;
}

.title-red:first-child {
  margin-top: 0;
}

.note-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.text-content {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  color: #444;
}

.contact-info {
  background-color: #fef5f5;
  padding: 15px;
  border-radius: 6px;
  margin-top: 10px;
}

/* 最下部 赤色「応募する」ボタン */
.footer-btn-wrapper {
  background-color: #fff9e6;
  padding: 25px 20px 40px;
  text-align: center;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 500px;
  height: 70px;
  background: linear-gradient(to bottom, #e60000, #b30000);
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* スマホ表示（レスポンシブ最適化） */
@media screen and (max-width: 768px) {
  .lp-text-section {
    padding: 20px 4%;
  }

  .text-block {
    padding: 15px;
  }

  .title-red {
    font-size: 18px;
    margin: 20px 0 8px;
  }

  .note-list, .text-content {
    font-size: 12px;
    text-align: left;
  }

  .btn-submit {
    width: 90%;
    height: 55px;
    font-size: 20px;
  }
}


/* デフォルト（スマホ表示）：PC用画像を隠す */
.img-pc {
  display: none !important;
}
.img-sp {
  display: block !important;
  width: 100%;
  height: auto;
}

/* PC表示（画面幅769px以上）：スマホ用画像を隠し、PC用画像を表示 */
@media screen and (min-width: 769px) {
  .img-sp {
    display: none !important;
  }
  .img-pc {
    display: block !important;
    width: 100%;
    height: auto;
  }
}