/* jpmstore.top — 純白ミニマル × violet accent */

:root {
  --bg: #ffffff;
  --bg-alt: #fafaf9;
  --bg-ink: #0a0a0a;
  --ink: #0a0a0a;
  --ink-2: #4a4a48;
  --ink-3: #8a8a86;
  --line: #ececea;
  --line-2: #e2e2df;
  --accent: #7c3aed;
  --accent-soft: #a78bfa;
  --accent-bg: #f5f1ff;
  --ok: #10785a;
  --warn: #b06b00;
  --danger: #c5253b;

  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-num: "Inter", "Noto Sans JP", system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-soft: 0 1px 2px rgba(10,10,10,0.04), 0 8px 24px -8px rgba(10,10,10,0.06);
  --shadow-card: 0 1px 2px rgba(10,10,10,0.04), 0 24px 60px -24px rgba(124,58,237,0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }

/* Layout */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 40px;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-num);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 17px;
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, #0a0a0a 0%, #2a2a28 100%);
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-num); font-weight: 700; font-size: 13px;
  letter-spacing: -0.02em;
}
.brand small { color: var(--ink-3); font-weight: 400; margin-left: 2px; font-size: 12px; }

.nav-links { display: flex; gap: 28px; margin-left: 8px; }
.nav-links a, .nav-links button {
  font-size: 13.5px; color: var(--ink-2); padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links button:hover { color: var(--ink); }
.nav-links .active { color: var(--ink); }

.nav-right { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 13.5px; font-weight: 500;
  border-radius: 999px;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #2a2a28; transform: translateY(-1px); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line-2);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: #6929d1; transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 14.5px; }
.btn-sm { padding: 8px 14px; font-size: 12.5px; }

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-num); font-weight: 500;
  padding: 6px 12px;
  border: 1px solid var(--accent-bg);
  background: var(--accent-bg);
  border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

.h-display {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 24px 0 0;
  text-wrap: balance;
}
.h-display .accent { color: var(--accent); }
.h-display .thin { font-weight: 300; color: var(--ink-2); }

.hero-lede {
  margin-top: 28px;
  font-size: 16px;
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.85;
  text-wrap: pretty;
}
.hero-cta { margin-top: 40px; display: flex; gap: 12px; }
.hero-meta {
  margin-top: 56px;
  display: flex; gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-meta .stat { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .num {
  font-family: var(--font-num);
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
}
.hero-meta .lbl { font-size: 11.5px; color: var(--ink-3); letter-spacing: 0.04em; }

/* Hero visual — animated ticket card */
.hero-visual {
  position: relative;
  height: 540px;
}
.ticket-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.ticket-card .row { display: flex; justify-content: space-between; align-items: center; }
.ticket-card .pill {
  font-size: 10.5px; letter-spacing: 0.1em; color: var(--accent);
  background: var(--accent-bg); padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-num); font-weight: 500;
}
.ticket-card h4 {
  margin: 16px 0 4px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
}
.ticket-card .meta { font-size: 12px; color: var(--ink-3); }
.ticket-card .divider {
  margin: 18px -24px;
  border-top: 1px dashed var(--line-2);
  position: relative;
}
.ticket-card .divider::before, .ticket-card .divider::after {
  content: ''; position: absolute; top: -7px; width: 14px; height: 14px;
  background: var(--bg-alt); border-radius: 999px;
}
.ticket-card .divider::before { left: -7px; }
.ticket-card .divider::after { right: -7px; }

.tc-1 { top: 40px; left: 40px; width: 340px; transform: rotate(-3deg); z-index: 2; }
.tc-2 { top: 180px; right: 0; width: 320px; transform: rotate(2deg); z-index: 3; }
.tc-3 { bottom: 30px; left: 90px; width: 310px; transform: rotate(-1deg); z-index: 1; }

.hero:hover .tc-1 { transform: rotate(-5deg) translateY(-6px); }
.hero:hover .tc-2 { transform: rotate(3deg) translateY(-10px); }
.hero:hover .tc-3 { transform: rotate(-2deg) translateY(-4px); }

.status-mini {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-family: var(--font-num); color: var(--ok);
}
.status-mini::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px;
  background: var(--ok); box-shadow: 0 0 0 0 rgba(16,120,90,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,120,90,0.45); }
  70% { box-shadow: 0 0 0 8px rgba(16,120,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,120,90,0); }
}

.hero-bg-deco {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(167,139,250,0.10) 0%, rgba(167,139,250,0) 60%);
  pointer-events: none;
}


/* Section */
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section-head { margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--font-num); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); font-weight: 500;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 14px 0 0;
  text-wrap: balance;
}
.section-sub {
  margin: 20px 0 0;
  color: var(--ink-2);
  font-size: 15.5px;
  max-width: 580px;
  line-height: 1.85;
  text-wrap: pretty;
}

/* Service cards */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-soft);
}
.svc-card .svc-num {
  font-family: var(--font-num); font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.18em;
}
.svc-card h3 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.svc-card p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.svc-features {
  margin: 28px 0 0; padding: 0; list-style: none;
  border-top: 1px solid var(--line);
}
.svc-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink);
  display: flex; gap: 12px; align-items: flex-start;
}
.svc-features li::before {
  content: ''; flex: none; width: 16px; height: 16px; margin-top: 3px;
  background:
    linear-gradient(currentColor, currentColor) center/8px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center/1.5px 8px no-repeat;
  color: var(--accent);
}

.svc-card .deco {
  position: absolute; bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-bg) 0%, transparent 70%);
  pointer-events: none;
}

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step;
}
.step {
  padding: 32px 28px;
  border-top: 2px solid var(--ink);
  position: relative;
}
.step .step-num {
  font-family: var(--font-num); font-size: 11px;
  letter-spacing: 0.2em; color: var(--ink-3);
}
.step h4 { font-size: 17px; font-weight: 600; margin: 12px 0 8px; letter-spacing: -0.01em; }
.step p { color: var(--ink-2); font-size: 13.5px; margin: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--accent-soft); }
.plan.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  position: relative;
}
.plan.featured:hover { border-color: var(--ink); }
.plan.featured .plan-badge {
  position: absolute; top: -12px; left: 32px;
  background: var(--accent); color: #fff;
  padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-family: var(--font-num); font-weight: 500;
  letter-spacing: 0.05em;
}
.plan h3 { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: 0; }
.plan .plan-sub { font-size: 12.5px; color: var(--ink-3); margin: 6px 0 28px; }
.plan.featured .plan-sub { color: rgba(255,255,255,0.5); }
.plan .price { display: flex; align-items: baseline; gap: 6px; }
.plan .price .amount {
  font-family: var(--font-num); font-size: 48px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 1;
}
.plan .price .unit { font-size: 13px; color: var(--ink-3); }
.plan.featured .price .unit { color: rgba(255,255,255,0.5); }
.plan .price-note { font-size: 12px; color: var(--ink-3); margin: 8px 0 0; }
.plan.featured .price-note { color: rgba(255,255,255,0.6); }
.plan .plan-feats {
  list-style: none; padding: 0; margin: 28px 0;
  border-top: 1px solid var(--line);
  flex: 1;
}
.plan.featured .plan-feats { border-color: rgba(255,255,255,0.12); }
.plan .plan-feats li {
  padding: 12px 0; font-size: 13px; color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  display: flex; gap: 10px;
}
.plan.featured .plan-feats li { color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.08); }
.plan .plan-feats li::before {
  content: '✓'; color: var(--accent); font-family: var(--font-num); font-weight: 500;
  font-size: 12px;
}
.plan.featured .plan-feats li::before { color: var(--accent-soft); }
.plan .btn-plan {
  width: 100%; padding: 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  background: #fff; color: var(--ink);
  font-size: 13.5px; font-weight: 500;
  transition: all .2s;
}
.plan .btn-plan:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.plan.featured .btn-plan { background: #fff; color: var(--ink); border-color: #fff; }
.plan.featured .btn-plan:hover { background: var(--accent); border-color: var(--accent); color: #fff; }


/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  padding: 28px 8px;
  font-size: 16px; font-weight: 500; letter-spacing: -0.005em;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .faq-mark {
  flex: none; width: 18px; height: 18px; position: relative;
}
.faq-q .faq-mark::before, .faq-q .faq-mark::after {
  content: ''; position: absolute; background: currentColor;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-q .faq-mark::before { width: 12px; height: 1.5px; }
.faq-q .faq-mark::after { width: 1.5px; height: 12px; transition: transform .25s; }
.faq-item.open .faq-q .faq-mark::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 8px;
}
.faq-item.open .faq-a {
  max-height: 400px; padding: 0 8px 28px;
}
.faq-a p {
  margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.85;
  max-width: 720px;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 16px; }
.contact-info p { color: var(--ink-2); font-size: 14.5px; }
.contact-info .info-list { list-style: none; padding: 0; margin: 32px 0 0; }
.contact-info .info-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.contact-info .info-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-info .info-list .k { color: var(--ink-3); }
.contact-info .info-list .v { color: var(--ink); font-family: var(--font-num); }

.form-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label {
  font-size: 12px; color: var(--ink-2); font-weight: 500;
  letter-spacing: 0.02em;
}
.field label .req { color: var(--accent); margin-left: 4px; }
.input, .textarea, .select {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  outline: none;
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-bg);
}
.textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: var(--bg);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h5 {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500; margin: 0 0 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 6px 0; }
.footer-grid li a { font-size: 13.5px; color: var(--ink-2); transition: color .2s; }
.footer-grid li a:hover { color: var(--ink); }
.footer-brand p { color: var(--ink-2); font-size: 13.5px; margin: 16px 0 0; max-width: 320px; line-height: 1.8; }
.footer-bottom {
  margin-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-3); font-family: var(--font-num);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * { transition-delay: var(--d, 0ms); }

/* Apply flow */
.apply-shell {
  min-height: calc(100vh - 68px);
  background: var(--bg-alt);
  padding: 64px 0 96px;
}
.apply-card {
  max-width: 760px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 56px 64px;
}
.stepper {
  display: flex; gap: 8px; margin-bottom: 48px;
  max-width: 760px;
}
.stepper-item { flex: 1; }
.stepper-item .bar {
  height: 3px; background: var(--line); border-radius: 999px; transition: background .3s;
}
.stepper-item.done .bar, .stepper-item.active .bar { background: var(--accent); }
.stepper-item .lbl {
  margin-top: 10px;
  font-size: 11.5px; color: var(--ink-3); letter-spacing: 0.04em;
  font-family: var(--font-num);
}
.stepper-item.active .lbl { color: var(--ink); }

.step-title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px; }
.step-sub { color: var(--ink-2); font-size: 14px; margin: 0 0 36px; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.opt {
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: flex; gap: 14px; align-items: flex-start;
}
.opt:hover { border-color: var(--accent-soft); }
.opt.selected {
  border-color: var(--accent); background: var(--accent-bg);
}
.opt .opt-check {
  flex: none; width: 18px; height: 18px;
  border: 1.5px solid var(--line-2); border-radius: 999px;
  margin-top: 2px;
  display: grid; place-items: center;
  transition: border-color .2s;
}
.opt.selected .opt-check { border-color: var(--accent); background: var(--accent); }
.opt.selected .opt-check::after {
  content: ''; width: 6px; height: 6px; border-radius: 999px; background: #fff;
}
.opt .opt-title { font-size: 14px; font-weight: 600; margin: 0 0 2px; }
.opt .opt-desc { font-size: 12.5px; color: var(--ink-3); margin: 0; line-height: 1.6; }

.step-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line);
}
.summary-row {
  display: flex; justify-content: space-between; padding: 14px 0;
  border-bottom: 1px solid var(--line); font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .k { color: var(--ink-3); }
.summary-row .v { color: var(--ink); font-weight: 500; }
.summary-total {
  margin-top: 16px; padding: 24px;
  background: var(--bg-alt); border-radius: var(--r-md);
  display: flex; justify-content: space-between; align-items: baseline;
}
.summary-total .lbl { font-size: 13px; color: var(--ink-2); }
.summary-total .amt {
  font-family: var(--font-num); font-size: 32px; font-weight: 500;
  letter-spacing: -0.02em;
}

.success-screen { text-align: center; padding: 32px 0; }
.success-icon {
  width: 72px; height: 72px; border-radius: 999px;
  background: var(--accent-bg); color: var(--accent);
  display: grid; place-items: center; margin: 0 auto 24px;
  font-size: 32px;
}



.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 500;
  font-family: var(--font-num);
}
.badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 999px; background: currentColor;
}
.badge-success { background: rgba(16,120,90,0.08); color: var(--ok); }
.badge-warn { background: rgba(176,107,0,0.1); color: var(--warn); }
.badge-info { background: var(--accent-bg); color: var(--accent); }
.badge-mute { background: var(--bg-alt); color: var(--ink-3); }


/* Service card additions */
.svc-card.featured-svc {
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border-color: var(--accent-soft);
}
.svc-price {
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.svc-price::before { content: '¥'; font-size: 18px; opacity: 0.5; margin-right: 2px; }
.svc-price span { font-size: 14px; color: var(--ink-3); font-weight: 400; margin-left: 6px; }

/* Coverage */
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.coverage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.coverage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--accent-soft); }
.coverage-card.dev {
  background: var(--bg-alt);
  border-style: dashed;
}
.coverage-card.dev:hover { border-color: var(--warn); box-shadow: var(--shadow-soft); }
.coverage-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.coverage-tag {
  font-family: var(--font-num); font-size: 10.5px;
  letter-spacing: 0.2em; color: var(--ink-3);
  text-transform: uppercase;
}
.coverage-card h3 {
  font-size: 28px; font-weight: 700; letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.coverage-card p {
  color: var(--ink-2); font-size: 14px; line-height: 1.8;
  margin: 0;
}
.coverage-feats {
  list-style: none; padding: 0; margin: 24px 0 0;
  border-top: 1px solid var(--line);
}
.coverage-card.dev .coverage-feats { border-color: var(--line-2); }
.coverage-feats li {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink-2);
  display: flex; gap: 10px; align-items: center;
}
.coverage-card.dev .coverage-feats li {
  border-color: var(--line-2);
  color: var(--ink-3);
}
.coverage-feats li::before {
  content: ''; flex: none; width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
}
.coverage-card.dev .coverage-feats li::before { background: var(--warn); opacity: 0.6; }

/* Status mini variants */
.status-mini.status-dev { color: var(--warn); }
.status-mini.status-dev::before {
  background: var(--warn);
  box-shadow: 0 0 0 0 rgba(176,107,0,0.45);
  animation: pulse-warn 2s infinite;
}
@keyframes pulse-warn {
  0% { box-shadow: 0 0 0 0 rgba(176,107,0,0.45); }
  70% { box-shadow: 0 0 0 8px rgba(176,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(176,107,0,0); }
}

/* Pricing — 2 col layout */
.pricing-grid.two {
  grid-template-columns: 1fr 1fr;
  max-width: 920px;
  margin: 0 auto;
}

/* Payment note */
.payment-note {
  margin-top: 64px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.payment-head { margin-bottom: 24px; }
.payment-head h4 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  margin: 8px 0 0;
}
.payment-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.payment-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
}
.payment-name {
  font-family: var(--font-num);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.payment-name::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
}
.payment-card p {
  margin: 0; font-size: 13.5px; color: var(--ink-2);
  line-height: 1.8;
}
.warn-text {
  color: var(--danger);
  font-weight: 500;
}

/* Form callout / checklist */
.form-callout {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--accent-bg);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}
.form-callout-icon {
  flex: none; width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-num); font-weight: 500;
  font-size: 14px; font-style: italic;
}
.checklist { list-style: none; padding: 0; margin: 0 0 28px; }
.checklist li {
  padding: 14px 0; font-size: 13.5px; color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  display: flex; gap: 12px;
}
.checklist li:last-child { border-bottom: none; }
.checklist li b {
  color: var(--accent); font-family: var(--font-num); font-weight: 500;
  font-size: 11.5px; letter-spacing: 0.05em;
  min-width: 56px;
}
.payment-mini {
  margin-top: 20px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
}
.payment-mini span { color: var(--ink-3); letter-spacing: 0.04em; font-family: var(--font-num); font-size: 11px; }
.payment-mini strong { font-weight: 500; color: var(--ink); font-size: 13px; }

/* Agree row */
.agree-row {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 28px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  font-size: 13px; color: var(--ink-2);
  cursor: pointer;
  line-height: 1.7;
}
.agree-row input[type=checkbox] {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--accent);
  flex: none;
}

/* Payment warn box */
.payment-warn {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid #f3d8d8;
  background: #fdf6f6;
  border-radius: var(--r-md);
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.8;
}
.payment-warn-icon {
  flex: none; width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--danger); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-num); font-weight: 700; font-size: 13px;
  margin-top: 2px;
}

/* Disabled states */
.opt.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--bg-alt);
}
.opt.disabled:hover { border-color: var(--line-2); }
.btn.disabled, .btn:disabled {
  opacity: 0.4; cursor: not-allowed;
  transform: none !important;
}
.btn.disabled:hover, .btn:disabled:hover { transform: none; }

/* LINE buttons */
.line-btn {
  display: inline-flex;
  transition: transform .15s;
}
.line-btn:hover { transform: translateY(-1px); }
.line-btn img { display: block; border-radius: 4px; }

.line-btn-sm {
  display: inline-flex; align-items: center; gap: 7px;
  background: #06c755;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em;
  transition: background .2s, transform .15s;
}
.line-btn-sm:hover { background: #05a047; transform: translateY(-1px); }
.line-btn-sm .line-ic {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: #fff;
  position: relative;
  flex: none;
}
.line-btn-sm .line-ic::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 2px solid #06c755;
  border-radius: 2px;
  border-top: none;
  border-right: none;
}

/* Contact actions */
.contact-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* Qty selector */
.qty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.qty-opt {
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.qty-opt:hover { border-color: var(--accent-soft); }
.qty-opt.selected {
  border-color: var(--accent);
  background: var(--accent-bg);
}
.qty-num {
  font-family: var(--font-num);
  font-size: 40px; font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.qty-opt.selected .qty-num { color: var(--accent); }
.qty-lbl {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* Priority note */
.priority-note {
  margin-top: 14px;
  padding: 18px;
  background: linear-gradient(180deg, #fff8eb 0%, #fffdf7 100%);
  border: 1px solid #f1d9a0;
  border-radius: var(--r-md);
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 13px; color: var(--ink-2); line-height: 1.8;
}
.priority-note b { color: #8a5a00; }
.priority-icon {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: #f5b342; color: #fff;
  display: grid; place-items: center;
  font-size: 14px;
  margin-top: 1px;
}

/* LINE callout in apply form */
.line-callout {
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 18px 20px;
  background: #f5fff7;
  border: 1px solid #c8edd2;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* LINE-themed CTAs */
.btn-line-primary {
  background: #06c755;
  color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-line-primary:hover { background: #05a047; transform: translateY(-1px); }
.btn-line-primary .line-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: #fff;
  position: relative;
  flex: none;
}
.btn-line-primary .line-mark::after {
  content: 'L';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #06c755;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}

.line-mark-mini {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: #06c755;
  position: relative;
  flex: none;
}
.line-mark-mini::after {
  content: 'L';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
}

/* LINE recommend banner (Contact left) */
.line-recommend-banner {
  margin-top: 28px;
  background: linear-gradient(180deg, #f0fdf4 0%, #f5fff7 100%);
  border: 1px solid #bbf0c8;
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.line-recommend-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #06c755;
  display: grid;
  place-items: center;
}
.line-recommend-icon .line-mark-mini {
  width: 18px; height: 18px;
  background: #fff;
}
.line-recommend-icon .line-mark-mini::after { color: #06c755; font-size: 12px; }
.line-recommend-title {
  font-weight: 700;
  font-size: 16px;
  color: #048a3c;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.line-recommend-banner p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
}
.line-recommend-banner b { color: #048a3c; }

.done-line-cta {
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}


/* Legal pages */
.legal-shell {
  min-height: 100vh;
  background: var(--bg);
}
.legal-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 48px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 24px;
  transition: color .2s;
}
.legal-back:hover { color: var(--ink); }
.legal-title {
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
}
.legal-meta {
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.legal-body {
  padding: 64px 0 96px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-body h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 56px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.legal-body p,
.legal-body li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.95;
}
.legal-body p { margin: 0 0 14px; }
.legal-body ul, .legal-body ol {
  margin: 0 0 18px;
  padding-left: 20px;
}
.legal-body li { margin-bottom: 6px; }
.legal-body .lead {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 32px;
  line-height: 1.95;
}
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 24px;
  font-size: 13.5px;
}
.legal-body .legal-table th,
.legal-body .legal-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-body .legal-table th {
  width: 200px;
  color: var(--ink-3);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  background: var(--bg-alt);
}
.legal-body .legal-table td { color: var(--ink); }
.legal-body .legal-table tr:last-child th,
.legal-body .legal-table tr:last-child td { border-bottom: none; }
.legal-body .callout {
  padding: 16px 20px;
  background: var(--accent-bg);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--ink);
  margin: 16px 0 24px;
  line-height: 1.85;
}
.legal-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg-alt);
}
.legal-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--font-num);
}
.legal-footer-nav { display: flex; gap: 20px; }
.legal-footer-nav a {
  font-size: 12px;
  color: var(--ink-3);
  transition: color .2s;
}
.legal-footer-nav a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .legal-body .legal-table th,
  .legal-body .legal-table td {
    display: block;
    width: 100%;
    padding: 10px 16px;
  }
  .legal-body .legal-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
  .legal-footer-inner { flex-direction: column; gap: 12px; }
}

/* CTA Light section */
.cta-light-section { padding: 60px 0 120px; }
.cta-light {
  position: relative;
  background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 72px 80px;
  overflow: hidden;
}
.cta-light::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(167,139,250,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-light::after {
  content: '';
  position: absolute;
  top: 0; left: 56px;
  width: 1px; height: 64px;
  background: var(--accent);
  opacity: 0.6;
}
.cta-light-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-light-title {
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 18px 0 24px;
  text-wrap: balance;
  color: var(--ink);
}
.cta-light-sub {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0;
  max-width: 480px;
  text-wrap: pretty;
}
.cta-light-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.cta-light-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 18px 14px 10px;
  font-size: 13px;
  color: var(--ink-2);
  border-top: 1px dashed var(--line-2);
  transition: color .2s;
  font-family: var(--font-num);
  letter-spacing: -0.005em;
}
.cta-light-mail:hover { color: var(--accent); }
.cta-light-mail-ic {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 11px;
}
.custom-section { padding: 100px 0; background: var(--bg); }
.custom-card {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--r-xl);
  padding: 80px 72px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.custom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 56px;
  width: 1px; height: 64px;
  background: var(--accent);
  opacity: 0.6;
}
.custom-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 88px;
  align-items: start;
}
.custom-card-title {
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 18px 0 28px;
  text-wrap: balance;
  color: var(--ink);
}
.custom-card-sub {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.95;
  margin: 0 0 36px;
  max-width: 540px;
  text-wrap: pretty;
}
.custom-card-sub b {
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(transparent 62%, rgba(167,139,250,0.28) 62%);
  padding: 0 2px;
}
.custom-card-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Right side */
.custom-card-side {
  border-left: 1px solid var(--line-2);
  padding-left: 48px;
  padding-top: 8px;
}
.custom-card-side-label {
  font-family: var(--font-num);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.custom-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.custom-card-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.005em;
  transition: padding .2s, color .2s;
}
.custom-card-list li:last-child { border-bottom: none; }
.custom-card-list li:hover {
  padding-left: 6px;
  color: var(--accent);
}
.custom-card-list-num {
  font-family: var(--font-num);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  flex: none;
  font-weight: 500;
  min-width: 18px;
}
.custom-card-list li:hover .custom-card-list-num { color: var(--accent); }
.custom-card-note {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.75;
  padding-top: 16px;
  border-top: 1px dashed var(--line-2);
}

/* Apply LINE banner — tone down */
.apply-line-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
  background: #f5fff7;
  border: 1px solid #d6f0dd;
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--ink-2);
}
.apply-line-banner-text { flex: 1; }
.apply-line-banner-text b { color: #048a3c; font-weight: 600; }
.apply-line-banner-link {
  font-size: 12.5px;
  font-weight: 500;
  color: #06c755;
  white-space: nowrap;
}
.apply-line-banner-link:hover { color: #048a3c; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .contact-grid, .svc-grid, .pricing-grid, .pricing-grid.two, .coverage-grid, .payment-grid, .footer-grid, .custom-card-grid, .cta-light-grid { grid-template-columns: 1fr; }
  .custom-card, .cta-light { padding: 48px 28px; }
  .custom-card-side { border-left: none; padding-left: 0; padding-top: 32px; border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero-visual { height: 480px; }
  .apply-card { padding: 32px 24px; }
  .opt-grid, .field-row { grid-template-columns: 1fr; }
}
