:root {
  color-scheme: light;
  --chassis: #1a2430;
  --ink-muted: #566579;
  --line: #d9e0e8;
  --surface: #ffffff;
  --surface-muted: #f4f7fa;
  --accent: #b93421;
  --accent-strong: #972817;
  --focus: #006b5b;
  --navy: #16324b;
  --deep: #0c1c29;
  --vermilion: #e2482f;
  --teal: #0f7066;
  --amber: #d18a16;
  --max-width: 1120px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface-muted);
  color: var(--chassis);
  line-height: 1.75;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner,
.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  display: block;
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--chassis);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--accent-strong);
}

.site-nav .site-nav__cta {
  padding: 9px 16px;
  border: 1px solid var(--chassis);
  border-radius: 4px;
}

.site-nav .site-nav__cta:hover {
  background: var(--chassis);
  color: #ffffff;
}

.page-shell {
  padding: 48px 0 72px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.page-lead {
  max-width: 760px;
  margin: 0;
  color: var(--ink-muted);
}

.page-title {
  margin: 0 0 12px;
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.document-tools {
  margin: 28px 0 32px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.document-tools__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.button-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--accent-strong);
  border-radius: 6px;
  background: var(--accent-strong);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button-link:hover {
  background: var(--accent);
  text-decoration: none;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 248px;
  gap: 56px;
  align-items: start;
}

.legal-document {
  min-width: 0;
}

.legal-document h1 {
  margin: 0 0 20px;
  font-size: 2.7rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.legal-document h2 {
  margin: 52px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 1.4rem;
  line-height: 1.45;
  letter-spacing: 0;
}

.legal-document h3 {
  margin: 32px 0 10px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.legal-document p,
.legal-document li {
  overflow-wrap: anywhere;
}

.legal-document blockquote {
  margin: 22px 0 32px;
  padding: 14px 18px;
  border-left: 4px solid var(--accent);
  background: var(--surface-muted);
  color: var(--ink-muted);
}

.legal-document blockquote p {
  margin: 0;
}

.legal-document ol,
.legal-document ul {
  padding-left: 1.5rem;
}

.legal-document code {
  padding: 0.08em 0.32em;
  border-radius: 3px;
  background: #eef2f6;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
}

.legal-document pre {
  max-width: 100%;
  padding: 14px 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  font-size: 0.86rem;
}

.legal-document pre code {
  padding: 0;
  background: transparent;
}

.table-wrap {
  max-width: 100%;
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.88rem;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-muted);
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.legal-aside {
  position: sticky;
  top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.legal-aside h2 {
  margin: 0 0 12px;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.legal-aside p {
  margin: 0 0 16px;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.legal-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-aside li + li {
  margin-top: 8px;
}

.legal-aside a {
  font-size: 0.86rem;
}

.document-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.document-item {
  min-height: 176px;
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--line);
}

.document-item:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.document-item:nth-child(even) {
  padding-left: 32px;
}

.document-item h2 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.document-item p {
  margin: 0 0 14px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.document-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.landing-page {
  overflow: hidden;
  background: var(--surface);
}

.section-inner,
.hero__inner {
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  height: min(700px, calc(100svh - 150px));
  color: #ffffff;
  background: var(--deep);
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -2;
  object-fit: cover;
  object-position: center top;
}

.hero__scrim {
  z-index: -1;
  background: rgba(7, 20, 31, 0.82);
}

.hero__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 34px;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero__status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2cc5a7;
  box-shadow: 0 0 0 5px rgba(44, 197, 167, 0.18);
}

.hero h1 {
  margin: 0;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero__tagline {
  margin: 14px 0 18px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: #e3eaf0;
  font-size: 1.04rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  background: var(--vermilion);
  color: #ffffff;
}

.button--primary:hover {
  background: #c93721;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.button--ghost:hover {
  background: #ffffff;
  color: var(--deep);
}

.button--light {
  background: #ffffff;
  color: var(--chassis);
}

.button--dark {
  background: var(--chassis);
  color: #ffffff;
}

.button--dark:hover {
  background: var(--navy);
}

.button--outline {
  border-color: var(--chassis);
  background: transparent;
  color: var(--chassis);
}

.button--outline:hover {
  background: var(--chassis);
  color: #ffffff;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.hero__facts div {
  padding-right: 22px;
}

.hero__facts div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero__facts dt {
  color: #aebdca;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero__facts dd {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.definition,
.workflow,
.capabilities,
.product,
.outcomes,
.plans,
.contact,
.faq,
.operator {
  padding: 104px 0;
}

.definition {
  background: var(--surface);
}

.definition__layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.definition h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.35;
}

.definition p:not(.section-kicker) {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.definition__signals {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--chassis);
  list-style: none;
}

.definition__signals li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}

.workflow {
  background: var(--surface-muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 70px;
  align-items: end;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--vermilion);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.trust h2,
.faq h2,
.closing h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.section-heading > p,
.section-heading--split > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.workflow__steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--chassis);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.workflow__steps li {
  min-height: 118px;
  padding: 20px 12px;
  border-right: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 800;
}

.workflow__steps li:last-child {
  border-right: 0;
}

.workflow__steps span {
  display: block;
  margin-bottom: 17px;
  color: var(--vermilion);
  font-size: 0.76rem;
}

.workflow__visual,
.trust__evidence {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  margin: 36px 0 0;
  overflow: hidden;
  background: var(--chassis);
  color: #ffffff;
}

.workflow__visual img,
.trust__evidence img {
  display: block;
  width: 100%;
  height: clamp(310px, 37vw, 480px);
  object-fit: cover;
}

.workflow__visual figcaption,
.trust__evidence figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  color: #dce5ec;
  font-size: 0.84rem;
}

.workflow__visual figcaption span,
.trust__evidence figcaption span {
  margin-bottom: 16px;
  color: #aebdca;
  font-size: 0.68rem;
  font-weight: 900;
}

.workflow__visual figcaption strong,
.trust__evidence figcaption strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.5;
}

.capabilities,
.faq {
  background: var(--surface-muted);
}

.capabilities {
  background: var(--surface);
}

.capability-list {
  border-top: 2px solid var(--chassis);
}

.capability-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row__number {
  margin: 0;
  color: var(--vermilion);
  font-size: 0.8rem;
  font-weight: 900;
}

.capability-row h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.capability-row__heading {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 12px;
  align-items: center;
  margin-bottom: 8px;
}

.availability {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 2px 8px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.availability--live {
  color: var(--teal);
}

.availability--staged {
  color: #a45b00;
}

.capability-row p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.capability-row .capability-row__result {
  color: var(--teal);
  font-weight: 800;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 62px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.product-showcase:last-child {
  border-bottom: 1px solid var(--line);
}

.product-showcase--reverse .product-showcase__copy {
  order: 2;
}

.product-showcase__index {
  margin: 0 0 13px;
  color: var(--vermilion);
  font-size: 0.74rem;
  font-weight: 900;
}

.product-showcase h3 {
  margin: 0 0 15px;
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: 0;
}

.product-showcase__copy > p:not(.product-showcase__index),
.product-showcase li {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.product-showcase ul {
  margin: 22px 0 0;
  padding-left: 1.2em;
}

.product-shot {
  min-width: 0;
  margin: 0;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid #cbd4dd;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(12, 28, 41, 0.14);
}

.product-shot figcaption {
  margin-top: 9px;
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.trust {
  padding: 94px 0;
  background: var(--navy);
  color: #ffffff;
}

.trust__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
}

.trust h2 {
  margin-bottom: 18px;
}

.trust p:not(.section-kicker) {
  color: #c8d4df;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link--light {
  color: #ffffff;
}

.trust__facts {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.trust__facts div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.trust__facts dt {
  color: #9eb1c0;
  font-size: 0.78rem;
  font-weight: 800;
}

.trust__facts dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.trust__evidence {
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #091722;
}

.trust__evidence img {
  object-position: left top;
}

.plans__publication-note {
  margin: -16px 0 30px;
  padding: 12px 16px;
  border-left: 3px solid var(--vermilion);
  background: var(--surface-muted);
  color: var(--ink-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--chassis);
  background: var(--surface);
}

.plan-card--recommended {
  border-color: var(--teal);
  border-top-color: var(--teal);
}

.plan-card__heading {
  display: flex;
  min-height: 52px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
}

.plan-card__heading h3 {
  margin: 0;
  font-size: 1.35rem;
}

.plan-card__heading p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.plan-card__heading p span {
  display: inline-flex;
  margin-left: 5px;
  padding: 2px 7px;
  border-radius: 3px;
  background: var(--teal);
  color: #ffffff;
  font-size: 0.68rem;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 4px;
  white-space: nowrap;
}

.plan-card__price span {
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.plan-card__price strong {
  color: var(--chassis);
  font-size: 2.1rem;
  line-height: 1;
}

.plan-card__annual {
  min-height: 42px;
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.plan-card dl {
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}

.plan-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.plan-card dt {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.plan-card dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.plan-comparison {
  margin-top: 42px;
  overflow-x: auto;
  border-top: 2px solid var(--chassis);
  border-bottom: 1px solid var(--line);
}

.plan-comparison:focus-visible {
  outline: 3px solid rgba(18, 126, 119, 0.3);
  outline-offset: 4px;
}

.plan-comparison table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: var(--surface);
}

.plan-comparison caption {
  padding: 18px 14px 14px 0;
  color: var(--chassis);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: left;
}

.plan-comparison th,
.plan-comparison td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  text-align: left;
  vertical-align: middle;
}

.plan-comparison thead th {
  background: var(--surface-muted);
  color: var(--chassis);
  font-weight: 900;
}

.plan-comparison tbody th {
  width: 29%;
  color: var(--ink-muted);
  font-weight: 800;
}

.plan-comparison td {
  font-weight: 700;
}

.plans__notes {
  margin: 22px 0 0;
  padding-left: 1.2rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.plans__notes li + li {
  margin-top: 6px;
}

.outcomes {
  background: var(--surface-muted);
}

.outcomes__visual {
  position: relative;
  margin: 0 0 44px;
  overflow: hidden;
  background: var(--chassis);
}

.outcomes__visual img {
  display: block;
  width: 100%;
  height: clamp(320px, 45vw, 570px);
  object-fit: cover;
}

.outcomes__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 560px;
  padding: 18px 22px;
  color: #fff;
  background: rgba(26, 36, 48, 0.92);
  font-size: 0.82rem;
}

.outcomes__visual figcaption span {
  display: block;
  margin-bottom: 3px;
  color: #c9d5df;
  font-size: 0.68rem;
  font-weight: 800;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--chassis);
}

.outcome-grid article {
  min-height: 190px;
  padding: 28px 30px 28px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-grid article:nth-child(odd) {
  padding-right: 36px;
  border-right: 1px solid var(--line);
}

.outcome-grid article:nth-child(even) {
  padding-left: 36px;
}

.outcome-grid span {
  color: var(--vermilion);
  font-size: 0.75rem;
  font-weight: 900;
}

.outcome-grid h3 {
  margin: 24px 0 8px;
  font-size: 1.25rem;
}

.outcome-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.plans__action p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.plans__action {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
}

.plans__action h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.plans__note {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.plans__note {
  margin: 18px 0 0;
}

.contact {
  scroll-margin-top: 78px;
  padding: 104px 0;
  background: var(--surface);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 0.58fr);
  gap: 76px;
  align-items: start;
}

.contact__intro {
  position: sticky;
  top: 110px;
}

.contact__intro h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.35;
}

.contact__intro > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.contact__facts {
  margin: 34px 0 0;
  border-top: 2px solid var(--chassis);
}

.contact__facts div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact__facts dt {
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.contact__facts dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line-strong);
  background: var(--surface-muted);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.contact-form label,
.contact-form fieldset {
  min-width: 0;
}

.contact-form label > span,
.contact-form legend {
  display: block;
  margin-bottom: 7px;
  color: var(--chassis);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form label b {
  margin-left: 5px;
  color: var(--vermilion);
  font-size: 0.66rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #aeb8c2;
  border-radius: 4px;
  color: var(--chassis);
  background: #ffffff;
  font: inherit;
  font-size: 0.86rem;
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(36, 98, 156, 0.18);
  border-color: #24629c;
}

.contact-form__wide {
  display: block;
  margin-top: 22px;
}

.contact-form fieldset {
  padding: 0;
  border: 0;
}

.contact-form__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-form__checks label {
  display: flex;
  min-height: 46px;
  gap: 9px;
  align-items: center;
  padding: 9px 11px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.contact-form__checks input,
.contact-form__consent input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--vermilion);
}

.contact-form__checks label > span {
  margin: 0;
  font-size: 0.77rem;
  font-weight: 700;
}

.contact-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 24px;
}

.contact-form__consent > span {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.contact-form__submit {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.contact-form__submit .button {
  flex: 0 0 auto;
}

.contact-form__submit .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

#sales-inquiry-status {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

#sales-inquiry-status[data-state="error"] {
  color: #a62d1f;
}

#sales-inquiry-status[data-state="success"] {
  color: #087a63;
}

.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: 70px;
}

.faq__lead {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 22px 38px 22px 0;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
}

.faq details p {
  margin: -6px 0 22px;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.operator {
  background: var(--surface);
}

.operator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px 70px;
  align-items: start;
}

.operator h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.4;
}

.operator p:not(.section-kicker) {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.operator__facts {
  margin: 0;
  border-top: 2px solid var(--chassis);
}

.operator__facts div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.operator__facts dt {
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.operator__facts dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.operator__links {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 800;
}

.information-page {
  max-width: 920px;
}

.information-notice {
  margin: 36px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--vermilion);
  background: var(--surface-muted);
}

.information-notice p {
  margin: 7px 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.company-overview {
  margin: 42px 0 0;
  border-top: 2px solid var(--chassis);
}

.company-overview > div {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-overview dt {
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.company-overview dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.information-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  font-size: 0.86rem;
  font-weight: 800;
}

.closing {
  padding: 76px 0;
  background: var(--vermilion);
  color: #ffffff;
}

.closing .section-kicker {
  color: #ffffff;
}

.closing p:not(.section-kicker) {
  margin: 14px 0 0;
  color: #fff0ed;
  font-size: 0.9rem;
}

.closing__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--chassis);
  color: #ffffff;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.site-footer p {
  margin: 0;
  color: #dce3eb;
  font-size: 0.8rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer a {
  color: #ffffff;
  font-size: 0.8rem;
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 66px;
  }

  .brand-link img {
    width: 154px;
  }

  .site-nav a:not(.site-nav__cta) {
    display: none;
  }

  .page-shell {
    padding-top: 32px;
  }

  .page-title {
    font-size: 2.25rem;
  }

  .legal-document h1 {
    font-size: 2rem;
  }

  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .hero {
    height: 620px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero__tagline {
    font-size: 1.7rem;
  }

  .definition,
  .workflow,
  .capabilities,
  .product,
  .outcomes,
  .plans,
  .contact,
  .faq,
  .operator {
    padding: 78px 0;
  }

  .definition__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .definition__signals {
    margin-top: 10px;
  }

  .section-heading--split,
  .trust__layout,
  .contact__layout,
  .faq__layout,
  .operator__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .section-heading h2,
  .trust h2,
  .contact__intro h2,
  .faq h2,
  .closing h2 {
    font-size: 2.15rem;
  }

  .plan-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .plan-card__heading,
  .plan-card__annual {
    min-height: 0;
  }

  .workflow__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow__steps li:nth-child(3) {
    border-right: 0;
  }

  .workflow__steps li:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .workflow__visual,
  .trust__evidence {
    grid-template-columns: minmax(0, 1fr);
  }

  .workflow__visual img,
  .trust__evidence img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .workflow__visual figcaption,
  .trust__evidence figcaption {
    padding: 26px;
  }

  .capability-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .capability-row__result {
    grid-column: 2;
  }

  .product-showcase {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .product-showcase--reverse .product-showcase__copy {
    order: 0;
  }

  .trust {
    padding: 76px 0;
  }

  .legal-aside {
    position: static;
  }

  .document-tools {
    align-items: flex-start;
  }

  .document-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .document-item,
  .document-item:nth-child(odd),
  .document-item:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .contact__intro {
    position: static;
  }

  .site-footer__inner {
    display: block;
  }

  .site-footer nav {
    margin-top: 18px;
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .site-header__inner,
  .site-footer__inner,
  .page-shell,
  .section-inner,
  .hero__inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .page-shell {
    padding-bottom: 52px;
  }

  .document-tools {
    display: block;
  }

  .button-link {
    width: 100%;
    margin-top: 14px;
  }

  .legal-document h2 {
    margin-top: 40px;
  }

  .site-nav .site-nav__cta {
    padding: 8px 11px;
    white-space: nowrap;
  }

  .hero {
    min-height: 540px;
    height: calc(100svh - 144px);
    max-height: 650px;
  }

  .hero__inner {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero__tagline {
    margin-top: 10px;
    font-size: 1.45rem;
  }

  .hero__lead {
    font-size: 0.9rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-top: 22px;
  }

  .hero__facts {
    gap: 12px;
  }

  .hero__facts div,
  .hero__facts div + div {
    padding: 0;
    border-left: 0;
  }

  .hero__facts dt {
    font-size: 0.66rem;
  }

  .hero__facts dd {
    font-size: 0.76rem;
  }

  .definition,
  .workflow,
  .capabilities,
  .product,
  .outcomes,
  .plans,
  .contact,
  .faq,
  .operator {
    padding: 60px 0;
  }

  .workflow {
    padding-top: 32px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .trust h2,
  .contact__intro h2,
  .faq h2,
  .closing h2 {
    font-size: 1.75rem;
  }

  .workflow__steps li {
    min-height: 98px;
    padding: 16px 8px;
    font-size: 0.74rem;
  }

  .capability-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 26px 0;
  }

  .capability-row__result {
    grid-column: 1;
  }

  .outcome-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .outcome-grid article,
  .outcome-grid article:nth-child(odd),
  .outcome-grid article:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .outcome-grid h3 {
    margin-top: 14px;
  }

  .outcomes__visual {
    margin-bottom: 30px;
  }

  .outcomes__visual img {
    height: 320px;
  }

  .outcomes__visual figcaption {
    position: static;
    max-width: none;
  }

  .product-showcase {
    padding: 38px 0;
  }

  .product-showcase h3 {
    font-size: 1.45rem;
  }

  .trust__facts div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
  }

  .plan-card {
    padding: 24px 20px;
  }

  .plan-comparison {
    margin-top: 30px;
  }

  .plan-comparison::after {
    display: block;
    padding: 8px 0 0;
    color: var(--ink-muted);
    content: "機能表は横にスクロールできます";
    font-size: 0.7rem;
  }

  .plans__action {
    display: block;
    margin-top: 24px;
  }

  .plans__action .button {
    width: 100%;
    margin-top: 22px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-form__grid,
  .contact-form__checks {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form__submit {
    display: block;
  }

  .contact-form__submit .button {
    width: 100%;
  }

  #sales-inquiry-status {
    margin-top: 14px;
  }

  .closing__inner {
    display: block;
  }

  .closing .button {
    width: 100%;
    margin-top: 26px;
  }

  .company-overview > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    padding: 16px 0;
  }

  .operator__links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media print {
  .preview-banner,
  .site-header,
  .site-footer,
  .legal-aside,
  .document-tools .button-link {
    display: none;
  }

  html,
  body {
    background: #ffffff;
  }

  .page-shell {
    width: 100%;
    padding: 0;
  }

  .legal-layout {
    display: block;
  }
}

.preview-banner {
  min-height: 32px;
  padding: 7px 20px;
  background: #fff3cd;
  border-bottom: 1px solid #e0b44f;
  color: #5a4512;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
