/*****************************
 全体レイアウト・背景
*****************************/
/* SP用 */
body {
	display: block;
	margin: 0 auto;
	text-align: left;
	font-weight: 500;
	padding: 0;
	font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", "Meiryo", "Osaka", "MS Pゴシック", "MSゴシック", Helvetica, verdana, arial;
	letter-spacing: 1.3px;
	background-color: #000000;
	background-image: url(../../../../images/project/okcj/brother_op/haikei_main.jpg) top center no-repeat fixed;
	background-size: cover;
}
body::before {
	background-image: url(../../../../images/project/okcj/brother_op/haikei_main.jpg);
	background-image: no-repeat;
	background-position: top center;
	background-size: cover;
	content: "";
	position: fixed;
	top: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
} 

.br-sp {
  display: inline;
}

/* スマホ表示で改行する */
@media screen and (max-width: 767px) {
  .br-sp {
    display: block;
  }
  
}

.line1,
.line2 {
  display: block;
  font-size: 14px;
}
.timer{
  color: #f8f8f8;
  margin-top: 30px;
  font-size: 25px;
    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: 15px;
}

#CDT {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 0px auto 0;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
  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;
  white-space: nowrap;  /* ← この一行が重要！ */
}

#CDT01 {
  width: 100%;
  text-align: center;
  font-size: 24px;
  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;
  
}

/*****************************
 実績表示セクション（SP用）
*****************************/
.record-section {
  background-color: #1a0000;
  border: 2px solid gold;
  padding: 24px 16px;
  border-radius: 10px;
  text-align: center;
  color: white;
  width: 100%;
  max-width: 767px;
  margin: 40px auto;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
}

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

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

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

.record-note {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 16px;
  line-height: 1.5;
}

.record-message {
  font-size: 22px;
  line-height: 1.3;
}

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

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

.margin-top-lg {
  display: inline-block;
  margin-top: 16px;
}

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

/* スマホ表示だけ非表示 */
@media screen and (max-width: 767px) {
  .hide-on-sp {
    display: none;
  }
}
/*****************************
 ラッパー構造
*****************************/
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/*****************************
 ファーストビュー画像
*****************************/
#FV img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -30px;
}

/*****************************
 コンテナ
*****************************/
.container-pc {
  width: 94%;
  margin: 0 auto;
}

/*****************************
 フォーム
*****************************/

*,
*::before,
*::after {
  box-sizing: border-box;
}
.form {
  padding: 20px 16px;
  background-color: #111;
  border: 4px solid #d4c28a;
  border-radius: 14px;
  margin: 30px auto;
  text-align: center;
  width: 100%;
  max-width: 767px; 
}

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

.form-headline {
  font-size: 25px;
  color: #ffd700;
  margin-bottom: 10px;
  font-weight: bold;
  margin-top: 10px;
}

.form-description,
.form-subtext {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #eee;
}

.form-subtext {
  margin-top: 5px;
}

.email-label {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}

.email-input {
   width: 90%;
  max-width: 480px; /* ← スマホ画面（幅375pxなど）でこの指定は広すぎる可能性あり */
  padding: 12px;
  font-size: 16px;
  border: 3px solid #ccc;
  border-radius: 6px;
  background-color: #222;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}

/*****************************
 送信ボタン
*****************************/
.submit-button {
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff9900, #ffaa00);
  color: #fff;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.submit-button .button-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 22px;
}

.icon-finger {
  width: 50px;
  height: auto;
  margin-left: 8px;
  vertical-align: middle;
}

.submit-button:hover {
  background: linear-gradient(135deg, #ffcc66, #ffe699);
  color: #000;
}

/*****************************
 補足テキスト
*****************************/
.contact {
  font-size: 12px;
  color: #aaa;
  margin-top: 20px;
  line-height: 1.5;
}


/*****************************
 本文メッセージ
*****************************/
.intro-message {
  background-color: rgba(17, 17, 17, 0.95);
  color: #fff;
  padding: 24px 16px;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  border-radius: 12px;
  margin: 30px auto;
  width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

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

/*****************************
 ハイライト類
*****************************/
.highlight-pass,
.highlight-last,
.highlight-stage-large,
.highlight-stage,
.highlight-key,
.highlight-red,
.highlight-yellow {
  font-weight: bold;
}

.highlight-pass,
.highlight-last {
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.highlight-pass {
  color: #ffe94c;
}

.highlight-last {
  color: #ed0000;
  display: block;
  margin-left: 10px;
}

.highlight-red {
  color: #ff4e4e;
}

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

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

.highlight-stage {
  font-size: 22px;
  color: #ffd700;
}

.highlight-stage-large {
  font-size: 20px;
  color: #ff4e4e;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

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

.impact-line {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  margin: 30px auto;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 5px;
  width: 90%;
}
.impact-line .emphasis-amount {
  display: inline-block;        /* ← 描画コンテキストを分離 */
  text-decoration: none !important;
}
.impact-line .highlight-stage {
  font-size: 22px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/*****************************
 各メッセージ・特典
*****************************/
.message-block {
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  width: 90%;
  margin: 40px auto;
}

.message-block .greeting {
  font-size: 22px;
  margin-bottom: 20px;
}

.message-block .text-block {
  font-size: 22px;
  margin-bottom: 20px;
}

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

.bonus-box {
  background-color: #1a1a1a;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 20px 16px;
  font-size: 20px;
  line-height: 1.7;
  width: 90%;
  margin: 20px auto;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

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

.wrapper, main, .container-pc {
  overflow-x: hidden;
}
/*****************************
 エントリー案内
*****************************/
.pass-image {
  display: block;
  margin: -10px auto 20px;     /* ← 上を狭く、下に余白 */
  width: 100%;                 /* ← 少し小さく（従来90%〜100%想定） */
  max-width: 200px;           /* ← PC時より明確に小さくする */
  height: auto;
}

.pass-image-side {
  display: block;
  margin: -10px auto -20px;
  width: 100%;
  max-width: 160px;
  height: auto;
}
.headline-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform: none !important; /* ← translateを解除 */
  display: block;
  margin: 0 auto;
}
.entry-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;  /* ← 子要素を中央寄せ */
  gap: 16px;
  margin-top: 24px;
}

.entry-guide {
  text-align: center;  /* ← 子要素全体に適用 */
  margin: 0 auto;
  width: 100%;
}

.entry-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;       /* ← テキストを中央揃え */
  margin: 0 auto 12px;      /* ← 要素自体を中央配置に */
  max-width: 300px;         /* ← 幅を本文に近づけて安定 */
  color: #fff;
  display: inline;           /* ← 白を明示 */
}

.entry-instruction {
  font-size: 20px;
  line-height: 1.7;
}

.entry-instruction .highlight-last {
  font-size: 26px;         /* ← 通常より大きめに */
  color: #ed0000;          /* ← 既存色を踏襲（念のため） */
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 5px;
  display: block;           /* ← 改行して段落扱いに */
  margin-top: 8px; 
}
/*****************************
 区切り線
*****************************/
hr {
  height: 1px;
  background-color: #ffd700;
  width: 90%;
  margin: 30px auto;
  border: none;
  opacity: 0.6;
}

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

.footer .main {
  width: 90%;
  margin: 0 auto;
}

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

.footer ul li {
  display: inline-block;
  margin: 0 6px;
}

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

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

.p1 {
  font-size: 10px;
  color: #ccc;
  line-height: 1.4;
}

/*****************************
 アニメーション
*****************************/
@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);
  }
}

.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;
}
