/* ============================================================
   9DAYS : AI WEB CREATE — styles.css
   Light × Blue. Fonts: Archivo / Space Grotesk / Zen Kaku Gothic New
   ============================================================ */

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: #fff;
  color: #16233B;
  font-family: 'Noto Sans JP', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

:root {
  --blue: #2563EB;
  --blue-dark: #1E54C8;
  --navy: #0E1B33;
  --ink: #16233B;
  --muted: #5B6B85;
  --faint: #7C89A0;
  --line: #E8EFFB;
  --bg-soft: #F2F7FF;
  --bg-card-soft: #F7FAFF;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font: 700 12px 'Space Grotesk', sans-serif; letter-spacing: .14em;
  color: var(--blue); text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 22px; height: 2px; background: var(--blue); }

.section { padding: 96px 0; }
.section.soft { background: var(--bg-soft); }

.sec-head { margin-bottom: 44px; }
.sec-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.sec-head h2 {
  font: 800 32px/1.5 'Noto Sans JP', sans-serif; color: var(--navy);
  margin: 16px 0 0;
}
.sec-head.big h2 { font-size: 34px; }
.sec-head p { font: 400 14px 'Noto Sans JP', sans-serif; color: var(--muted); margin: 12px 0 0; }
.accent { color: var(--blue); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 15px 'Noto Sans JP', sans-serif; text-decoration: none;
  padding: 15px 26px; border-radius: 12px; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn .arw { font-family: 'Archivo', sans-serif; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 16px 30px -10px rgba(37,99,235,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -10px rgba(37,99,235,.7); }
.btn-ghost { background: #fff; border: 1.5px solid #C9D6EE; color: #15233C; }
.btn-ghost .arw { color: var(--blue); }
.btn-ghost:hover { border-color: var(--blue); }
.btn-sm { padding: 10px 18px; border-radius: 999px; font-size: 13px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid #EBF1FA; transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 6px 22px -14px rgba(20,50,110,.4); }
.site-header .wrap {
  padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand .b-name { font: 800 20px 'Archivo', sans-serif; color: var(--navy); letter-spacing: .01em; }
.brand .b-sub { font: 800 15px 'Archivo', sans-serif; letter-spacing: .1em; color: #0E1B33; }
.nav { display: flex; gap: 26px; font: 500 13.5px 'Noto Sans JP', sans-serif; color: #41506B; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--blue); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; border-radius: 2px; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80; background: rgba(11,20,38,.5);
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 78%; max-width: 320px;
  background: #fff; padding: 24px; transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.drawer.open .drawer-panel { transform: none; }
.drawer-close { align-self: flex-end; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--navy); line-height: 1; }
.drawer-panel a {
  text-decoration: none; color: var(--ink); font: 600 16px 'Noto Sans JP', sans-serif;
  padding: 14px 8px; border-bottom: 1px solid #F0F4FB;
}
.drawer-panel .btn { margin-top: 16px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #FFF 0%, #F2F7FF 100%); }
.hero::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(37,99,235,.16), rgba(37,99,235,0) 62%);
}
.hero .wrap { padding: 64px 28px 76px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FF6A1F; border: 1px solid #F05A0E; color: #fff;
  padding: 11px 20px; border-radius: 999px; font: 700 15px 'Noto Sans JP', sans-serif;
  box-shadow: 0 14px 28px -12px rgba(240,90,14,.55);
}
.badge .num { font: 800 19px 'Archivo', sans-serif; letter-spacing: -.01em; }
.badge .num-jp { font: 800 19px 'Noto Sans JP', sans-serif; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #FFD9C2; }
.hero-logo { margin-top: 22px; font: 900 132px/.84 'Archivo', sans-serif; color: var(--navy); letter-spacing: -.035em; }
.hero-sub { font: 800 44px 'Archivo', sans-serif; letter-spacing: .08em; color: #0E1B33; margin-top: 14px; white-space: nowrap; }
.hero-copy { font: 700 32px/1.5 'Noto Sans JP', sans-serif; color: var(--ink); margin: 26px 0 0; }
.hero-lead { font: 400 14.5px/1.95 'Noto Sans JP', sans-serif; color: var(--muted); margin: 16px 0 0; max-width: 470px; }
.hero-lead b { color: var(--ink); }
.hero-cta { display: flex; gap: 13px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 34px; }
.hero-stats .num { font: 800 28px 'Archivo', sans-serif; color: var(--blue); }
.hero-stats .num small { font-size: 13px; color: var(--navy); }
.hero-stats .lbl { font: 500 11.5px 'Noto Sans JP', sans-serif; color: var(--faint); margin-top: 3px; }
.hero-stats .vline { width: 1px; background: #E3EAF6; }

.hero-visual { position: relative; min-height: 460px; }
.hv-blob {
  position: absolute; right: 8px; top: 14px; width: 360px; height: 360px; border-radius: 50%;
  background: linear-gradient(140deg, #2563EB, #5FA0FF); opacity: .12; animation: floaty 7s ease-in-out infinite;
}
.hv-card {
  position: absolute; right: -40px; top: 30px; width: calc(100% + 40px); max-width: 520px; border-radius: 18px; background: #fff;
  box-shadow: 0 40px 70px -26px rgba(37,99,235,.4); border: 1px solid #E7EEFB; overflow: hidden;
}
.hv-bar { display: flex; align-items: center; gap: 6px; padding: 11px 15px; background: #F6F9FF; border-bottom: 1px solid #EEF3FB; }
.hv-url { flex: 1; margin-left: 8px; background: #fff; border: 1px solid #E7EEFB; border-radius: 999px; padding: 4px 12px; font: 600 10px 'Space Grotesk', sans-serif; color: #8C98AE; letter-spacing: .06em; }
.hv-video { display: block; width: 100%; height: auto; background: #0E1B33; }
.hv-demo { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 16px; background: #F6F9FF; border-top: 1px solid #EEF3FB; font: 700 13px 'Noto Sans JP', sans-serif; color: #2563EB; text-decoration: none; }
.hv-demo:hover { background: #EAF1FF; }
.hv-demo .ar { font-family: 'Archivo', sans-serif; }
.hv-bar i { width: 9px; height: 9px; border-radius: 50%; background: #D6E0F2; }
.hv-html, body { overflow-x: clip; }
body { padding: 20px; }
.hv-hero-img { height: 50px; border-radius: 10px; background: linear-gradient(120deg, #2563EB, #5FA0FF); }
.hv-line { height: 11px; border-radius: 5px; background: #EEF3FA; margin-top: 9px; }
.hv-line.first { background: #E9EFF8; margin-top: 16px; }
.hv-twin { display: flex; gap: 11px; margin-top: 18px; }
.hv-twin div { height: 66px; flex: 1; border-radius: 10px; background: #F1F5FC; }
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid #E7EEFB;
  border-radius: 14px; padding: 12px 16px; box-shadow: 0 18px 38px -14px rgba(20,50,110,.32);
}
.float-chip.one { left: 0; top: 108px; z-index: 2; animation: floaty 6s ease-in-out infinite; }
.float-chip.two { left: 0; bottom: 160px; z-index: 2; animation: floaty 7.5s ease-in-out infinite; }
.float-chip .ic { width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
.float-chip .ic.blue { background: #EAF1FF; }
.float-chip .ic.green { background: #E8F7EF; }
.float-chip .t1 { display: block; font: 500 10px 'Noto Sans JP', sans-serif; color: #8C98AE; }
.float-chip .t2 { display: block; font: 700 15px 'Noto Sans JP', sans-serif; color: #13223C; }

/* ============================================================
   STRENGTHS
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.s-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 28px; box-shadow: 0 24px 50px -34px rgba(20,50,110,.28);
}
.s-card .idx { position: absolute; top: 24px; right: 26px; font: 800 38px 'Archivo', sans-serif; color: #EEF3FB; }
.s-icon { width: 54px; height: 54px; border-radius: 14px; background: #EAF1FF; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.s-card h3 { font: 700 19px 'Noto Sans JP', sans-serif; color: var(--navy); margin: 0 0 10px; }
.s-card h3 em { font-style: normal; color: var(--blue); }
.s-card p { font: 400 13.5px/1.9 'Noto Sans JP', sans-serif; color: var(--muted); margin: 0; }

/* ============================================================
   WORRIES
   ============================================================ */
.worry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.worry {
  display: flex; gap: 13px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 20px;
}
.worry .q { font: 800 15px 'Archivo', sans-serif; color: var(--blue); flex: none; }
.worry p { font: 500 13.5px/1.7 'Noto Sans JP', sans-serif; color: #41506B; margin: 0; }
.worry.answer { align-items: center; background: linear-gradient(135deg, #2563EB, #3F7BF0); border: none; }
.worry.answer .q { color: #fff; }
.worry.answer p { font-weight: 700; color: #fff; }

/* ============================================================
   NOT-AI (VS)
   ============================================================ */
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: center; }
.vs-box { border-radius: 18px; padding: 30px; }
.vs-box.bad { background: #FCFAFA; border: 1px solid #F0E2E2; }
.vs-box.good { background: linear-gradient(160deg, #F2F7FF, #EAF1FF); border: 1px solid #D5E3FE; }
.vs-tag { display: inline-block; font: 700 12px 'Noto Sans JP', sans-serif; padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; }
.vs-box.bad .vs-tag { color: #C0566B; background: #FBECEF; }
.vs-box.good .vs-tag { color: var(--blue-dark); background: #fff; margin-bottom: 18px; }
.vs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.vs-list li { display: flex; gap: 11px; font: 500 14px 'Noto Sans JP', sans-serif; color: #6B5560; }
.vs-list li .x { color: #C0566B; font-weight: 800; }
.vs-good-head { font: 700 17px/1.7 'Noto Sans JP', sans-serif; color: var(--navy); }
.vs-good-head .accent { color: var(--blue); }
.vs-result { margin-top: 16px; text-align: center; font: 700 15px 'Noto Sans JP', sans-serif; color: var(--navy); background: #fff; border-radius: 12px; padding: 16px; }
.vs-mid { width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font: 800 16px 'Archivo', sans-serif; }
.lead-block { max-width: 900px; margin-bottom: 48px; }
.lead-block h2 { font: 800 38px/1.45 'Noto Sans JP', sans-serif; color: var(--navy); margin: 16px 0 18px; }
.lead-block p { font: 400 14.5px/1.95 'Noto Sans JP', sans-serif; color: var(--muted); margin: 0; }
.lead-block p b { color: var(--ink); }

/* ============================================================
   TRUST
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.trust-grid h2 { font: 800 30px/1.5 'Noto Sans JP', sans-serif; color: var(--navy); margin: 18px 0 16px; }
.trust-grid p { font: 400 14.5px/1.95 'Noto Sans JP', sans-serif; color: var(--muted); margin: 0 0 20px; }
.trust-grid p b { color: var(--ink); }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { font: 600 13px 'Noto Sans JP', sans-serif; color: var(--blue-dark); background: #fff; border: 1px solid #D5E3FE; padding: 8px 16px; border-radius: 999px; }
.trust-stat { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 48px 40px; text-align: center; box-shadow: 0 30px 60px -34px rgba(20,50,110,.3); }
.trust-stat .big { font: 900 88px/1 'Archivo', sans-serif; color: var(--blue); letter-spacing: -.03em; }
.trust-stat .cap { font: 500 13.5px/1.8 'Noto Sans JP', sans-serif; color: var(--muted); margin-top: 14px; }

/* ============================================================
   PROCESS
   ============================================================ */
.flow-tags { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.flow-tags .tag-group { display: flex; flex-direction: column; gap: 11px; border-radius: 16px; padding: 16px 18px; border: 1px solid #DCE7F8; }
.flow-tags .tag-group.ai { flex: 1.6; min-width: 280px; background: var(--bg-soft); }
.flow-tags .tag-group.qa { flex: 1; min-width: 220px; background: #fff; }
.flow-tags .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.flow-tags .lbl { font: 700 12px 'Noto Sans JP', sans-serif; color: var(--faint); letter-spacing: .08em; }
.flow-tags .tag-group.ai .lbl { color: #1E54C8; }
.tag-blue { font: 600 13px 'Noto Sans JP', sans-serif; color: #fff; background: var(--blue); padding: 7px 14px; border-radius: 999px; }
.tag-white { font: 600 13px 'Noto Sans JP', sans-serif; color: var(--blue-dark); background: #fff; border: 1px solid #C9D6EE; padding: 7px 14px; border-radius: 999px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-box { border-radius: 18px; padding: 28px; }
.compare-box.old { background: #fff; border: 1px solid var(--line); }
.compare-box.new { background: linear-gradient(160deg, #EAF1FF, #F4F8FF); border: 1.5px solid #BFD5FB; }
.compare-box h4 { display: flex; align-items: center; gap: 9px; font: 700 15px 'Noto Sans JP', sans-serif; margin: 0 0 20px; }
.compare-box.old h4 { color: var(--muted); }
.compare-box.new h4 { color: var(--blue-dark); }
.compare-box h4 .pip { width: 8px; height: 8px; border-radius: 50%; }
.compare-box.old h4 .pip { background: #C2CCDC; }
.compare-box.new h4 .pip { background: var(--blue); }
.steps-inline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.step-pill { display: flex; align-items: center; gap: 7px; border-radius: 9px; padding: 9px 13px; font: 600 12.5px 'Noto Sans JP', sans-serif; }
.compare-box.old .step-pill { background: #F4F7FC; color: #41506B; }
.compare-box.old .step-pill .n { font: 800 11px 'Archivo', sans-serif; color: #A9B6CC; }
.compare-box.new .step-pill { background: #fff; color: #1E3357; }
.compare-box.new .step-pill .n { font: 800 11px 'Archivo', sans-serif; color: var(--blue); }
.steps-inline .gt { color: #C2CCDC; }
.compare-box.new .steps-inline .gt { color: var(--blue); }
.compare-note { font: 600 13px 'Noto Sans JP', sans-serif; margin: 20px 0 0; }
.compare-box.old .compare-note { color: #8C98AE; }
.compare-box.new .compare-note { color: var(--blue); font-weight: 700; }

/* ============================================================
   WORKS
   ============================================================ */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 50px -34px rgba(20,50,110,.26); transition: transform .2s ease, box-shadow .2s ease;
}
.work:hover { transform: translateY(-4px); box-shadow: 0 34px 60px -34px rgba(20,50,110,.34); }
.work-thumb { position: relative; padding: 20px; background: #F4F8FF; border-bottom: 1px solid #EEF3FB; }
.work-mock { border-radius: 11px; overflow: hidden; border: 1px solid #E7EEFB; background: #fff; }
.work-mock .mbar { display: flex; gap: 5px; padding: 9px 12px; border-bottom: 1px solid #F0F4FB; }
.work-mock .mbar i { width: 7px; height: 7px; border-radius: 50%; background: #E0E7F2; }
.work-mock .mhtml, body { overflow-x: clip; }
body { padding: 14px; }
.work-mock .mhero { height: 32px; border-radius: 7px; }
.work-mock .mline { height: 8px; border-radius: 4px; background: #EFF3FA; margin-top: 7px; }
.work-mock .mline.first { background: #EAF0F8; margin-top: 11px; }
.work-shot { display: block; width: 100%; aspect-ratio: 16/9.6; object-fit: cover; object-position: top; }
.work-tag { position: absolute; top: 30px; right: 30px; background: #fff; border: 1px solid #E7EEFB; font: 700 11px 'Noto Sans JP', sans-serif; color: var(--blue); padding: 5px 11px; border-radius: 999px; }
.work-info { padding: 22px 24px; }
.work-info .cat { font: 600 10px 'Space Grotesk', sans-serif; letter-spacing: .16em; color: #9AA8C0; text-transform: uppercase; }
.work-info h4 { font: 700 16px 'Noto Sans JP', sans-serif; color: var(--navy); margin: 7px 0 16px; }
.work-meta { display: flex; gap: 24px; }
.work-meta .ml { font: 500 11px 'Noto Sans JP', sans-serif; color: #9AA8C0; }
.work-meta .mv { font: 700 14px 'Noto Sans JP', sans-serif; color: var(--ink); margin-top: 2px; }

/* ============================================================
   REASONS
   ============================================================ */
.reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.reason { display: flex; gap: 20px; background: var(--bg-card-soft); border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px; }
.reason .rn { font: 800 30px 'Archivo', sans-serif; color: #BFD2F5; flex: none; }
.reason h4 { font: 700 17px 'Noto Sans JP', sans-serif; color: var(--navy); margin: 0 0 8px; }
.reason p { font: 400 13.5px/1.85 'Noto Sans JP', sans-serif; color: var(--muted); margin: 0; }

/* ============================================================
   SERVICE
   ============================================================ */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; box-shadow: 0 24px 50px -36px rgba(20,50,110,.26); }
.svc .s-icon { margin-bottom: 18px; }
.svc h3 { font: 700 19px 'Noto Sans JP', sans-serif; color: var(--navy); margin: 0 0 6px; }
.svc .svc-sub { font: 400 13px 'Noto Sans JP', sans-serif; color: var(--faint); margin: 0 0 18px; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 11px; align-items: center; font: 500 14px 'Noto Sans JP', sans-serif; color: #41506B; }
.check-list li .ck { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: #EAF1FF; color: var(--blue); flex: none; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 28px; box-shadow: 0 24px 50px -36px rgba(20,50,110,.26); }
.plan .p-name { font: 800 20px 'Archivo', sans-serif; color: var(--navy); }
.plan .p-jp { font: 500 12px 'Noto Sans JP', sans-serif; color: var(--faint); margin-top: 2px; }
.plan .p-price { display: flex; align-items: baseline; gap: 3px; margin: 20px 0 4px; }
.plan .p-price .yen { font: 700 18px 'Archivo', sans-serif; color: var(--navy); }
.plan .p-price .amt { font: 800 42px 'Archivo', sans-serif; color: var(--navy); letter-spacing: -.02em; }
.plan .p-price .per { font: 500 12px 'Noto Sans JP', sans-serif; color: #9AA8C0; margin-left: 4px; }
.plan .p-monthly { font: 600 13px 'Noto Sans JP', sans-serif; color: var(--blue); }
.plan .p-pages { display: flex; align-items: center; justify-content: space-between; margin: 20px 0; padding: 14px 16px; background: var(--bg-card-soft); border-radius: 11px; }
.plan .p-pages span { font: 500 12px 'Noto Sans JP', sans-serif; color: var(--faint); }
.plan .p-pages b { font: 800 22px 'Archivo', sans-serif; color: var(--navy); }
.plan .p-pages b small { font: 500 13px 'Noto Sans JP', sans-serif; }
.plan .p-feats { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan .p-feats li { display: flex; gap: 10px; align-items: center; font: 500 13.5px 'Noto Sans JP', sans-serif; color: #41506B; }
.plan .p-feats li .ck { color: var(--blue); flex: none; display: inline-flex; }
.plan .p-cta { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 13px; border-radius: 11px; font: 700 14px 'Noto Sans JP', sans-serif; text-decoration: none; }
.plan.featured { position: relative; background: #fff; border: 2px solid var(--blue); box-shadow: 0 30px 60px -32px rgba(37,99,235,.45); padding-top: 38px; }
.plan.featured .p-name { color: var(--navy); }


.plan-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #2563EB, #5FA0FF); color: #fff; font: 700 12px 'Noto Sans JP', sans-serif; padding: 7px 18px; border-radius: 999px; white-space: nowrap; }

.opts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.opt { display: flex; align-items: center; justify-content: space-between; background: var(--bg-card-soft); border: 1px solid var(--line); border-radius: 13px; padding: 18px 20px; }
.opt .on { font: 600 14px 'Noto Sans JP', sans-serif; color: var(--ink); }
.opt .op { font: 800 16px 'Archivo', sans-serif; color: var(--blue); }
.domain-box { display: grid; grid-template-columns: 1.4fr .6fr; gap: 26px; margin-top: 24px; background: var(--bg-soft); border: 1px solid #E3EBF7; border-radius: 18px; padding: 32px; }
.domain-box h3 { font: 700 18px 'Noto Sans JP', sans-serif; color: var(--navy); margin: 0 0 18px; }
.domain-list { display: flex; flex-direction: column; gap: 12px; }
.domain-list span { display: flex; gap: 11px; align-items: center; font: 500 14px 'Noto Sans JP', sans-serif; color: #41506B; }
.domain-list .ck { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: #EAF1FF; color: var(--blue); flex: none; }
.domain-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; text-align: center; }
.domain-card .dc-lbl { font: 600 12px 'Noto Sans JP', sans-serif; color: var(--faint); margin-bottom: 8px; }
.domain-card .dc-price { font: 800 30px 'Archivo', sans-serif; color: var(--navy); }
.domain-card .dc-price small { font: 500 14px 'Noto Sans JP', sans-serif; color: var(--faint); }
.domain-card .dc-note { font: 400 11px 'Noto Sans JP', sans-serif; color: #9AA8C0; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; background: linear-gradient(135deg, #2563EB, #3F7BF0); padding: 22px 0; }
.marquee-track { display: flex; width: max-content; animation: marq 26s linear infinite; white-space: nowrap; }
.marquee-track span { display: inline-flex; align-items: center; gap: 26px; font: 800 26px 'Archivo', sans-serif; color: #fff; padding-right: 26px; }
.marquee-track span em { font: 600 15px 'Noto Sans JP', sans-serif; color: #BFD5FF; font-style: normal; }

/* ============================================================
   FLOW (10 steps)
   ============================================================ */
.flow-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.fstep { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.fstep .fn { width: 30px; height: 30px; border-radius: 9px; background: #EAF1FF; color: var(--blue); display: flex; align-items: center; justify-content: center; font: 800 14px 'Archivo', sans-serif; margin-bottom: 12px; }
.fstep h5 { font: 700 13.5px 'Noto Sans JP', sans-serif; color: var(--ink); margin: 0; }
.fstep h5 + p { font: 400 11px 'Noto Sans JP', sans-serif; color: #9AA8C0; margin: 4px 0 0; }
.fstep.last { background: linear-gradient(160deg, #2563EB, #3F7BF0); border: none; }
.fstep.last .fn { background: rgba(255,255,255,.18); color: #fff; }
.fstep.last h5 { color: #fff; }
.flow-cta { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; margin-top: 24px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 36px; }
.flow-cta .fc-big { font: 700 22px/1.6 'Noto Sans JP', sans-serif; color: var(--navy); }
.flow-cta .fc-note { font: 400 12.5px 'Noto Sans JP', sans-serif; color: #9AA8C0; margin: 10px 0 0; }
.flow-cta .fc-num { display: flex; align-items: baseline; gap: 6px; }
.flow-cta .fc-num .n { font: 900 72px 'Archivo', sans-serif; color: var(--blue); letter-spacing: -.03em; }
.flow-cta .fc-num .u { font: 700 16px 'Noto Sans JP', sans-serif; color: var(--navy); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.qa { background: var(--bg-card-soft); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.qa button { width: 100%; display: flex; align-items: center; gap: 14px; padding: 20px 22px; background: none; border: none; cursor: pointer; text-align: left; }
.qa .qmark { font: 800 15px 'Archivo', sans-serif; color: var(--blue); flex: none; }
.qa .qtext { flex: 1; font: 700 15px 'Noto Sans JP', sans-serif; color: var(--ink); }
.qa .qsign { font: 400 22px 'Archivo', sans-serif; color: var(--blue); flex: none; transition: transform .2s ease; }
.qa.open .qsign { transform: rotate(45deg); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qa .ans-inner { padding: 0 22px 22px 50px; font: 400 13.5px/1.9 'Noto Sans JP', sans-serif; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: linear-gradient(180deg, #F2F7FF, #EAF1FF); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-info h2 { font: 800 30px/1.5 'Noto Sans JP', sans-serif; color: var(--navy); margin: 18px 0 22px; }
.contact-info p { font: 400 13px/1.85 'Noto Sans JP', sans-serif; color: var(--muted); margin: 0; }
.want-list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.want-list li { display: flex; gap: 11px; align-items: center; font: 500 14px 'Noto Sans JP', sans-serif; color: #41506B; }
.want-list li .ck { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; flex: none; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px; box-shadow: 0 36px 70px -40px rgba(20,50,110,.4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row + .form-row, .field-block { margin-top: 16px; }
.flabel { display: flex; align-items: center; gap: 7px; font: 700 12.5px 'Noto Sans JP', sans-serif; color: var(--ink); margin-bottom: 7px; }
.req { font: 700 9px 'Noto Sans JP', sans-serif; color: #fff; background: #E0566B; padding: 2px 6px; border-radius: 4px; }
.opt-tag { font: 700 9px 'Noto Sans JP', sans-serif; color: #8C98AE; background: #EEF3FB; padding: 2px 6px; border-radius: 4px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #DEE7F4; border-radius: 10px;
  font: 500 14px 'Noto Sans JP', sans-serif; color: var(--ink); outline: none; background: #FAFCFF;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.field textarea { min-height: 110px; resize: vertical; }
.field .err-msg { font: 500 11px 'Noto Sans JP', sans-serif; color: #E0566B; margin-top: 5px; display: none; }
.field.err input, .field.err textarea { border-color: #E0566B; background: #FFF7F8; }
.field.err .err-msg { display: block; }
.plan-radios { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.plan-radios label { padding: 12px 8px; border-radius: 10px; border: 1.5px solid #D7E3F7; background: #fff; color: #41506B; font: 700 13px 'Noto Sans JP', sans-serif; cursor: pointer; text-align: center; transition: all .15s ease; }
.plan-radios label.sel { border-color: var(--blue); background: #EAF1FF; color: var(--blue-dark); }
.plan-radios input { position: absolute; opacity: 0; pointer-events: none; }
.consent { display: flex; align-items: center; gap: 9px; cursor: pointer; font: 500 13px 'Noto Sans JP', sans-serif; color: #41506B; }
.consent input { width: 17px; height: 17px; accent-color: var(--blue); }
.consent a { color: var(--blue); }
.submit { width: 100%; margin-top: 22px; justify-content: center; }
.submit:disabled { opacity: .6; cursor: default; }
.form-success { display: none; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 60px 40px; text-align: center; box-shadow: 0 36px 70px -40px rgba(20,50,110,.4); }
.form-success.show { display: block; }
.form-success .fs-ic { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #2563EB, #5FA0FF); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-success h3 { font: 800 22px 'Noto Sans JP', sans-serif; color: var(--navy); margin: 0 0 12px; }
.form-success p { font: 400 14px/1.85 'Noto Sans JP', sans-serif; color: var(--muted); margin: 0; }
.recaptcha-field { margin-top: 18px; }
.recaptcha-field.err::after { content: "reCAPTCHA をご確認ください"; display: block; font: 500 11px 'Noto Sans JP', sans-serif; color: #E0566B; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0B1426; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand .b-name { color: #fff; }
.footer-brand .brand .b-sub { color: #fff; }
.footer-brand p { font: 400 13px/1.9 'Noto Sans JP', sans-serif; color: #8497BA; margin: 0; max-width: 380px; }
.footer-col h5 { font: 700 11px 'Space Grotesk', sans-serif; letter-spacing: .14em; color: #fff; text-transform: uppercase; margin: 0 0 16px; }
.footer-col .links { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font: 500 13px 'Noto Sans JP', sans-serif; color: #8497BA; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 10px; }
.footer-bottom .run { font: 400 12px 'Noto Sans JP', sans-serif; color: #6E80A0; }
.footer-bottom .copy { font: 400 11px 'Noto Sans JP', sans-serif; color: #54658A; }

/* ---------- floating CTA ---------- */
.fab { position: fixed; right: 24px; bottom: 24px; z-index: 70; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .3s ease, transform .3s ease; }
.fab.show { opacity: 1; transform: none; pointer-events: auto; }
.fab a { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; padding: 14px 24px; border-radius: 999px; font: 700 14px 'Noto Sans JP', sans-serif; text-decoration: none; box-shadow: 0 18px 38px -10px rgba(37,99,235,.7); }
.fab a .arw { font-family: 'Archivo', sans-serif; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-rd="1"] { transition-delay: .09s; }
.reveal[data-rd="2"] { transition-delay: .18s; }
.reveal[data-rd="3"] { transition-delay: .27s; }
.reveal[data-rd="4"] { transition-delay: .36s; }

/* ---------- animations ---------- */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; margin-top: 20px; }
  .hv-card { right: 0; width: 100%; }
  .hero-logo { font-size: 104px; }
  .hero-sub { font-size: 25px; }
  .worry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .site-header .btn { display: none; }
  .menu-btn { display: block; }
  .cards-3 { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .vs-mid { margin: 0 auto; transform: rotate(90deg); }
  .trust-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .opts-grid { grid-template-columns: 1fr 1fr; }
  .domain-box { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-cta { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .wrap { padding: 0 18px; }

  /* --- hero (FV) --- */
  .badge { padding: 8px 12px; gap: 6px; font-size: 11px; white-space: nowrap; }
  .badge .num, .badge .num-jp { font-size: 14.5px; }
  .badge .dot { display: none; }
  .hero-logo { font-size: 76px; margin-top: 18px; }
  .hero-sub { font-size: 18px; letter-spacing: .14em; }
  .hero-copy { font-size: 21px; line-height: 1.6; margin-top: 20px; }
  .hero-stats { gap: 14px; margin-top: 26px; }
  .hero-stats .num { font-size: 21px; white-space: nowrap; }
  .hero-stats .num small { font-size: 11px; }
  .hero-stats .lbl { font-size: 10.5px; white-space: nowrap; }

  /* hero visual: chips move below the video, side by side */
  .hero-visual { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
  .hv-blob { display: none; }
  .hv-card { position: static; grid-column: 1 / -1; width: 100%; max-width: none; }
  .float-chip { position: static; animation: none; margin: 0; width: 100%; justify-content: flex-start; box-shadow: 0 10px 22px -12px rgba(20,50,110,.25); }

  .sec-head h2, .sec-head.big h2 { font-size: 21px; letter-spacing: -.01em; text-wrap: balance; }
  .sec-head h2 br, .lead-block h2 br, .trust-grid h2 br { display: none; }
  .trust-grid h2 { font-size: 24px; line-height: 1.55; text-wrap: balance; }
  /* 文節単位で折り返す(途中改行の防止) */
  .sec-head h2, .lead-block h2, .trust-grid h2, .fc-big { word-break: auto-phrase; }
  h2 .seg, .trust-grid h2 .accent { display: inline-block; }
  .lead-block h2 { text-wrap: balance; }

  /* contact form: reCAPTCHA(固定304px)がはみ出さないように */
  .contact-grid, .contact-grid > * { min-width: 0; }
  .form-card { padding: 24px 18px; }
  .g-recaptcha { transform-origin: 0 0; }

  /* flow CTA: continuous text */
  .fc-big br { display: none; }
  .fc-big { font-size: 19px; line-height: 1.7; text-wrap: balance; }

  /* options: stack name over price, one per row */
  .opts-grid { grid-template-columns: 1fr; gap: 10px; }
  .opt { padding: 15px 18px; }
  .opt .on, .opt .op { white-space: nowrap; }

  /* service cards: icon beside title */
  .svc { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; align-items: center; }
  .svc .s-icon { width: 44px; height: 44px; border-radius: 12px; margin: 0; }
  .svc .s-icon svg { width: 21px; height: 21px; }
  .svc h3 { margin: 0; }
  .svc .svc-sub { grid-column: 1 / -1; margin: 10px 0 0; }
  .svc .check-list { grid-column: 1 / -1; }
  .lead-block h2 { font-size: 24px; }
  .worry-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .plan-radios { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 20px; }
}

/* plan package boxes & fee tables */
.p-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-bottom: 24px; }
.p-tagline { font: 500 11.5px/1.7 'Noto Sans JP', sans-serif; color: #9AA8C0; margin-top: 10px; }
.p-box { position: relative; width: 96px; height: 124px; flex: none; filter: drop-shadow(0 16px 18px rgba(20,50,110,.28)); }
.p-box .side { position: absolute; left: -10px; top: 4px; width: 10px; height: 116px; transform: skewY(22deg); transform-origin: right; }
.p-box .face { position: absolute; inset: 0; display: flex; overflow: hidden; }
.p-box .stripe { width: 20px; display: block; }
.p-box .inner { flex: 1; padding: 9px 8px; display: flex; flex-direction: column; min-width: 0; }
.p-box em { font-style: normal; display: block; }
.p-box .brand { font: 700 7px 'Space Grotesk', sans-serif; letter-spacing: .14em; }
.p-box .ltr { font: 800 40px/1 'Archivo', sans-serif; margin-top: auto; }
.p-box .pl { font: 700 8px 'Space Grotesk', sans-serif; letter-spacing: .1em; margin-top: 3px; }
.p-box .sub { font: 500 6.5px 'Space Grotesk', sans-serif; letter-spacing: .06em; margin-top: 1px; }
.p-fees { border: 1px solid #EAF0FA; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.p-fees .row { display: flex; align-items: baseline; justify-content: space-between; padding: 9px 16px; }
.p-fees .row:not(.main) .lbl { font: 500 11px 'Noto Sans JP', sans-serif; color: #9AA8C0; }
.p-fees .row.main { padding: 13px 16px; background: #F7FAFF; }
.p-fees .row + .row { border-top: 1px solid #EAF0FA; }
.p-fees .lbl { font: 600 12px 'Noto Sans JP', sans-serif; color: #7C89A0; }
.p-fees .lbl small { font-weight: 500; font-size: 10.5px; color: #9AA8C0; }
.p-fees .val { font: 800 26px 'Archivo', sans-serif; color: #0E1B33; letter-spacing: -.02em; }
.p-fees .val.sub { font: 600 12px 'Archivo', sans-serif; color: #7C89A0; }
.p-fees .val small { font: 500 11px 'Noto Sans JP', sans-serif; color: #9AA8C0; }
.p-specs { display: flex; flex-direction: column; gap: 1px; margin: 0 0 20px; background: #EAF0FA; border-radius: 11px; overflow: hidden; }
.p-specs .row { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; background: #F7FAFF; }
.p-specs .lbl { font: 500 12px 'Noto Sans JP', sans-serif; color: #7C89A0; }
.p-specs b { font: 800 18px 'Archivo', sans-serif; color: #0E1B33; }
.p-specs b small { font: 500 12px 'Noto Sans JP', sans-serif; }
.p-specs b.txt { font: 700 13px 'Noto Sans JP', sans-serif; }

.corp-link { color: #9FB3D6; text-decoration: underline; }
.corp-link:hover { color: #fff; }

@media (max-width: 374px) {
  .g-recaptcha { transform: scale(.88); }
}

.recaptcha-note { font: 400 11px/1.7 'Noto Sans JP', sans-serif; color: #9AA8C0; margin: 14px 0 0; }
.recaptcha-note a { color: #7C89A0; text-decoration: underline; }
