/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #1e293b;
  background: #f1f5f9;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============ LP container (SP-only) ============ */
.lp {
  max-width: 480px;
  margin: 0 auto;
  background: #fffbf3;
  box-shadow: 0 0 24px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* ============ HEADER ============ */
.lp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: #1e293b;
  color: #fff;
}
.brand { font-weight: 900; font-size: 15px; letter-spacing: 0.02em; }
.brand-tag {
  font-size: 11px; font-weight: 700;
  background: #d97706;
  padding: 3px 8px; border-radius: 3px;
}

/* ============ PR BAR ============ */
.pr-bar {
  text-align: center;
  font-size: 11px;
  color: #64748b;
  padding: 6px 12px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

/* ============ HERO ============ */
.hero { background: #fff; }
.hero-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-body {
  padding: 18px 18px 24px;
  background: linear-gradient(180deg, #fffbf3 0%, #fff 100%);
}
.hero-badge {
  display: inline-block;
  background: #d97706;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero-title {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 12px;
}
.hero-title em {
  font-style: normal;
  color: #d97706;
  border-bottom: 4px solid #fde68a;
  padding-bottom: 1px;
}
.hero-sub {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
}
.hero-points {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.hero-points li {
  font-size: 11px;
  background: #fff7ed;
  color: #c2410c;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #fed7aa;
  font-weight: 700;
}

/* ============ CTA ============ */
.cta-btn {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(180deg, #06C755 0%, #04a946 100%);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 0 #038138, 0 6px 16px rgba(6,199,85,0.35);
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.05s ease, box-shadow 0.05s ease;
}
.cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #038138, 0 3px 8px rgba(6,199,85,0.35);
}
.cta-main {
  font-size: 16px;
  display: block;
}
.cta-sub {
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.92;
}

.cta-block {
  margin: 0 16px 32px;
  padding: 18px 16px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  text-align: center;
}
.cta-block .cta-lead {
  font-size: 14px;
  font-weight: 700;
  color: #9a3412;
  margin-bottom: 12px;
  line-height: 1.6;
}
.cta-block .cta-tail {
  font-size: 11px;
  color: #64748b;
  margin-top: 10px;
}
.cta-final {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-color: #f59e0b;
}

/* ============ BLOCK ============ */
.block { margin: 32px 16px; }
.block-title {
  font-size: 20px;
  font-weight: 900;
  color: #1e293b;
  border-left: 5px solid #d97706;
  padding-left: 10px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.block-lead {
  font-size: 14px;
  color: #475569;
  margin-bottom: 14px;
}

/* ============ PAIN ============ */
.pain-list {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.pain-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 14.5px;
  font-weight: 500;
}
.pain-list li:last-child { border-bottom: none; }
.pain-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  color: #d97706;
  font-weight: 900;
  font-size: 16px;
}
.pain-conclusion {
  font-size: 15px;
  text-align: center;
  background: #fff;
  padding: 14px 12px;
  border: 2px solid #fde68a;
  border-radius: 8px;
  line-height: 1.7;
}
.pain-conclusion strong {
  color: #c2410c;
  font-weight: 900;
  font-size: 17px;
}

/* ============ COMPARE TABLE ============ */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  background: #fff;
}
.compare-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 12.5px;
}
.compare-table th, .compare-table td {
  border: 1px solid #e2e8f0;
  padding: 9px 8px;
  text-align: center;
  vertical-align: middle;
}
.compare-table thead th {
  background: #1e293b;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
}
.compare-table tbody tr:nth-child(odd) { background: #f8fafc; }
.compare-table tr.hl {
  background: #ecfdf5 !important;
}
.compare-table tr.hl td {
  border-color: #06C755;
  color: #064e3b;
}

/* ============ FLOW ============ */
.flow-list { margin-bottom: 14px; }
.flow-list li {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}
.flow-num {
  flex: 0 0 44px;
  height: 44px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.flow-body { flex: 1; min-width: 0; }
.flow-h {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
  color: #1e293b;
}
.flow-body p {
  font-size: 13.5px;
  line-height: 1.75;
  color: #475569;
}
.flow-note {
  font-size: 12.5px;
  background: #fff7ed;
  border-left: 3px solid #f59e0b;
  padding: 10px 12px;
  border-radius: 4px;
  line-height: 1.7;
}
.flow-note strong { color: #c2410c; }

/* ============ REASONS ============ */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.reason-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}
.reason-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: #06C755;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
}
.reason-card h3 {
  font-size: 13.5px;
  font-weight: 900;
  margin-bottom: 4px;
  color: #1e293b;
  line-height: 1.4;
}
.reason-card p {
  font-size: 11.5px;
  color: #475569;
  line-height: 1.6;
}

/* ============ TRUST ============ */
.trust-list {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
}
.trust-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13.5px;
  line-height: 1.75;
}
.trust-list li:last-child { border-bottom: none; }
.trust-list li strong {
  display: block;
  color: #d97706;
  font-weight: 900;
  font-size: 14.5px;
  margin-bottom: 2px;
}

/* ============ VOICES ============ */
.voice {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}
.voice-avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.voice-body { flex: 1; min-width: 0; }
.voice-meta {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 4px;
  font-weight: 500;
}
.voice-text {
  font-size: 13px;
  line-height: 1.75;
  color: #334155;
}
.voice-disclaimer {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 8px;
  text-align: center;
}

/* ============ FAQ ============ */
.faq .q {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq summary {
  padding: 12px 38px 12px 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  list-style: none;
  line-height: 1.5;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: #d97706;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900;
  line-height: 1;
}
.faq details[open] summary::after {
  content: '−';
}
.faq .q p {
  padding: 0 14px 14px;
  font-size: 13px;
  line-height: 1.85;
  color: #475569;
}

/* ============ DISCLAIMER ============ */
.disclaimer {
  margin: 32px 16px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 12px;
  color: #64748b;
}
.disclaimer h3 {
  font-size: 13px;
  font-weight: 900;
  color: #475569;
  margin-bottom: 8px;
}
.disclaimer ul li {
  position: relative;
  padding: 4px 0 4px 12px;
  line-height: 1.7;
}
.disclaimer ul li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* ============ MINIMAL FOOTER ============ */
.lp-footer-min {
  background: #1e293b;
  color: #cbd5e1;
  padding: 22px 16px 26px;
  text-align: center;
}
.lp-footer-min .footer-brand {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.lp-footer-min .footer-nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  margin-bottom: 14px;
}
.lp-footer-min .footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
}
.lp-footer-min .footer-nav a:hover { text-decoration: underline; }
.lp-footer-min .footer-copy {
  font-size: 11px;
  color: #64748b;
}

/* ============ Tablet/Desktop centering ============ */
@media (min-width: 540px) {
  body { padding: 24px 0; }
  .lp { border-radius: 12px; }
}
