@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
/* フォントの追加 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");

@font-face {
  font-family: "SmartFont";
  src: url("./fonts/03スマートフォントUI.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

.smart {
  font-family: "SmartFont", sans-serif !important;
}

/* ベーススタイル */
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background-color: black;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

section {
  margin-bottom: 100px;
}

h2 {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 2.8em;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

h1 {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 6em;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 8px;
  background: linear-gradient(to right, #ffd700, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.subtitle {
  font-size: 1.8em;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.highlight {
  background: linear-gradient(to right, #ffd700, #ffcc00);
  color: #1a1a1a;
  padding: 15px 30px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta {
  background: linear-gradient(to right, #ffd700, #ffcc00);
  color: #1a1a1a;
  padding: 20px 40px;
  font-size: 1.4em;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* メインビジュアル */
.image-placeholder {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(255, 215, 0, 0) 100%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-16 {
  padding-top: 24px !important;
}

.system-explanation {
  padding: 0;
  margin: 0px auto;
  max-width: 1200px; /* コンテナの最大幅をさらに増加 */
}

.mincho-title {
  font-family: "Noto Serif JP", serif !important;
  font-size: 2.8em !important;
  color: #ffd700 !important;
  text-align: center;
  margin-bottom: 0px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.explanation-content {
  padding: 80px 200px; /* パディングを増やしてコンテンツエリアを拡大 */

  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center; /* テキストを中央に配置 */
}

.explanation-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.text-content {
  max-width: 660px; /* テキストの最大幅を制限 */
  position: relative;
  z-index: 2;
  font-size: 1.08rem;
}

.text-content p {
  font-size: 1.1em;
  line-height: 2.2;
  margin-bottom: 25px;
  color: #565656;
  text-align: justify;
}

.mobile {
  display: none;
}

/* レスポンシブデザイン */
@media screen and (max-width: 1200px) {
  .mincho-title {
    font-size: 2.4em !important;
  }

  .explanation-content {
    padding: 60px 30px;
  }

  .text-content {
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .mincho-title {
    font-size: 2em !important;
  }

  .explanation-content {
    padding: 40px 20px;
  }

  .text-content p {
    font-size: 1em;
    line-height: 2;
  }
}

@media screen and (max-width: 480px) {
  .mincho-title {
    font-size: 1.8em !important;
  }

  .mincho-subtitle {
    font-size: 1.4em !important;
    text-shadow: none;
  }

  .mobile {
    display: block;
  }

  .explanation-content {
    padding: 30px 40px;
  }

  .text-content p {
    font-size: 0.9em;
    line-height: 1.8;
  }

  .bonus-title {
    font-size: 2.4em !important;
  }
}
/* フローセクション */
.flow {
  border-radius: 15px;
  padding: 60px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}

.flow-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8em;
  color: #ffd700;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: 2px;
}

.flow-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  margin: 25px auto 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flow-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.step-image {
  width: 300px;
  height: auto;
  object-fit: contain;
}

.arrow-image {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.flow-conclusion {
  font-weight: bold;
  text-align: center;
  font-size: 1.6em;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
  .flow {
    padding: 40px 20px;
  }

  .flow-title {
    font-size: 2.2em;
  }

  .flow-steps {
    flex-direction: column;
  }

  .step-image {
    width: 180px;
  }

  .arrow-image {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .flow-conclusion {
    font-size: 1.3em;
  }
}

/* 緊急性を強調するセクション */
.urgency-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  background-color: black;
}

.cta-button {
  position: absolute;
  bottom: 60px; /* 画像の下から20pxの位置に配置 */
  left: 50%; /* 水平方向の中央に配置 */
  transform: translateX(-50%); /* ボタンの中央揃え */
  overflow: hidden;
  border-radius: 130px;
}

.cta-button:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.urgency-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.9) 20%,
    rgba(0, 0, 0, 0) 40%
  );
  pointer-events: none; /* クリックできないようにする */
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 黒い半透明のオーバーレイ */
  z-index: 1;
}

.urgency-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.urgency-section h2 {
  font-size: 3em;
  margin-bottom: 30px;
  color: #ffd700;
}

.urgency-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
}

.urgency-section .cta {
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728);
  color: #1a1a1a;
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  text-decoration: none;
  display: inline-block;
}

.urgency-section .cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}

/* 成果事例セクション */
.success-stories {
  border-radius: 15px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.success-stories h2 {
  color: #ffd700;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.4em;
}

.story {
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.story:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.story-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #ffd700;
}

.story h3 {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story p {
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.8;
}

/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
  .success-stories {
    padding: 40px 20px;
  }

  .success-stories h2 {
    font-size: 2em;
  }

  .story {
    padding: 20px;
  }

  .story-image {
    width: 120px;
    height: 120px;
  }

  .story h3 {
    font-size: 1.5em;
  }

  .story p {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  .success-stories h2 {
    font-size: 1.8em;
  }

  .bull-image {
    width: 280px !important;
  }

  .story-image {
    width: 100px;
    height: 100px;
  }

  .story h3 {
    font-size: 1.3em;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .story p {
    font-size: 0.9em;
  }
}

.black {
  color: #333 !important;
}

/* 報酬グラフセクション */
.revenue-section {
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.revenue-section h2 {
  color: #ffd700;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.4em;
}

.revenue-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.revenue-graph {
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.revenue-graph img {
  max-width: 100%;
  height: auto;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.graph_result {
  position: absolute;
  top: -20px;
  left: 200px;
}

.hidden {
  overflow: hidden;
}

.flex-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.revenue-graph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 24px;
  font-weight: bold;
}

.revenue-graph img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

.revenue-graph .graph {
  max-width: 1200px !important;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.prev-btn,
.next-btn {
  background-color: rgba(255, 215, 0, 0.7);
  color: #1a1a1a;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(255, 215, 0, 0.9);
}

.revenue-amount {
  text-align: center;
  font-size: 1.5em;
  color: #ffd700;
  margin-top: 30px;
}

#totalRevenue {
  font-weight: bold;
  font-size: 1.2em;
}

@media screen and (max-width: 768px) {
  .revenue-section {
    padding: 40px 20px;
  }

  .revenue-section h2 {
    font-size: 2em;
  }

  .placeholder {
    height: 300px;
    font-size: 20px;
  }

  .revenue-amount {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 480px) {
  .revenue-section h2 {
    font-size: 1.8em;
  }

  .placeholder {
    height: 200px;
    font-size: 16px;
  }

  .revenue-amount {
    font-size: 1.1em;
  }

  .prev-btn,
  .next-btn {
    padding: 8px 12px;
    font-size: 16px;
  }
}

/* ユーザーの声セクション（更新） */
.testimonials {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  margin-bottom: 100px;
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  height: 660px; /* 画像の高さに応じて調整 */
}
.testimonial-slides {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
}
.testimonial-slide img {
  width: 100%;
  max-width: 320px;
  margin: auto;
  height: auto;
  display: block;
}
.testimonial-nav {
  position: absolute;
  top: 50%;
  left: -50px;
  right: -50px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.testimonial-nav button {
  background: rgba(255, 215, 0, 0.7);
  border: none;
  color: #000;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}
.testimonial-nav button:hover {
  background-color: rgba(255, 215, 0, 0.9);
}
.testimonial-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.testimonial-dot.active {
  background-color: #ffd700;
}

@media screen and (max-width: 768px) {
  .testimonial-nav {
    left: -20px;
    right: -20px;
  }
  .testimonials {
    padding: 0px;
    max-width: 400px;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-nav {
    left: 0;
    right: 0;
  }
  .testimonial-dots {
    bottom: 74px;
  }
}

.testimonial-track {
  display: flex;
  transition: transform 0.3s ease;
  width: 300%; /* 3枚の画像に対応 */
}

.testimonial {
  flex: 0 0 33.333%; /* 3枚の画像に均等に分割 */
  width: 33.333%;
  box-sizing: border-box;
  padding: 0 10px; /* 画像間の余白 */
  margin-top: 24px;
}

.testimonial-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.slider-nav {
  text-align: center;
  margin-top: 20px;
}

.slider-nav button {
  background-color: #ffd700;
  color: #1a1a1a;
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.slider-nav button:hover {
  background-color: #ffcc00;
}

/* 4つの理由セクション */
.reasons {
  counter-reset: reason-counter;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(83 83 83 / 50%);
  cursor: pointer;
  margin: 0 5px;
}

.slider-dot.active {
  background-color: #ffd700;
}

.no-wrap {
  white-space: nowrap;
}

.reason {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px 30px; /* 上部のパディングを増やして丸の余白を確保 */
  margin-bottom: 50px; /* マージンを増やして各理由の間隔を広げる */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
}

.dots1 {
  bottom: -24px !important;
}

.reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.reason-number {
  position: absolute;
  top: -30px; /* カードの上に更に出るように */
  left: 50%; /* 中央に配置 */
  transform: translateX(-50%); /* 中央揃えの調整 */
  background: #ffd700;
  color: #1a1a1a;
  width: 60px; /* サイズを大きく */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em; /* フォントサイズを大きく */
  font-weight: bold;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.reason h3 {
  color: #ffd700;
  font-size: 2em; /* 見出しのサイズを大きく */
  margin-bottom: 20px;
  text-align: center; /* 中央揃え */
  padding: 0; /* 左パディングを削除 */
}

.reason p {
  font-size: 1.1em;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  text-align: center; /* テキストも中央揃え */
}

/* 最終CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  margin-bottom: 40px;
  text-align: center;
}

.disclaimer {
  margin-top: 40px !important;
  max-width: 448px;
  text-align: left;
  margin: auto;
  font-size: 24px;
}

.disclaimer2 {
  margin-top: 40px !important;
  max-width: 448px;
  text-align: left;
  margin: auto;
  font-size: 24px;
}

.mt-3 {
  margin-top: 3rem !important;
}

.red {
  color: red;
}

@media screen and (max-width: 768px) {
  .final-cta h2 {
    font-size: 2em;
  }
  .final-cta h3 {
    font-size: 1.6em;
  }
  .final-cta .cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .reason {
    border-radius: 0px;
  }

  .mt-3 {
    margin-top: 5rem !important;
  }

  .btn4 {
    width: 100%;
    max-width: 380px;
  }

  .btn4 img {
    width: 100%;
  }
  .cta-text {
    font-size: 24px !important;
  }

  .bg-blue {
    padding: 100px 0 150px 0 !important;
  }

  .disclaimer span {
    font-size: 18px !important;
  }

  .disclaimer2 {
    margin-top: 40px !important;
  }

  .disclaimer2 span {
    font-size: 17px !important;
  }

  .footer-logo {
  }

  img.mt-5 {
    margin-top: 2rem !important;
  }

  div.btn5 {
    width: 100%;
    max-width: 380px;
    bottom: -10% !important;
    position: absolute;
  }

  .btn5 img {
    margin-top: 0px !important;
  }

  .disclaimer-text {
    font-size: 18px !important;
  }
}
/* フッター */
footer {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #ffd700, #ffcc00);
}

footer p {
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.btn5 {
  max-width: 640px;
  bottom: -114px !important;

  position: absolute !important;
}

.btn5 img {
  margin-top: 0px !important;
}

/* レスポンシブデザイン */
@media screen and (max-width: 1200px) {
  .container {
    padding: 50px 0px;
  }
  h1 {
    font-size: 5em;
  }
  .subtitle {
    font-size: 1.6em;
  }
  .reason-number {
    width: 60px;
    height: 60px;
    font-size: 1.8em;
  }
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: 4em;
  }
  h2 {
    font-size: 2.4em;
  }
  .reason h3 {
    font-size: 1.8em;
  }
  .final-cta h2 {
    font-size: 3em;
  }
  .final-cta h3 {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 700px) {
  h1 {
    font-size: 3.5em;
  }
  .subtitle {
    font-size: 1.3em;
  }
  .highlight {
    font-size: 1.1em;
  }
  .cta {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .image-placeholder {
    height: 300px;
  }
  .reason {
    padding: 35px 25px 25px;
  }

  .reason-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    top: -25px;
  }

  .reason h3 {
    font-size: 1.8em;
  }
  .final-cta {
    padding: 60px 30px;
  }
  .final-cta h2 {
    font-size: 2.5em;
  }
  .final-cta h3 {
    font-size: 2em;
  }
  .final-cta .cta {
    font-size: 1.4em;
    padding: 20px 40px;
  }
}

@media screen and (max-width: 500px) {
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 2em;
  }
  .subtitle {
    font-size: 1.1em;
  }
  .highlight {
    font-size: 1em;
    padding: 10px 20px;
  }
  .cta {
    font-size: 1.1em;
    padding: 12px 24px;
  }
  .reason {
    padding: 30px 20px 20px;
  }

  .reason-number {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
    top: -22.5px;
  }

  .reason h3 {
    font-size: 1.6em;
  }
  .step,
  .story,
  .testimonial {
    padding: 20px;
  }
  .final-cta h2 {
    font-size: 2.2em;
  }
  .final-cta h3 {
    font-size: 1.8em;
  }
  .final-cta .cta {
    font-size: 1.3em;
    padding: 18px 36px;
  }
}

/* 比較セクション */
.comparison {
  padding: 60px 20px;

  color: #fff;
}

.comparison h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.4em;
  color: #ffd700;
}

.comparison-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  table-layout: fixed; /* 追加: 列幅を固定 */
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: center;
  border-radius: 5px;
}

.comparison-table thead {
  background-color: #ffd700;
}

.comparison-table th {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 25%; /* 項目列の幅を指定 */
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  width: 25%; /* レバリッチ列の幅を指定 */
  font-size: 1.1em; /* レバリッチの列見出しを少し大きく */
}

.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
  width: 25%; /* 他社A・B列の幅を均等に指定 */
}

.comparison-table td:first-child {
  font-weight: bold;
  text-align: left;
  background-color: #f0f0f0;
  color: #1a1a1a;
}

.comparison-table td:nth-child(2) {
  background-color: #ffeeba;
  color: #1a1a1a;
  font-weight: bold;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
  background-color: #f0f0f0;
  color: #6c757d;
}

.comparison-table .check {
  color: #28a745;
  font-size: 1.2em;
}

.comparison-table .cross {
  color: #dc3545;
  font-size: 1.2em;
}

@media screen and (max-width: 768px) {
  .comparison-wrapper {
    padding: 15px;
    border-radius: 0px;
  }

  .comparison {
    padding: 60px 0px;
    background-color: #fff;
    color: #fff;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px;
    font-size: 0.9em;
    border-radius: 0px;
  }

  .comparison-table th:nth-child(2),
  .comparison-table td:nth-child(2) {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  .comparison h2 {
    font-size: 1.8em;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px;
    font-size: 0.75em;
  }

  .comparison-table th:nth-child(2),
  .comparison-table td:nth-child(2) {
    font-size: 0.85em;
  }
}

/* キラキラ輝く金色のヘッダーテキスト（多言語対応） */
.glittering-gold-text {
  background: linear-gradient(
    to right,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ffd700; /* フォールバック色 */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3),
    0 0 30px rgba(255, 215, 0, 0.2);
  animation: glitter 6s linear infinite;
}

@keyframes glitter {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ヘッダー全体のスタイル */
header {
  position: relative;
  color: #ffd700;
  text-align: center;
  overflow: hidden;
  height: 100vh; /* ビューポートの高さに設定 */
  min-height: 500px; /* 最小高さを設定 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* ヘッダーにz-indexを設定 */
  padding-bottom: 60px;
}

.logo_reasons {
  max-width: 200px;
}

/* ビデオ背景のスタイル */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2; /* ビデオを最背面に */
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* ヘッダー全体のスタイル */
header {
  position: relative;
  color: #ffd700;
  text-align: center;
  overflow: hidden;
  height: 150vh; /* ビューポートの高さに設定 */
  min-height: 500px; /* 最小高さを設定 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* ヘッダーにz-indexを設定 */
}

/* ビデオ背景のスタイル */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 135%;
  overflow: hidden;
  z-index: -2; /* ビデオを最背面に */
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* グラデーションオーバーレイ */
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: -1; /* オーバーレイをビデオの上、コンテンツの下に */
}

header .container {
  position: relative;
  z-index: 2; /* コンテンツを最前面に */
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

/* ヘッダーのテキストスタイル */
header h1 {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 3em;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 700;
}

header .subtitle {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.8em;
  margin-bottom: 30px;
}

.subtitle2 {
  font-size: 20px !important;
  color: white;
}

.english-text {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  font-size: 0.8em;
  margin-bottom: 10px;
}

.subtitle2 {
  font-size: 24px;
  color: white;
}

/* CTAボタンのスタイル */
.cta {
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728);
  color: #1a1a1a;
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cta2 {
  background: white;
  color: #1a1a1a;
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}

.mb-40 {
  margin-bottom: 40px !important;
}
.text-align-center {
  text-align: center;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.pc {
  opacity: 0.4;
  position: absolute;
  top: 395px;
  right: -220px;
  filter: drop-shadow(
    0 0 10px rgba(255, 255, 255, 0.8)
  ); /* 光の色と強さを調整 */
}

.relative {
  position: relative;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}

.title-text {
  font-size: 2em;
}

.top-text {
  margin-top: 0px !important;
}

/* メディアクエリ for レスポンシブデザイン */
@media screen and (max-width: 768px) {
  header {
    height: auto; /* モバイルでは自動高さに */
    min-height: 100vh; /* 最小高さをビューポートの高さに */
  }
  header h1 {
    font-size: 2.8em;
  }
  header .subtitle {
    font-size: 1.5em;
  }
  .english-text {
    font-size: 0.7em;
  }
  header p:not(.subtitle) {
    font-size: 1.1em;
  }
  .cta {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .title-text {
    font-size: 1em;
  }

  .logo-image {
    margin-bottom: -7px !important;
  }
}

@media screen and (max-width: 480px) {
  header h1 {
    font-size: 2.3em;
  }
  header .subtitle {
    font-size: 1.1em;
  }

  header .subtitle2 {
    font-size: 0.9em !important;
  }

  .english-text {
    font-size: 0.6em;
    letter-spacing: 2px;
  }
  header p:not(.subtitle) {
    font-size: 1em;
  }
  .cta {
    font-size: 1em;
    padding: 10px 20px;
  }
  .cta1 {
    margin-top: 0px !important;
  }

  section .mt-sm-5 {
    margin-top: 5rem !important;
  }
}

/* システムイメージセクション */
.system-images {
  margin-top: 50px;
}

.image-container {
  display: flex;
  flex-direction: column; /* 縦方向に並べる */
  align-items: center;
  gap: 0px; /* 画像間の間隔 */
}

.system-logo,
.system-about {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  padding-top: 16px;
}

.system-logo {
  width: 700px; /* または適切なサイズ */
}

.system-about {
  width: 100%; /* 親要素の幅いっぱいに広げる */
  max-width: 600px; /* 最大幅を設定 */
}

/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
  .system-logo,
  .system-about {
    width: 100%;
    max-width: 300px; /* モバイルでの最大幅 */
  }

  .trading-history {
    padding: 0px;
  }
}

.white {
  color: white !important;
}

.logo img {
  margin: auto;
}

.black-bg {
  background-color: #000;
}

.pb-10 {
  padding-bottom: 10px;
}

.trading-history {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  margin-bottom: 100px;
  background-color: #000;
}
.trading-slider {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}
.trading-slides {
  display: flex;
  transition: transform 0.5s ease;
}
.trading-slide {
  flex: 0 0 100%;
  width: 100%;
}
.trading-slide img {
  width: 100%;
  max-width: 270px;
  margin: auto;
  height: auto;
  display: block;
}
.trading-nav {
  position: absolute;
  top: 50%;
  left: -50px;
  right: -50px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.trading-nav button {
  background: rgba(255, 215, 0, 0.7);
  border: none;
  color: #000;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}
.trading-nav button:hover {
  background-color: rgba(255, 215, 0, 0.9);
}
.trading-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.trading-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.trading-dot.active {
  background-color: #ffd700;
}

.footer {
  padding-top: 0px;
}

@media screen and (max-width: 768px) {
  /* 画面幅が768px以下の場合 */
  .trading-nav {
    left: -20px; /* ネガティブマージンを小さくする */
    right: -20px;
  }
  .trading-history {
    padding: 0px;
    max-width: 400px;
  }
}

@media screen and (max-width: 480px) {
  /* 画面幅が480px以下の場合 */
  .trading-nav {
    left: 0; /* ネガティブマージンを削除する */
    right: 0;
  }
  .trading-dots {
    bottom: -8px;
  }
  .footer {
    text-align: center;
  }
}

/* 新しい要約セクションのスタイル */
.summary {
  border-radius: 15px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.background-gray {
  background-color: #1a1a1a;
}

.summary-content {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.2em;
  line-height: 1.8;
}

.summary-content p {
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 1.3em;
  font-weight: bold;
  color: #ffd700;
  text-align: center;
  padding: 20px;
  border: 2px solid #ffd700;
  border-radius: 10px;
  background-color: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
  .summary {
    padding: 0;
    max-width: 100%;
  }

  .summary-content {
    font-size: 1.1em;
    padding: 0px 20px;
  }

  .highlight-text {
    font-size: 1.2em;
    padding: 15px;
  }

  .px-20 {
    padding: 0px 20px;
    text-align: center;
  }

  .mt-5 {
    margin-top: 3rem !important;
  }
}

@media screen and (max-width: 480px) {
  .summary-content {
    font-size: 1em;
  }

  .highlight-text {
    font-size: 1.1em;
    padding: 10px;
  }

  .footer .logo-image {
    width: 240px;
  }
}

/* Recent Trades Section */
.recent-trades {
  border-radius: 15px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}

.trades-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px;
}

.bg-white-exlusion {
  position: relative;
  padding: 40px;
}

.bg-white-exlusion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 30px;

  mix-blend-mode: exclusion;
  z-index: 1;
}

.recent-trades-background {
  background-image: url("images/new/background_recent.png"); /* 画像のパスを指定 */
  background-size: cover; /* 画像がコンテナ全体にフィットするように調整 */
  background-position: center; /* 画像を中央に配置 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1170px;
  margin: 0 auto 30px;
}

.trade-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 5;
}

.lighten-blend {
  mix-blend-mode: lighten;
}

.trade-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.points-image {
  position: relative;
  z-index: 5;
  text-align: center;
}

.trade-amount {
  text-align: center;
  font-size: 1.5em;
  color: #ffd700;
  margin-top: 30px;
}

#totalPips {
  font-weight: bold;
  font-size: 1.2em;
}

@media screen and (max-width: 768px) {
  .recent-trades {
    padding: 40px 0px;
  }

  .trades-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .trade-amount {
    font-size: 1.3em;
  }

  .trade-image {
    width: 85%;
    margin: auto;
  }
}

@media screen and (max-width: 480px) {
  .trade-amount {
    font-size: 1.1em;
  }
}

.silver-logo {
  max-width: 200px;
}

.toppan {
  font-family: "toppan-bunkyu-midashi-min-st", serif !important;
  font-weight: 900;
  font-style: normal;
}

.blue {
  color: #006a94;
  font-size: 43px;
}

.blue span {
  font-size: 46px;
}

.bg-blue {
  background-color: #006a94;
  text-align: center;
  padding: 100px 0 200px 0;
  position: relative;
}

.cta-text {
  font-size: 45px;
  font-family: "ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: white;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

@media screen and (max-width: 780px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .free-top {
    width: 100%;
    margin-top: 20px;
  }

  .top-text {
    max-width: 80% !important;
  }

  .top-logo {
    max-width: 80%;
  }

  .mt-7 {
    margin-top: 48px !important;
  }

  .mt-6 {
    margin-top: 38px !important;
  }
  .video-background {
    height: 100% !important;
  }

  .system-images {
    margin-top: 0px;
  }

  .urgency-section {
    padding: 0px;
  }

  .urgency-section::before {
    background: none;
  }

  .urgency-section img {
    width: 100%;
  }

  .urgency-section a {
    width: 100%;
    max-width: 360px;
  }

  section {
    margin-bottom: 40px;
  }

  .splide {
    text-align: center;
  }

  .btn2 {
    width: 100%;
    max-width: 360px;
  }

  .btn2 img {
    width: 100%;
  }

  .mt-5m {
    margin-top: 20px !important;
  }

  .trades-grid {
    padding: 0px;
  }

  .bg-white-exlusion {
    padding: 18px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.comparison {
  padding-bottom: 180px;
}

.btn2 {
  bottom: 72px !important;
}

.btn3 {
  width: 100%;
  max-width: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
}

.btn3 img {
  width: 100%;
}

.success-slider {
  position: relative;
  overflow: hidden;
}

.success-slides {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.success-slide {
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
}

.success-slide img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

.success-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  background-color: #ffd700;
  color: #1a1a1a;
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.success-nav .prev {
  left: 10px;
}

.success-nav .next {
  right: 10px;
}

.success-dots {
  position: absolute;
  bottom: 160px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.success-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.success-dot.active {
  background-color: #ffd700;
}
.slide-info {
  text-align: center;
  margin-top: 20px;
  color: #ffd700;
}

.slide-date {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.slide-revenue {
  font-size: 1.4em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .slide-date {
    font-size: 1em;
  }

  .slide-revenue {
    font-size: 1.2em;
  }
}

.trading-info {
  text-align: center;
  margin-top: 20px;
  color: #ffd700; /* 金色のテキスト */
}

.trading-month {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.trading-amount {
  font-size: 1.1em;
}

.revenue-amount {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
}

.revenue-info {
  font-size: 1.3em;
  text-align: center;
}
