@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  color: #191000;
  background:
    radial-gradient(circle at 50% -60px, rgba(255,255,255,.78) 0 5%, rgba(255,255,255,0) 34%),
    repeating-conic-gradient(from -8deg at 50% 0%, #ffd91a 0deg 7deg, #ffca0b 7deg 14deg);
  min-height: 100vh;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #ffd219;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

/* ヘッダー画像の黄色とページ背景を自然につなぐ */
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(28px, 5vw, 76px);
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(255,210,25,0) 0%,
      rgba(255,210,25,.28) 32%,
      rgba(255,210,25,.72) 68%,
      #ffd219 100%
    );
}

#main {
  position: relative;
  margin: 0;
  padding: 0 16px 64px;
}

/* ヘッダー直下からフォームへ。境目を隠すため少しだけ上に重ねる */
.offer-area {
  position: relative;
  z-index: 3;
  max-width: 1040px;
  margin: clamp(-18px, -2vw, -8px) auto 0;
  padding: 0;
}

.entry-form {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 58px 52px 48px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,251,228,.98));
  border: 3px solid #f3b000;
  border-radius: 28px;
  box-shadow:
    0 16px 32px rgba(145,74,0,.24),
    0 0 0 7px rgba(255,255,255,.28);
}

.form-ribbon {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: min(620px, 80%);
  padding: 12px 24px;
  color: #fff;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .03em;
  background: linear-gradient(#f51e16, #c60000);
  border-radius: 4px;
  box-shadow: 0 6px 10px rgba(150,0,0,.28);
}

.form-ribbon::before,
.form-ribbon::after {
  content: "";
  position: absolute;
  top: 9px;
  z-index: -1;
  width: 58px;
  height: 46px;
  background: #c60000;
}

.form-ribbon::before {
  left: -38px;
  transform: skewY(11deg);
}

.form-ribbon::after {
  right: -38px;
  transform: skewY(-11deg);
}

.form-title {
  margin: 12px 0 10px;
  text-align: center;
  color: #111;
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.03em;
}

.form-title span {
  color: #ed1710;
  text-shadow: 0 2px 0 #fff;
}

.form-lead {
  margin: 18px 0 28px;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.7;
  color: #4a2a00;
  font-weight: 700;
}

.form-lead strong {
  color: #e3150e;
}

.mail-label {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #6c3500;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0 22px;
  background: #fff;
  border: 3px solid #f0a900;
  border-radius: 14px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.06);
}

.mail-icon {
  flex: 0 0 auto;
  color: #dc1c12;
  font-size: 34px;
  line-height: 1;
}

.input-wrap input {
  width: 100%;
  min-width: 0;
  height: 82px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 24px;
  color: #222;
}

.input-wrap input::placeholder {
  color: #aaa;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(760px, 100%);
  margin: 30px auto 0;
  padding: 20px 30px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  background:
    linear-gradient(180deg, #2bd30f 0%, #09a800 58%, #078600 100%);
  box-shadow:
    0 9px 0 #046400,
    0 15px 28px rgba(0,108,0,.28),
    inset 0 2px 0 rgba(255,255,255,.42);
  transition: transform .15s ease, box-shadow .15s ease;
}

.submit-btn:hover {
  transform: translateY(2px);
  box-shadow:
    0 7px 0 #046400,
    0 11px 22px rgba(0,108,0,.24),
    inset 0 2px 0 rgba(255,255,255,.42);
}

.play-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #08a200;
  background: #fff;
  font-size: 24px;
  padding-left: 3px;
}

.submit-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}

.submit-main {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: .01em;
}

.submit-sub {
  margin-top: 5px;
  color: #fff200;
  font-size: clamp(16px, 2.3vw, 24px);
  font-weight: 900;
}

footer {
  padding: 22px 12px 26px;
  text-align: center;
  color: #6d3c00;
  font-size: 14px;
  background: rgba(255,211,25,.92);
}

footer p {
  margin: 0 0 6px;
}

footer a {
  color: #6d3c00;
}

@media (max-width: 700px) {
  #main {
    padding-left: 10px;
    padding-right: 10px;
  }

  .offer-area {
    margin-top: -6px;
  }

  .entry-form {
    padding: 48px 18px 30px;
    border-width: 2px;
    border-radius: 20px;
  }

  .form-ribbon {
    top: -23px;
    width: 78%;
    padding: 10px 12px;
    font-size: 18px;
  }

  .form-ribbon::before,
  .form-ribbon::after {
    width: 36px;
    height: 35px;
  }

  .form-ribbon::before { left: -23px; }
  .form-ribbon::after  { right: -23px; }

  .form-title {
    margin-top: 8px;
  }

  .form-lead {
    margin-bottom: 20px;
  }

  .mail-label {
    font-size: 15px;
  }

  .input-wrap {
    gap: 10px;
    padding: 0 14px;
    border-width: 2px;
  }

  .mail-icon {
    font-size: 26px;
  }

  .input-wrap input {
    height: 64px;
    font-size: 16px;
  }

  .submit-btn {
    gap: 12px;
    margin-top: 22px;
    padding: 16px 14px;
    box-shadow:
      0 6px 0 #046400,
      0 11px 22px rgba(0,108,0,.24),
      inset 0 2px 0 rgba(255,255,255,.42);
  }

  .play-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* =========================================================
   THANKS PAGE
   8月16日 無料買い目公開
   ========================================================= */

body.thanks-page {
  color: #251000;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.85) 0 6%, rgba(255,255,255,0) 34%),
    repeating-conic-gradient(from -8deg at 50% 0%, #ffdd26 0deg 8deg, #ffc90c 8deg 16deg);
}

.thanks-page #main {
  padding: 70px 18px 80px;
}

.thanks-wrap {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.thanks-status {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #ff3c22, #d70600);
  box-shadow: 0 5px 0 #9e0500;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: .1em;
}

.thanks-title {
  margin: 0 0 30px;
  color: #111;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.1;
  font-weight: 900;
  text-shadow:
    0 2px 0 #fff,
    0 4px 10px rgba(130,70,0,.16);
}

.thanks-title span {
  color: #e5150d;
}

.thanks-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 60px 48px;
  border: 3px solid #efa700;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.985), rgba(255,249,224,.985));
  box-shadow:
    0 18px 38px rgba(146,78,0,.23),
    0 0 0 8px rgba(255,255,255,.25);
  text-align: center;
}

.thanks-card p {
  margin: 0 auto 34px;
  padding: 0;
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
}

.thanks-card .red {
  color: #e3170d;
}

.thanks-card .bold {
  font-weight: 900;
}

.thanks-card .fs28 {
  font-size: 1.35em;
}

.thanks-highlight {
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding: 13px 24px !important;
  border: 2px solid #efad00;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff279, #ffd51e);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.7);
}

.thanks-highlight span {
  color: #b30000;
  font-weight: 900;
}

.thanks-confidence {
  margin-bottom: 46px !important;
}

.thanks-mail-check {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 10px auto 34px;
  padding: 28px 32px;
  border: 3px solid #e51d14;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(176,30,0,.12);
  text-align: left;
}

.thanks-mail-icon {
  display: grid;
  place-items: center;
  flex: 0 0 86px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #ff3a22, #d70c00);
  font-size: 42px;
  line-height: 1;
  box-shadow: 0 7px 0 #a40a00;
}

.thanks-mail-text {
  flex: 1;
}

.thanks-mail-text h2 {
  margin: 0 0 8px;
  padding: 0;
  color: #e5150d;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 900;
}

.thanks-mail-text p {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.75;
  text-align: left;
}

.thanks-note {
  margin-bottom: 28px !important;
  padding: 22px 25px !important;
  border-left: 7px solid #efb000;
  background: #fff8ce;
  text-align: left;
  font-size: 20px !important;
  line-height: 1.7 !important;
}

.thanks-last {
  margin-bottom: 0 !important;
  color: #b90700;
  font-weight: 900 !important;
}

.thanks-page footer {
  padding: 24px 12px 28px;
  background: rgba(255,208,18,.95);
  color: #673300;
  text-align: center;
  font-size: 14px;
}

.thanks-page footer p {
  margin: 0;
  padding: 0;
}

.thanks-sp-only {
  display: none;
}

@media screen and (max-width: 700px) {
  .thanks-page #main {
    padding: 42px 10px 55px;
  }

  .thanks-status {
    font-size: 16px;
    padding: 7px 22px;
  }

  .thanks-title {
    margin-bottom: 24px;
  }

  .thanks-card {
    padding: 34px 18px 30px;
    border-width: 2px;
    border-radius: 20px;
  }

  .thanks-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 26px;
  }

  .thanks-highlight {
    padding: 11px 14px !important;
  }

  .thanks-mail-check {
    display: block;
    padding: 24px 18px;
    text-align: center;
  }

  .thanks-mail-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    font-size: 30px;
    box-shadow: 0 5px 0 #a40a00;
  }

  .thanks-mail-text h2 {
    font-size: 24px;
  }

  .thanks-mail-text p {
    font-size: 16px;
    text-align: center;
  }

  .thanks-note {
    font-size: 16px !important;
  }

  .thanks-sp-only {
    display: initial;
  }
}
