@charset "utf-8";
*, *::before, *::after {
  box-sizing: border-box;
  user-select: none;
}

html, body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
}

table th{
  vertical-align:top;
}


img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}


a{
	text-decoration:underline;
	color: rgba(var(--blue),1.0);
}

a {
    -webkit-tap-highlight-color:transparent;
}

a:hover{
	color: rgba(var(--blue),0.6);
}

a img {
    border-style:none;
}

input,textarea,select,button{
	font-family: "Noto Sans JP", sans-serif;
}

img{
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

html,body {  
	-webkit-text-size-adjust: 100%; 
} 

:root {
	--black:0, 0, 0;
	--white:255, 255, 255;
	--navy:6, 20, 48;
	--blue:0, 229, 255;
	--grey:241, 245, 249;
    --yellow:255, 215, 0;
}

body {
	min-height: 100vh;
    margin:0;
	width:100%; 
    color: rgba(var(--navy),1.0);
	background: rgba(var(--black),0.04);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: clamp(14px, 3.5vw, 18px); 
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}


#point_list th,
#point_list td {
    width: auto;
    font-size: 75%;
}


#wrapper {
  overflow: hidden;
  margin: 0 auto;
  max-width: 1024px;
  background: rgba(var(--white), 1.0);
  padding-top: 92px;
}
@media screen and (max-width: 767px) {
  #wrapper {
    padding-top: 50px;
  }
}

/* =========================================
   Header
========================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1024px;
  z-index: 1000;
  background-color: rgba(var(--white), 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(var(--black), 0.1);
  height: 92px;
}

.header__logo {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .header {
   height: 50px;
  }
  .header__logo {
    width: 120px;
  }
}



/* =========================================
   Hero
========================================= */
.hero {
  background-color: rgba(var(--navy), 1.0);
  padding-bottom: 20px;
}

.hero__copy {
  color: rgba(var(--blue), 1.0);
  text-align: center;
  font-size: clamp(20px, 5.5vw, 32px);
  font-weight: 700;
  padding: 24px 10px;
  text-shadow: 
    0 0 5px rgba(var(--blue), 0.8),
    0 0 15px rgba(var(--blue), 0.6);
}

.hero__image {
  width: 100%;
}

.hero__image img {
  width: 100%;
  height: auto;
}

/* =========================================
   CTA Area
========================================= */
.cta-area {
  background-color: rgba(var(--navy), 1.0);
  padding: 20px 15px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--blue), 1.0);
  color: rgba(var(--navy), 1.0);
  font-weight: 700;
  font-size: clamp(18px, 5vw, 26px);
  text-decoration: none;
  width: 100%;
  max-width: 600px;
  padding: 16px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
  animation: pulseGlow 2s infinite ease-in-out;
  line-height: 1; 
}

.btn-line:hover {
  color: rgba(var(--navy), 1.0);
}

.btn-line__icon {
  width: 0.9em; 
  height: auto;
}

.cta-area__note {
  color: rgba(var(--white), 0.6);
  font-size: clamp(11px, 3vw, 14px);
  text-align: center;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(var(--blue), 0.5);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(var(--blue), 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(var(--blue), 0.5);
  }
}

/* =========================================
   最新の的中実績
========================================= */
.results-area {
 
  padding: 40px 15px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  max-width: 1024px;
  margin-inline: auto;
}

.results-title {
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 900;
  font-style: italic;
  color: rgba(var(--navy), 1.0);
  padding-left: 12px;
  position: relative;
  line-height: 1.2;
}
.results-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: rgba(var(--blue), 1.0);
}

.results-note {
  font-size: clamp(10px, 3vw, 13px);
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px; 
}

.results-note::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(var(--blue), 1.0);
  animation: flashDot 1.5s infinite ease-in-out;
}

@keyframes flashDot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
}


.results-swiper {
  padding: 10px 0;
  max-width: 1024px;
  margin: 0 auto;
}

/* =========================================
   カードの基本スタイル
========================================= */
.result-card {
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.result-card__date {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 5px;
  font-family: sans-serif;
}

.result-card__race {
  font-size: clamp(16px, 4.5vw, 20px);
  font-weight: 700;
  margin-bottom: 40px;
}

.result-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.result-card__type {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
}

.result-card__prize-wrap {
  text-align: right;
}

.result-card__prize {
  display: block;
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 900;
  color: rgba(var(--yellow), 1.0);
  line-height: 1.1;
}

.result-card__prize-note {
  font-size: 11px;
  opacity: 0.7;
}

.result-card--navy {
  background-color: rgba(var(--navy), 1.0);
  color: rgba(var(--white), 1.0);
}
.result-card--navy .result-card__type {
  background-color: rgba(255,255,255,0.15);
}
.result-card--navy .result-card__prize {
  text-shadow: 0 0 10px rgba(var(--yellow), 0.5);
}

.result-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(var(--yellow), 1.0);
  color: rgba(var(--navy), 1.0);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 12px;
}

.result-card__badge2 {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(var(--blue), 1.0);
  color: rgba(var(--navy), 1.0);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 12px;
}

.result-card--white {
  background-color: rgba(var(--white), 1.0);
  color: rgba(var(--navy), 1.0);
  border: 1px solid #eee;
}
.result-card--white .result-card__type {
  background-color: #f1f5f9;
  color: rgba(var(--navy), 0.7);
}

/* =========================================
   RIDEXが選ばれる理由
========================================= */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}


.reasons-area {
  padding: 60px 15px;
  background-color: rgba(var(--white), 1.0);
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 900;
  font-style: italic;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 40px;
}

/* --- グリッドレイアウト（ここでスマホとPCを切り替え） --- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 1024px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reason-card {
  background-color: #f8f9fc;
  border-radius: 16px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reason-card__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  align-self: center;
}

.reason-card__icon-wrap .material-symbols-outlined {
  font-size: 24px;
}

.icon-bg-cyan {
  background-color: rgba(0, 229, 255, 0.2);
  color: #00bcd4;
}
.icon-bg-blue {
  background-color: rgba(100, 149, 237, 0.2);
  color: #6495ed;
}
.icon-bg-yellow {
  background-color: rgba(var(--yellow), 0.2);
  color: #d4af37; 
}

.reason-card__title {
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 700;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 12px;
}

.reason-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =========================================
   精鋭の予想師陣
========================================= */
.tipsters-area {
  padding: 60px 15px;
}

.tipsters-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1024px;
  margin: 0 auto;
}

.tipster-card {
  background-color: rgba(var(--white), 1.0);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 480px) {
  .tipster-card {
    padding: 20px 15px;
    gap: 15px;
  }
}

.tipster-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 3px;
  background-color: rgba(var(--white), 1.0);
}

.tipster-card__icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.tipster-card__icon--cyan {
  border: 2px solid rgba(var(--blue), 1.0);
  box-shadow: 0 0 15px rgba(var(--blue), 0.4);
}
.tipster-card__icon--yellow {
  border: 2px solid rgba(var(--yellow), 1.0);
  box-shadow: 0 0 15px rgba(var(--yellow), 0.4);
}
.tipster-card__icon--blue {
  border: 2px solid #6495ed;
  box-shadow: 0 0 15px rgba(100, 149, 237, 0.4);
}

.tipster-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tipster-card__name {
  font-size: clamp(20px, 5.5vw, 24px);
  font-weight: 900;
  color: rgba(var(--navy), 1.0);
  line-height: 1.2;
}

.tipster-card__style {
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 900;
  font-style: italic;
  margin-bottom: 4px;
}

.style-cyan { color: rgba(var(--blue), 1.0); }
.style-yellow { color: rgba(var(--yellow), 1.0); }
.style-blue { color: #6495ed; }

.tipster-card__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* =========================================
   登録ステップ
========================================= */
.steps-area {
  padding: 60px 15px;
  background-color: rgba(var(--white), 1.0);
}

.steps-header {
  text-align: center;
  margin-bottom: 50px;
}

.steps-header .section-title {
  margin-bottom: 15px; 
}

.steps-subtitle {
  font-size: clamp(14px, 4vw, 16px);
  color: #666;
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .steps-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.step-item__number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  margin-bottom: 24px;
}

.step-item__number--navy {
  background-color: rgba(var(--navy), 1.0);
  color: rgba(var(--white), 1.0);
  box-shadow: 0 10px 25px rgba(var(--navy), 0.15);
}

.step-item__number--blue {
  background-color: rgba(var(--blue), 1.0);
  color: rgba(var(--navy), 1.0);
  box-shadow: 0 0 25px rgba(var(--blue), 0.6);
}

.step-item__title {
  font-size: clamp(20px, 5.5vw, 24px);
  font-weight: 900;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.step-item__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =========================================
   ボトムCTA
========================================= */
.cta-bottom-area {
  padding: 40px 15px 80px;
  background-color: rgba(var(--white), 1.0); 
}

.cta-bottom {
  background-color: rgba(var(--navy), 1.0);
  border-radius: 24px;
  padding: 50px 20px;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-bottom__title {
  color: rgba(var(--white), 1.0);
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--blue), 1.0);
  color: rgba(var(--navy), 1.0);
  font-weight: 900;
  font-size: clamp(18px, 5vw, 24px);
  text-decoration: none;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  border-radius: 5.0em;
  margin-bottom: 30px;
  box-shadow: 0 0 50px rgba(var(--blue), 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 50px rgba(var(--blue), 0.4);
  color: rgba(var(--navy), 1.0);
}

.cta-bottom__features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(var(--white), 0.7);
  font-size: 14px;
  font-weight: 700;
}

.feature-item .icon-check {
  font-size: 18px;
}

/* =========================================
   Footer
========================================= */
.footer {
  background-color: rgba(var(--grey), 1.0);
  padding: 60px 15px 10px; 
}

.footer__inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer__logo-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.footer__logo {
  width: 160px;
  height: auto;
  margin: 0 auto;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 15%;
  margin-bottom: 40px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
}

.footer__nav-title {
  font-size: 16px;
  font-weight: 900;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__nav-list a {
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer__nav-list a:hover {
  color: rgba(var(--blue), 1.0);
}

.footer__bottom {
  border-top: 1px solid rgba(var(--navy), 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer__warning {
  color: #64748b;
  font-size: clamp(10px, 3vw, 12px);
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer__copy {
  color: #64748b;
  font-size: 12px;
}

/* =========================================
  フローティング
========================================= */
.floating-btn {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 15px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.floating-btn.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-btn__inner {
  max-width: 600px;
  margin: 0 auto;
}

.floating-btn .btn-line {
  margin-bottom: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(var(--blue), 0.5);
}

.header--sub .header__back {
  position: absolute;
  left: 16px;
  display: flex;
  align-items: center;
  color: rgba(var(--navy), 1.0);
  text-decoration: none;
  font-size: clamp(24px, 2.5vw, 40px);
}

.header--sub .header__back span.material-symbols-outlined {
    font-size: inherit; 
}


.header--sub .header__title {
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
  color: rgba(var(--navy), 1.0);
  margin: 0;
}

/* =========================================
   RIDEXとは (メインコンテンツ)
========================================= */
.main-content {
  padding: 10% 2.5% 15%;
}

.main-content2 {
  padding: 0.1% 2.5% 5%;
}

.main-content3 {
  padding: 10% 2.5%;
  background: #f6fafe;
}

.evolution-badge {
  display: inline-block;
  background-color: rgba(var(--navy), 1.0);
  color: rgba(var(--blue), 1.0);
  font-size: clamp(12px, 2.5vw, 24px);
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  margin-top: 20px;
  margin-bottom: 24px;
}

.main-catchphrase {
  font-size: clamp(36px, 10vw, 100px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.06em;
  margin: 0 0 32px 0;
}

.main-catchphrase .catchphrase-top {
  color: rgba(var(--navy), 1.0);
}

.main-catchphrase .catchphrase-bottom {
  color: rgba(var(--navy), 1.0);
}

.main-catchphrase .catchphrase-bottom span {
  color: rgba(var(--blue), 1.0);
}

.description {
  font-size: clamp(14px, 2.5vw, 24px);
  line-height: 1.6;
  font-weight: 500;
  color: rgba(var(--black), 0.9);
  margin: 0 0 40px 0;
}

/* =========================================
   画像セクション (BANK OVERHEAT)
========================================= */
.image-section {
  position: relative;
  width: 100%;
}

.image-section .bg-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-section .gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(var(--navy), 1.0) 0%, rgba(var(--navy), 0) 60%);
  pointer-events: none; 
}

.image-section .image-text {
  position: absolute;
  bottom: 8%;
  left: 3%;
  z-index: 2;
}

.image-section .image-text .text-inner {
  display: inline-block;
  color: rgba(var(--white), 1.0);
  font-size: clamp(20px, 2.5vw, 50px);
  font-weight: 900;
  letter-spacing: 0.02em;
  border-bottom: 2px solid rgba(var(--blue), 1.0);
  padding-bottom: 4px;
}

/* =========================================
   科学するセクション
========================================= */
.science-section {
  background-color: rgba(var(--navy), 1.0);
}

.science-content {
  padding: 10% 2.5% 15%;
}

.science-section .catchphrase-top {
  color: rgba(var(--white), 1.0);
}

.science-section .science-description {
  color: rgba(var(--white), 1.0);
}

/* =========================================
   4つの特徴ブロック (CSS Grid)
========================================= */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media screen and (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.feature-card {
  background-color: rgba(var(--white), 0.05);
  border-left: 4px solid rgba(var(--blue), 1.0);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  color: rgba(var(--blue), 1.0);
  font-size: clamp(32px, 5vw, 48px)!important;
  margin-bottom: 16px;
}

.feature-title {
  color: rgba(var(--white), 1.0);
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
  text-align: center;
}

.feature-text {
  color: rgba(var(--white), 0.8);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

/* =========================================
   予想師陣セクション (3列カード)
========================================= */
.experts-section {
  padding: 0 0;
}

.experts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .experts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
  }
}

.expert-card {
  background-color: rgba(var(--white), 1.0);
  box-shadow: 0 6px 16px rgba(var(--black), 0.12);
  display: flex;
  flex-direction: column;
}

.expert-card__img-wrap {
  position: relative;
  width: 100%;
}

.expert-img {
  width: 100%;
  height: auto;
  display: block;
}

.expert-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--navy), 1.0);
  color: rgba(var(--blue), 1.0);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  white-space: nowrap;
}

.expert-card__content {
  padding: 12px 8px;
  flex-grow: 1;
}

.expert-subtitle {
  color: rgba(var(--blue), 1.0);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.expert-name {
  color: rgba(var(--navy), 1.0);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 900;
  margin-bottom: 8px;
}

.expert-desc {
  color: rgba(var(--black), 0.8);
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}    

/* =========================================
   プロテクションカード (RISK PROTECTION)
========================================= */
.protection-card {
  background-color: rgba(var(--white), 0.05);
  border-bottom: 4px solid rgba(var(--blue), 1.0);
  padding: 48px 24px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.protection-icon {
  color: rgba(var(--blue), 1.0);
  font-size: clamp(48px, 8vw, 64px) !important;
  margin-bottom: 24px;
}

.protection-title {
  color: rgba(var(--white), 1.0);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
}

.protection-text {
  color: rgba(var(--white), 1.0);
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

/* =========================================
   データ解析の特徴セクション
========================================= */
.data-features-section {
  padding: 6% 2.5% 15%;
  background-color: rgba(var(--white), 1.0);
}

.data-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;/
  max-width: 1024px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .data-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
  }
}

.data-feature-card {
  background-color: #f8f9fc;
  border-radius: 16px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.data-feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(var(--navy), 1.0);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.data-feature-icon span.material-symbols-outlined {
  color: rgba(var(--blue), 1.0);
  font-size: 36px !important;
}

.data-feature-title {
  color: rgba(var(--navy), 1.0);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
}

.data-feature-desc {
  color: rgba(var(--black), 0.7);
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  text-align: left;
  width: 100%;
}


.accuracy-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
}

.accuracy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.accuracy-icon {
  flex-shrink: 0;
  width: clamp(64px, 15vw, 88px);
  height: clamp(64px, 15vw, 88px);
  background-color: rgba(var(--navy), 1.0);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accuracy-icon .material-symbols-outlined {
  color: rgba(var(--blue), 1.0);
  font-size: clamp(24px, 6.5vw, 38px) !important;
}

.accuracy-text-box {
  flex-grow: 1;
}

.accuracy-title {
  color: rgba(var(--black), 0.9);
  font-size: clamp(16px, 3.5vw, 20px);
  font-weight: 700;
}

.accuracy-desc {
  color: rgba(var(--black), 0.8);
  font-size: clamp(13px, 2.5vw, 15px);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

.accuracy-image-text {
  position: absolute;
  bottom: 6%;
  left: 4%;
  z-index: 2;
}

.accuracy-number {
  color: rgba(var(--blue), 1.0);
  font-size: clamp(64px, 15vw, 100px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.accuracy-number span {
  font-size: clamp(32px, 7vw, 50px);
}

.accuracy-caption {
  color: rgba(var(--white), 1.0);
  font-size: clamp(12px, 2.5vw, 16px);
  font-weight: 700;
  margin: 0;
}

.charge {
  color: rgba(var(--black), 0.6);
  font-size: clamp(10px, 2.5vw, 12px);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

/* =========================================
   注意事項セクション
========================================= */
.notes-section {
  padding: 0% 2.5% 15%;
}

.notes-box {
  background-color: rgba(var(--navy), 1.0);
  border-radius: 16px;
  padding: clamp(24px, 6vw, 48px) clamp(20px, 5vw, 40px);
  max-width: 1024px;
  margin: 0 auto;
}

.notes-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.notes-header .material-symbols-outlined {
  color: rgba(var(--blue), 1.0);
  font-size: clamp(24px, 5vw, 28px) !important;
}

.notes-header .notes-title {
  color: rgba(var(--white), 1.0);
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.05em;
}

.notes-item {
  margin-bottom: 32px;
}

.notes-item:last-child {
  margin-bottom: 0;
}

.notes-en {
  display: block;
  color: rgba(var(--blue), 1.0);
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.notes-ja {
  color: rgba(var(--white), 1.0);
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  margin: 0 0 12px 0;
}

.notes-text {
  color: rgba(var(--white), 1.0);
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

/* =========================================
   サポートリンクエリア
========================================= */
.support-links-section {
  padding: 5% 2.5% 10%;
}

.support-links-inner {    
  margin: 0 auto;
}

.support-text {
  color: rgba(var(--navy), 1.0);
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.6;
  font-weight: 500;
  margin: 0 0 24px 0;
}

.support-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .support-buttons {
    flex-direction: row;
    gap: 20px;
  }
}

.btn-support {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 20px 16px;
  border-radius: 12px;
  font-size: clamp(16px, 4.5vw, 20px);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  flex: 1;
}


.btn-support .material-symbols-outlined {
  font-size: clamp(22px, 5.5vw, 26px) !important;
}

.btn-support--faq {
  background-color: #E2E8F0;
  color: rgba(var(--navy), 1.0);
}

.btn-support--faq:hover {
  color: rgba(var(--navy), 1.0);
}

.btn-support--contact {
  background-color: rgba(var(--blue), 1.0);
  color: rgba(var(--white), 1.0);
}

.btn-support--contact:hover {
  color: rgba(var(--white), 1.0);
}

/* =========================================
   FAQ（よくある質問）
========================================= */
.faq-section {
  padding: 0 2.5%;
}

.faq-container {
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  color: rgba(var(--navy), 1.0);
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 900;
  border-left: 4px solid rgba(var(--blue), 1.0);
  padding-left: 12px;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: rgba(var(--white), 1.0);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(var(--black), 0.04);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 12px;
  font-size: clamp(15px, 3.5vw, 16px);
  font-weight: 700;
  color: rgba(var(--navy), 1.0);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: rgba(var(--black), 0.3);
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 28px !important;
}

details[open] .faq-question {
  padding-bottom: 12px;
}

details[open] .faq-icon {
  transform: rotate(180deg);
  color: rgba(var(--blue), 1.0);
}

.faq-answer {
  padding: 0 12px 24px;
  animation: fadeIn 0.4s ease;
}

.faq-answer p {
  color: rgba(var(--black), 0.7);
  font-size: clamp(13px, 3vw, 15px);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   規約
========================================= */
.terms-section {
  padding: 5% 2.5%;
}

.terms-container {
  
  margin: 0 auto;
}

.terms-main-title {
  text-align: center;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 900;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.terms-box {
  background-color: rgba(var(--white), 1.0);
  border: 1px solid rgba(var(--navy), 0.1);
  border-radius: 12px;
  padding: clamp(20px, 5vw, 40px);
}

.terms-lead {
  font-size: clamp(13px, 3vw, 15px);
  color: rgba(var(--black), 0.8);
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(var(--navy), 0.2);
}

.terms-item {
  margin-bottom: 24px;
}

.terms-item:last-child {
  margin-bottom: 0;
}

.terms-item-title {
  font-size: clamp(15px, 3.5vw, 17px);
  font-weight: 700;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 8px;
}

.terms-item-text {
  font-size: clamp(13px, 3vw, 14px);
  color: rgba(var(--black), 0.7);
  line-height: 1.7;
  font-weight: 500;
}

/* =========================================
   特定商取引法に基づく表記
========================================= */
.law-section {
  padding: 5% 2.5%;
  background-color: rgba(var(--white), 1.0);
}

.law-container {
  margin: 0 auto;
}

.law-main-title {
  text-align: center;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 900;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.law-box {
  border: 1px solid rgba(var(--navy), 0.5);
}

.law-table {
  width: 100%;
  border-collapse: collapse;
}

.law-table th,
.law-table td {
  padding: 24px 16px;
  border-bottom: 1px solid rgba(var(--navy), 0.1);
  font-size: clamp(13px, 3vw, 15px);
  line-height: 1.6;
  text-align: left;
}

.law-table th {
  width: 30%;
  background-color: rgba(var(--navy), 0.02);
  color: rgba(var(--navy), 1.0);
  font-weight: 700;
  vertical-align: top;    
}

.law-table td {
  color: rgba(var(--black), 0.8);
  font-weight: 500;
}

.law-note {
  font-size: 0.9em;
  color: rgba(var(--black), 0.5);
  display: block;
  margin-top: 4px;
}

@media screen and (max-width: 600px) {
  .law-table th,
  .law-table td {
    display: block;
    width: 100%;
    padding: 12px 10px;
  }
  
  .law-table th {
    border-bottom: none;
    border-bottom: 1px solid rgba(var(--navy), 0.1);
  }
}

/* =========================================
   お問い合わせ   
========================================= */
.contact-section {
  padding: 5% 2.5%;
  background-color: rgba(var(--white), 1.0);
}

.contact-container {
  margin: 0 auto;
}

.contact-main-title {
  text-align: center;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 900;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

/* --- 情報ボックス --- */
.contact-info-box {
  background-color: #f8f9fc;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}

.contact-lead {
  font-size: clamp(14px, 3.5vw, 16px);
  color: rgba(var(--navy), 1.0);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.contact-hours {
  background-color: rgba(var(--white), 1.0);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(var(--navy), 0.1);
}

.hours-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 8px;
}

.hours-list {
  font-size: 14px;
  color: rgba(var(--black), 0.8);
  margin-bottom: 12px;
  padding-left: 0;
}

.hours-list li {
  margin-bottom: 4px;
}

.hours-note {
  font-size: 12px;
  color: #e53e3e;
  margin: 0;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 700;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 10px;
}

/* 必須マーク */
.required-mark {
  display: inline-block;
  background-color: #e53e3e;
  color: rgba(var(--white), 1.0);
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 16px;
  background-color: rgba(var(--white), 1.0);
  color: rgba(var(--navy), 1.0);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(var(--blue), 1.0);
  box-shadow: 0 0 0 3px rgba(var(--blue), 0.2);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: rgba(var(--navy), 0.5);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

::placeholder {
  color: #94a3b8;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit-btn {
  margin: 0 auto;
  max-width: 320px;
  border: none;
  cursor: pointer;
}

.contact-bottom-note {
  text-align: center;
  font-size: 12px;
  color: rgba(var(--black), 0.6);
  margin-top: 24px;
}

.contact-complete {
  text-align: center;
  background-color: #f8f9fc; /* 情報ボックスと同じ背景色 */
  border-radius: 12px;
  padding: 40px 24px;
  animation: fadeIn 0.5s ease; /* アコーディオンで作ったフワッと表示を使い回し */
}

.complete-icon {
  color: rgba(var(--blue), 1.0);
  font-size: clamp(48px, 10vw, 64px) !important;
  margin-bottom: 16px;
}

.complete-title {
  color: rgba(var(--navy), 1.0);
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 900;
  margin-bottom: 16px;
}

.complete-text {
  color: rgba(var(--black), 0.8);
  font-size: clamp(14px, 3.5vw, 15px);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 24px;
}

.complete-note {
  font-size: 12px;
  color: #e53e3e; /* 注意書き */
  margin-bottom: 40px;
}

.complete-btn {
  max-width: 280px;
  margin: 0 auto;
}

/* =========================================
   Plan List (プラン一覧)
========================================= */

.plan-tabs-wrapper {
  background-color: rgba(var(--white), 1.0);
  padding: 15px;
  border-bottom: 1px solid rgba(var(--black), 0.05);
}

.plan-tabs {
  display: flex;
  background-color: rgba(var(--grey), 0.8);
  border-radius: 30px;
  padding: 4px;
}

.plan-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 900;
  color: rgba(var(--grey3), 1.0);
  background: transparent;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  transition: all 0.3s;
}

.plan-tab.is-active {
  background-color: rgba(var(--white), 1.0);
  color: rgba(var(--navy), 1.0);
  box-shadow: 0 2px 8px rgba(var(--black), 0.05);
}

.plan-content {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.plan-content.is-active {
  display: block;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.plan-section {
  padding: 0 15px 20px;
}

.plan-group {
  margin-bottom: 40px;
}


.plan-grid--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.plan-grid--1col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.plan-card {
  display: block;
  text-decoration: none;
  background-color: rgba(var(--white), 1.0);
  border: 1px solid rgba(var(--black), 0.05);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(var(--black), 0.02);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:active {
  transform: scale(0.98);
}

.plan-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 2;
}

.plan-badge--green {
  background-color: rgba(var(--green), 1.0);
  color: rgba(var(--white), 1.0);
  border:2px solid  rgba(var(--white), 1.0);
}

.plan-card__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--blue), 1.0);
  color: rgba(var(--navy), 1.0);
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
}

.plan-card--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 15px 20px;
}

.plan-card--vertical .plan-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.plan-card--vertical .plan-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-card__name {
  font-size: clamp(16px, 4.5vw, 18px);
  font-weight: 900;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 6px;
}

.plan-card__copy {
  font-size: clamp(11px, 3vw, 12px);
  color: rgba(var(--grey3), 1.0);
  margin-bottom: 12px;
}

.plan-card__price {
  font-size: clamp(16px, 4.5vw, 18px);
  font-weight: 900;
  color: rgba(var(--navy), 1.0);
  margin-bottom: 15px;
}

.plan-card__price--cyan {
  color: #00e5ff;
}

.plan-card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 15px 20px;
}

.plan-card--horizontal .plan-card__icon-wrap {
  width: 65px;
  height: 65px;
  margin-right: 15px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.plan-card--horizontal .plan-card__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-card--horizontal .plan-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;          
  width: auto;
}

.plan-card--horizontal .plan-card__name {
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 900;
  margin-bottom: 2px;
}

.plan-card--horizontal .plan-card__copy {
  font-size: clamp(11px, 3vw, 12px);
  color: rgba(var(--grey3), 1.0);
  margin-bottom: 4px;
}

.plan-card--horizontal .plan-card__price {
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 900;
  margin-bottom: 0;
}

.plan-card--horizontal .plan-card__action {
  margin-left: 10px;
  flex-shrink: 0;
}

.plan-card--horizontal .plan-card__btn {
  padding: 8px 16px;
  font-size: clamp(11px, 3vw, 13px);
}

.plan-card--dark {
  background-color: rgba(var(--navy), 0.2);
  border: none;
}

.plan-card--dark .plan-card__name,
.plan-card--dark .plan-card__copy {
  color: rgba(var(--white), 1.0);
}

.plan-card--dark-large {
  background-color: #1a1e29;
  border: none;
  padding: 30px 20px;
}

.plan-card--dark-large .plan-card__icon {
  width: 100px;
  height: 100px;
}

.plan-card--dark-large .plan-card__name,
.plan-card--dark-large .plan-card__copy {
  color: rgba(var(--white), 1.0);
}

.plan-card__btn--full {
  width: 100%;
}


.plan-card--locked {
  pointer-events: none;
  border: 1px solid rgba(var(--grey3), 0.2);
}

.plan-card__blur-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  filter: blur(8px);
  opacity: 0.5;
}

.plan-card__lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.lock-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.lock-icon-circle--black { background-color: rgba(var(--vlack), 1.0); }
.lock-icon-circle--green { background-color: #28a745; }

.lock-icon-circle .material-symbols-outlined {
  color: #fff;
  font-size: 30px;
}

.lock-text {
  font-size: 13px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 20px;
  color: #fff;
}

.lock-text--black { background-color: rgba(var(--black), 1.0); }
.lock-text--green { background-color: rgba(var(--green), 1.0); }

.plan-card--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 15px 20px;
}

.plan-card--vertical .plan-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.plan-card--vertical .plan-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-card--dark {
  background-color: #1a1e29;
  border: none;
}

.plan-card--dark .plan-card__name{
  color: rgba(var(--white), 1.0);
}

.plan-card--dark .plan-card__copy {
  color: rgba(var(--grey3), 1.0);
}

.plan-card__price--cyan {
  color: rgba(var(--blue), 1.0);;
}