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

body {
  margin: 0 auto;
  text-align: left;
  padding: 0;
  background-color: #000;
  background-image: url(../../../../images/project/okcj/brother/背景候補.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;
}

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

#wrapper {
  max-width: 100%;
}

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

/* =====================================
  ヘッダー画像
===================================== */
#header img {
  display: block;
  width: 150%;
  max-width: 400px;
  margin: 0 auto 30px;
}

#header .FV1 {
  width: 70%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

.footer {
  width: 80%;
  margin: 40px auto 0;
  text-align: center;
  color: #888;
}

/* =====================================
  テキスト強調・演出系
===================================== */
.highlight {
  background: linear-gradient(transparent 60%, #fff89e 60%);
}

.mark {
  background: linear-gradient(to right, #fff2cc, #ffe599);
  padding: 0 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.keyword {
  color: #c00;
}

.emphasis {
  color: #d90000;
}

/* =====================================
  アニメーション効果・演出用
===================================== */
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 3px #fff59d, 0 0 5px #fff176, 0 0 8px #ffee58,
      2px 2px 2px rgba(0, 0, 0, 0.6);
    opacity: 0.95;
  }
  50% {
    text-shadow: 0 0 5px #fff59d, 0 0 10px #fff176, 0 0 15px #ffee58,
      2px 2px 2px rgba(0, 0, 0, 0.6);
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 3px #fff59d, 0 0 5px #fff176, 0 0 8px #ffee58,
      2px 2px 2px rgba(0, 0, 0, 0.6);
    opacity: 0.95;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.pop-appear {
  display: inline-block;
  animation: popIn 1s ease-out forwards;
}

.chat-container {
  display: flex;
  align-items: flex-start;
  margin: 20px;
}

.chat-avatar {
  width: 220px;
  height: 220px;
  margin-right: 20px;
}

.speech-bubble {
  position: relative;
  background: #f0f0f0;
  border-radius: 10px;
  padding: 12px 16px;
  max-width: 500px;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-container2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.chat-container2.reverse {
  flex-direction: row-reverse;
}

.chat-avatar2 {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-left: 20px; /* ←画像が右なので左に余白 */
}

.speech-bubble2 {
  position: relative;
  background: #f0f0f0;
  border-radius: 10px;
  padding: 12px 16px;
  max-width: 500px;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.speech-bubble2::after {
  content: "";
  position: absolute;
  right: 18px; /* 左端から外側へ */
  bottom: 18px; /* 下から少し上 */
  width: 0;
  height: 0;
  border-width: 14px 18px 14px 0;
  border-style: solid;
  border-color: transparent #f0f0f0 transparent transparent;
  transform: rotate(0deg);
}

.reverse .speech-bubble2::after {
  left: auto;
  right: -10px;
  border-right-color: transparent;
  border-left-color: #f0f0f0;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  left: -18px; /* 左端から外側へ */
  bottom: 18px; /* 下から少し上 */
  width: 0;
  height: 0;
  border-width: 14px 18px 14px 0;
  border-style: solid;
  border-color: transparent #f0f0f0 transparent transparent;
  transform: rotate(0deg);
}

.race-result-box {
  background: #fffbe7;
  border: 2px solid #ffe066;
  border-radius: 12px;
  padding: 28px 20px 22px 20px;
  margin: 30px auto 20px auto;
  max-width: 460px;
  box-shadow: 0 2px 8px rgba(255, 224, 102, 0.15);
  text-align: center;
  font-size: 18px; /* 全体のベースフォント拡大 */
}

.race-result-title {
  font-size: 1.6em; /* 従来: 1.2em → 拡大 */
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.race-places {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

.race-places > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.place-label {
  font-size: 28px; /* 従来: 25px → 拡大 */
  color: #000000;
  margin-bottom: 4px;
}

.place-num {
  font-size: 28px !important; /* 従来: 20px → 拡大 */
  font-weight: bold;
  color: #222;
  margin-bottom: 2px;
  text-align: center;
}

.race-hit {
  font-size: 36px; /* 従来: 30px → 拡大 */
  font-weight: bold;
  color: #d32f2f;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* =====================================
  表作成
===================================== */
.table-container {
  overflow-x: auto;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: initial;
}

table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  background-color: white;
}

th:nth-child(1) {
  background-color: #ffe4e1;
}
th:nth-child(2) {
  background-color: #e0ffff;
}
th:nth-child(3) {
  background-color: #f5f5dc;
}
th:nth-child(4) {
  background-color: #ffe4e1;
}
th:nth-child(5) {
  background-color: #e0ffff;
}
th:nth-child(6) {
  background-color: #f5f5dc;
}
th:nth-child(7) {
  background-color: #ffe4e1;
}
th:nth-child(8) {
  background-color: #e0ffff;
}
th:nth-child(9) {
  background-color: #ffe4b5;
}

td,
th {
  border: 1px solid #ccc;
  padding: 6px 10px;
  text-align: center;
}

td.red-bold {
  color: red;
}

.high-bold {
  font-size: 25px;
  color: rgb(207, 185, 57);
}
.high3s {
  font-size: 25px;
  font-weight: bold;
}

/* =====================================
  イメージ表示系スタイル
===================================== */
.kyoudai,
.FV2,
.kimura,
.rogo-letter,
.silu .kaime {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
}

.silu {
  width: 60%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  text-align: center;
}

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

.seika {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 5px auto;
}
.youtube {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 5px auto;
}

.kyoudai {
  border-radius: 10px;
}

.hituzen,
.guzen {
  width: 30%;
  height: auto;
  display: block;
  margin: 5px auto;
}

.kimura {
  width: 40%;
}

.otouto {
  width: 60%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto 10px auto;
  margin-bottom: -30px;
}

.teki {
  display: inline-block;
  padding: 12px 24px;
  border: 3px solid #ff0000 !important;
  border-radius: 5px;
  color: #000;
  text-align: center;
  margin: 20px auto;
}

.mamoru {
  border: #000 solid 3px;
  border-radius: 5px;
  box-shadow: #000 0 5px 15px;
}

.highlight-section {
  background: #fffbe7;
  border: 2px solid #ffe066;
  border-radius: 16px;
  padding: 32px 20px 24px 20px;
  margin: 40px 0 40px 0;
  box-shadow: 0 4px 16px rgba(255, 224, 102, 0.15);
  text-align: center;
}

.highlight-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.4;
}

.highlight-title.blue {
  color: #2980b9;
}

.highlight-amount {
  display: inline-block;
  font-size: 2em;
  color: #e74c3c;
  background: linear-gradient(90deg, #fff700 0%, #ffe066 100%);
  border-radius: 8px;
  padding: 0 18px;
  margin-top: 6px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.highlight-summary {
  font-size: 1.3em;
  color: #333;
  margin: 18px 0 18px 0;
  font-weight: bold;
}

.highlight-total {
  color: #e74c3c;
  font-size: 1.6em;
  font-weight: bold;
  background: linear-gradient(90deg, #fff700 0%, #ffe066 100%);
  border-radius: 8px;
  padding: 0 10px;
}

.highlight-gradient {
  background: linear-gradient(90deg, #ffe066 0%, #fff700 100%);
  color: #b03a2e;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
}

.highlight-bold-red {
  color: #e74c3c;
  font-size: 1.2em;
  font-weight: bold;
  display: inline-block;
  margin-top: 6px;
}

.highlight-blue {
  color: #2980b9;
  font-weight: bold;
  font-size: 1.1em;
  display: inline-block;
  margin-top: 6px;
}

.highlight-bold-darkred {
  color: #b03a2e;
  font-weight: bold;
  font-size: 1.15em;
  display: inline-block;
  margin-top: 10px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .highlight-section {
    padding: 18px 6px 14px 6px;
    font-size: 0.98em;
  }
  .highlight-title,
  .highlight-title.blue {
    font-size: 1.1em;
  }
  .highlight-amount,
  .highlight-total {
    font-size: 1.3em;
    padding: 0 8px;
  }
}

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

.wide-banner-text {
  color: gold;
  text-shadow: 2px 2px 2px black;
  letter-spacing: 0.1em;
  font-size: 50px;
}

/* =====================================
  セクション見出し・演出タイトル
===================================== */
#victory {
  color: #000;
}

#mystic-congrats {
  color: #f3e197;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin: 1.5rem auto;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  text-shadow: 0 0 3px #fff59d, 0 0 5px #fff176, 0 0 8px #ffee58;
  animation: glowPulse 3s ease-in-out infinite;
}

#unit {
  letter-spacing: 0.05em;
  margin: 2rem 0;
  text-align: center;
  line-height: 1.4;
}

.unit-red {
  color: #d50000;
}

.unit-blue {
  color: #0400ff;
}

.kei {
  color: black;
  vertical-align: middle;
  transform: translateY(30%) !important;
  line-height: 1;
}

/* =====================================
  コンテンツラップ・構造用スタイル
===================================== */
.frame-box {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 20px;
  margin: 0 auto;
  background-color: #ffffff;
  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: 850px;
  }
}

.custom-question-list {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "Noto Serif JP", sans-serif;
  margin: 1.5em 0;
  padding-left: 2em;
}
.custom-question-list li {
  margin-bottom: 0.7em;
  line-height: 1.7;
}

.kaime-section {
  background: #ffeaea; /* 淡い赤系に変更 */
  border: 2px solid #ff7e7e; /* 赤系の枠線 */
  border-radius: 12px;
  padding: 32px 20px 24px 20px;
  margin: 0px 0 32px 0;
  box-shadow: 0 2px 12px rgba(255, 126, 126, 0.15); /* 赤系の影 */
}

.kaime-title {
  font-size: 2.2rem;
  color: #d50000;
  font-weight: bold;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px #fff7c2;
}

.sirusi-section {
  background: #eaf4ff; /* 淡い青系に変更 */
  border: 2px solid #7ecbff; /* 青系の枠線 */
  border-radius: 12px;
  padding: 0; /* 上下左右のパディングを減らす */
  margin: -10px 0 32px 0;
  box-shadow: 0 2px 12px rgba(126, 203, 255, 0.15); /* 青系の影 */
}

.sirusi-title {
  font-size: 2.2rem;
  color: #0053a6;
  font-weight: bold;
  text-align: center;
  margin-top: 0 !important; /* 上の余白を減らす */
  margin-bottom: 6px; /* 下の余白も減らす */
  text-shadow: 0 2px 8px #c2e7ff;
}

/* =====================================
  サービス要綱レイアウト
===================================== */
.service-outline {
  width: 80%;
  margin: 50px auto;
  padding: 40px;
  background: #fffef8;
  border: 2px solid #d2b76f;
  border-radius: 10px;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  color: #b89b27;
  margin-bottom: 30px;
}

.outline-list {
  width: 100%;
}

.outline-list dt {
  margin-top: 20px;
  color: #333;
  border-left: 5px solid #b89b27;
  padding-left: 10px;
}

.outline-list dd {
  margin: 10px 0 25px 15px;
  line-height: 1.6;
  color: #444;
}

@keyframes popBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.7);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
  75% {
    transform: translateX(-1px);
  }
}

.strong-impact {
  color: rgb(34, 13, 13);
  letter-spacing: 0.05em;
  text-align: center;
  animation: shake 0.8s ease-in-out infinite;
  /* 枠線を細くし、重なりを目立たなくする */
  text-shadow: 0 0 5px #d40000, 0 0 10px rgba(255, 0, 0, 0.4);
  /* 文字間隔を少し広げて交差を防ぐ */
  word-spacing: 0.2em;
}

.comment {
  border: 2px solid #ffd700;
  border-radius: 12px;
  background: linear-gradient(90deg, #fffbe7 60%, #fff3c0 100%);
  margin: 24px auto;
  padding: 22px 28px;
  box-shadow: 0 4px 16px rgba(180, 150, 30, 0.1);
  font-size: 1.15em;
  color: #333;
  position: relative;
  max-width: 700px;
}

.comment::before {
  content: "★ モニター参加者の声";
  position: absolute;
  top: -18px;
  left: 24px;
  background: #ffd700;
  color: #fff;
  font-weight: bold;
  font-size: 0.95em;
  padding: 2px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(180, 150, 30, 0.12);
  letter-spacing: 0.08em;
}

.comment strong,
.comment b {
  color: #d50000;
  background: linear-gradient(transparent 60%, #fff89e 60%);
  padding: 0 2px;
  font-weight: bold;
}

.comment em {
  color: #0053a6;
  font-style: normal;
  font-weight: bold;
}

/* =====================================
  無敵の買い目×印 見出し強調
===================================== */
.impact-heading {
  letter-spacing: 0.05em;
  text-align: center;
  margin: 40px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: pulse 2.5s ease-in-out infinite;
}

.impact-heading .red {
  color: #d50000;
  text-shadow: 1px 1px 2px #000;
}

.impact-heading .blue {
  color: #1e88e5;
  text-shadow: 1px 1px 2px #000;
}

.impact-heading .cross {
  color: #111;
  margin: 0 10px;
}

/* --- セクション全体 --- */

.komatsu-block {
  margin: -20px auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.komatsu-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.row-layout {
  flex-direction: row;
}

.row-layout.reverse {
  flex-direction: row-reverse;
}

.komatsu-comment {
  flex: 1 1 50%;
  line-height: 1.8;
  word-break: keep-all;
}

.komatsu-comment.blue {
  color: #0053a6;
}

.komatsu-comment.green {
  color: #2e7d32;
}

.komatsu-comment strong {
  text-decoration: underline;
}

.komatsu-card img {
  flex: 1 1 45%;
  max-width: 40%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .komatsu-card {
    flex-direction: column !important;
    text-align: center;
  }
  .komatsu-card img,
  .komatsu-comment {
    flex: 1 1 100%;
  }
  .komatsu-card img {
    margin-top: 20px;
  }
}

.table th,
.table td {
  border: 1px solid #000;
  padding: 12px;
}

th.yellow {
  background-color: yellow;
}

th.orange {
  background-color: orange;
}

th.blue {
  background-color: lightblue;
}

.stable {
  color: blue;
}

.high {
  color: red;
}

.question {
  color: red;
}

.boxed-content {
  background: #ffffff;
  border: 2px solid #a0a0a0;
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 780px;
  margin: 50px auto;
  text-align: left;
  line-height: 1.9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
  color: #333;
  position: relative;
}

.bottom-right-text {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-size: 20px;
  color: #000000;
}
.boxed-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 24px;
  color: #c62828;
  border-bottom: 2px dashed #000000;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  text-align: center;
}

.boxed-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  text-align: center;
}

.boxed-content ul li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 12px;
  font-size: 25px;
}

.boxed-content ul li::before {
  content: "✔";
  display: inline-block;
  margin-right: 0.6em;
  color: #43a047;
  font-weight: bold;
  font-size: 1em;
  position: static;
  text-align: center;
}

.boxed-content .blue {
  color: #1565c0;
  font-weight: bold;
}

.boxed-content .red {
  color: #d32f2f;
  font-weight: bold;
}

.boxed-content .plus {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  color: #ff8f00;
  margin: 20px 0;
}

.anxiety-list {
  background: linear-gradient(90deg, #fff0f0 60%, #ffe3e3 100%);
  border: 2px solid #e57373;
  border-radius: 14px;
  padding: 28px 24px 18px 32px;
  margin: 32px auto 24px auto;
  max-width: 600px;
  list-style: none;
  position: relative;
}

.anxiety-list li {
  list-style: none;
  position: relative;
  margin-bottom: 16px;
  padding-left: 2.2em;
  font-size: 1.18em;
  color: #d32f2f;
  font-weight: bold;
  line-height: 1.7;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(229, 115, 115, 0.06);
  transition: background 0.2s;
}

.anxiety-list li:last-child {
  margin-bottom: 0;
}

.anxiety-list li::before {
  content: "⚠";
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  color: #ff3c0b;
  font-size: 1.3em;
  font-weight: bold;
}

.huan-list {
  background: linear-gradient(90deg, #eaf4ff 60%, #cce6ff 100%);
  border: 2px solid #2331ff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(229, 115, 115, 0.13);
  padding: 28px 24px 18px 32px;
  margin: 32px auto 24px auto;
  max-width: 600px;
  list-style: none;
  position: relative;
}

.huan-list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 2.2em;
  font-size: 25px;
  color: #000000;
  font-weight: bold;
  line-height: 1.7;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(229, 115, 115, 0.06);
  transition: background 0.2s;
  list-style: none;
}

.huan-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .anxiety-list {
    padding: 14px 6vw 10px 6vw;
    font-size: 0.98em;
    max-width: 98vw;
  }
  .anxiety-list::before {
    font-size: 1em;
    margin-bottom: 10px;
  }
  .anxiety-list li {
    font-size: 1em;
    padding-left: 2em;
  }
}
.muten-sign {
  line-height: 2;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.muten-sign h2 {
  text-align: center;
  margin: 30px 0 10px;
}

.muten-sign p {
  margin: 16px 0;
}

.muten-sign ul {
  list-style-type: disc;
  margin: 10px 0 10px 30px;
}

.muten-sign strong {
  color: #d40000;
}

.muten-sign em {
  color: #666;
  font-style: italic;
}

.muten-conclusion {
  line-height: 2;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.muten-conclusion p {
  margin: 16px 0;
}

.muten-conclusion strong {
  color: #d40000;
}

.intro,
.subhead,
.pricing,
.details {
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}
.price-section {
  border: 2px solid #000000;
}

.schedule-box {
  border: 1px solid #000;
  padding: 30px;
  margin: 40px auto;
  width: 100%;
  max-width: 1000px; /* 必要に応じて調整 */
  box-sizing: border-box; /* padding込みで幅を制御 */
  line-height: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center; /* box内で.schedule-listを中央に */
}

.schedule-box h2 {
  text-align: center;
  text-decoration: underline;
  margin-bottom: 30px;
}
.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 20px;
  line-height: 1.8;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* リスト自体をboxの真ん中に */
  justify-content: center;
}

.schedule-list li {
  background: #fef9ec;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 6px;
  list-style: none;
  width: 100%; /* ← 親要素いっぱいに広げる */
  box-sizing: border-box; /* ← padding込みでもはみ出さないように */
}

.schedule-list strong {
  color: #c62828;
  font-weight: bold;
  margin-right: 8px;
}

.schedule-list .days {
  color: #666;
  font-size: 90%;
  margin-left: 4px;
}

.schedule-list .blue {
  color: #1976d2;
  font-weight: bold;
  margin-left: 8px;
}

.schedule-list .red {
  color: #d32f2f;
  font-weight: bold;
  margin-left: 8px;
}

.summary-box {
  background-color: orange;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 30px;
  font-size: 25px;
}

.price-announcement {
  line-height: 2;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.price-announcement ul {
  list-style-type: disc;
  margin-left: 30px;
}

.highlight-price {
  color: red;
  text-align: center;
}

.quote {
  color: #444;
  text-align: center;
  margin-top: 20px;
}

.youkou-section {
  margin: 40px auto;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  max-width: 50vw;
}

.info-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 1600px; /* ←ここを1400pxから拡大 */
  line-height: 1.8;
  table-layout: fixed;
  word-wrap: break-word;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 900px;
}

.info-table th,
.info-table td {
  border: none;
  border-bottom: 2px solid #b0b0b0;
  padding: 18px 14px;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  /* 左側(見出し)は黒、右側(詳細)は薄めの色 */
  background: #f5f5f5;
  color: #232323;
  font-size: 1.08em;
  transition: background 0.2s;
}

/* 左側(見出し)セル */
.info-table th {
  background: linear-gradient(90deg, #bdbdbd 60%, #232323 100%);
  color: #000000;
  font-weight: bold;
  border-bottom: 3px solid #b0b0b0;
  letter-spacing: 0.04em;
  font-size: 25px;
}

/* 右側(詳細)セル */
.info-table td {
  background: #f5f5f5;
  color: #232323;
}

/* ホバー時の詳細セル */
.info-table tr:hover td {
  background: #e0e0e0;
}

.info-table th {
  background-color: #f2f2f2;
  width: 180px;
  text-align: center;
  vertical-align: middle;
}

.info-table img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px 0;
}

.info-table td {
  word-break: break-word;
}

.hr-1 {
  border: none;
  border-top: 4px dashed #000;
  margin: 40px 0;
}

.hr-2 {
  border-top: 2px solid #000;
  margin: 20px 0;
}

.comment-bubble-section {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  /* 以下を追加・確認 */
  width: 120%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 24px; /* 必要なら左右に余白も */
}

.comment-bubble {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 18px 32px;
  max-width: 1400px; /* 横幅をさらに大きく調整 */
  position: relative;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  width: 100%;
}

.bubble-arrow {
  position: absolute;
  left: 40px;
  bottom: -18px;
  width: 0;
  height: 0;
  border-top: 18px solid #f5f5f5;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  content: "";
}

/* --- ユーザーコメントリスト30選 --- */
.user-comments-list {
  max-width: 900px;
  margin: 40px auto 60px auto;
  padding: 30px 24px;
  background: #fffef8;
  border: 2px solid #d2b76f;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(180, 150, 30, 0.08);
  list-style: none;
}

.user-comments-list li:last-child {
  margin-bottom: 0;
}

.user-comments-list strong {
  color: #b89b27;
  font-weight: bold;
  margin-right: 6px;
  font-size: 1.08em;
}

@media screen and (max-width: 767px) {
  .user-comments-list {
    padding: 12px 4vw;
    font-size: 0.98em;
  }
  .user-comments-list li {
    padding: 10px 8px;
    font-size: 1em;
  }
}

.notice-list {
  list-style: none;
  text-align: left;
}
/* =====================================
  フォント関連 

===================================== */

/* 明朝体を使いたい場合（例：.keyword, .wide-banner-text） */
.keyword,
.wide-banner-text {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

/* フォントサイズ・太さ関連 */
body {
  font-weight: 500;
  letter-spacing: 1.3px;
}

.form-title,
.section-title {
  font-size: 1.8em;
  font-weight: 700;
}

th,
td,
.boxed-content h2,
.komatsu-comment strong,
.muten-conclusion strong,
.price-announcement .highlight-price,
.red,
.blue {
  font-weight: bold;
}

.keyword {
  font-size: 26px;
  font-weight: bold;
}

.emphasis {
  font-size: 22px;
  font-weight: bold;
}

#victory {
  font-size: 80px;
}

#mystic-congrats {
  font-size: 40px;
  font-weight: 800;
}

#unit {
  font-size: 50px;
  font-weight: 900;
}

.kei {
  font-size: 70px;
  font-weight: 900;
}

.impact-heading {
  font-size: 48px;
  font-weight: 900;
}

.strong-impact {
  font-size: 32px;
  font-weight: 900;
}

.teki {
  font-size: 20px;
  font-weight: bold;
}

.price-announcement .highlight-price {
  font-size: 24px;
}

P {
  font-size: 20px;
  margin-left: 20px;
}

.mark-sample-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.boxed-explanation {
  border: 2px solid #e74c3c;
  background: #fffbea;
  padding: 20px 25px;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.07);
}
.boxed-explanation ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.boxed-explanation li {
  margin-bottom: 7px;
  font-size: 1.08em;
}
.boxed-explanation-note {
  font-size: 1em;
  color: #333;
}
.boxed-explanation-note span {
  font-size: 90%;
  color: #000000;
}

/* ===== フォントサイズユーティリティ ===== */
.font-25 {
  font-size: 25px;
}

.sp30y {
  background-color: #ffd700;
  text-align: center;
  border-radius: 8px; /* 角丸で端のはみ出し感を軽減 */
  display: inline-block; /* 背景をテキスト幅に限定 */
}

.font-30 {
  font-size: 30px;
}
.font-40 {
  font-size: 40px;
}
.font-50 {
  font-size: 50px;
}

.font-70 {
  font-size: 70px;
  margin-top: -20px;
}

/* ===== フォントカラー ===== */
.text-red {
  color: red;
}
.text-blue {
  color: blue;
}
.text-yellow {
  color: #ffd700;
}
.text-green {
  color: #008800;
}
.text-white {
  color: #ffffff;
}
.bg-yellow {
  background-color: #ffd700;
}

.bg-red {
  background-color: red;
}
/* ===== 下線付き（色付き） ===== */
.underline-blue {
  text-decoration: underline;
  text-decoration-color: blue;
}
.underline-red {
  text-decoration: underline;
  text-decoration-color: red;
}

.underline-black {
  text-decoration: underline;
  text-decoration-color: black;
}

/* ===== 位置指定 ===== */
.text-center {
  text-align: center;
}

/* ===== 太字 ===== */
.bold {
  font-weight: bold;
}

/* ===============================
  フォーム全体
================================= */
.main-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 48px 32px 40px 32px;
  background: #fffdf5;
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(198, 163, 0, 0.1);
  border: 2.5px solid #c6a300;
}

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

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

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

.mailaddress {
  display: block;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.form-group .note {
  font-size: 18px;
  color: #2e2e2e;
  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 #c6a300;
  border-radius: 8px;
  background: #fffef8;
  transition: border 0.3s, box-shadow 0.3s;
  margin-bottom: 6px;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #eac900;
  box-shadow: 0 0 0 3px rgba(198, 163, 0, 0.13);
}

.error {
  color: #c00;
  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: #333;
  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 #ffd700;
  background: linear-gradient(90deg, #fffbe7 0%, #ffe066 100%);
  color: #232323;
  font-weight: bold;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
  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, #ffd700 0%, #ffb300 100%);
  color: #b89b27;
  border: 2.5px solid #b89b27;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.18);
  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 #ffb300;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.18);
  outline: none;
}

/* 銀行振込ボタン（青系） */
.radio-btn-label .radio-btn-custom.bank {
  background: linear-gradient(90deg, #f5f7fa 0%, #e3e8ee 100%);
  border: 2.5px solid #b0bec5;
  color: #232323;
}
.radio-btn-label input[type="radio"]:checked + .radio-btn-custom.bank {
  background: linear-gradient(90deg, #2196f3 0%, #1565c0 100%);
  color: #232323;
  border: 2.5px solid #1565c0;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.18);
}

/* クレジットボタン（赤系） */
.radio-btn-label .radio-btn-custom.credit {
  background: linear-gradient(90deg, #f7f3f3 0%, #f0eaea 100%);
  border: 2.5px solid #e0b4b4;
  color: #232323;
}
.radio-btn-label input[type="radio"]:checked + .radio-btn-custom.credit {
  background: linear-gradient(90deg, #e53935 0%, #b71c1c 100%);
  color: #232323;
  border: 2.5px solid #b71c1c;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.18);
}
/* ===============================
  送信ボタン（銀色・強調・アニメ付き）
================================= */
.submit-btn {
  display: block;
  margin: 10px auto 0 auto;
  margin-top: -20px;
  width: 70%;
  min-width: 260px;
  max-width: 600px;
  /* ↓ここを修正↓ */
  background: linear-gradient(90deg, #ffb347 0%, #ff9900 100%);
  color: #ffffff;
  border: 4px solid #ff9800; /* オレンジ系の枠線 */
  border-radius: 48px;
  padding: 28px 0;
  font-size: 2.4em;
  font-weight: bold;
  letter-spacing: 0.12em;
  box-shadow: 0 16px 48px rgba(255, 152, 0, 0.28), 0 4px 0 #fff3e0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s,
    box-shadow 0.18s;
  outline: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  animation: btn-pop 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* 波モーション（一本の太い波） */
.submit-btn::before {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.55) 52%,
    transparent 100%
  );
  filter: blur(8px);
  animation: singleWaveMove 3.5s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes singleWaveMove {
  0% {
    left: -60%;
  }
  100% {
    left: 100%;
  }
}

.submit-btn span,
.submit-btn::after {
  position: relative;
  z-index: 2;
}

.submit-btn:hover,
.submit-btn:focus {
  background: linear-gradient(90deg, #fff 0%, #e0e0e0 100%);
  color: #c01515;
  border-color: #ff0000; /* 枠線も青系に */
  transform: translateY(-8px) scale(1.06); /* より大きく動く */
  box-shadow: 0 32px 64px rgba(255, 179, 117, 0.22), 0 8px 0 #fff;
}

.submit-btn:hover::after,
.submit-btn:focus::after {
  margin-left: 36px;
  color: #ff925f;
}

.submit-btn:active {
  background: linear-gradient(90deg, #bdbdbd 0%, #e0e0e0 100%);
  color: #232323;
  border-color: #bdbdbd;
  transform: scale(0.97);
  box-shadow: 0 4px 12px rgba(120, 120, 120, 0.14);
}

.main-content {
  position: relative;
}

.support-link {
  position: static;
  text-align: right;
  z-index: 10;
  margin-top: 30px;
  transform: none;
  padding-right: 0;
}
