/* ============================================
   医師限定 Shopee Master Class LP スタイル
   2026年フィリピン市場展開版
============================================ */

:root {
  --primary-color: #2563eb;
  --secondary-color: #dc2626;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --dark-bg: #1f2937;
  --light-bg: #f9fafb;
  --text-dark: #111827;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   固定CTAボタン
============================================ */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.fixed-cta.visible {
  transform: translateY(0);
}

.fixed-cta .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: var(--primary-color);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.fixed-cta .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fixed-cta .cta-subtext {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 2px;
}

/* ============================================
   ヒーローセクション
============================================ */
.hero {
  position: relative;
  background: #000000;
  color: white;
  padding: 80px 0 120px;
  overflow: hidden;
}

/* 背景画像レイヤー */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/static/images/hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.6;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.badge-new,
.badge-limited {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.badge-new {
  background: var(--secondary-color);
  color: white;
  animation: pulse 2s infinite;
}

.badge-limited {
  background: var(--accent-color);
  color: white;
}

.hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 1);
}

.hero-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.95;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-emphasis {
  color: var(--accent-color);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 1);
}

.highlight {
  background: linear-gradient(transparent 60%, var(--accent-color) 60%);
  padding: 0 8px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.95;
  line-height: 1.8;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-description strong {
  color: var(--accent-color);
  font-weight: 700;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.feature-badge:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.35);
}

.feature-badge i {
  font-size: 2rem;
}

.feature-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.hero-cta {
  margin-top: 50px;
}

.cta-button-large {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: white;
  color: var(--primary-color);
  padding: 30px 60px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 3px solid var(--accent-color);
}

.cta-button-large:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button-large .cta-text {
  display: block;
  margin-bottom: 8px;
}

.cta-button-large .cta-detail {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.hero-note {
  margin-top: 20px;
  font-size: 1rem;
  opacity: 0.9;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.hero-wave::before {
  content: '';
  display: block;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="white" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}

/* ============================================
   緊急告知セクション
============================================ */
.urgent-announcement {
  background: var(--light-bg);
  padding: 60px 0;
}

.announcement-card {
  display: flex;
  gap: 30px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--secondary-color);
}

.announcement-icon {
  flex-shrink: 0;
}

.announcement-icon i {
  font-size: 4rem;
  color: var(--secondary-color);
  animation: pulse 2s infinite;
}

.announcement-content h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.announcement-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

.announcement-content strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.announcement-points {
  list-style: none;
  display: grid;
  gap: 15px;
}

.announcement-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.announcement-points i {
  color: var(--success-color);
  font-size: 1.3rem;
}

/* ============================================
   課題セクション
============================================ */
.problems {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text-dark);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.problem-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.problem-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.problem-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   新戦略セクション
============================================ */
.new-strategy {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 80px 0;
}

.strategy-header {
  text-align: center;
  margin-bottom: 60px;
}

.strategy-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: 15px;
}

.strategy-comparison {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.comparison-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.comparison-card.new {
  border: 3px solid var(--accent-color);
}

.comparison-label {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.comparison-card.old .comparison-label {
  background: #e5e7eb;
  color: var(--text-light);
}

.comparison-card.new .comparison-label {
  background: var(--accent-color);
  color: white;
}

.comparison-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.comparison-card i {
  margin-top: 3px;
  font-size: 1.2rem;
}

.comparison-arrow {
  font-size: 3rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.strategy-points {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.strategy-points h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.point-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.point-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.point-number {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.point-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.point-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   EC自動販売機セクション
============================================ */
.vending-machine {
  padding: 80px 0;
  background: white;
}

.vm-header {
  text-align: center;
  margin-bottom: 60px;
}

.vm-concept {
  margin-bottom: 60px;
}

.vm-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.vm-box {
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
}

.vm-box i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.vm-box p {
  font-size: 1.1rem;
  font-weight: 600;
}

.vm-arrow {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.vm-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.vm-feature {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.vm-feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 20px;
}

.vm-feature h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.vm-feature p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.vm-example {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 50px;
  border-radius: 20px;
}

.vm-example h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.example-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.flow-step {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  min-width: 200px;
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.flow-step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.flow-step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--accent-color);
  font-weight: 700;
}

/* ============================================
   保証制度セクション
============================================ */
.guarantee {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.guarantee-card {
  background: white;
  padding: 60px;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--secondary-color);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.guarantee-card h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.guarantee-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.guarantee-content {
  display: grid;
  gap: 40px;
}

.guarantee-feature {
  text-align: center;
}

.guarantee-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary-color), #991b1b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 3rem;
  margin: 0 auto 20px;
}

.guarantee-feature h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.guarantee-feature p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.guarantee-amount {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 20px;
}

.amount-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.amount-label {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 600;
}

.amount-value {
  font-size: 4rem;
  font-weight: 900;
  color: var(--secondary-color);
  font-family: 'Inter', sans-serif;
}

.amount-note {
  font-size: 1.2rem;
  color: var(--text-light);
}

.guarantee-benefit {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 20px;
}

.guarantee-benefit h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.guarantee-benefit ul {
  list-style: none;
}

.guarantee-benefit li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.guarantee-benefit i {
  color: var(--success-color);
  font-size: 1.3rem;
}

/* ============================================
   なぜShopeeが最適か
============================================ */
.why-shopee {
  padding: 80px 0;
  background: white;
}

.why-grid {
  display: grid;
  gap: 40px;
}

.why-card {
  background: var(--light-bg);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.why-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.why-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.stat p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--text-light);
}

.price-example {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.price-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  min-width: 200px;
  box-shadow: var(--shadow-md);
}

.price-label {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.price-value {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
}

.price-box.japan .price-value {
  color: var(--text-dark);
}

.price-box.overseas .price-value {
  color: var(--success-color);
}

.price-arrow {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.profit-note {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.profit-note strong {
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.benefits-list i {
  color: var(--success-color);
  font-size: 1.5rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.benefits-list strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* ============================================
   医師だからこそ
============================================ */
.doctor-advantage {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.advantage-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--success-color);
}

.advantage-icon {
  font-size: 4.5rem;
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.advantage-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   Palix3紹介
============================================ */
.palix3 {
  padding: 80px 0;
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

.palix3-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature-item {
  background: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  font-size: 5rem;
  margin-bottom: 25px;
}

.feature-item h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-item p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   セミナー内容
============================================ */
.seminar-content {
  padding: 80px 0;
  background: white;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.content-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.content-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.content-number {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.content-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.content-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   最終CTA
============================================ */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-bg), #111827);
  color: white;
}

.cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 60px;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-card > p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
}

.cta-card strong {
  color: var(--accent-color);
  font-weight: 700;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.benefit-item i {
  color: var(--success-color);
  font-size: 1.5rem;
}

.cta-button-final {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--accent-color), #ea580c);
  color: white;
  padding: 30px 60px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.cta-button-final:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

.cta-arrow {
  font-size: 2rem;
  font-weight: 700;
}

.cta-note {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ============================================
   フッター
============================================ */
.footer {
  background: var(--dark-bg);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ============================================
   アニメーション
============================================ */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   レスポンシブデザイン
============================================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 80px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-badge {
    width: 100%;
  }
  
  .cta-button-large {
    padding: 25px 40px;
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .announcement-card {
    flex-direction: column;
    padding: 30px;
  }
  
  .announcement-icon i {
    font-size: 3rem;
  }
  
  .strategy-comparison {
    flex-direction: column;
  }
  
  .comparison-arrow {
    transform: rotate(90deg);
  }
  
  .vm-visual {
    flex-direction: column;
  }
  
  .vm-arrow {
    transform: rotate(90deg);
  }
  
  .example-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .guarantee-card {
    padding: 40px 30px;
  }
  
  .amount-value {
    font-size: 3rem;
  }
  
  .price-example {
    flex-direction: column;
  }
  
  .price-arrow {
    transform: rotate(90deg);
  }
  
  .cta-card {
    padding: 40px 30px;
  }
  
  .cta-card h2 {
    font-size: 1.8rem;
  }
  
  .cta-button-final {
    padding: 25px 40px;
    font-size: 1.3rem;
  }
  
  .fixed-cta .cta-button {
    font-size: 1rem;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .cta-button-large {
    padding: 20px 30px;
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .problem-grid,
  .advantage-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
}
