:root {
  --ink: #17212b;
  --muted: #5c6975;
  --line: #dbe7ef;
  --soft: #f5fbff;
  --soft2: #fff8ed;
  --brand: #0f8dd6;
  --brand-dark: #076aa5;
  --accent: #ff9f1c;
  --green: #11a36a;
  --danger: #e84d4d;
  --white: #fff;
  --shadow: 0 18px 48px rgba(21, 70, 105, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  background: var(--white);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219,231,239,.8);
}
.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--brand), #6dd5ff);
  box-shadow: 0 8px 20px rgba(15,141,214,.25);
}
.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a { text-decoration: none; }
.button, .ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.button {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 30px rgba(15,141,214,.28);
}
.button.accent {
  background: linear-gradient(135deg, var(--accent), #ff7a00);
  box-shadow: 0 14px 30px rgba(255,159,28,.26);
}
.ghost-button {
  color: var(--brand-dark);
  background: white;
  border-color: var(--line);
}
.hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(109,213,255,.42), transparent 28%),
    radial-gradient(circle at 8% 10%, rgba(255,159,28,.18), transparent 25%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner, .section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.hero-inner {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 54px;
  align-items: center;
  padding: 56px 0 48px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.18; margin: 0; }
h1 {
  margin-top: 18px;
  font-size: clamp(36px, 6vw, 68px);
  letter-spacing: 0;
}
.lead {
  margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.trust-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}
.trust-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}
.check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  font-size: 14px;
}
.hero-card, .visual-card {
  background: white;
  border: 1px solid rgba(219,231,239,.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.visual-card {
  min-height: 430px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15,141,214,.2), transparent 68%);
}
.visual-card::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 36px;
  width: 78%;
  height: 230px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.32), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 4px, transparent 4px 16px),
    linear-gradient(135deg, #c7f0ff, #e7fbff 36%, #fff6dd);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: inset 0 0 0 1px rgba(15,141,214,.08);
}
.visual-badges {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.visual-badges span {
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(23,33,43,.08);
  font-weight: 800;
}
.meter {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.meter-row {
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.meter-row strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.bar {
  height: 10px;
  border-radius: 999px;
  background: #dbe7ef;
  overflow: hidden;
  margin-top: 10px;
}
.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #63d7be);
}
section { padding: 82px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 18px;
}
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(23,33,43,.06);
}
.card h3 { font-size: 21px; }
.card p { color: var(--muted); margin: 12px 0 0; }
.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 22px;
  margin-bottom: 16px;
}
.price {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
}
.price small { font-size: 16px; color: var(--muted); }
.note {
  padding: 16px;
  border-left: 4px solid var(--brand);
  background: var(--soft);
  border-radius: 14px;
  color: var(--muted);
}
.band-soft { background: var(--soft); }
.band-warm { background: var(--soft2); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, 1.04fr);
  gap: 36px;
  align-items: center;
}
.number-list {
  counter-reset: step;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.number-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.number-list li::before {
  content: counter(step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--brand);
  font-weight: 900;
}
.number-list strong { display: block; line-height: 1.35; }
.number-list span { display: block; color: var(--muted); margin-top: 6px; }
.table-wrap { overflow-x: auto; border-radius: 20px; border: 1px solid var(--line); background: white; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--soft); font-weight: 900; }
tr:last-child td { border-bottom: 0; }
.testimonial {
  position: relative;
  padding-top: 48px;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 22px;
  font-size: 72px;
  line-height: 1;
  color: rgba(15,141,214,.24);
  font-family: Georgia, serif;
}
.mini-cta {
  margin: 28px 0 0;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15,141,214,.1), rgba(255,159,28,.12));
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.timeline {
  display: grid;
  gap: 16px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: white;
}
.time-label {
  font-weight: 900;
  color: var(--brand-dark);
}
.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-cloud span {
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}
.cta-band {
  background: linear-gradient(135deg, #0f8dd6, #063a61);
  color: white;
}
.cta-band p { color: rgba(255,255,255,.82); }
.cta-band .ghost-button { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.1); }
.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.sample-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sample-list a {
  text-decoration: none;
  color: inherit;
}
.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 18;
  width: min(680px, calc(100% - 32px));
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(23,33,43,.16);
}
.floating-cta strong { line-height: 1.25; }
@media (max-width: 980px) {
  .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { flex-wrap: wrap; }
  .hero-inner, .split { grid-template-columns: 1fr; min-height: auto; }
  .grid.four, .grid.three, .grid.two, .sample-list { grid-template-columns: 1fr; }
  .section-head, .mini-cta { display: block; }
  .mini-cta .button, .mini-cta .ghost-button { margin-top: 14px; width: 100%; }
  .floating-cta { border-radius: 22px; align-items: stretch; flex-direction: column; }
  .floating-cta .button { width: 100%; }
}


/* Full-length sales LP sections */
.campaign-strip {
  background: linear-gradient(135deg, #ff9f1c, #ff6b35);
  color: white;
  padding: 28px 0;
}
.campaign-strip .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.campaign-strip h2 {
  font-size: clamp(26px, 4vw, 44px);
}
.campaign-strip p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.lp-image {
  min-height: 300px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.8);
  background:
    radial-gradient(circle at 70% 18%, rgba(255,255,255,.85), transparent 11%),
    radial-gradient(circle at 20% 78%, rgba(15,141,214,.22), transparent 22%),
    linear-gradient(135deg, #e9fbff 0%, #ffffff 48%, #fff1d8 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.lp-image::before,
.lp-image::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(15,141,214,.13);
}
.lp-image::before { width: 190px; height: 190px; right: -42px; top: -38px; }
.lp-image::after { width: 260px; height: 260px; left: -80px; bottom: -100px; }
.lp-image.dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.55), transparent 12%),
    linear-gradient(135deg, #0f8dd6, #063a61);
}
.lp-image.warm {
  background:
    radial-gradient(circle at 82% 22%, rgba(255,255,255,.78), transparent 12%),
    linear-gradient(135deg, #fff8ed, #ffe1b4);
}
.problem-stack {
  display: grid;
  gap: 14px;
}
.problem-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(23,33,43,.05);
}
.problem-row strong { display: block; font-size: 18px; line-height: 1.35; }
.problem-row span { display: block; color: var(--muted); margin-top: 6px; }
.badge-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: var(--brand);
  font-weight: 900;
}
.promise-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(23,33,43,.06);
}
.promise-card h3 { display: flex; align-items: center; gap: 10px; }
.promise-card h3::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 16px;
}
.repeat-cta {
  background: linear-gradient(135deg, #062f4f, #0f8dd6);
  color: white;
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow);
}
.repeat-cta p { color: rgba(255,255,255,.84); margin: 10px 0 0; }
.repeat-cta .ghost-button { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ba-panel {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 10px 28px rgba(23,33,43,.06);
}
.ba-visual {
  min-height: 220px;
  background:
    repeating-linear-gradient(135deg, rgba(23,33,43,.06) 0 8px, transparent 8px 18px),
    linear-gradient(135deg, #dbe7ef, #ffffff);
}
.ba-panel.after .ba-visual {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.9), transparent 16%),
    linear-gradient(135deg, #d7fbef, #f7fcff);
}
.ba-body { padding: 20px; }
.option-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}
.staff-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: center;
}
.staff-photo {
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.85), transparent 17%),
    linear-gradient(135deg, #c7f0ff, #fff8ed);
  border: 1px solid var(--line);
}
.faq-long {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}
.faq-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}
.faq-item p {
  margin: 8px 0 0;
  color: var(--muted);
}
.company-box {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: white;
  padding: 28px;
  box-shadow: var(--shadow);
}
.company-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.company-row:last-child { border-bottom: 0; }
.company-row strong { color: var(--brand-dark); }
@media (max-width: 860px) {
  .campaign-strip .section-inner,
  .repeat-cta,
  .before-after,
  .staff-card,
  .company-row {
    display: block;
  }
  .repeat-cta .button,
  .repeat-cta .ghost-button {
    width: 100%;
    margin-top: 14px;
  }
  .ba-panel + .ba-panel { margin-top: 16px; }
  .staff-photo { margin-bottom: 18px; }
}


.photo-card {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-card img,
.ba-panel img,
.staff-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}
.hero-photo img {
  min-height: 430px;
}
.photo-card figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  background: rgba(245,251,255,.92);
}
.ba-panel img {
  min-height: 250px;
}
img.staff-photo {
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: white;
}


/* Conversion-focused top page additions */
.hero-kpi {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.hero-kpi div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
}
.hero-kpi strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  color: var(--brand-dark);
}
.hero-kpi span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.big-statement {
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, #062f4f, #0f8dd6);
  color: white;
  box-shadow: var(--shadow);
}
.big-statement p { color: rgba(255,255,255,.84); }
.product-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}
.product-card + .product-card { margin-top: 22px; }
.product-visual {
  min-height: 260px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 74% 20%, rgba(255,255,255,.86), transparent 13%),
    linear-gradient(135deg, #e7fbff, #fff8ed);
  border: 1px solid var(--line);
  overflow: hidden;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.stat-box {
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(23,33,43,.06);
}
.stat-box strong {
  display: block;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  color: var(--brand-dark);
}
.stat-box span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}
.authority-band {
  border-radius: 30px;
  padding: 32px;
  background: linear-gradient(135deg, #fff8ed, #f5fbff);
  border: 1px solid var(--line);
}
.future-list {
  display: grid;
  gap: 14px;
}
.future-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: white;
}
.future-item b {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 22px;
}
.closing-box {
  padding: clamp(32px, 6vw, 58px);
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.24), transparent 18%),
    linear-gradient(135deg, #17212b, #0f8dd6);
  box-shadow: var(--shadow);
  text-align: center;
}
.closing-box h2 {
  font-size: clamp(32px, 5vw, 56px);
}
.closing-box p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.84);
}
.closing-box .hero-actions {
  justify-content: center;
}
.compact-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 860px) {
  .hero-kpi,
  .product-card,
  .stat-strip {
    grid-template-columns: 1fr;
  }
}
