/* ============================================
   MY PALETTE LP — テーマオーバーライド
   shared.css のデザインシステムをベースに
   ラベンダー＆ゴールドのテーマカラーを適用
   ============================================ */

/* --- Base Size Override --- */
html { font-size: 18px; }

/* --- Theme Colors --- */
:root {
  --page-primary: #9B7FC7;
  --page-primary-dark: #8266B0;
  --page-primary-light: #F0EAFA;
  --page-accent: #D4A853;
  --page-accent-dark: #C09340;
}

/* --- Component Color Overrides --- */
.kicker { background: var(--page-primary-light); color: var(--page-primary); }
.section-header h2 .accent { color: var(--page-primary); }
.feature-card .num { background: var(--page-primary-light); color: var(--page-primary); }
.feature-card:hover { border-color: var(--page-primary); }
.nav-logo span { color: var(--page-primary); }
.nav-cta { background: var(--page-accent); }
.nav-cta:hover { background: var(--page-accent-dark); }
.cta-section { background: linear-gradient(135deg, var(--page-primary) 0%, var(--page-accent) 100%); }
.btn-primary { background: var(--page-accent); box-shadow: 0 4px 12px rgba(212,168,83,0.25); }
.btn-primary:hover { background: var(--page-accent-dark); box-shadow: 0 6px 20px rgba(212,168,83,0.35); }
.btn-outline:hover { border-color: var(--page-primary); color: var(--page-primary); background: var(--page-primary-light); }
.pricing-card.popular { border-color: var(--page-accent); box-shadow: 0 8px 30px rgba(212,168,83,0.1); }
.pricing-card.popular::before { background: var(--page-accent); }
.comparison-table .ours-head { background: var(--page-primary); }
.comparison-table .highlight { color: var(--page-primary); }
.comparison-table .ours { background: rgba(155,127,199,0.04); }
.step-card::before { color: var(--page-primary); }
.step-card .step-icon { background: var(--page-primary-light); }
.stat-item .num { color: var(--page-primary); }
.faq-item.active .faq-question::after { color: var(--page-primary); }
.faq-question:hover { color: var(--page-primary); }
.pain-card:hover { border-color: var(--page-primary); box-shadow: 0 4px 12px rgba(155,127,199,0.08); }

/* --- Hero --- */
.hero {
  background: linear-gradient(160deg, #F5F0FF 0%, #FFF0F5 40%, #FFFBF7 100%);
  padding: 140px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #F5F0FF 0%, #FFE4EF 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero h1 .highlight { color: var(--page-primary); }

/* --- Hero Banner (フル幅画像) --- */
.hero-banner {
  padding-top: 64px; /* nav height */
  background: linear-gradient(160deg, #F5F0FF 0%, #FFF0F5 40%, #FFFBF7 100%);
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Hero Visual (右カラム画像の代替) --- */
.hero-visual {
  background: linear-gradient(135deg, #F5F0FF, #FFE4EF);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xl);
}
.hero-visual .icon { font-size: 3rem; }
.hero-visual .brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--page-primary-dark);
  letter-spacing: 0.1em;
}
.hero-visual .sub {
  font-size: 0.85rem;
  color: var(--text-500);
}

/* --- Dynamic Quote Block --- */
.quote-block {
  background: var(--bg-white);
  border-left: 3px solid var(--page-primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 32px 0;
  font-size: 0.9rem;
  color: var(--text-500);
  line-height: 1.8;
  font-style: italic;
  box-shadow: var(--shadow-xs);
}

/* --- Narrative Text Section --- */
.narrative-block {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.narrative-block h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 800;
  color: var(--text-900);
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: center;
}
.narrative-block p {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--text-700);
}
.narrative-block p strong {
  color: var(--text-900);
  font-weight: 700;
}
.narrative-block .emphasis {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-900);
  text-align: center;
  margin: 32px 0;
  line-height: 1.8;
}

/* --- Worry Cards (Q&A 形式) --- */
.worry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.worry-card {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: all 0.3s;
}
.worry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.worry-card .q-label {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: #fef3c7; color: #d97706; font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.worry-card .a-label {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--page-primary-light); color: var(--page-primary); font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.worry-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-900); margin-bottom: 4px; }
.worry-card p { font-size: 0.85rem; color: var(--text-500); line-height: 1.7; }

/* --- Target List --- */
.target-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}
.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  line-height: 1.8;
}
.target-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--page-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 4px;
}

/* --- Deadline Banner --- */
.deadline-banner {
  background: linear-gradient(135deg, #3D2E3D, #5A4160);
  color: white; text-align: center; padding: 40px 24px;
}
.deadline-banner h3 { font-size: 0.9rem; font-weight: 400; opacity: 0.8; margin-bottom: 8px; }
.deadline-banner .date {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.deadline-banner .note { font-size: 0.82rem; opacity: 0.6; margin-top: 8px; }

/* --- Video Link --- */
.video-link {
  display: block;
  background: linear-gradient(135deg, #F5F0FF, #FFE4EF);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text-900);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
}
.video-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.video-play-btn {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #E8A0BF, var(--page-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 20px rgba(155,127,199,0.3);
}
.video-play-btn::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}

/* --- Message Section --- */
.message-sig {
  text-align: right;
  font-weight: 500;
  color: var(--text-900);
  margin-top: 32px;
  font-size: 0.95rem;
}

/* --- PC Note --- */
.pc-note {
  background: var(--page-primary-light);
  border: 1px solid rgba(155,127,199,0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--text-500);
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .worry-grid { grid-template-columns: 1fr; }
  .hero::before { display: none; }
}
