/* ============================================
   川田クリニック 自費美容点滴LP「点滴パス」
   v1.0 (2026-05-15)
============================================ */

:root {
  --color-base: #FFFFFF;
  --color-bg-soft: #FFF8F5;
  --color-bg-mint: #F0FAF7;
  --color-accent-pink: #FCE4EC;
  --color-accent-mint: #E0F2F1;
  --color-cta: #FF6B35;
  --color-cta-hover: #E85A24;
  --color-text: #333333;
  --color-text-soft: #666666;
  --color-border: #EEEEEE;
  --color-line: #06C755;

  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', sans-serif;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;

  --container-w: 1100px;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(0,0,0,.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-jp);
  color: var(--color-text);
  background: var(--color-base);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px; /* floating CTA分 */
}

a { color: inherit; text-decoration: none; }

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

/* ============================================
   Utility
============================================ */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-cta);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .section { padding: 48px 0; }
  .section-title { font-size: 22px; margin-bottom: 28px; }
}

/* ============================================
   1. First View
============================================ */
.fv {
  background: linear-gradient(135deg, #FFF8F5 0%, #FCE4EC 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fv-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fv-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.7);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.fv-headline {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.fv-headline .accent {
  color: var(--color-cta);
  font-size: 1.1em;
}

.fv-sub {
  font-size: 16px;
  color: var(--color-text-soft);
  margin-bottom: 32px;
  line-height: 1.7;
}

.fv-price-banner {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: white;
  padding: 16px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.fv-price-banner .badge {
  background: var(--color-cta);
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  align-self: center;
}

.fv-price-banner .price-main {
  font-size: 38px;
  font-weight: 900;
  color: var(--color-cta);
  font-family: var(--font-serif);
}

.fv-price-banner .price-main small { font-size: 14px; }
.fv-price-banner .price-note { font-size: 12px; color: var(--color-text-soft); }

.fv-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto 28px;
}

.fv-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.fv-pills li {
  background: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

@media (max-width: 768px) {
  .fv { padding: 60px 16px 40px; }
  .fv-headline { font-size: 28px; }
  .fv-price-banner .price-main { font-size: 30px; }
}

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-cta);
  color: white;
  box-shadow: 0 6px 16px rgba(255,107,53,.3);
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  background: #f9f9f9;
}

.btn-large {
  padding: 20px 32px;
  font-size: 16px;
  width: 100%;
  max-width: 320px;
}

/* ============================================
   2. Problem
============================================ */
.problem { background: var(--color-bg-soft); }

.problem-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto 32px;
}

.problem-list li {
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.problem-list .check {
  color: var(--color-cta);
  font-size: 18px;
  font-weight: 900;
}

.problem-transition {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 32px;
}

.problem-transition strong { color: var(--color-cta); }

/* ============================================
   3. Solution
============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-bg-mint);
  padding: 32px 20px;
  border-radius: var(--radius);
  text-align: center;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   4. Campaign
============================================ */
.campaign {
  background: linear-gradient(135deg, #FFF8F5 0%, #FFEEE5 100%);
}

.campaign-eyebrow {
  color: var(--color-cta);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.campaign-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.campaign-card {
  flex: 1 1 280px;
  max-width: 360px;
}

.campaign-card {
  background: white;
  padding: 32px 20px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}

.campaign-card.recommended {
  border: 2px solid var(--color-cta);
  transform: scale(1.03);
}

.card-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-cta);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.card-tag {
  font-size: 13px;
  color: var(--color-text-soft);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.card-price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.card-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-cta);
  font-family: var(--font-serif);
  margin-bottom: 4px;
  line-height: 1.2;
}

.card-price .yen { font-size: 22px; vertical-align: 6px; }
.card-price small { font-size: 12px; font-weight: 400; color: var(--color-text-soft); }

.card-desc {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 12px 0 20px;
  line-height: 1.6;
}

.card-btn {
  display: inline-block;
  background: var(--color-cta);
  color: white;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.campaign-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .campaign-card { flex: 1 1 100%; max-width: 100%; }
  .campaign-card.recommended { transform: none; }
}

/* ============================================
   5. Menu
============================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.menu-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.menu-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.menu-component {
  font-size: 12px;
  color: var(--color-cta);
  font-weight: 500;
  margin-bottom: 6px;
}

.menu-purpose {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 12px;
  line-height: 1.6;
}

.menu-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-serif);
}

.menu-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .menu-card { padding: 16px; }
  .menu-name { font-size: 15px; }
}

/* ============================================
   6. Plans
============================================ */
.plans { background: var(--color-bg-mint); }

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.plan-card {
  flex: 1 1 280px;
  max-width: 360px;
}

.plan-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
}

.plan-card.popular {
  border: 2px solid var(--color-cta);
}

.plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-cta);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.plan-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-cta);
  font-family: var(--font-serif);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}

.plan-price small { font-size: 12px; font-weight: 400; color: var(--color-text-soft); }

.plan-features {
  list-style: none;
  margin-bottom: 20px;
}

.plan-features li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
}

.plan-features li:last-child { border-bottom: none; }

.plan-fit {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-soft);
  font-weight: 500;
}

.plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .plan-card { flex: 1 1 100%; max-width: 100%; }
}

/* ============================================
   7. Flow
============================================ */
.flow-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.flow-step {
  flex: 1;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  max-width: 260px;
}

.step-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-cta);
  font-family: var(--font-serif);
  margin-bottom: 8px;
  line-height: 1;
}

.flow-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.flow-step p { font-size: 13px; color: var(--color-text-soft); }

.step-time {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-cta);
  font-weight: 700;
}

.flow-arrow {
  align-self: center;
  font-size: 28px;
  color: var(--color-cta);
}

.flow-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-soft);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .flow-steps {
    flex-direction: column;
    align-items: center;
  }
  .flow-step {
    width: 100%;
    max-width: 320px;
  }
  .flow-arrow {
    transform: rotate(90deg);
    align-self: center;
  }
}

/* ============================================
   8. Disclosure
============================================ */
.disclosure { background: #FAFAFA; }

.disclosure-box {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.disclosure-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-cta);
  display: inline-block;
}

.disclosure-box h3:first-child { margin-top: 0; }

.disclosure-box p,
.disclosure-box ul {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
}

.disclosure-box ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 8px;
}

.disclosure-box strong { color: var(--color-cta); font-weight: 700; }

@media (max-width: 768px) {
  .disclosure-box { padding: 24px 20px; }
}

/* ============================================
   9. Access
============================================ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.access-info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 16px;
  font-size: 14px;
}

.access-info dt {
  font-weight: 700;
  color: var(--color-cta);
}

.access-info dd { line-height: 1.7; }

.access-info a {
  color: var(--color-cta);
  font-weight: 700;
  text-decoration: underline;
}

.access-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .access-grid { grid-template-columns: 1fr; gap: 24px; }
  .access-info dl { grid-template-columns: 80px 1fr; font-size: 13px; }
}

/* ============================================
   10. FAQ
============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list details {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0;
  transition: box-shadow 0.2s;
}

.faq-list details[open] {
  box-shadow: var(--shadow);
}

.faq-list summary {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  list-style: none;
  padding-right: 48px;
}

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

.faq-list summary::before {
  content: 'Q';
  color: var(--color-cta);
  font-weight: 900;
  margin-right: 12px;
  font-family: var(--font-serif);
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--color-cta);
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  padding: 0 24px 20px 48px;
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

/* ============================================
   Final CTA
============================================ */
.final-cta {
  background: linear-gradient(135deg, #FF6B35 0%, #E85A24 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.final-cta-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.final-cta .btn-primary {
  background: white;
  color: var(--color-cta);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

.final-cta .btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.final-cta .btn-secondary {
  background: var(--color-line);
  color: white;
  border: none;
}

.final-cta .btn-secondary:hover {
  background: #05A847;
}

@media (max-width: 768px) {
  .final-cta-title { font-size: 24px; }
}

/* ============================================
   Footer
============================================ */
.footer {
  background: #2C2C2C;
  color: #CCCCCC;
  padding: 40px 20px 28px;
  text-align: center;
}

.footer-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.footer-addr {
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-note {
  font-size: 11px;
  color: #999;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.footer-copy {
  font-size: 11px;
  color: #777;
}

/* ============================================
   Floating CTA
============================================ */
.floating-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--color-cta);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255,107,53,.4);
  z-index: 100;
  line-height: 1.3;
  transition: transform 0.2s;
}

.floating-cta:hover {
  transform: translateY(-2px);
}

.floating-cta small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .floating-cta {
    left: 16px;
    right: 16px;
    text-align: center;
    bottom: 12px;
  }
  .floating-cta small { display: inline; margin-left: 8px; }
}
