/* 初めての方へ - 専用スタイル */

.first-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  z-index: 2;
}
.first-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(173,65,149,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(201,169,110,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.first-hero .container { position: relative; z-index: 1; }
.first-hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--neon-pink);
  background: rgba(173,65,149,0.1);
  border: 1px solid rgba(173,65,149,0.25);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.first-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.first-hero-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* ステップ（来店の流れ） */
.steps-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s;
}
.step-card:hover {
  border-color: rgba(173,65,149,0.2);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-pink), #c688b7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 16px var(--neon-pink-glow);
}
.step-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.step-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* FAQ（不安解消） */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(173,65,149,0.2); }
.faq-item.active {
  border-color: rgba(173,65,149,0.3);
  box-shadow: 0 4px 20px rgba(173,65,149,0.08);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.3s;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all 0.3s;
}
.faq-item.active .faq-toggle {
  background: var(--neon-pink);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.8,0.25,1);
}
.faq-item.active .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 24px 20px 24px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* 安心ポイント */
.point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.point-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s;
}
.point-card:hover {
  transform: translateY(-4px);
  border-color: rgba(173,65,149,0.2);
  background: var(--bg-card-hover);
}
.point-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.point-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.point-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA */
.first-cta {
  text-align: center;
  padding: 60px 20px 80px;
  position: relative;
  z-index: 2;
}
.first-cta-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}
.first-cta-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--neon-pink);
}
.first-cta-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}
.first-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .point-grid { grid-template-columns: 1fr; }
  .step-card { flex-direction: column; align-items: center; text-align: center; }
}
