/* ============================================================
   MOCO SOFTWARE — mocosoft.jp renewal
   Design system
   ------------------------------------------------------------
   ブランド軸:
   - スローガン「人類から、面倒をなくす。」(現行サイトから継承)
   - 訴求軸「現場から経営まで、ひとつなぎに。」(仕様書ベース)
   - 製品UIのトーン(濃紺サイドバー+青グラデ+白ベース)を踏襲
   ============================================================ */

:root {
  /* palette */
  --navy-950: #0c1626;
  --navy-900: #101d33;
  --navy-800: #16263f;
  --navy-700: #1e3355;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --sky-400: #38bdf8;
  --ink: #1e2733;
  --muted: #5c6b7f;
  --faint: #64748b; /* 旧 #8b98ab はコントラスト2.9:1でWCAG AA割れ */
  --line: #e3e9f2;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --bg-deep: var(--navy-900);
  --grad: linear-gradient(135deg, var(--blue-700), var(--sky-400));
  --grad-soft: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(56, 189, 248, .08));

  /* shape & depth */
  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 22px;
  --shadow-s: 0 1px 3px rgba(16, 29, 51, .08);
  --shadow: 0 6px 24px -6px rgba(16, 29, 51, .14);
  --shadow-l: 0 24px 60px -16px rgba(16, 29, 51, .25);

  /* type */
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", Meiryo, system-ui, sans-serif;

  /* layout */
  --wrap: 1120px;
  --header-h: 68px;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
a:hover { opacity: .85; }
h1, h2, h3, h4 { line-height: 1.4; font-feature-settings: "palt"; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--sky-400); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 9vw, 104px); }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: #dce7f5; }
.section--deep h2 { color: #fff; }

/* section headings */
.sec-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--blue-600);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section--deep .sec-label { color: var(--sky-400); }
.sec-title { font-size: clamp(24px, 3.6vw, 36px); font-weight: 800; }
.sec-lead { color: var(--muted); max-width: 46em; }
.section--deep .sec-lead { color: #aebfd6; }
.center { text-align: center; }
.center .sec-lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px -8px rgba(29, 78, 216, .6); }
.btn--primary:hover { box-shadow: 0 12px 28px -8px rgba(29, 78, 216, .7); }
.btn--ghost { border-color: var(--blue-600); color: var(--blue-600); background: #fff; }
.btn--white { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-s); }
.btn--s { padding: 10px 22px; font-size: 14px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 42px; width: auto; }

.gnav { margin-left: auto; }
.gnav ul { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.gnav a { display: block; padding: 10px 14px; color: var(--ink); font-weight: 600; font-size: 14.5px; border-radius: 8px; }
.gnav a:hover { background: var(--bg-alt); opacity: 1; }
.gnav a[aria-current="page"] { color: var(--blue-600); }
.gnav .btn { margin-left: 8px; }

/* products dropdown */
.has-drop { position: relative; }
.has-drop > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  translate: -50% 0;
  width: min(640px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-l);
  padding: 14px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop { display: grid; }
.drop a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
}
.drop a:hover { background: var(--bg-alt); }
.drop__icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  font-size: 20px;
}
.drop b { display: block; font-size: 14px; color: var(--navy-900); }
.drop small { display: block; font-size: 12px; color: var(--muted); line-height: 1.5; font-weight: 400; }

/* mobile nav */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px; height: 2.5px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: .2s;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { left: 0; top: -8px; }
.nav-toggle span::after { left: 0; top: 8px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; rotate: 45deg; }
body.nav-open .nav-toggle span::after { top: 0; rotate: -45deg; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .gnav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-l);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    display: none;
    padding: 12px 20px 24px;
  }
  body.nav-open .gnav { display: block; }
  .gnav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav a { padding: 13px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .has-drop > a { display: none; }
  .drop { position: static; translate: none; display: grid !important; width: auto; border: 0; box-shadow: none; padding: 0; grid-template-columns: 1fr; }
  .gnav .btn { margin: 16px 0 0; width: 100%; }
}

/* ---------- hero (top) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(56, 189, 248, .16), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(37, 99, 235, .12), transparent 60%),
    var(--navy-900);
  color: #e8eef8;
}
.hero::after {
  /* subtle grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(720px 480px at 60% 40%, #000, transparent 75%);
  pointer-events: none;
}
.hero__in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(64px, 10vw, 128px);
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, #7dd3fc, #38bdf8 55%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead { color: #b9c8dd; font-size: clamp(15px, 1.6vw, 17.5px); max-width: 34em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__note { margin-top: 18px; font-size: 13px; color: #8fa3bf; }
.hero__visual { position: relative; }
.hero__visual .shot { box-shadow: var(--shadow-l); }
@media (max-width: 880px) {
  .hero__in { grid-template-columns: 1fr; }
}

/* product page hero */
.phero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(56, 189, 248, .18), transparent 60%),
    linear-gradient(180deg, var(--bg-alt), #fff);
  border-bottom: 1px solid var(--line);
}
.phero__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 88px);
}
.phero__logo {
  width: min(300px, 70%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  border: 1px solid var(--line);
  margin-bottom: 22px;
}
.phero h1 { font-size: clamp(26px, 3.8vw, 40px); font-weight: 900; }
.phero__lead { color: var(--muted); font-size: 16.5px; }
.phero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
@media (max-width: 880px) {
  .phero__in { grid-template-columns: 1fr; }
}

/* breadcrumb */
.crumb { font-size: 13px; color: var(--faint); padding-top: 18px; }
.crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.crumb li + li::before { content: "›"; margin-right: 6px; color: var(--line); }
.crumb a { color: var(--muted); }

/* ---------- screenshot frame ---------- */
.shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shot__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: linear-gradient(180deg, #f6f8fc, #eef2f8);
  border-bottom: 1px solid var(--line);
}
.shot__bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d5dce8;
}
.shot__bar i:nth-child(1) { background: #fca5a5; }
.shot__bar i:nth-child(2) { background: #fcd34d; }
.shot__bar i:nth-child(3) { background: #86efac; }
.shot img { width: 100%; }
.shot--zoom { cursor: zoom-in; }
figure.fig { margin: 0; }
figure.fig figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 22, 38, .88);
  display: none;
  place-items: center;
  padding: 4vmin;
  cursor: zoom-out;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-l);
}

/* ---------- cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-s);
}
.card h3 { font-size: 17px; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* product cards (top page) */
.pcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform .18s ease, box-shadow .18s ease;
  color: inherit;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); opacity: 1; }
.pcard__logo { background: #fafbfd; border-bottom: 1px solid var(--line); padding: 10px 18px; }
.pcard__logo img { width: 100%; max-height: 120px; object-fit: contain; }
.pcard__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard__num { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--blue-600); }
.pcard h3 { font-size: 18px; margin: 4px 0 6px; color: var(--navy-900); }
.pcard p { color: var(--muted); font-size: 14px; margin: 0 0 14px; flex: 1; }
.pcard__more { font-size: 14px; font-weight: 700; color: var(--blue-600); }
.pcard__more::after { content: " →"; }
.pcard__tag { font-size: 12px; color: var(--faint); }

/* problem cards */
.probs { counter-reset: prob; }
.prob { position: relative; padding-left: 0; }
.prob__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 14px;
}
.prob h3 { font-size: 16.5px; }
.prob p { font-size: 14px; }

/* ---------- feature rows (product pages) ---------- */
.frow {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.frow + .frow { margin-top: clamp(48px, 7vw, 88px); }
.frow:nth-child(even) .frow__text { order: 2; }
@media (max-width: 880px) {
  .frow { grid-template-columns: 1fr; }
  .frow:nth-child(even) .frow__text { order: 0; }
}
.frow__num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--blue-600);
}
.frow h3 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; margin: 6px 0 12px; }
.frow p { color: var(--muted); }
.frow ul { list-style: none; padding: 0; margin: 14px 0 0; }
.frow li { padding-left: 26px; position: relative; margin-bottom: 8px; font-size: 14.5px; }
.frow li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad);
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.7 5.6-4.3 5a.8.8 0 0 1-1.2 0L4.3 8.4A.8.8 0 1 1 5.5 7.3l1.3 1.5 3.7-4.3a.8.8 0 1 1 1.2 1z"/></svg>') center / contain no-repeat;
}

/* gallery (導入イメージ) */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- SSO / connect section ---------- */
.sso {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .sso { grid-template-columns: 1fr; } }
.sso__diagram {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-l);
  padding: 28px;
}
.sso__hub {
  margin: 0 auto 20px;
  width: fit-content;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(56, 189, 248, .5);
}
.sso__apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sso__apps span {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: #dce7f5;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 12px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 19px; height: 19px;
  background: var(--grad);
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.7 5.6-4.3 5a.8.8 0 0 1-1.2 0L4.3 8.4A.8.8 0 1 1 5.5 7.3l1.3 1.5 3.7-4.3a.8.8 0 1 1 1.2 1z"/></svg>') center / contain no-repeat;
}
.check-list b { color: #fff; }

/* ---------- relation links (他プロダクト連携) ---------- */
.relnav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .relnav { grid-template-columns: 1fr; } }
.relnav a {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-s);
  color: inherit;
}
.relnav a:hover { box-shadow: var(--shadow); opacity: 1; }
.relnav img { width: 84px; border-radius: 8px; border: 1px solid var(--line); }
.relnav b { display: block; font-size: 14.5px; color: var(--navy-900); }
.relnav small { color: var(--muted); font-size: 12.5px; line-height: 1.5; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 320px at 15% 120%, rgba(56, 189, 248, .25), transparent 60%),
    var(--grad);
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  box-shadow: var(--shadow-l);
}
.cta-band h2 { font-size: clamp(22px, 3.2vw, 32px); font-weight: 900; color: #fff; }
.cta-band p { color: #e4f1ff; max-width: 40em; margin-inline: auto; }
.cta-band .btn { margin-top: 10px; }

/* ---------- pricing plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1024px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-s);
}
.plan--featured {
  border: 2px solid var(--blue-600);
  box-shadow: var(--shadow);
}
.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  translate: -50% 0;
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 16px;
  white-space: nowrap;
}
.plan__name { font-size: 17px; font-weight: 800; color: var(--navy-900); margin-bottom: 2px; }
.plan__for { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.plan__price { color: var(--navy-900); margin-bottom: 2px; }
.plan__price .yen { font-size: 18px; font-weight: 700; vertical-align: 8px; }
.plan__price .num { font-size: 40px; font-weight: 900; letter-spacing: -.02em; }
.plan__price .per { font-size: 13px; color: var(--muted); }
.plan__tax { font-size: 11.5px; color: var(--faint); margin-bottom: 10px; }
.plan__limit {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-700);
  background: var(--grad-soft);
  border-radius: 8px;
  padding: 7px 10px;
  text-align: center;
  margin-bottom: 14px;
}
.plan ul { list-style: none; padding: 0; margin: 0 0 18px; flex: 1; }
.plan li { position: relative; padding-left: 22px; font-size: 13px; color: var(--ink); margin-bottom: 7px; line-height: 1.6; }
.plan li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 14px; height: 14px;
  background: var(--grad);
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.7 5.6-4.3 5a.8.8 0 0 1-1.2 0L4.3 8.4A.8.8 0 1 1 5.5 7.3l1.3 1.5 3.7-4.3a.8.8 0 1 1 1.2 1z"/></svg>') center / contain no-repeat;
}
.plan .btn { width: 100%; }
.plan-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 18px; }

/* custom plan band */
.plan-custom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--navy-900);
  color: #dce7f5;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 22px;
}
.plan-custom b { color: #fff; font-size: 16px; }
.plan-custom p { margin: 4px 0 0; font-size: 13.5px; color: #aebfd6; }

/* ---------- tables (pricing) ---------- */
.tbl-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-s); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 720px; background: #fff; }
.tbl th, .tbl td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.tbl thead th { background: var(--navy-900); color: #fff; font-size: 13.5px; white-space: nowrap; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl td.ok { color: var(--blue-600); font-weight: 700; }
.tbl .prod-cell { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy-900); white-space: nowrap; }
.tbl .prod-cell img { width: 72px; border-radius: 6px; border: 1px solid var(--line); }

/* ---------- product pricing cards (他サービスの料金) ---------- */
.pp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 960px) { .pp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pp-grid { grid-template-columns: 1fr; } }
.pp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-s);
}
.pp-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.pp-head img { width: 38px; height: 38px; object-fit: contain; border-radius: 8px; border: 1px solid var(--line); background: #fafbfd; }
.pp-head b { font-size: 15px; color: var(--navy-900); display: block; }
.pp-head span { font-size: 11.5px; color: var(--muted); }
.pp-tiers { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.pp-tier { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 12px; border-radius: 8px; background: var(--grad-soft); }
.pp-tier__label { display: flex; flex-direction: column; }
.pp-tier__name { font-size: 12.5px; font-weight: 700; color: var(--blue-700); }
.pp-tier__limit { font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.pp-tier__price { font-size: 16.5px; font-weight: 900; color: var(--navy-900); white-space: nowrap; text-align: right; }
.pp-tier__per { font-size: 10.5px; font-weight: 600; color: var(--muted); margin-left: 2px; }
.pp-note { font-size: 11.5px; color: var(--muted); line-height: 1.6; margin-top: auto; padding-top: 4px; }
.pp-more { font-size: 13px; font-weight: 700; color: var(--blue-600); margin-top: 12px; }
.pp-more::after { content: " →"; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
details.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-s);
  overflow: hidden;
}
details.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 54px;
  font-weight: 700;
  position: relative;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::before {
  content: "Q";
  position: absolute;
  left: 18px; top: 17px;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
details.qa summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 26px;
  width: 9px; height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .2s;
}
details.qa[open] summary::after { transform: rotate(225deg); translate: 0 4px; }
details.qa .qa__a { padding: 0 22px 20px 54px; color: var(--muted); font-size: 14.5px; }

/* ---------- forms ---------- */
.form { max-width: 720px; margin-inline: auto; }
.form .field { margin-bottom: 20px; }
.form label { display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 7px; }
.form label .req {
  display: inline-block;
  background: #e11d48;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 7px;
  margin-left: 8px;
  vertical-align: 2px;
}
.form input, .form select, .form textarea {
  width: 100%;
  font: inherit;
  font-size: 16px; /* 16px未満だとiOS Safariがフォーカス時に勝手にズームする */
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
}
.form textarea { min-height: 170px; resize: vertical; }
.form .hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form__note { font-size: 13px; color: var(--muted); }
.form .btn { width: 100%; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #a9bad2;
  padding: clamp(48px, 7vw, 72px) 0 32px;
  font-size: 14px;
}
.site-footer a { color: #c7d5e8; }
.site-footer a:hover { color: #fff; opacity: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__chip {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 14px;
}
.footer-brand__chip img { height: 40px; display: block; }
.footer-brand p { font-size: 13px; color: #7d90aa; }
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: #7d90aa;
}

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.badge {
  display: inline-block;
  background: var(--grad-soft);
  color: var(--blue-700);
  border: 1px solid rgba(37, 99, 235, .25);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

/* ============================================================
   Premium refinement layer (2026-08-18)
   — SVG line icons (mask-based) + refined surfaces
   ============================================================ */

/* --- refined section labels --- */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: .24em;
  font-size: 12px;
}
.sec-label::before, .sec-label::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .55));
}
.sec-label::after { background: linear-gradient(90deg, rgba(37, 99, 235, .55), transparent); }

/* --- refined cards & surfaces --- */
.card {
  border-color: #e9edf5;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 1px 2px rgba(16, 29, 51, .04), 0 18px 44px -30px rgba(16, 29, 51, .18);
}
.pcard { border-radius: 18px; border-color: #e9edf5; }
.pcard__logo { background: #fbfcfe; }
.relnav a { border-radius: 16px; border-color: #e9edf5; }
.plan { border-radius: 18px; }
.shot {
  border-radius: 14px;
  border-color: #e6ebf3;
  box-shadow: 0 2px 6px rgba(16, 29, 51, .05), 0 26px 64px -32px rgba(16, 29, 51, .30);
}

/* --- refined buttons --- */
.btn { font-weight: 600; letter-spacing: .02em; }
.btn--primary {
  background: linear-gradient(135deg, #1e3a8a, #2563eb 55%, #0ea5e9);
  box-shadow: 0 12px 28px -14px rgba(30, 64, 175, .6);
}
.btn--primary:hover { box-shadow: 0 16px 34px -14px rgba(30, 64, 175, .7); }

/* --- refined badge --- */
.badge {
  background: transparent;
  border: 1px solid rgba(37, 99, 235, .35);
  letter-spacing: .08em;
}

/* --- premium CTA band --- */
.cta-band {
  background:
    radial-gradient(640px 300px at 88% -20%, rgba(56, 189, 248, .18), transparent 62%),
    radial-gradient(520px 280px at 6% 130%, rgba(37, 99, 235, .22), transparent 62%),
    linear-gradient(160deg, #0e1a2e, #16263f 58%, #1e3355);
  border: 1px solid rgba(125, 211, 252, .16);
  box-shadow: 0 40px 90px -40px rgba(14, 26, 46, .8), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.cta-band p { color: #b9c8dd; }

/* --- nav refinement --- */
.gnav a { font-weight: 500; }
.gnav .btn { font-weight: 600; }

/* --- generous rhythm --- */
.section { padding-block: clamp(64px, 10vw, 118px); }

/* --- icon tiles (SVG mask line icons) --- */
.prob__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(37, 99, 235, .05), rgba(56, 189, 248, .10));
  border: 1px solid rgba(29, 78, 216, .15);
  display: grid;
  place-items: center;
  font-size: 0;
  margin-bottom: 16px;
}
.prob__icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, var(--blue-700), var(--sky-400));
  -webkit-mask: var(--icn) center / contain no-repeat;
  mask: var(--icn) center / contain no-repeat;
}
.drop__icon {
  background: linear-gradient(150deg, rgba(37, 99, 235, .05), rgba(56, 189, 248, .10));
  border: 1px solid rgba(29, 78, 216, .13);
  font-size: 0;
}
.drop__icon::before {
  content: "";
  width: 19px;
  height: 19px;
  background: linear-gradient(135deg, var(--blue-700), var(--sky-400));
  -webkit-mask: var(--icn) center / contain no-repeat;
  mask: var(--icn) center / contain no-repeat;
}

/* --- icon definitions --- */
[data-icon="edit"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z'/%3E%3C/svg%3E")}
[data-icon="folder"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z'/%3E%3C/svg%3E")}
[data-icon="key"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4'/%3E%3C/svg%3E")}
[data-icon="trending-down"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 18l-9.5-9.5-5 5L1 6'/%3E%3Cpath d='M17 18h6v-6'/%3E%3C/svg%3E")}
[data-icon="map-pin"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E")}
[data-icon="zap"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E")}
[data-icon="tool"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E")}
[data-icon="sliders"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21v-7M4 10V3M12 21v-9M12 8V3M20 21v-5M20 12V3M1 14h6M9 8h6M17 16h6'/%3E%3C/svg%3E")}
[data-icon="search"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E")}
[data-icon="shield"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E")}
[data-icon="monitor"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cpath d='M8 21h8M12 17v4'/%3E%3C/svg%3E")}
[data-icon="send"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 2L11 13'/%3E%3Cpath d='M22 2l-7 20-4-9-9-4 20-7z'/%3E%3C/svg%3E")}
[data-icon="flag"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z'/%3E%3Cpath d='M4 22v-7'/%3E%3C/svg%3E")}
[data-icon="file-text"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M16 13H8M16 17H8M10 9H8'/%3E%3C/svg%3E")}
[data-icon="clipboard"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3Crect x='8' y='2' width='8' height='4' rx='1'/%3E%3C/svg%3E")}
[data-icon="grid"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E")}
[data-icon="message"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E")}
[data-icon="user"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E")}
[data-icon="x-circle"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M15 9l-6 6M9 9l6 6'/%3E%3C/svg%3E")}
[data-icon="calendar"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E")}
[data-icon="repeat"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 1l4 4-4 4'/%3E%3Cpath d='M3 11V9a4 4 0 0 1 4-4h14'/%3E%3Cpath d='M7 23l-4-4 4-4'/%3E%3Cpath d='M21 13v2a4 4 0 0 1-4 4H3'/%3E%3C/svg%3E")}
[data-icon="camera"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E")}
[data-icon="mail"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpath d='M22 6l-10 7L2 6'/%3E%3C/svg%3E")}
[data-icon="upload"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpath d='M17 8l-5-5-5 5M12 3v12'/%3E%3C/svg%3E")}
[data-icon="printer"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9V2h12v7'/%3E%3Cpath d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/%3E%3Crect x='6' y='14' width='12' height='8'/%3E%3C/svg%3E")}
[data-icon="phone"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E")}
[data-icon="book"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E")}
[data-icon="file"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z'/%3E%3Cpath d='M13 2v7h7'/%3E%3C/svg%3E")}
[data-icon="credit-card"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2'/%3E%3Cpath d='M1 10h22'/%3E%3C/svg%3E")}
[data-icon="database"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3C/svg%3E")}
[data-icon="clock"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E")}
[data-icon="umbrella"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 12a11.05 11.05 0 0 0-22 0z'/%3E%3Cpath d='M12 12v7a2 2 0 0 0 4 0'/%3E%3C/svg%3E")}
[data-icon="layers"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E")}
[data-icon="droplet"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z'/%3E%3C/svg%3E")}
[data-icon="eye-off"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94'/%3E%3Cpath d='M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19'/%3E%3Cpath d='M14.12 14.12a3 3 0 1 1-4.24-4.24'/%3E%3Cpath d='M1 1l22 22'/%3E%3C/svg%3E")}
[data-icon="moon"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E")}
[data-icon="wind"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.59 4.59A2 2 0 1 1 11 8H2'/%3E%3Cpath d='M17.73 7.73A2.5 2.5 0 1 1 19.5 12H2'/%3E%3Cpath d='M12.59 19.41A2 2 0 1 0 14 16H2'/%3E%3C/svg%3E")}
[data-icon="gift"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v10H4V12'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 22V7'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z'/%3E%3C/svg%3E")}
[data-icon="help"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E")}
[data-icon="feather"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z'/%3E%3Cpath d='M16 8L2 22'/%3E%3Cpath d='M17.5 15H9'/%3E%3C/svg%3E")}
[data-icon="check"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='M22 4L12 14.01l-3-3'/%3E%3C/svg%3E")}
[data-icon="alert"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cpath d='M12 9v4M12 17h.01'/%3E%3C/svg%3E")}
[data-icon="bell"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9'/%3E%3Cpath d='M13.73 21a2 2 0 0 1-3.46 0'/%3E%3C/svg%3E")}
[data-icon="target"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E")}
[data-icon="plus"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v8M8 12h8'/%3E%3C/svg%3E")}
[data-icon="users"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E")}
[data-icon="navigation"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11l19-9-9 19-2-8-8-2z'/%3E%3C/svg%3E")}
[data-icon="bar-chart"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 20V10M12 20V4M6 20v-6'/%3E%3C/svg%3E")}
[data-icon="anchor"]{--icn:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='3'/%3E%3Cpath d='M12 22V8'/%3E%3Cpath d='M5 12H2a10 10 0 0 0 20 0h-3'/%3E%3C/svg%3E")}

/* ---------- contact result UI ---------- */
.notice-banner {
  position: fixed;
  top: calc(var(--header-h) + 14px);
  left: 50%;
  translate: -50% -20px;
  z-index: 300;
  max-width: min(560px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid #dbe6f5;
  border-left: 4px solid var(--blue-600);
  border-radius: 12px;
  padding: 14px 44px 14px 18px;
  font-size: 14px;
  color: var(--ink);
  box-shadow: 0 18px 50px -18px rgba(16, 29, 51, .35);
  opacity: 0;
  transition: opacity .4s ease, translate .4s ease;
}
.notice-banner.in { opacity: 1; translate: -50% 0; }
.notice-banner--error { border-left-color: #e11d48; }
.notice-banner strong { display: block; margin-bottom: 2px; color: var(--navy-900); }
.notice-banner--error strong { color: #be123c; }
.notice-banner__close {
  position: absolute;
  top: 8px; right: 10px;
  border: 0; background: none;
  font-size: 18px;
  color: var(--faint);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.form-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-done {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  background: #fff;
  border: 1px solid #e9edf5;
  border-radius: 18px;
  padding: 48px 32px;
  box-shadow: 0 1px 2px rgba(16, 29, 51, .04), 0 18px 44px -30px rgba(16, 29, 51, .18);
}
.form-done__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(37, 99, 235, .06), rgba(56, 189, 248, .12));
  border: 1px solid rgba(29, 78, 216, .18);
  display: grid;
  place-items: center;
}
.form-done__icon::before {
  content: "";
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--blue-700), var(--sky-400));
  -webkit-mask: var(--icn) center / contain no-repeat;
  mask: var(--icn) center / contain no-repeat;
}
.form-done h3 { font-size: 20px; color: var(--navy-900); }
.form-done p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- light hero (illustration ver.) ---------- */
.hero {
  background:
    radial-gradient(1100px 560px at 88% 0%, rgba(56, 189, 248, .14), transparent 60%),
    radial-gradient(900px 520px at 2% 110%, rgba(37, 99, 235, .10), transparent 60%),
    linear-gradient(165deg, #f3f7fd, #eaf1fb 55%, #f6f9fe);
  color: var(--ink);
  border-bottom: 1px solid #e6edf7;
}
.hero::after {
  background-image:
    linear-gradient(rgba(16, 29, 51, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 29, 51, .035) 1px, transparent 1px);
}
.hero h1 { color: var(--navy-900); }
.hero h1 .accent {
  background: linear-gradient(120deg, #1d4ed8, #2563eb 55%, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead { color: var(--muted); }
.hero__lead strong { color: var(--navy-800); }
.hero__note { color: var(--faint); }
.hero .btn--white { border: 1.5px solid #dbe4f2; }
.hero__in { align-items: center; }
.hero__art {
  width: 106%;
  max-width: none;
  margin-left: -3%;
  border-radius: 24px;
}
@media (max-width: 880px) {
  .hero__art { width: 100%; margin-left: 0; }
}
.hero__art {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%);
  mask-image: linear-gradient(90deg, transparent, #000 9%);
}
