/**
 * S-CONNECT LP v6.0 Design Enhancements
 * 2026-04-09
 * 主要な改善: 初月無料バッジ強化、動的背景、97%セクション再設計、
 * 4枚カード・5機能カード配置最適化、3ステップ再構成、AI質問機能追加
 */

/* ========================================
   ⚠️ WARNING HERO - トラテープ背景エリア
   ======================================== */
.warning-hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 -80px 64px;
  padding: 80px 80px;
  background: #f5c800;
  text-align: center;
}

/* トラテープ斜めストライプ - 動くアニメーション */
.warning-hero-tape {
  position: absolute;
  inset: -200px;
  background: repeating-linear-gradient(
    -45deg,
    #222222 0px,
    #222222 36px,
    #f5c800 36px,
    #f5c800 72px
  );
  background-size: 102px 102px;
  animation: tape-scroll 6s linear infinite;
  opacity: 1;
}

@keyframes tape-scroll {
  0%   { background-position: 0 0; }
  100% { background-position: 102px 102px; }
}

/* 光沢オーバーレイ */
.warning-hero-tape::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 36px,
    rgba(255,255,255,0.0) 36px,
    rgba(255,255,255,0.0) 72px
  );
  background-size: 102px 102px;
  animation: tape-scroll 6s linear infinite;
}

/* 中央を暗くして文字を読みやすく */
.warning-hero-tape::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 85% 75% at 50% 50%,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.30) 65%,
    transparent 100%
  );
}

/* コンテンツは最前面 */
.warning-hero-content {
  position: relative;
  z-index: 2;
}

/* CAUTIONバッジ */
.warning-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 60, 0, 0.25);
  border: 2px solid #ff6b00;
  border-radius: 6px;
  color: #ffb347;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: caution-blink 1.2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5), inset 0 0 20px rgba(255,107,0,0.1);
}

.warning-hero-badge i {
  font-size: 1.2rem;
  animation: icon-shake 1.2s ease-in-out infinite;
}

@keyframes caution-blink {
  0%, 100% { box-shadow: 0 0 20px rgba(255,107,0,0.5), inset 0 0 20px rgba(255,107,0,0.1); }
  50%       { box-shadow: 0 0 40px rgba(255,107,0,0.9), inset 0 0 30px rgba(255,107,0,0.2); }
}

@keyframes icon-shake {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-8deg); }
  75%       { transform: rotate(8deg); }
}

/* メインタイトル */
.warning-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  letter-spacing: -0.01em;
}

.warning-hero-title em {
  font-style: normal;
  color: #ffcc00;
  text-shadow: 0 0 30px rgba(255,200,0,0.8), 0 2px 20px rgba(0,0,0,0.8);
  animation: em-glow 1.5s ease-in-out infinite;
}

@keyframes em-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(255,200,0,0.7), 0 2px 20px rgba(0,0,0,0.8); }
  50%       { text-shadow: 0 0 50px rgba(255,200,0,1.0), 0 0 80px rgba(255,150,0,0.6), 0 2px 20px rgba(0,0,0,0.8); }
}

/* サブテキスト */
.warning-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .warning-hero {
    margin: 0 -40px 64px;
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .warning-hero {
    margin: 0 -24px 48px;
    padding: 48px 24px;
    border-radius: 0;
  }
  .warning-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
}

/* ========================================
   ⚠️ BIG WARNING v2 - トラテープテイスト
   ======================================== */
.big-warning-v2 {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 48px auto 56px;
  max-width: 900px;
  border: 2px solid #f5c800;
  box-shadow: 0 4px 32px rgba(245,200,0,0.2), 0 0 0 1px rgba(245,200,0,0.1);
}

/* 左端にトラテープの細いストライプ帯 */
.bwv2-stripe {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 12px;
  background: repeating-linear-gradient(
    -45deg,
    #222 0px, #222 6px,
    #f5c800 6px, #f5c800 12px
  );
  background-size: 17px 17px;
  animation: tape-scroll 4s linear infinite;
}

/* ダーク背景 */
.bwv2-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 48px 36px 56px;
  background: #1a1a1a;
}

/* アイコン（2行分の高さで左に縦配置） */
.bwv2-icon {
  flex-shrink: 0;
  font-size: 2.8rem;
  color: #f5c800;
  line-height: 1;
  animation: icon-shake 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(245,200,0,0.7));
}

/* テキスト */
.bwv2-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  margin: 0;
  text-align: left;
}
.bwv2-text strong {
  color: #f5c800;
  font-weight: 800;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .bwv2-content {
    gap: 20px;
    padding: 24px 24px 24px 32px;
  }
  .bwv2-icon {
    font-size: 2.2rem;
  }
  .bwv2-text {
    font-size: 0.95rem;
  }
}

/* ========================================
   1. サービスタイプ表示 + 初月無料バッジ 強化
   ======================================== */
.hero-service-type {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.service-label {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(135deg, #FF3366, #8B5CF6, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
}
.hero-offer-badge {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF3366 0%, #FF6B99 50%, #8B5CF6 100%) !important;
  color: white !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  box-shadow: 
    0 0 30px rgba(255, 51, 102, 0.6),
    0 0 60px rgba(139, 92, 246, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.2) !important;
  animation: super-pulse 1.5s ease-in-out infinite, glow-pulse 2s ease-in-out infinite !important;
  z-index: 10;
  letter-spacing: 0.03em;
}
.hero-offer-badge i {
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.hero-offer-badge::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  background: linear-gradient(135deg, #FF3366, #8B5CF6, #3B82F6, #FF3366);
  border-radius: 50px;
  opacity: 0;
  z-index: -1;
  animation: rotate-gradient 3s linear infinite;
  background-size: 300% 300%;
}
.hero-offer-badge:hover::before {
  opacity: 0.6;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .hero-service-type {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .service-label {
    font-size: 1.4rem;
  }
  .hero-offer-badge {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
  }
}

@keyframes super-pulse {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.08) translateY(-2px); }
}
@keyframes glow-pulse {
  0%, 100% { 
    box-shadow: 
      0 0 30px rgba(255, 51, 102, 0.6),
      0 0 60px rgba(139, 92, 246, 0.4),
      0 8px 24px rgba(0, 0, 0, 0.2);
  }
  50% { 
    box-shadow: 
      0 0 50px rgba(255, 51, 102, 0.9),
      0 0 90px rgba(139, 92, 246, 0.7),
      0 12px 32px rgba(0, 0, 0, 0.3);
  }
}
@keyframes rotate-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========================================
   2. ファーストビュー 動的背景（画像版）
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=njRSKtJxwzGZihQMHi0FsNP9OExUO8i9OwB1%2BgEzgp3%2BialPqmGKnkMh%2FmUKYFz8UbZQE3ofStMgZah1bQTgatWjgh81Y6Zw7Om7MRMV2wCjqBjGnk%2BvcetOjYaz%2FrdOoLc0kMDNwm2fCCbszj%2B6Guk%3D&u2=lfTI7N1O%2Fcaj%2F0x%2F&width=2560');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  animation: bg-float 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 51, 102, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  animation: gradient-shift 15s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
@keyframes bg-float {
  0%, 100% { 
    transform: scale(1.05) translateX(0);
    opacity: 0.15;
  }
  50% { 
    transform: scale(1.1) translateX(-20px);
    opacity: 0.12;
  }
}
@keyframes gradient-shift {
  0%, 100% { 
    background: 
      radial-gradient(circle at 20% 30%, rgba(255, 51, 102, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  }
  33% { 
    background: 
      radial-gradient(circle at 70% 20%, rgba(255, 51, 102, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 30% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 50% 40%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  }
  66% { 
    background: 
      radial-gradient(circle at 40% 70%, rgba(255, 51, 102, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 60% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 50% 60%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  }
}

/* ========================================
   3. 97% セクション（全幅・1行強調デザイン）
   ======================================== */
.stat-97-oneliner {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fef5f8 100%);
  border: 3px solid #FF3366;
  border-radius: 20px;
  padding: 40px 60px;
  margin: 0 auto 28px;
  width: 100%;
  max-width: 900px;
  box-shadow: 
    0 20px 60px rgba(255, 51, 102, 0.2),
    0 0 60px rgba(255, 51, 102, 0.15),
    inset 0 0 80px rgba(255, 51, 102, 0.03);
  overflow: hidden;
  text-align: center;
}
.stat-97-oneliner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
  pointer-events: none;
}
.stat-97-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px 0;
  text-align: center;
}
.stat-97-number {
  display: none;
}
/* 1行目にインラインで入る97% */
.stat-97-inline {
  font-style: normal;
  font-size: 2.8em;
  font-weight: 900;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(135deg, #FF3366 0%, #FF6B99 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 0.08em;
  line-height: 1;
  vertical-align: middle;
  filter: drop-shadow(0 2px 12px rgba(255, 51, 102, 0.4));
  animation: number-pulse 2s ease-in-out infinite;
}
.stat-97-lines {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.stat-97-lines span {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  letter-spacing: -0.01em;
}
.stat-97-source {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

/* PC専用改行 */
.pc-only {
  display: none;
}
@media (min-width: 769px) {
  .pc-only {
    display: inline;
  }
}

/* モバイル専用改行 */
.mobile-only {
  display: inline;
}
@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}

@keyframes number-pulse {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(255, 51, 102, 0.6));
  }
  50% { 
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(255, 51, 102, 0.9));
  }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .stat-97-oneliner {
    padding: 32px 24px;
    border-width: 2px;
    margin: 0 0 40px 0;
  }
  .stat-97-text {
    font-size: clamp(1.3rem, 5vw, 1.9rem);
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .stat-97-number {
    font-size: clamp(3rem, 12vw, 5rem);
    display: block;
    margin-bottom: 0.2em;
    margin-right: 0;
  }
  .stat-97-source {
    font-size: 0.85rem;
  }
}

/* ========================================
   4. 4枚カードエリア 改善（PC:横並び / Mobile:2x2グリッド）
   ======================================== */
/* PROBLEMセクションのコンテナを全幅に */
.problem-section .container {
  max-width: 100% !important;
  padding: 0 !important;
  width: 100% !important;
}

/* 2×2グリッド（PC） */
.problem-cards-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 64px;
  box-sizing: border-box;
}

/* モバイル：1列 */
@media (max-width: 600px) {
  .problem-cards-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.problem-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
  border: 2px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF3366, #8B5CF6, #3B82F6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.problem-card:hover::before {
  opacity: 1;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
}
.pc-icon {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #FF3366, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}
.pc-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.4;
}
.pc-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  flex: 1;
}

/* ========================================
   5. 5つのコア機能カード グリッド最適化
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 48px;
}
/* カード1: 大 (8列) */
.feature-card:nth-child(1) {
  grid-column: span 8;
  grid-row: span 1;
}
/* カード2: 小 (4列) */
.feature-card:nth-child(2) {
  grid-column: span 4;
  grid-row: span 1;
}
/* カード3: 中 (6列) */
.feature-card:nth-child(3) {
  grid-column: span 6;
  grid-row: span 1;
}
/* カード4: 中 (6列) */
.feature-card:nth-child(4) {
  grid-column: span 6;
  grid-row: span 1;
}
/* カード5: 大 (12列・全幅) */
.feature-card:nth-child(5) {
  grid-column: span 12;
  grid-row: span 1;
}

/* タブレット対応 */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .feature-card:nth-child(1) {
    grid-column: span 6;
  }
  .feature-card:nth-child(2) {
    grid-column: span 6;
  }
  .feature-card:nth-child(3) {
    grid-column: span 3;
  }
  .feature-card:nth-child(4) {
    grid-column: span 3;
  }
  .feature-card:nth-child(5) {
    grid-column: span 6;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: span 1;
  }
}

/* ========================================
   6. AI質問ボタン（LP追従型）
   ======================================== */
.ai-question-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 24px rgba(139, 92, 246, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  border: 3px solid white;
}
.ai-question-fab:hover {
  transform: scale(1.1);
  box-shadow: 
    0 12px 32px rgba(139, 92, 246, 0.6),
    0 6px 16px rgba(0, 0, 0, 0.3);
}
.ai-question-fab i {
  font-size: 1.8rem;
  color: white;
}
.ai-question-fab::after {
  content: 'AI質問';
  position: absolute;
  right: 72px;
  background: #1a1a2e;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ai-question-fab:hover::after {
  opacity: 1;
}

/* AI質問モーダル */
.ai-question-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.ai-question-modal.active {
  display: flex;
}
.ai-question-content {
  background: white;
  border-radius: 24px;
  padding: 48px;
  max-width: 640px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.ai-question-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.ai-question-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}
.ai-question-header {
  margin-bottom: 32px;
}
.ai-question-header h3 {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #8B5CF6, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.ai-question-header p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
.ai-question-iframe {
  width: 100%;
  height: 500px;
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  background: #f8f9fb;
}

/* ========================================
   7. 月30社限定 表示
   ======================================== */
.limited-badge-30 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF3366, #FF6B99);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(255, 51, 102, 0.4);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.limited-badge-30 i {
  font-size: 1.1rem;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .ai-question-fab {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .ai-question-fab i {
    font-size: 1.5rem;
  }
  .ai-question-content {
    padding: 32px 24px;
  }
  .ai-question-iframe {
    height: 400px;
  }
}

/* ========================================
   FEATURES 3×2 グリッド
   ======================================== */
.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* 通常カード */
.fc-card {
  background: #fff;
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.fc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF3366, #8B5CF6, #3B82F6);
  opacity: 0;
  transition: opacity 0.3s;
}
.fc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(139,92,246,0.15); }
.fc-card:hover::before { opacity: 1; }

.fc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  background: linear-gradient(135deg, #FF3366, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}
.fc-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #FF3366, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fc-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0;
}
.fc-desc {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}
.fc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(255,51,102,0.08), rgba(139,92,246,0.08));
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 50px;
  color: #8B5CF6;
  align-self: flex-start;
}

/* 6枚目：画像カード */
.fc-image-card {
  background:
    linear-gradient(135deg, rgba(10,10,30,0.78) 0%, rgba(30,10,60,0.72) 100%),
    url('../images/ai-network-bg.jpg') center/cover no-repeat;
  border: 1px solid rgba(139,92,246,0.4);
  padding: 40px 32px;
  justify-content: flex-end;
  gap: 16px;
  min-height: 240px;
}
.fc-image-card::before { opacity: 1; }
.fc-image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(139,92,246,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.fc-image-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-image-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.fc-image-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
.fc-image-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF3366, #8B5CF6);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s;
}
.fc-image-btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* レスポンシブ */
@media (max-width: 1024px) {
  .features-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid-v2 { grid-template-columns: 1fr; }
}

/* ========================================
   VOICE カード ホバー 店内透かし画像
   ======================================== */
.vc2-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* 透かし画像レイヤー（::before） */
.vc2-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  border-radius: inherit;
}

/* ホワイトオーバーレイ（読みやすさ確保） */
.vc2-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  border-radius: inherit;
}

/* ホバー時に画像＋オーバーレイをフェードイン */
.vc2-card:hover::before {
  opacity: 1;
}
.vc2-card:hover::after {
  opacity: 1;
}

/* カード内コンテンツを画像レイヤーより前面に */
.vc2-card > * {
  position: relative;
  z-index: 2;
}

/* 各カードに画像を紐付け */
.vc2-bg-esthetic::before    { background-image: url('../images/voice-esthetic.jpg'); }
.vc2-bg-dental::before      { background-image: url('../images/voice-dental.jpg'); }
.vc2-bg-koumuten::before    { background-image: url('../images/voice-koumuten.jpg'); }
.vc2-bg-accounting::before  { background-image: url('../images/voice-accounting.jpg'); }
.vc2-bg-italian::before     { background-image: url('../images/voice-italian.jpg'); }
.vc2-bg-yakiniku::before    { background-image: url('../images/voice-yakiniku.jpg'); }

/* ホバー時のカード演出強化 */
.vc2-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

/* ========================================
   VOICE 2×3 グリッド
   ======================================== */
.voice-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.vc2-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(139,92,246,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vc2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139,92,246,0.12);
}

@media (max-width: 768px) {
  .voice-grid-v2 { grid-template-columns: 1fr; }
}

/* ========================================
   FIRST MOVER ADVANTAGE バナー ビジュアル強化
   ======================================== */
.fma-banner {
  background: linear-gradient(135deg, #f8f4ff 0%, #fff0f5 50%, #f4f0ff 100%);
  border: 2px solid rgba(139,92,246,0.25);
  border-radius: 24px;
  padding: 48px 56px;
  max-width: 1000px;
  margin: 48px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(139,92,246,0.12), 0 2px 8px rgba(0,0,0,0.06);
}
.fma-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(139,92,246,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ヘッダー */
.fma-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,51,102,0.08);
  border: 1px solid rgba(255,51,102,0.3);
  border-radius: 50px;
  padding: 6px 20px;
  color: #cc2255;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.fma-header i {
  animation: icon-shake 2s ease-in-out infinite;
}

/* タイトル */
.fma-title {
  display: block;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 40px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* ビジュアルエリア */
.fma-visuals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

/* 共通ラベル */
.fma-gauge-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* === 3% 円形ゲージ === */
.fma-gauge-wrap {
  flex: 0 0 200px;
  text-align: center;
}
.fma-gauge {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 12px;
}
.fma-gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.fma-gauge-arc {
  animation: gauge-draw 2s ease-out forwards;
}
@keyframes gauge-draw {
  from { stroke-dasharray: 0 314; }
  to   { stroke-dasharray: 9.4 304.6; }
}
.fma-gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fma-gauge-num {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(135deg, #FF3366, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fma-gauge-sub {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 2px;
}
.fma-gauge-desc {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
}
.fma-gauge-desc strong {
  color: #FF3366;
}

/* 区切り線 */
.fma-divider {
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(139,92,246,0.3), transparent);
  flex-shrink: 0;
}

/* === 2026年 タイムライン === */
.fma-timeline-wrap {
  flex: 1;
  text-align: left;
}
.fma-timeline {
  margin-bottom: 16px;
}
.fma-timeline-track {
  position: relative;
  height: 12px;
  background: rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: visible;
  margin-bottom: 8px;
}
.fma-timeline-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(90deg, #FF3366, #8B5CF6);
  border-radius: 10px;
  animation: bar-fill 2s ease-out forwards;
}
@keyframes bar-fill {
  from { width: 0; }
  to   { width: 55%; }
}
.fma-timeline-now {
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border: 3px solid #8B5CF6;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(139,92,246,0.8);
  animation: dot-pulse 1.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 12px rgba(139,92,246,0.8); }
  50%      { box-shadow: 0 0 24px rgba(139,92,246,1.0), 0 0 40px rgba(139,92,246,0.4); }
}
.fma-timeline-now-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: #7c3aed;
  white-space: nowrap;
  font-weight: 700;
}
.fma-timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 4px;
}
.fma-timeline-end {
  color: #f5a623;
  font-weight: 700;
  text-align: right;
  line-height: 1.3;
}
.fma-timeline-end small {
  font-size: 0.65rem;
  opacity: 0.8;
}

/* フラグ */
.fma-timeline-flags {
  display: flex;
  justify-content: space-between;
  margin: 16px 0;
}
.fma-flag {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
}
.fma-flag i { margin-top: 2px; flex-shrink: 0; }
.fma-flag { font-size: 0.9rem; }
.fma-flag-now { color: #6d28d9; }
.fma-flag-now i { color: #8B5CF6; }
.fma-flag-end { color: #d97706; }
.fma-flag-end i { color: #f5a623; }

/* レスポンシブ */
@media (max-width: 768px) {
  .fma-banner { padding: 36px 24px; }
  .fma-visuals {
    flex-direction: column;
    gap: 32px;
  }
  .fma-divider {
    width: 80%; height: 1px;
    background: linear-gradient(to right, transparent, rgba(139,92,246,0.3), transparent);
  }
  .fma-timeline-wrap { width: 100%; }
}

/* ========================================
   COMPARISON セクション 強化
   ======================================== */
.comparison-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

/* カラム全体 */
.comp-col {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/* ヘッダー */
.comp-col-header {
  padding: 24px 32px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.comp-col-header i {
  font-size: 1.4rem;
}

/* リスト */
.comp-col ul {
  padding: 24px 32px 32px;
}
.comp-col li {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 18px;
  gap: 14px;
}
.comp-col li i {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* failカード：赤系ダーク */
.comp-col.fail {
  border: 2px solid rgba(255,51,102,0.3);
}
.comp-col.fail .comp-col-header {
  background: linear-gradient(135deg, rgba(255,51,102,0.12), rgba(255,51,102,0.06));
  color: #cc0033;
  border-bottom: 1px solid rgba(255,51,102,0.15);
}
.comp-col.fail li {
  color: #444;
}
.comp-col.fail li i {
  color: #FF3366;
}

/* successカード：青紫系 */
.comp-col.success {
  border: 2px solid rgba(59,130,246,0.35);
}
.comp-col.success .comp-col-header {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(139,92,246,0.10));
  color: #1d4ed8;
  border-bottom: 1px solid rgba(59,130,246,0.15);
}
.comp-col.success li {
  color: #1a1a2e;
}
.comp-col.success li i {
  color: #3B82F6;
}

/* VSバッジ */
.comp-vs-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF3366, #8B5CF6);
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(139,92,246,0.4);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .comp-col-header {
    padding: 20px 24px;
    font-size: 1.1rem;
  }
  .comp-col ul {
    padding: 20px 24px 24px;
  }
  .comp-col li {
    font-size: 0.95rem;
  }
}

/* ========================================
   FAQ AI チャットパネル
   ======================================== */

.sc-chat-panel {
  background: #fff;
  border: 1.5px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
  box-shadow: 0 8px 32px rgba(139,92,246,0.1);
}

/* ヘッダー */
.sc-chat-header {
  background: linear-gradient(135deg, #1a1a2e, #2d1b69);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sc-chat-avatar {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #FF3366);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  flex-shrink: 0;
}
.sc-chat-online {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #1a1a2e;
}
.sc-chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc-chat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.sc-chat-status {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* メッセージエリア */
.sc-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8f9fc;
  scroll-behavior: smooth;
}
.sc-chat-messages::-webkit-scrollbar { width: 4px; }
.sc-chat-messages::-webkit-scrollbar-track { background: transparent; }
.sc-chat-messages::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.25); border-radius: 4px; }

/* メッセージ共通 */
.sc-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: msg-in 0.3s ease;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sc-msg-bot  { align-items: flex-start; }
.sc-msg-user { align-items: flex-end; }

.sc-msg-bubble {
  max-width: 85%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.65;
}
.sc-msg-bot .sc-msg-bubble {
  background: #fff;
  color: #1a1a2e;
  border: 1px solid rgba(139,92,246,0.12);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.sc-msg-user .sc-msg-bubble {
  background: linear-gradient(135deg, #8B5CF6, #FF3366);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.sc-msg-time {
  font-size: 0.7rem;
  color: #9ca3af;
  padding: 0 4px;
}

/* タイピングインジケーター */
.sc-typing .sc-msg-bubble {
  padding: 14px 18px;
}
.sc-typing-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.sc-typing-dots span {
  width: 7px; height: 7px;
  background: #8B5CF6;
  border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}
.sc-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.sc-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

/* クイック返信 */
.sc-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0;
}
.sc-quick-btn {
  background: #fff;
  border: 1.5px solid rgba(139,92,246,0.3);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6d28d9;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.sc-quick-btn:hover {
  background: linear-gradient(135deg, #8B5CF6, #FF3366);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
}

/* CTA メッセージ内ボタン */
.sc-msg-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  background: linear-gradient(135deg, #FF3366, #8B5CF6);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sc-msg-cta:hover { opacity: 0.85; }

/* 入力エリア */
.sc-chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(139,92,246,0.1);
  background: #fff;
  flex-shrink: 0;
}
.sc-chat-input {
  flex: 1;
  border: 1.5px solid rgba(139,92,246,0.2);
  border-radius: 24px;
  padding: 9px 16px;
  font-size: 0.88rem;
  outline: none;
  font-family: inherit;
  color: #1a1a2e;
  transition: border-color 0.2s;
  background: #f8f9fc;
}
.sc-chat-input:focus {
  border-color: #8B5CF6;
  background: #fff;
}
.sc-chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #FF3366);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}
.sc-chat-send:hover { transform: scale(1.08); }
.sc-chat-send:active { transform: scale(0.95); }

/* ========================================
   FAQ NotebookLM パネル（削除済み・空保持）
   ======================================== */
.faq-notebook-panel {
  background: linear-gradient(135deg, #f8f4ff 0%, #fff0f5 100%);
  border: 1.5px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fnp-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fnp-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #FF3366);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.fnp-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.fnp-sub {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

.fnp-embed-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(139,92,246,0.15);
  background: linear-gradient(160deg, #f5f0ff 0%, #fff5f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fnp-overlay {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}
.fnp-overlay-inner {
  text-align: center;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fnp-bot-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #FF3366);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
  animation: bot-pulse 2.5s ease-in-out infinite;
}
@keyframes bot-pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(139,92,246,0.35); }
  50%      { box-shadow: 0 8px 36px rgba(139,92,246,0.55), 0 0 0 8px rgba(139,92,246,0.08); }
}
.fnp-overlay-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
}
.fnp-overlay-desc {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.fnp-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #8B5CF6, #FF3366);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(139,92,246,0.35);
}
.fnp-open-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ========================================
   FINAL CTA 中央寄せ リデザイン
   ======================================== */

/* 背景の濃いグラデーションに合わせて全テキストを白ベースに上書き */
.final-cta-section .final-cta-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* バッジ */
.final-cta-section .fct-eyebrow {
  margin-bottom: 0;
}

.fct-title-center {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.fct-title-line2 {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  opacity: 0.9;
  margin-top: 6px;
}

.fct-sub-center {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
}
.fct-sub-center strong {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fct-checklist-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  text-align: left;
}
.fct-checklist-center .fct-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.fct-checklist-center .fct-check-item i {
  color: #fbbf24;
  font-size: 1rem;
  flex-shrink: 0;
}

.fct-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.fct-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FF3366 0%, #8B5CF6 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 20px 52px;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(255,51,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.fct-main-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  border-radius: inherit;
}
.fct-main-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(255,51,102,0.5);
}
.fct-btn-arrow {
  transition: transform 0.2s;
}
.fct-main-btn:hover .fct-btn-arrow {
  transform: translateX(4px);
}
.fct-btn-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.fct-btn-note i {
  color: rgba(255,255,255,0.8);
}
.fct-report-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.fct-report-preview-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
  .fct-main-btn {
    font-size: 1.05rem;
    padding: 18px 36px;
  }
  .fct-checklist-center {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding-left: 0;
  }
}

/* ========================================
   RESULTS STRIP 数値横並び修正
   ======================================== */
.results-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 48px auto;
}
.rs-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rs-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}
.rs-num {
  font-size: 3rem !important;
  font-weight: 900 !important;
  background: var(--c-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline !important;
  line-height: 1 !important;
  margin-bottom: 0 !important;
}
.rs-unit {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--c-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.rs-unit-small {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--c-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.75;
}
.rs-label {
  font-size: 0.88rem;
  color: var(--c-text-light);
  font-weight: 500;
  line-height: 1.4;
}
.rs-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(139,92,246,0.25), transparent);
  flex-shrink: 0;
  margin: 0 8px;
}

/* モバイル */
@media (max-width: 600px) {
  .results-strip {
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px 20px;
  }
  .rs-item { flex: 0 0 45%; }
  .rs-divider { display: none; }
  .rs-num { font-size: 2.4rem !important; }
  .rs-unit { font-size: 1.1rem; }
}
