/* =====================================
  全体ベース設定
===================================== */
@media screen and (min-width: 1025px) {
}

body {
  margin: 0 auto;
  text-align: left;
  padding: 0;
  background-color: #000;
  background-image: url(../../../../images/project/okcj/hero/背景.jpeg);
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden; /* 横スクロールを完全に禁止 */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #fff;
}

p {
  font-size: 28px; /*基本的な文字の大きさをしてい*/
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(../../../../images/project/okcj/hero/背景.jpeg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* FV直下ヒーロー風セクション */
.fv-hero-divider {
  height: 50px; /* セクションの高さ */
  background: linear-gradient(135deg, #ff3333 0%, #cc0000 50%, #660000 100%);
  position: relative;
  margin: 0 auto 0px;
  border-top: 3px solid #ffcc00;
  border-bottom: 3px solid #ffcc00;
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.3),
    0 6px 12px rgba(0, 0, 0, 0.4);
}

/* 稲妻エフェクトを擬似要素で */
.fv-hero-divider::before,
.fv-hero-divider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 215, 0, 0.2) 10px,
    transparent 10px,
    transparent 20px
  );
  mix-blend-mode: overlay;
}

.fv-hero-divider::after {
  right: 0;
  transform: scaleX(-1);
}

#wrapper {
  max-width: 100%;
}

.section-title {
  border: 2px solid #c00 !important;
  padding-bottom: 8px;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

hr {
  border: none; /* 余計な枠線を消す */
  border-top: 1px solid #ccc; /* 線の太さと色を指定 */
  height: 0; /* 高さは border-top で制御 */
  margin: 2rem 0; /* 上下に間隔をとる */
  /* 必要に応じて
  opacity: 0.5;
  border-style: dashed; などカスタマイズ可能 */
}

/* =====================================
  画像
===================================== */

#header .FV2 {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: -10px;
  margin-bottom: -55px;
}

.rogo1 {
  width: 50%;
  max-width: 50%;
  height: auto;
  display: block;
  margin: 5px auto;
}

.intro {
  width: 90%;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 5px auto;
}

.lp-intro-img {
  width: 90%;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 5px auto;
}

.hero-img {
  width: 40%;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 5px auto;
}

/* =====================================
  画像
===================================== */

/*位置*/
.br-sp {
  display: none;
}
.br-pc {
  display: none;
}

@media screen and (max-width: 768px) {
  .br-sp {
    display: inline;
  }
}

@media screen and (min-width: 769px) {
  .br-pc {
    display: inline;
  }
}

.center {
  text-align: center;
}

/*カラー*/
.red {
  color: red;
}

.blue {
  color: blue;
}

.white {
  color: white;
}

.yellow {
  color: rgb(255, 251, 0);
}
.black {
  color: black;
}

.bgred {
  background-color: red;
  color: white; /* 見やすさのために文字色も白に */
  display: inline-block;
  padding: 0.2em 0.5em; /* 背景に少し余白を付けると美しく見えます */
}

.bgorange {
  background-color: rgb(255, 165, 0);
  color: white; /* 見やすさのために文字色も白に */
  display: inline-block;
  padding: 0.2em 0.5em; /* 背景に少し余白を付けると美しく見えます */
}

.bgyellow {
  background-color: rgb(255, 251, 0);
  display: inline-block;
  padding: 0.2em 0.5em; /* 背景に少し余白を付けると美しく見えます */
}

.bgblue {
  background-color: rgb(0, 4, 255);
  color: white; /* 見やすさのために文字色も白に */
  display: inline-block;
  padding: 0.2em 0.5em; /* 背景に少し余白を付けると美しく見えます */
}
/*フォントサイズ*/
.b {
  font-weight: bold;
}
.fs20 {
  font-size: 25px;
}

.fs20 {
  font-size: 20px;
}

.fs25 {
  font-size: 25px;
}

.fs30 {
  font-size: 30px;
}

.fs35 {
  font-size: 35px;
}

.fs40 {
  font-size: 40px;
}
.fs50 {
  font-size: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

/*下線*/

.unred {
  border-bottom: 3px solid #ff0000;
  display: inline; /* 短いテキストなら inline でOK */
}

.unbl {
  border-bottom: 3px solid #000;
  display: inline; /* 短いテキストなら inline でOK */
}

.unye {
  border-bottom: 3px solid #f0ff1e;
  display: inline; /* 短いテキストなら inline でOK */
}

.unwh {
  border-bottom: 3px solid #ffffff;
  display: inline; /* 短いテキストなら inline でOK */
}
/* 念のため中央寄せを上書き */
p.fs40 {
  text-align: center !important;
}

/* =====================================
  画像
===================================== */

.kimura {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
}

/* =====================================
  バナー・見出し装飾系
===================================== */
.wide-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-image: url("../../../../images/project/okcj/hero/横長背景.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  box-sizing: border-box;
  padding: 20px;
  border-top: 4px solid rgb(255, 0, 0);
  border-bottom: 4px solid rgb(255, 0, 0);
}

.wide-banner-text {
  color: rgb(255, 0, 0);
  text-shadow: 2px 2px 2px black;
  letter-spacing: 0.1em;
  font-size: 40px;
  margin: 0;
}

/* =====================================
  コンテンツラップ・構造用スタイル
===================================== */
.frame-box {
  width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #420612;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1025px) {
  .frame-box {
    max-width: 50%;
  }
}

/* =/* ===== フォーム全体 ===== */ /* ===== フォーム全体 ===== */ /* ===== フォーム全体 ===== */ /* ===== フォーム全体 ===== */

/* ===============================
  フォーム全体
================================= */
.main-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 48px 32px 40px 32px;
  background: #ffffff; /* ネイビーパープル */
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(255, 223, 0, 0.15); /* Victory黄 */
  border: 5px solid #001b55;
  position: relative;
}

/* ===============================
  タイトル
================================= */
.form-title {
  font-size: 32px;
  text-align: center;
  color: #000000;
  margin-bottom: 44px;
  border-bottom: 2px solid #000000;
  padding-bottom: 14px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

/* ===============================
  入力フィールド
================================= */
.form-group {
  margin-bottom: 32px;
  color: #000000;
}

.form-group label {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.mailaddress {
  display: block;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.form-group .note {
  font-size: 18px;
  color: #000000;
  margin-bottom: 10px;
}

.form-group input[type="email"],
.form-group input[type="text"] {
  width: 100%;
  padding: 16px 18px;
  font-size: 17px;
  border: 1.5px solid #000000;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  transition: border 0.3s, box-shadow 0.3s;
  margin-bottom: 6px;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(255, 223, 0, 0.13);
}

.error {
  color: #ff1500;
  font-size: 15px;
  margin-top: 8px;
  text-align: left;
  padding-left: 4px;
}

/* ===============================
  ラジオボタンカスタマイズ
================================= */
.radio-group {
  margin-top: 20px;
  margin-bottom: 32px;
}

.radio-label-title {
  font-size: 25px !important;
  font-weight: bold;
  display: block;
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 0.03em;
  text-align: center;
}

.radio-btns {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.radio-btn-label {
  display: block;
  cursor: pointer;
}

.radio-btn-label input[type="radio"] {
  display: none;
}

.radio-btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 20px 0;
  font-size: 1.25em;
  border-radius: 32px;
  border: 2.5px solid #ffdf00;
  background: linear-gradient(90deg, #fffbe7 0%, #ffee58 100%);
  color: #232323;
  font-weight: bold;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(255, 223, 0, 0.15);
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.1s,
    box-shadow 0.2s;
  margin: 0 8px;
  text-align: center;
  user-select: none;
  position: relative;
}

.radio-btn-label input[type="radio"]:checked + .radio-btn-custom {
  background: linear-gradient(90deg, #ffee58 0%, #fdd835 100%);
  color: #3b2b6d;
  border: 2.5px solid #fdd835;
  box-shadow: 0 4px 16px rgba(255, 223, 0, 0.22);
  transform: scale(1.04);
}

.radio-btn-label input[type="radio"]:focus + .radio-btn-custom,
.radio-btn-label:hover .radio-btn-custom {
  border: 2.5px solid #fbc02d;
  box-shadow: 0 4px 16px rgba(255, 223, 0, 0.18);
  outline: none;
}

/* 銀行振込ボタン（青系） */
.radio-btn-label .radio-btn-custom.bank {
  background: linear-gradient(90deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2.5px solid #64b5f6;
  color: #232323;
}
.radio-btn-label input[type="radio"]:checked + .radio-btn-custom.bank {
  background: linear-gradient(90deg, #42a5f5 0%, #1e88e5 100%);
  color: #ffffff;
  border: 2.5px solid #1e88e5;
  box-shadow: 0 4px 16px rgba(66, 165, 245, 0.2);
}

/* クレジットボタン（赤系） */
.radio-btn-label .radio-btn-custom.credit {
  background: linear-gradient(90deg, #ffebee 0%, #ffcdd2 100%);
  border: 2.5px solid #ef9a9a;
  color: #232323;
}
.radio-btn-label input[type="radio"]:checked + .radio-btn-custom.credit {
  background: linear-gradient(90deg, #ef5350 0%, #c62828 100%);
  color: #ffffff;
  border: 2.5px solid #c62828;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.2);
}
/* ===============================
  スマホ対応：ラジオボタン縦並び
================================= */
@media screen and (max-width: 640px) {
  .radio-btns {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .radio-btn-label {
    width: 100%;
    max-width: 300px;
  }

  .radio-btn-custom {
    width: 100%;
  }
}

/* ===============================
  送信ボタン（薄い赤ベースに変更）
================================= */
.image-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  line-height: 0; /* 行ボックスを潰す */
  font-size: 0; /* 文字基準の余白も潰す */
  vertical-align: middle; /* 他要素とのズレ防止 */
}

.image-btn img {
  display: block;
  margin: auto;
  margin-top: -60px;
  margin-bottom: -60px;
  width: 70%; /* 必要に応じて100%に変更可 */
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.image-btn:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.8));
}
/* ===============================
  送信ボタンここまで
================================= */

/* ===== フォーム全体ここまで ===== */ /* ===== フォーム全体ここまで ===== */ /* ===== フォーム全体ここまで ===== */ /* ===== フォーム全体ここまで ===== */

/* ===============================
  サポートリンク（変更なし）
================================= */
.support-link {
  position: static;
  text-align: right;
  z-index: 10;
  margin-top: 30px;
  transform: none;
  padding-right: 0;
}

/***要綱***/
.vg-box {
  position: relative;
  background: linear-gradient(
    135deg,
    #ff6600,
    #cc0000
  ); /* オレンジ～赤ベース */
  border: 3px solid #000000;
  border-radius: 12px;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #fff;
  overflow: hidden;
}

/* 疑似要素でV字パターンを重ねる */
.vg-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.08) 0 20px,
      transparent 20px 40px
    ),
    repeating-linear-gradient(
      -135deg,
      rgba(0, 0, 0, 0.08) 0 20px,
      transparent 20px 40px
    );
  opacity: 0.3; /* V字をうっすら見せる */
  z-index: 0;
}

/* 中身を前面に */
.vg-box * {
  position: relative;
  z-index: 1;
}

/* テーブル */
.vg-table {
  width: 100%;
  border-collapse: collapse;
}

.vg-table th,
.vg-table td {
  padding: 18px 16px;
  border: 3px solid rgba(0, 0, 0, 0.4);
  vertical-align: top;
  font-size: 22px;
}

/* 左カラム */
/* 左カラム */
.vg-table tr td:first-child {
  width: 150px;
  background: linear-gradient(135deg, #ff7a00, #cc3300); /* オレンジ〜濃赤 */
  color: #fffbe6; /* 白寄りのクリーム色で視認性UP */
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}

/* 右カラム */
.vg-table tr td:nth-child(2) {
  color: #fff8f0; /* ほんのりオレンジを含んだ白 */
  font-size: 1rem;
  line-height: 1.8;
  padding: 20px;
}

/* 強調カラー */
.vg-highlight-yellow {
  color: #fffb00;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 80, 0, 0.9); /* 炎っぽい赤 */
}

.vg-highlight-blue {
  color: #66d0ff; /* 少し明るめのシアンでオレンジ背景とコントラスト */
  font-weight: 900;
  text-shadow: 0 0 10px rgba(0, 180, 255, 0.8);
}

/* ===============================
  冒頭文・実績・ユーザーの声セクション
================================= */

.lp-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.lp-section {
  margin-bottom: 3rem;
}

/* タイトル */
/* lp-intro セクション */
/* lp-intro セクション */
.lp-intro {
  text-align: center;
}
.lp-intro .lp-title {
  font-size: 50px;
  font-weight: 900;
  /* 常時揺れ */
  animation: shakeQuake 0.8s infinite;
}

/* 地震風の揺れ */
@keyframes shakeQuake {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2px, -1px);
  }
  20% {
    transform: translate(2px, 1px);
  }
  30% {
    transform: translate(-2px, 1px);
  }
  40% {
    transform: translate(2px, -1px);
  }
  50% {
    transform: translate(-1px, 1px);
  }
  60% {
    transform: translate(1px, -1px);
  }
  70% {
    transform: translate(-1px, -1px);
  }
  80% {
    transform: translate(1px, 1px);
  }
  90% {
    transform: translate(-1px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* 本文 */
.lp-intro .lp-text {
  font-size: 30px;
  line-height: 1.9;
  color: #ffffff;
  margin: 0 auto 2rem auto;
  max-width: 750px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* サブタイトル */
.lp-intro .lp-subtitle {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* 実績画像 */
/* 実績画像一覧：縦並び＆100% */
/* 実績画像一覧：縦並び＆中央寄せ */
.lp-image-grid {
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央寄せ */
  gap: 2rem; /* 画像同士の余白 */
}

.lp-img {
  width: 80%;
  max-width: 800px; /* PCでは中央で見やすい幅に制限 */
  height: auto;
  border-radius: 8px;
  border: 2px solid #b30000;
  box-shadow: 0 4px 12px rgba(179, 0, 0, 0.2);
}

/* ユーザーの声セクション */
.lp-voices {
  background: linear-gradient(135deg, #1a1a1a, #2c2c54);
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

/* 光の演出（背景にキラッと流れる線） */
.lp-voices::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  animation: shine 12s linear infinite;
}
@keyframes shine {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* セクションタイトル */
.lp-voices .lp-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffd700;
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 140, 0, 0.6);
  letter-spacing: 0.05em;
}

.lp-voices .lp-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #ff4500, #ffd700, #ff4500);
  margin: 1rem auto 0;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* 声のカード */
.lp-voice-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.6);
  border-radius: 12px;
  padding: 1.8rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(6px);
}

.lp-voice-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6),
    inset 0 0 12px rgba(255, 255, 255, 0.1);
}

/* 名前（エンブレム風） */
.lp-voice-name {
  font-size: 22px;
  font-weight: bold;
  color: #f5f5f5;
  background: linear-gradient(
    90deg,
    #444,
    #666,
    #444
  ); /* 落ち着いたグレートーン */
  padding: 0.4rem 1.2rem;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 0.8rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5), inset 0 0 4px rgba(255, 255, 255, 0.1);
  letter-spacing: 0.05em;
}
.lp-voice-card .center {
  margin-top: -30px;
}
/* 本文 */
.lp-voice-text {
  font-size: 26px;
  line-height: 1.7;
  color: #eee;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

/* セクション2つ目 */ /* セクション2つ目 */ /* セクション2つ目 */ /* セクション2つ目 */ /* セクション2つ目 */
.lp-event {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,0 100,100 0,100" style="fill:%23dc143c;" /><path d="M-10,30 L110,60 L-10,90 z" style="fill:rgba(255,255,255,0.1);" /></svg>'),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,0 100,100 0,100" style="fill:%23dc143c;" /><path d="M-10,30 L110,60 L-10,90 z" style="fill:rgba(255,255,255,0.1);" /></svg>'),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23fed7aa' stroke-width='2' %3E%3Cpath d='M-5,10 l110,80'/%3E%3Cpath d='M-5,30 l110,80'/%3E%3Cpath d='M-5,50 l110,80'/%3E%3Cpath d='M-5,70 l110,80'/%3E%3Cpath d='M-5,90 l110,80'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23fed7aa' stroke-width='2' %3E%3Cpath d='M-5,10 l110,80'/%3E%3Cpath d='M-5,30 l110,80'/%3E%3Cpath d='M-5,50 l110,80'/%3E%3Cpath d='M-5,70 l110,80'/%3E%3Cpath d='M-5,90 l110,80'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  position: relative;
}

.lp-event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.lp-container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lp-event-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border: 2px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-top: -40px;
}

.lp-event-image {
  max-width: 600px;
  margin: 0 auto 30px;
}

.lp-img {
  border: 3px solid #ffd700;
}

.lp-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #ffd700;
  margin-bottom: 20px;
}

.lp-highlight {
  background: rgba(255, 215, 0, 0.2);
  padding: 20px;
  border: 1px solid #ffd700;
  text-align: center;
  font-size: 25px;
  line-height: 1.8;
  margin: 30px 0;
}

.lp-center-key {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffd700;
}

.lp-center-key1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff0022;
}

.lp-subtitle {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #ffd700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 10px;
}

.lp-subtitle1 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #ffd700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 30px;
}

.lp-offer {
  background-color: #2c3e50;
  padding: 25px;
  border: 3px solid #ffd700;
  margin-top: 30px;
  text-align: center;
}

.lp-offer-price {
  font-size: 30px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

.lp-offer-deadline {
  font-size: 30px;
  color: #f0f0f0;
}

.lp-btn {
  display: inline-block;
  background-color: #e74c3c;
  color: #fff;
  padding: 15px 40px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.lp-btn:hover {
  background-color: #c0392b;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .main {
    padding: 2rem 1rem;
  }
  .subhead {
    font-size: 2.2rem;
  }
  .youkou_t th {
    display: block;
    width: 100%;
  }
  .youkou_t td {
    display: block;
    width: 100%;
  }

  .lp-center-key {
    font-size: 2rem;
  }
  .lp-highlight {
    font-size: 1.2rem;
  }
  .lp-subtitle {
    font-size: 1.5rem;
  }
  .lp-btn {
    font-size: 1.2rem;
  }
}

/* セクション全体 */
.lp-new-structure {
  color: #fff; /* 全体文字は白ベース */
  line-height: 1.8;
  padding: 3rem 1rem;
  margin-top: -100px;
}

.lp-container {
  max-width: 900px;
  margin: 0 auto;
}

/* 各ブロック */
.lp-block {
  margin-bottom: 2.5rem;
}

/* 見出し */
.lp-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #ffd900;
}

.lp-subtitle {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff; /* 白文字 */
}

.lp-misunderstanding .lp-subtitle1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ff0000; /* 白文字 */
}

/* リード文（冒頭挨拶） */
.lp-lead {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* 箇条書きリスト */
.lp-list {
  margin: 1rem 0 1.5rem 1.2rem;
  padding: 0;
  list-style: disc;
  color: #fff;
}

.lp-list li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

/* 強調テキスト */
.lp-alert {
  font-size: 40px;
  font-weight: bold;
  color: #ff0022;
  text-align: center;
  margin: 1.5rem 0;
}

/* 全体 */
.lp-history {
  color: #fff; /* 白文字固定 */
}

/* タイムライン全体 */
.lp-history-timeline {
  margin: 30px 0;
  font-size: 27px;
  color: rgb(255, 42, 42);
}

/* 各項目 */
.lp-history-list li {
  text-align: center;
  margin-bottom: 20px;
  list-style: none;
}

/* 枠付きボックス */
.lp-history-box {
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #fff; /* 白枠 */
  border-radius: 8px;
  background: rgb(250, 243, 243);
  color: rgb(255, 0, 0);
  line-height: 1.6;
  font-weight: 600;
  max-width: 600px;
}

/* 年月部分 */
.lp-history-box .lp-time {
  display: inline-block;
  font-weight: bold;
  margin-right: 8px;
  min-width: 120px;
  color: #000000;
}

/* 矢印 */
.lp-arrow {
  margin: 10px 0;
  font-size: 22px;
  color: #fff;
  opacity: 0.9;
}

/* サマリー */
.lp-summary {
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  text-align: center;
}

/* 初期状態（非表示・左にずらす） */
.lp-history-list li {
  opacity: 0;
  transform: translateX(-60px);
}

/* 表示状態（JSで追加） */
.lp-history-list li.active {
  animation: slideIn 0.8s ease forwards;
}

/* 横からスライドイン */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 順番に出すための遅延 */
.lp-history-list li:nth-child(1) {
  animation-delay: 0s;
}
.lp-history-list li:nth-child(2) {
  animation-delay: 1s;
}
.lp-history-list li:nth-child(3) {
  animation-delay: 2s;
}
.lp-history-list li:nth-child(4) {
  animation-delay: 3s;
}
.lp-history-list li:nth-child(5) {
  animation-delay: 4s;
}

/* 全体のループ管理 */
.lp-history-list {
  animation: fadeOutAll 1s ease forwards;
  animation-delay: 8s; /* 全部揃った後に消えるタイミング */
  animation-iteration-count: infinite;
}

/* コメントリスト */
.lp-comments {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  text-align: center; /* 吹き出し中央寄せ */
}

.lp-comments li {
  margin-bottom: 1.5rem;
}

/* 吹き出し */
.lp-comment-bubble {
  display: inline-block; /* 中央寄せに効かせる */
  background: #ddd;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 25px;
  font-weight: 600;
  color: #000000;
  line-height: 1.6;
  position: relative;
  max-width: 600px;
  text-align: left;
}

/* 全体：白文字固定 */
.lp-top7 {
  color: #fff;
  text-align: center;
  margin: 40px 0;
  font-size: 30px;
}

/* 段階ごとの盛り上がり */
.lp-top7 .step {
  margin: 20px 0;
  padding: 10px 0;
  transition: all 0.3s ease;
}

/* 1段階目：シンプルに始まる */
.lp-top7 .step1 {
  font-size: 1em;
  opacity: 0.9;
}

/* 2段階目：光の演出を少し追加 */
.lp-top7 .step2 {
  font-size: 1.05em;
  font-weight: 500;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), transparent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* 3段階目：熱量を強調 */
.lp-top7 .step3 {
  font-size: 1.1em;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.3), transparent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 0 12px rgba(255, 140, 0, 0.8);
  transform: scale(1.02);
}

/* クライマックス */
.lp-top7 .climax {
  margin-top: 25px;
  font-size: 45px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff0000, #ff6600, #ffff00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* グラデ文字 */
  text-shadow: 0 0 20px rgba(255, 100, 0, 0.9);
  animation: glowText 2s infinite;
  margin: -50px;
}

/* 光るアニメーション */
@keyframes glowText {
  0% {
    text-shadow: 0 0 10px rgba(255, 100, 0, 0.6);
  }
  50% {
    text-shadow: 0 0 25px rgba(255, 150, 0, 1);
  }
  100% {
    text-shadow: 0 0 10px rgba(255, 100, 0, 0.6);
  }
}

.hero-catch {
  font-size: 40px;
  font-weight: 900;
  color: #ff0000;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, #ffb400, #ffd700, #ffb400);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);

  /* ここを追加 */
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}
.predictors {
  margin: 60px auto;
  max-width: 900px;
  color: #fff;
}

/* タイトル */
.predictors-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 3px solid #ffd700;
  display: inline-block;
  padding-bottom: 5px;
}

/* 導入文 */
.predictors-intro {
  margin: 40px auto 60px;
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 800px; /* 読みやすい幅に制限 */
  text-align: left; /* 基本は左寄せ */
  padding-left: 3%; /* 左に少し余白を持たせる */
}
.predictors-intro p {
  margin-bottom: 20px;
  margin: 0 auto;
  text-align: left;
}

/* 予想家ブロック */
.predictor {
  margin: 50px 0;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.4); /* 背景に馴染む半透明 */
  border-radius: 10px;
}

/* 見出し */
.predictor-number {
  font-size: 1.2em;
  color: #ffd700;
  margin-bottom: 5px;
}
.predictor-name {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
}

/* プロフィール */
.predictor-profile {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 0.95em;
  line-height: 1.6;
}

/* 本文 */
.predictor-body {
  text-align: left;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.heroes {
  margin: 60px auto;
  max-width: 1000px;
  text-align: center;
  color: #fff;
}
.heroes-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 4px solid #ffd700;
  display: inline-block;
  padding-bottom: 8px;
}

.hero {
  margin: 30px 0;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* 見出し */
.hero-number {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 15px;
  text-decoration: underline white;
  text-underline-offset: 6px; /* 下線を下にずらす */
}
.hero-name {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* プロフィール */
.hero-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0 auto 20px;
  list-style: none;
  max-width: 700px;
}

/* 本文 */
.hero-body {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
}

/* ===== パーソナルカラー設定 ===== */
/* 01 レッド */
.hero01 {
  background: conic-gradient(
        from 45deg,
        rgba(255, 255, 255, 0.07) 25%,
        transparent 25% 50%,
        rgba(255, 255, 255, 0.07) 50% 75%,
        transparent 75%
      )
      0 0/30px 30px,
    linear-gradient(135deg, #b30000, #ff4d4d);
}

/* 02 ピンク */
.hero02 {
  background: conic-gradient(
        from 45deg,
        rgba(255, 255, 255, 0.07) 25%,
        transparent 25% 50%,
        rgba(255, 255, 255, 0.07) 50% 75%,
        transparent 75%
      )
      0 0/30px 30px,
    linear-gradient(135deg, #cc3399, #ff66cc);
}

/* 03 ブルー */
.hero03 {
  background: conic-gradient(
        from 45deg,
        rgba(255, 255, 255, 0.07) 25%,
        transparent 25% 50%,
        rgba(255, 255, 255, 0.07) 50% 75%,
        transparent 75%
      )
      0 0/30px 30px,
    linear-gradient(135deg, #003399, #3399ff);
}

/* 04 グリーン */
.hero04 {
  background: conic-gradient(
        from 45deg,
        rgba(255, 255, 255, 0.07) 25%,
        transparent 25% 50%,
        rgba(255, 255, 255, 0.07) 50% 75%,
        transparent 75%
      )
      0 0/30px 30px,
    linear-gradient(135deg, #006600, #33cc33);
}

/* 05 オレンジ */
.hero05 {
  background: conic-gradient(
        from 45deg,
        rgba(255, 255, 255, 0.07) 25%,
        transparent 25% 50%,
        rgba(255, 255, 255, 0.07) 50% 75%,
        transparent 75%
      )
      0 0/30px 30px,
    linear-gradient(135deg, #cc6600, #ff9933);
}

/* 06 イエロー（可読性を確保） */
.hero06 {
  background: conic-gradient(
        from 45deg,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 25% 50%,
        rgba(255, 255, 255, 0.1) 50% 75%,
        transparent 75%
      )
      0 0/30px 30px,
    linear-gradient(135deg, #009999, #20ac7d);
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
/* 07 パープル */
.hero07 {
  background: conic-gradient(
        from 45deg,
        rgba(255, 255, 255, 0.07) 25%,
        transparent 25% 50%,
        rgba(255, 255, 255, 0.07) 50% 75%,
        transparent 75%
      )
      0 0/30px 30px,
    linear-gradient(135deg, #333399, #9999ff);
}

.hero-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px; /* 項目間の余白 */
  padding: 0;
  margin: 0 auto 20px;
  list-style: none;
  max-width: 700px;
}

.hero-profile li {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}
.hero-profile li:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* アイコン風にする場合の例 */
.hero-profile li::before {
  content: "★";
  margin-right: 6px;
  color: #ffd700; /* ゴールドアイコン */
}

/* スタイル専用（共通デザイン） */
.hero-style {
  display: block;
  max-width: 700px;
  margin: 15px auto 25px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

/* 予想家01：レッド */
.hero01-style {
  background: linear-gradient(135deg, #b30000, #ff4d4d);
  border: 2px solid #ffcccc;
}

/* 予想家02：ピンク */
.hero02-style {
  background: linear-gradient(135deg, #cc3399, #ff66cc);
  border: 2px solid #ffd6f0;
}

/* 予想家03：ブルー */
.hero03-style {
  background: linear-gradient(135deg, #003399, #3399ff);
  border: 2px solid #cce0ff;
}

/* 予想家04：グリーン */
.hero04-style {
  background: linear-gradient(135deg, #006600, #33cc33);
  border: 2px solid #ccffcc;
}

/* 予想家05：オレンジ */
.hero05-style {
  background: linear-gradient(135deg, #cc6600, #ff9933);
  border: 2px solid #ffe0cc;
}

/* 予想家06：emeradru */
.hero06-style {
  background: linear-gradient(
    135deg,
    #00cccc,
    #66ffcc
  ); /* ターコイズ〜エメラルド */
  border: 2px solid #ccffeb; /* 薄いグリーン系で縁取り */
  color: #003333; /* 深いグリーン寄りで読みやすく */
  font-weight: 700;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4); /* 光沢感を追加 */
}
/* 予想家07：パープル */
.hero07-style {
  background: linear-gradient(135deg, #333399, #9999ff);
  border: 2px solid #e0e0ff;
}

.hero-works {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* 上の1枚 */
.hero-work-top img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* 下の2枚 */
.hero-work-bottom {
  display: flex;
  gap: 15px;
  justify-content: center;
  width: 100%;
}
.hero-work-bottom img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* スマホ対応（縦並び） */
@media (max-width: 768px) {
  .hero-work-top img {
    width: 100%;
    max-width: 100%;
  }
  .hero-work-bottom {
    flex-direction: column;
    align-items: center;
  }
  .hero-work-bottom img {
    width: 100%;
    max-width: 100%;
  }
}

.heroes-footer {
  margin: 80px auto;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.heroes-message {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* リード文（冒頭） → 黄色＋下線 */
.heroes-message .lead {
  font-size: 35px;
  font-weight: bold;
  color: #ffff33;
  text-decoration: underline;
  text-underline-offset: 6px;
  margin-bottom: 30px;
  text-shadow: 0 0 6px rgba(255, 255, 150, 0.8);
}

/* 区切り線 */
.heroes-message .divider {
  margin: 30px auto;
  font-size: 1.2em;
  color: #fff;
  opacity: 0.8;
}

/* 中盤の強調（太文字） */
.heroes-message .text-strong {
  font-weight: bold;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  font-size: 35px;
}

/* highlight → 黄色背景透過のバッジ風 */
.heroes-message .highlight {
  background: rgba(255, 255, 50, 0.15);
  padding: 6px 12px;
  border-radius: 6px;
  color: #ffff33;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-shadow: 0 0 10px rgba(255, 255, 120, 0.8);
}

.heroes-message .closing {
  font-size: 35px;
  font-weight: 900;
  margin-top: 50px;
  margin-bottom: -50px;
  display: inline-block;
  padding: 16px 26px;
  color: #ffff33; /* 黄色メインに変更 */
  text-transform: uppercase;
  border: 4px solid #ffff33;
  border-radius: 8px;
  transform: skew(-8deg);
  position: relative;
  overflow: hidden;

  /* 背景を明るめに修正 */
  background: linear-gradient(135deg, #ffcc33, #ff9933);

  /* 黒縁取りでロゴ感を維持 */
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000,
    2px 2px 0 #000, 0 0 12px rgba(255, 255, 100, 0.9);
}

/* 後光エフェクト */
.heroes-message .closing::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 180, 0.35) 0%,
    transparent 70%
  );
  z-index: -1;
  animation: hero-shine 6s linear infinite;
}

@keyframes hero-shine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.heroes-proof {
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.proof-message {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* 強調（冒頭） */
.proof-message .lead {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.proof-message .text-strong {
  color: #ffff33;
  text-shadow: 0 0 6px rgba(255, 255, 120, 0.9);
}

/* 安心ポイント強調 */
.proof-message .highlight {
  font-size: 1.2em;
  font-weight: bold;
  background: rgba(255, 255, 50, 0.15);
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-block;
  margin: 20px 0;
  color: #ffff66;
  text-shadow: 0 0 8px rgba(255, 255, 150, 0.8);
}

/* 実績数値部分 */
.proof-stats {
  margin: 40px 0;
  padding: 25px;
  border: 2px solid #ffff33;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
}
.proof-stats .big-number {
  font-size: 35px;
  font-weight: 900;
  color: #ffff33;
  text-shadow: 0 0 10px rgba(255, 255, 120, 0.9);
}

.proof-stats .big-number1 {
  font-size: 45px;
  font-weight: 900;
  color: #ffff33;
  text-shadow: 0 0 10px rgba(255, 255, 120, 0.9);
}

/* 締め（コメント導入） */
.proof-message .closing {
  font-size: 30px;
  font-weight: bold;
  margin-top: 40px;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.catch-phrase {
  font-size: 1.4em;
  font-weight: bold;
  color: #ff4444; /* 明るい赤 */
  margin: 30px 0;
  padding: 18px 24px;
  display: inline-block;
  border: 3px solid #ff6666;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6666, #ff3333);
  text-shadow: 0 0 6px rgba(255, 200, 200, 0.8);
  box-shadow: 0 0 15px rgba(255, 80, 80, 0.6);
  transform: skew(-3deg); /* 戦隊ロゴっぽく斜め */
}

.catch-phrase span {
  font-size: 1.6em;
  color: #fff;
  text-shadow: 2px 2px 0 #b30000, -2px -2px 0 #b30000; /* 白文字＋赤縁取り */
}

/* 全体の枠 */
.tgq-voice-section {
  border: 3px solid #ff4444;
  border-radius: 12px;
  padding: 40px 25px;
  margin: 60px auto;
  max-width: 900px;
  background: #fff;
  position: relative;
  overflow: hidden; /* 背景模様がはみ出ないように */
}

/* 幾何学背景 */
.tgq-voice-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 68, 68, 0.08) 0,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 68, 68, 0.08) 0,
      transparent 60%
    ),
    linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.03) 25%,
      transparent 25%,
      transparent 75%,
      rgba(0, 0, 0, 0.03) 75%
    ),
    linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.03) 25%,
      transparent 25%,
      transparent 75%,
      rgba(0, 0, 0, 0.03) 75%
    );
  background-size: 200px 200px, 300px 300px, 40px 40px, 40px 40px;
  z-index: 0;
}

/* コンテンツを前面に */
.tgq-voice-section > * {
  position: relative;
  z-index: 1;
}

/* 見出し */
.tgq-voice-heading {
  font-size: 1.9rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 35px;
  color: #000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.tgq-voice-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* 個々のカード */
.tgq-voice-card {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  background: #fafafa;
  background-clip: padding-box;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s, border 0.4s;
}

/* ヘッダー（アイコン＋名前） */
.tgq-voice-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 18px;
}

/* アイコン */
.tgq-voice-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #ff4444;
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tgq-voice-icon:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 0 25px #ff4444;
}

/* 名前＆競馬歴 */
.tgq-voice-meta {
  text-align: left;
}
.tgq-voice-name {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  margin-bottom: 6px;
}
.tgq-voice-history {
  font-size: 0.9rem;
  color: #666;
}

/* 本文 */
.tgq-voice-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  padding: 5px 0;
}
.tgq-voice-body p {
  margin-bottom: 1rem;
}

/* 備考（最後の注釈） */
.tgq-voice-note {
  text-align: right;
  font-size: 0.85rem;
  color: #999;
  margin-top: 20px;
}

/* ===== 先行提供セクション ===== */
.voice-section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* 背景にヒーロー風の演出を追加（稲妻・ドット柄を意識） */
.voice-section::before {
  content: "";
  position: absolute;

  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: radial-gradient(
      circle at center,
      rgba(255, 215, 0, 0.15) 0%,
      transparent 70%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 0, 0, 0.1) 0px,
      rgba(255, 0, 0, 0.1) 2px,
      transparent 2px,
      transparent 6px
    );
  z-index: 0;
}

/* コンテンツボックス */

/* 各テキストスタイル */
.voice-lead {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #ffffff; /* 赤みを帯びた強調 */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.voice-main {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #fbff00, #ffd900); /* 金→オレンジ */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.voice-cta {
  font-size: 40px;
  font-weight: 900;
  margin-top: 50px;
  display: inline-block;
  padding: 16px 26px;
  color: #ffff33; /* 黄色メインに変更 */
  text-transform: uppercase;
  border: 4px solid #ffff33;
  border-radius: 8px;
  transform: skew(-8deg);
  position: relative;
  overflow: hidden;

  /* 背景を明るめに修正 */
  background: linear-gradient(180deg, #ff4d4d, #cc0000); /* ボタン風に見せる */

  /* 黒縁取りでロゴ感を維持 */
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000,
    2px 2px 0 #000, 0 0 12px rgba(255, 255, 100, 0.9);
}

.voice-cta1 {
  font-size: 30px;
  font-weight: 900;
  display: inline-block;
  padding: 16px 26px;
  color: #ffff33; /* 黄色メインに変更 */
  text-transform: uppercase;
  border: 4px solid #ffff33;
  border-radius: 8px;
  transform: skew(-8deg);
  position: relative;
  overflow: hidden;

  /* 背景を明るめに修正 */
  background: linear-gradient(180deg, #ff4d4d, #cc0000); /* ボタン風に見せる */

  /* 黒縁取りでロゴ感を維持 */
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000,
    2px 2px 0 #000, 0 0 12px rgba(255, 255, 100, 0.9);
}

/* ===== サービス紹介セクション ===== */
.service-section {
  padding: 60px 20px;
  font-size: 30px;
  color: #fff;
}

.service-intro p {
  font-size: 30px;
  margin-bottom: 20px;
}

.service-intro .highlight {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffdd33;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.service-intro .em {
  color: #ff3333;
  font-weight: bold;
}

.service-screen {
  margin: 40px 0;
}

.service-screen h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffcc00;
}

.service-img {
  margin-top: 20px;
  max-width: 90%;
  border: 4px solid #ffcc00;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.service-howto {
  margin: 40px auto;
  padding: 25px 20px;
  max-width: 700px;
  border: 3px solid #ffcc00; /* 枠線を金色に */
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6); /* 半透明で背景を引き締め */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.service-howto h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.service-howto p {
  margin-bottom: 15px;
  font-size: 27px;
}

.mark-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
  display: inline-block;
}

.mark-list li {
  margin-bottom: 8px;
  font-size: 25px;
}

.service-voices {
  margin-top: 40px;
}

.service-voices .warning {
  color: #ff6666;
  font-weight: bold;
  margin-bottom: 10px;
}

.balloon-wrap {
  display: flex;
  flex-direction: column; /* 縦方向に並べる */
  gap: 20px; /* 吹き出し同士の余白 */
  align-items: center; /* 中央寄せ */
}

.warning {
  position: relative;
  background: #fce4ec;
  color: #333;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 25px;
  line-height: 1.6;
  max-width: 700px;
  text-align: center; /* 中のテキストも中央揃え */
}

/* 吹き出しの三角部分（下側中央に出す） */
.warning::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #fce4ec transparent transparent transparent;
}

/* ===== サービス特徴セクション ===== */
.service-feature {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

/* 特徴の枠（ここだけ強調） */
.feature-box {
  margin: 30px auto;
  padding: 25px 20px;
  max-width: 750px;
  border: 3px solid #ffcc00;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.feature-box h2 {
  font-size: 35px;
  margin-bottom: 15px;
  color: #ffdd33;
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.feature-list li {
  font-size: 25px;
  color: #ffff00;
  margin-bottom: 8px;
}

/* 全体リストを中央寄せ */
.mark-guide {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 700px;
  text-align: center;
}

/* 各項目をカード風に */
.mark-guide li {
  font-size: 20px;
  color: #ff0000; /* 文字は白 */
  font-weight: 900;
  margin: 1rem auto;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: inline-block;
  width: 90%;
  max-width: 600px;
  text-align: left;
}

/* ラベル */
.mark-guide li span {
  display: inline-block;
  min-width: 70px;
  font-weight: 900;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  margin-right: 0.8rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: #111; /* ラベル内の文字は黒寄りにして視認性UP */
  background: #000000;
}

/* 本命（ゴールド） */
.mark-guide li.honmei {
  background: linear-gradient(135deg, #d4af37, #ffd700);
}
.mark-guide li.honmei span {
  background: #ffd700;
}

/* 対抗（シルバー） */
.mark-guide li.taikou {
  background: linear-gradient(135deg, #aaa, #ddd);
}
.mark-guide li.taikou span {
  background: #c0c0c0;
}

/* 穴（黒系） */
.mark-guide li.ana {
  background: linear-gradient(135deg, #888888, #ffffff);
}
.mark-guide li.ana span {
  background: #444;
  color: #fff; /* 黒ベースなので白文字に */
}

/* サービスまとめは通常表示 */
.feature-summary {
  margin: 50px auto;
  max-width: 750px;
  text-align: left;
}

.feature-summary h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffcc00;
}

.feature-summary .highlight {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffdd33;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
/* 全体ボックス */
.schedule-box {
  background: #fff;
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* 見出しっぽい一文 */
.schedule-box .highlight {
  font-size: 40px;
  font-weight: 900;
  color: #d4af37;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* スケジュールリスト */
.race-schedule {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.race-schedule li {
  font-size: 25px;
  font-weight: 600;
  margin: 0.5rem 0;
  color: #333;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  background: #f7f7f7;
  display: inline-block;
  min-width: 220px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}

/* 合計文 */
.schedule-summary {
  font-size: 30px;
  font-weight: 700;
  color: #444;
  margin-top: 1rem;
}
/* ===== サービス料金セクション全体 ===== */
.service-price {
  padding: 70px 20px;
  color: #fff;
  line-height: 1.8;
}

/* 見出し装飾 */
.service-price h2,
.service-price h3 {
  font-size: 1.6rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ffd700, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  margin: 25px 0;
}

/* 打ち消し価格 */
.price-old {
  text-decoration: line-through;
  color: #aaa;
  font-weight: bold;
  font-size: 1.2rem;
}

/* 強調テキスト（会議→鶴岡部分） */
.highlight-step {
  font-weight: bold;
  color: #ffcc00;
  font-size: 30px;
  margin: 25px 0;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
}

/* 新価格 */
.price-new {
  font-size: 50px; /* 少し大きく */
  font-weight: 900;
  color: #ffeb3b; /* 鮮やかなイエロー */
  margin: 25px 0;
  text-align: center;
  letter-spacing: 0.08em;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.9), 0 0 12px rgba(255, 235, 59, 0.8),
    0 0 20px rgba(255, 215, 0, 0.8);
  background: linear-gradient(90deg, #ff0000, #ff8800, #ff0000);
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  animation: pulseGlow 1.8s infinite;
}

/* 光るアニメーション */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.9);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
}

/* ===== 吹き出し（赤×金ヒーロー風） ===== */
.speech-bubble.hero-bubble {
  position: relative;
  max-width: 700px;
  margin: 40px auto;
  padding: 25px 30px 40px; /* 下余白を少し広く */
  background: linear-gradient(180deg, #ff4444, #cc0000);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  line-height: 1.6;
  border: 2px solid #ffcc00;
}

/* 吹き出しの三角 */
.speech-bubble.hero-bubble::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 60px;
  border-width: 20px 16px 0;
  border-style: solid;
  border-color: #cc0000 transparent transparent transparent;
  filter: drop-shadow(0 -3px 3px rgba(0, 0, 0, 0.3));
}

/* 吹き出し本文 */
.bubble-text {
  font-style: italic;
  font-weight: 500;
}

/* 発言者名 */
.bubble-name {
  margin-top: 15px;
  text-align: right;
  font-weight: bold;
  color: #ffdd33;
}

/* 吹き出し右下アイコン */
.speech-bubble.hero-bubble::before {
  content: "💬";
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 1.4rem;
  color: #ffdd33;
  opacity: 0.9;
}

/* 強調ワード */
.emphasis {
  font-size: 45px;
  font-weight: bold;
  color: #ffdd33;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
.keyword {
  color: #ff6666;
  font-weight: bold;
}

/* 吹き出し */
.speech-bubble.hero-bubble {
  position: relative;
  max-width: 650px;
  margin: 40px auto;
  padding: 20px 25px 60px; /* 下に少し余白を作る */
  background: linear-gradient(180deg, #ff4444, #cc0000);
  color: #fff;
  border-radius: 14px;
  border: 2px solid #ffcc00;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
}

/* セリフ本文 */
.bubble-text {
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
  font-size: 25px;
}

/* 発言者部分 */
.bubble-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 15px;
  left: 20px; /* 左下に配置 */
}

.name-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #ffcc00;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.bubble-name {
  font-weight: bold;
  font-size: 1rem;
  color: #ffdd33;
}

.service-offer {
  padding: 60px 20px;
  color: #fff;
  line-height: 1.8;
}

/* 対象者リスト */
.target-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  display: inline-block;
}
.target-list li {
  font-size: 25px;
  margin-bottom: 8px;
  color: #ffdd33;
}

/* 特典タイトル */
.special-title {
  font-size: 30px;
  font-weight: bold;
  margin: 30px 0 15px;
  color: #ffcc00;
}

/* 特典強調 */
.highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffdd33;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  margin: 20px 0;
}

.highlight1 {
  font-size: 35px;
  font-weight: bold;
  color: #ffdd33;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  margin: 20px 0;
}
/* インパクト強調 */
.impact {
  font-size: 30px;
  font-weight: bold;
  color: #ff3333;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
  margin: 15px 0;
}

.deadline-box {
  margin: 40px auto;
  text-align: center;
}

/* タイトル */
.deadline-title {
  font-size: 48px; /* サイズアップ */
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.9),
    /* 濃い赤の外側光 */ 0 0 16px rgba(255, 0, 0, 0.8),
    /* 二重の赤光 */ 0 0 24px rgba(255, 0, 0, 0.7); /* 奥行き */
  letter-spacing: 2px; /* 文字間を広げて迫力アップ */
  text-transform: uppercase; /* 全部大文字に（必要なら） */
  animation: flash 1s infinite alternate; /* 点滅アニメーション */
}

/* 点滅アニメーション */
@keyframes flash {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
/* 期間表示 */
.period {
  font-size: 30px;
  font-weight: bold;
  color: #ff0000; /* ゴールド寄り */
  margin: 10px 0;
}

/* 締め切り表示 */
.deadline {
  font-size: 35px;
  font-weight: 900;
  color: #fbff00;
  margin: 12px 0;
  text-decoration: underline; /* 締切感を強調 */
  text-underline-offset: 4px;
}

/* 注意文 */
.note {
  font-size: 25px;
  color: #ffffff;
  margin-top: 10px;
}

.closing {
  font-size: 45px;
  font-weight: bold;
  color: #ffff33;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
  margin-top: 30px;
  text-align: center;
}

.service-cta-button {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  background: linear-gradient(90deg, #222, #444);
  border: 2px solid #ff0000;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  transition: all 0.2s ease;
}

.service-cta-button:hover {
  background: linear-gradient(90deg, #444, #666);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
  transform: translateY(-3px);
}

.cta-wrapper {
  text-align: center; /* 中央寄せ */
}

.support-highlight {
  font-weight: bold;
  font-size: 1.2em;
  color: #fff; /* 白文字で背景とコントラスト */
  background: #e60000; /* 濃い赤背景 */
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.support-highlight1 {
  font-weight: bold;
  font-size: 1.2em;
  color: #fff; /* 白文字で背景とコントラスト */
  background: #0066ff; /* 濃い赤背景 */
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 中央寄せ */
.img-wrapper {
  text-align: center;
  margin: 1.5rem 0;
}
.service-img {
  max-width: 80%;
  cursor: pointer;
  transition: transform 0.3s;
}
.service-img:hover {
  transform: scale(1.05);
}

.intro-img {
  max-width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.intro-img:hover {
  transform: scale(1.05);
}

/* ポップアップ背景 */
.popup {
  display: none; /* 初期は非表示 */
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}

/* 拡大画像 */
.popup-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

/* 閉じるボタン */
.popup-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* ラベル共通 */
.label {
  display: inline-block;
  font-size: 0.95em;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin: 0 0.2rem;
  letter-spacing: 0.05em;
  color: #111; /* 基本は黒文字 */
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 本命（ゴールド） */
.label.honmei {
  background: linear-gradient(135deg, #ffd700, #d4af37);
  color: #111;
}

/* 対抗（シルバー） */
.label.taikou {
  background: linear-gradient(135deg, #ddd, #aaa);
  color: #111;
}

/* 穴（黒系） */
.label.ana {
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
}

/* セクション全体 */
.bonus-section {
  background: #0f0f0f;
  border: 2px solid #ffd700;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  margin: 2.5rem auto;
  max-width: 680px;
  text-align: center;
  color: #f5f5f5;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* タイトル */
.bonus-title {
  font-size: 30px;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
}

/* ハイライト部分 */
.bonus-highlight {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #ff4500, #ff0000, #ff4500);
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.7);
  line-height: 1.6;
}

/* 限定強調 */
.bonus-limited {
  color: #ffeb3b;
  font-weight: 900;
  font-size: 1.2em;
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.9);
}

/* インパクトフレーズ */
.bonus-impact {
  font-size: 40px;
  font-weight: 900;
  color: #ff3333;
  margin-top: 1.5rem;
  text-shadow: 0 0 15px rgba(255, 60, 60, 0.9);
}

.bonus-impact span {
  color: #ffd700;
  font-size: 45px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 1);
}

.service-period-box {
  background: #fff; /* 白ベース */
  border: 2px solid #ddd;
  border-radius: 10px;
  max-width: 100%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* タイトル（日程） */
.period-title {
  font-size: 30px;
  font-weight: 900;
  color: #d35400; /* 濃いオレンジ */
  margin-bottom: 0.8rem;
}

/* 合計レース */
.race-count {
  font-size: 30px;
  margin: 0.5rem 0;
  color: #333;
}
.race-count span {
  color: #e74c3c; /* 赤 */
  font-weight: 900;
}

/* 区切り線 */
.service-period-box hr {
  border: none;
  border-top: 1px dashed #bbb;
  margin: 1.2rem 0;
}

/* 特典テキスト */
.bonus-text {
  font-size: 25px;
  line-height: 1.6;
  color: #444;
}

/* 特典のキーワード */
.bonus-hero {
  color: #2980b9; /* 青 */
  font-weight: 900;
}
.bonus-up {
  color: #f39c12; /* ゴールド */
  font-weight: 900;
}

.timer {
  margin: 40px auto;
  padding: 30px 50px;
  display: inline-block;
  background: #111;
  border: 4px solid #ffeb3b;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.8),
    inset 0 0 20px rgba(255, 200, 0, 0.3);
}

#CDT {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 30px;
  color: #fff;
}

#CDT .num {
  font-size: 4rem; /* 数字大きめ */
  font-weight: 900;
  background: linear-gradient(180deg, #ffeb3b 0%, #ff5722 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px #ff0000, 0 0 30px #ff9800;
  position: relative;
}

#CDT .label {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 0 #000, 0 0 10px #ffeb3b;
  margin-left: 5px;
}

/* 秒数を点滅させて緊張感UP */
#CDT .sec {
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  50% {
    opacity: 0.3;
  }
}

.finished {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffeb3b;
  text-shadow: 0 0 20px #ff0000, 0 0 40px #ff5722;
  animation: boom 1s ease forwards;
}

@keyframes boom {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(2);
    text-shadow: 0 0 60px #ff0, 0 0 100px #f00;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
h1 {
  margin-top: 30px;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffeb3b;
  text-shadow: 0 0 15px #ff0000, 0 0 30px #ff5722;
}

.countdown-wrapper {
  background: #200; /* 深い赤背景 */
  color: #fff;
  font-family: "Impact", "Segoe UI", sans-serif;
  text-align: center;
  padding: 40px 0;
}

.countdown-wrapper h1 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffeb3b;
  text-shadow: 0 0 15px #ff0000, 0 0 30px #ff5722;
}

.emphasize-wrap {
  display: flex;
  justify-content: center; /* 中央配置 */
  margin: 20px 0;
}

.emphasize-box {
  display: inline-block;
  padding: 12px 20px;
  border: 3px solid #ff4081;
  border-radius: 10px;
  background: #fff0f6;
  font-weight: bold;
  text-align: center;
  color: #000; /* 基本文字色を黒にする */
}

.feature-wrap {
  border: 3px solid #333; /* 枠線 */
  border-radius: 10px; /* 角丸 */
  margin: 40px auto;
  background: #f9f9f9; /* 薄い背景色 */
  text-align: center;
  max-width: 800px; /* 横幅制御 */
  padding-bottom: 10px;
}

/* タイトル */
.feature-wrap .feature-title {
  font-size: 35px;
  margin-bottom: 15px;
  color: #111;
  color: red;
}

/* 本文 */
.feature-wrap .feature-text {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
  color: #000;
}
