@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; color: #333; font-size: 15px; line-height: 1.8; background: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --orange: #F5821E;
  --orange-dark: #d96a0a;
  --green: #5BAD6F;
  --green-dark: #458a57;
  --cream: #F7F3EC;
  --cream-dark: #EDE5D8;
}

.container { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-title { text-align: center; font-size: 1.35rem; font-weight: 700; margin-bottom: 32px; }

.btn-orange {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: #fff; font-weight: 700; font-size: 1rem;
  padding: 18px 32px; border-radius: 6px; border: none; cursor: pointer;
  transition: background 0.2s; width: 100%; max-width: 420px;
}
.btn-orange:hover { background: var(--orange-dark); }

.btn-green {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff; font-weight: 700; font-size: 1rem;
  padding: 18px 32px; border-radius: 6px; border: none; cursor: pointer;
  transition: background 0.2s; width: 100%; max-width: 420px;
}
.btn-green:hover { background: var(--green-dark); }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 60px; max-width: 780px; margin: 0 auto; padding: 0 20px; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 700; color: var(--green); letter-spacing: 0.05em; }
.logo-icon { font-size: 1.2rem; }
.header-btn { background: var(--orange); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 10px 16px; border-radius: 6px; transition: background 0.2s; white-space: nowrap; }
.header-btn:hover { background: var(--orange-dark); }

/* Hero */
.hero { margin-top: 60px; background: var(--cream); padding: 40px 20px; min-height: 460px; }
.hero-inner { max-width: 780px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.hero-sub { font-size: 0.8rem; color: #666; margin-bottom: 8px; }
.hero-title { font-size: 2rem; font-weight: 900; color: #111; line-height: 1.35; margin-bottom: 8px; }
.hero-title .accent { color: var(--orange); }
.hero-lead { font-size: 0.875rem; color: #555; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.stat-circle { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--cream-dark); background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.stat-circle .num { font-size: 1.1rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat-circle .label { font-size: 0.52rem; color: #666; margin-top: 2px; line-height: 1.3; }
.hero-image img { width: 100%; height: 320px; object-fit: cover; border-radius: 8px; }

/* Pain */
.pain { background: #fff; border-top: 3px solid var(--cream); }
.pain-title { text-align: center; font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.pain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.pain-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; }
.pain-check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 3px; }

/* Features */
.features { background: var(--cream); }
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: grid; grid-template-columns: 140px 1fr; gap: 20px; align-items: center; background: #fff; border-radius: 8px; overflow: hidden; }
.feature-img { height: 110px; object-fit: cover; width: 100%; }
.feature-body { padding: 16px 16px 16px 0; }
.feature-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.feature-body p { font-size: 0.83rem; color: #555; line-height: 1.7; }

/* Testimonials */
.testimonials { background: #fff; }
.testimonial-cards { display: flex; flex-direction: column; gap: 16px; }
.testimonial-card { border: 1px solid var(--cream-dark); border-radius: 8px; padding: 18px; background: #fdfaf7; }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-meta h4 { font-size: 0.875rem; font-weight: 700; color: #333; margin-bottom: 2px; }
.testimonial-meta span { font-size: 0.75rem; color: #888; }
.testimonial-card p { font-size: 0.85rem; color: #555; line-height: 1.8; }

/* Pricing */
.pricing-section { background: var(--cream); padding: 48px 20px; }
.pricing-inner { max-width: 780px; margin: 0 auto; }
.pricing-box { background: #fff; border-radius: 12px; padding: 28px 24px; position: relative; }
.off-badge { position: absolute; top: -16px; left: 24px; background: var(--orange); color: #fff; border-radius: 50%; width: 64px; height: 64px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; line-height: 1.2; }
.off-badge .off-num { font-size: 1rem; }
.pricing-row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.price-before { font-size: 0.9rem; color: #999; text-decoration: line-through; }
.price-before-label { font-size: 0.78rem; color: #999; }
.price-after-label { font-size: 0.9rem; color: var(--orange); font-weight: 700; }
.price-after { font-size: 2.4rem; font-weight: 900; color: var(--orange); }
.price-tax { font-size: 0.78rem; color: #888; }
.pricing-sub { font-size: 0.875rem; color: #555; margin-bottom: 24px; }
.pricing-sub .sub-price { font-size: 1.2rem; font-weight: 700; color: #333; }
.pricing-box .btn-green { margin: 0 auto; }

/* FAQ */
.faq-list { border-top: 1px solid #e0e0e0; }
.faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 4px; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; font-size: 0.9rem; font-weight: 500; color: #333; gap: 12px; }
.faq-question .q-label { color: var(--green); font-weight: 700; flex-shrink: 0; }
.faq-question .q-text { flex: 1; }
.faq-icon { width: 26px; height: 26px; border: 1px solid #ccc; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #888; flex-shrink: 0; transition: transform 0.3s, background 0.3s, color 0.3s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--green); color: #fff; border-color: var(--green); }
.faq-answer { display: none; padding: 0 4px 18px; font-size: 0.875rem; color: #555; line-height: 1.9; }

/* Footer */
.footer { background: #333; padding: 24px 20px; text-align: center; }
.footer p { font-size: 0.75rem; color: #888; }

/* Fade */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* Fixed CTA */
.fixed-cta { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 99; background: var(--orange); padding: 12px 20px; display: none; }
.fixed-cta a { display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.95rem; gap: 8px; }

@media (min-width: 640px) {
  .testimonial-cards { display: grid; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .pain-list { grid-template-columns: 1fr; }
  .feature-item { grid-template-columns: 1fr; }
  .feature-img { height: 180px; }
  .feature-body { padding: 16px; }
}
