/*****************************
 全体レイアウト・背景
*****************************/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-image: url(../../../../images/project/okcj/brother_op/haikei_main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.container-pc {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
}
.timer{
  color: #f8f8f8;
  margin-top: 30px;
  font-size: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  background: linear-gradient(to right, rgba(255,255,255,0.05), rgba(255,255,255,0));
}
.cdt-label{
  margin-top: 20px;
}

#CDT {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0px auto 0;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-shadow:
    0 0 6px rgba(255, 230, 150, 0.8),
    0 0 12px rgba(255, 200, 0, 0.4),
    0 0 18px rgba(255, 180, 0, 0.3);
  padding: 10px 0;
  
}
#CDT01 {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0px auto 0;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-shadow:
    0 0 6px rgba(255, 230, 150, 0.8),
    0 0 12px rgba(255, 200, 0, 0.4),
    0 0 18px rgba(255, 180, 0, 0.3);
  padding: 10px 0;
  
}

/*****************************
 実績表示セクション（record-section）
*****************************/
.record-section {
  background-color: #1a0000;
  border: 2px solid gold;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  color: white;
  width: 90%;
  max-width: 800px;
  margin: 60px auto 0;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.record-title {
  font-size: 40px;
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
  margin-top: -20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.record-image-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.record-img {
  width: 90%;
  max-width: 600px;
  border: 2px solid gold;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.record-note {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.record-message {
  font-size: 26px;
  line-height: 1.8;
}

.accent-yellow {
  color: #ffcc00;
  font-weight: bold;
}

.accent-red {
  color: #ff3333;
  font-weight: bold;
  font-size: 40px;
  margin-top: 20px;
}

/* デフォルトでは表示（PC） */
.hide-on-sp {
  display: inline;
}

/* スマホ表示だけ非表示 */
@media screen and (max-width: 767px) {
  .hide-on-sp {
    display: none;
  }
}


/*****************************
 ファーストビュー（FV）画像
*****************************/
#FV img {
  width: 90%;
  max-width: 990px;
  height: auto;
  margin: 0 auto -60px;
  display: block;
}


/*****************************
 フォームセクション
*****************************/
.form {
  padding: 15px;
  background-color: #000;
  border: 5px solid #d4c28a;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90%;
  max-width: 700px;
  margin: 60px auto;
}

.form.secondary-form {
  margin-top: -30px;
  margin-bottom: 40px;
}

.form-headline {
  font-size: 36px;
  font-weight: bold;
  color: #ffd700;
  margin: -10px 0 -20px;
}

.form-description,
.form-subtext {
  font-size: 24px;
  color: #f8f8f8;
  line-height: 1.7;
  margin-bottom: 10px;
}

.form-subtext {
  margin-top: 10px;
  margin-bottom: 30px;
  color: #ffffff;
}

.email-label {
  display: block;
  font-size: 16px;
  color: #fff;
  margin: -20px auto 8px;
  text-align: center;
  width: 90%;
  max-width: 480px;
}

.email-input {
  width: 90%;
  max-width: 480px;
  padding: 14px;
  font-size: 16px;
  border: 4px solid #ccc;
  border-radius: 8px;
  margin-bottom: 30px;
  font-weight: bold;
  background-color: #111;
  color: #fff;
}


/*****************************
 送信ボタン
*****************************/
.submit-button {
  padding: 20px 40px;
  font-size: 24px;
  font-weight: bold;
  border: 3px solid #ffffff;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9900, #ffaa00); /* 濃い→明るいオレンジ */
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
  box-shadow: 0 6px 12px rgba(255, 136, 0, 0.4); /* 外枠のオーラ */
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submit-button .button-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.icon-finger {
  width: 70px;
  height: auto;
  margin-left: 10px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.submit-button:hover .icon-finger {
  transform: scale(1.2) rotate(-10deg); /* ホバー時に少し動きをつけて目立たせる */
}
.submit-button:hover .button-text::after {
  color: #000;
}

.submit-button:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #ffcc66, #ffe699); /* 発光感のある明色へ */
  color: #000;
  box-shadow: 0 10px 20px rgba(255, 180, 0, 0.6), 0 0 15px rgba(255, 180, 0, 0.4);
}


/* 光のスライドエフェクト */
.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  z-index: 1;
  transition: left 0.5s ease;
}

.submit-button:hover::before {
  left: 130%;
}


/*****************************
 補足テキスト・注意書き
*****************************/
.contact {
  font-size: 12px;
  color: #aaa;
  margin-top: 30px;
  line-height: 1.6;
}

.back-link a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  display: block;
  margin-top: 20px;
}


/*****************************
 本文メッセージ（intro）
*****************************/
.intro-message {
  background-color: rgba(17, 17, 17, 0.95);
  color: #fff;
  padding: 40px 24px;
  font-size: 26px;
  line-height: 2;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  font-family: "Yu Gothic", "メイリオ", sans-serif;
  width: 70%;
  max-width: 1000px;
  margin: 60px auto;
}

.intro-message p {
  margin: 0.5em 0;
}


/*****************************
 共通ハイライト・装飾
*****************************/
.highlight-pass,
.highlight-last,
.highlight-stage-large,
.highlight-stage,
.highlight-key,
.highlight-red,
.highlight-yellow,
.impact-line .highlight-stage {
  font-weight: bold;
}

.highlight-pass,
.highlight-last {
  font-size: 28px;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

.highlight-pass {
  color: #ffe94c;
}

.highlight-last {
  color: #ed0000;
  display: block;
  width: fit-content;
  margin-left: 60px;
}

.highlight-red {
  color: #ff4e4e;
}

.highlight-yellow {
  color: #ffcc00;
  font-size: 22px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.highlight-key {
  color: #ffd700;
  font-size: 25px;
}

.highlight-stage {
  font-size: 26px;
  color: #ffd700;
  text-decoration: none;
}

.highlight-stage-large {
  font-size: 30px;
  color: #ff4e4e;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.highlight-event {
  color: #ffd700;
  font-size: 30px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
  animation: glowLoop 2.5s ease-in-out infinite alternate;
}


/*****************************
 強調金額・インパクト文字
*****************************/
.emphasis-amount,
.impact-line .emphasis-amount {
  font-weight: bold;
  color: #ff3030;
  text-shadow: 0 0 5px rgba(255, 223, 51, 0.4);
  text-decoration: none;
}

.emphasis-amount.large-red {
  font-size: 44px;
  text-shadow: 0 0 10px rgba(255, 80, 80, 0.6);
}

.impact-line {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: -40px auto 30px;
  line-height: 1.8;
  max-width: 1000px;
  width: 90%;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.impact-line .highlight-stage {
  font-size: 36px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}


/*****************************
 各セクション（メッセージ、ボーナス）
*****************************/
.message-block {
  text-align: center;
  color: #fff;
  font-size: 28px;
  line-height: 2;
  font-family: "Yu Gothic", "メイリオ", sans-serif;
  width: 90%;
  max-width: 800px;
  margin: 60px auto;
}

.message-block .greeting {
  font-size: 35px;
  margin-bottom: 40px;
}

.message-block .text-block {
  font-size: 26px;
  margin-bottom: 40px;
  line-height: 2;
}

.message-block .final-call {
  font-size: 26px;
}

.bonus-box {
  background-color: #1a1a1a;
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 30px 24px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 1.9;
  max-width: 800px;
  width: 90%;
  margin: 30px auto;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.bonus-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffe600;
  background: #000;
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 20px;
  border-left: 5px solid #ffe600;
  border-right: 5px solid #ffe600;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}


/*****************************
 エントリー案内＋画像
*****************************/
.pass-image,
.pass-image-side {
  display: block;
  margin: 20px auto;
  max-width: 200px;
  height: auto;
}

.headline-image {
  width: 110%;
  max-width: 1000px;
  object-fit: contain;         /* 画像全体を表示、空白を許容 */
  transform: translateX(-30px);
}

.entry-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.entry-guide {
  flex: 1;
  max-width: 70%;
  text-align: left;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.9;
}

.entry-title {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 12px;
}

.entry-instruction {
  font-size: 21px;
  color: #ffffff;
  line-height: 1.9;
}


/*****************************
 区切り線
*****************************/
hr {
  border: none;
  height: 2px;
  background-color: #ffd700;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  opacity: 0.8;
}


/*****************************
 フッター
*****************************/
.footer {
  background-color: #000000;
  padding: 20px;
  text-align: center;
}

.footer .main {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.footer ul li {
  display: inline;
  margin-right: 10px;
}

.footer ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #b9b2b2;
}

.p1 {
  font-size: 12px;
  line-height: 1.4;
  color: #ffffff;
}


/*****************************
 光るアニメーション（イベント用）
*****************************/
@keyframes glowLoop {
  0% {
    opacity: 0.6;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.2);
    transform: translateY(0px);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 25px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
  }
  100% {
    opacity: 0.6;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.2);
    transform: translateY(0px);
  }
}
