/* EMW pricing page styles（2026-07-05集約） */
.free-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem; padding: 0.55rem 1.2rem;
  background: rgba(29, 158, 117, 0.15); border: 1px solid rgba(93, 202, 165, 0.5);
  border-radius: 999px; color: #5dcaa5; font-size: 0.9rem; font-weight: 700;
}


.section-desc { color: var(--gray-500); max-width: 680px; margin-bottom: 3rem; line-height: 1.9; }



/* Pricing cards */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.price-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 1.75rem 1.6rem; display: flex; flex-direction: column;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(10,22,40,0.08); }
.price-card.featured { border: 2px solid var(--accent); }
.price-badge {
  position: absolute; top: 0; right: 0;
  background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 0 0 0 10px; letter-spacing: 0.04em;
}
.price-kicker {
  font-family: var(--font-en); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem;
}
.price-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.9rem; line-height: 1.5; }
.price-amount { font-family: var(--font-en); font-size: 1.9rem; font-weight: 700; color: var(--navy-900); line-height: 1.15; }
.price-amount .small { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; font-family: var(--font-jp); }
.price-period { font-size: 0.8rem; color: var(--gray-500); margin: 0.35rem 0 1rem; }
.price-includes { list-style: none; margin: 0 0 1.25rem; flex: 1; }
.price-includes li {
  font-size: 0.85rem; color: var(--gray-600); padding: 0.32rem 0 0.32rem 1.4rem;
  position: relative; line-height: 1.6;
}
.price-includes li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.price-note-line { font-size: 0.75rem; color: var(--gray-400); margin-bottom: 1rem; }
.price-cta {
  font-size: 0.85rem; font-weight: 700; color: var(--accent); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.price-cta:hover { text-decoration: underline; }

.price-disclaimer {
  margin-top: 2rem; background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 1.25rem 1.5rem; font-size: 0.85rem; color: var(--gray-600); line-height: 1.9;
}
.price-disclaimer a { color: var(--accent); }

/* Value framing */
.value-box {
  background: #f5f9ff; border: 1px solid #d4e4f8; border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 1.4rem 1.6rem; max-width: 800px;
  font-size: 0.92rem; color: #275485; line-height: 1.95;
}
.value-box strong { color: #1f4f84; }
.value-box a { color: var(--accent); }

/* FAQ */
.faq-item {
  border: 1px solid var(--gray-200); border-radius: 12px; margin-bottom: 0.75rem;
  overflow: hidden; background: var(--white); max-width: 860px;
}
.faq-item summary {
  padding: 1.1rem 1.4rem; cursor: pointer; font-weight: 700; font-size: 0.95rem;
  color: var(--navy-800); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.2s;
}
.faq-item summary:hover { background: var(--gray-50); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '＋'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.faq-item[open] summary::after { content: '－'; }
.faq-item[open] summary { border-bottom: 1px solid var(--gray-100); }
.faq-a { padding: 1rem 1.4rem 1.25rem; font-size: 0.9rem; color: var(--gray-600); line-height: 1.9; }
.faq-a a { color: var(--accent); }


.reveal.visible { opacity: 1; transform: translateY(0); }











@media (max-width: 768px) {
  .header-inner { height: 64px; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
}
