:root {
  --ut-white: #ffffff;
  --ut-paper: #fbfaf6;
  --ut-ivory: #f8f5ec;
  --ut-navy: #07091a;
  --ut-ink: #20222d;
  --ut-soft: #5c5f6d;
  --ut-muted: #7c7f8b;
  --ut-gold: #c9a961;
  --ut-gold-dark: #8d7339;
  --ut-line: #e7e1d3;
  --ut-line-strong: #d5c59d;
  --ut-success: #246b4a;
  --ut-warning: #8a5b17;
  --ut-error: #a43b3b;
  --ut-serif: "Cormorant Garamond", "Noto Serif JP", serif;
  --ut-serif-jp: "Noto Serif JP", serif;
  --ut-sans: "Noto Sans JP", system-ui, sans-serif;
  --ut-wide: 1180px;
  --ut-prose: 720px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.ut-site {
  margin: 0;
  color: var(--ut-ink);
  background: var(--ut-white);
  font-family: var(--ut-sans);
  font-size: clamp(1rem, .97rem + .12vw, 1.075rem);
  line-height: 1.85;
  letter-spacing: .015em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.ut-site img { display: block; max-width: 100%; height: auto; }
body.ut-site a { color: inherit; text-decoration: none; }
body.ut-site button, body.ut-site input, body.ut-site select, body.ut-site textarea { font: inherit; }
body.ut-site :focus-visible { outline: 3px solid var(--ut-gold); outline-offset: 4px; }
body.ut-site [hidden] { display: none !important; }

.ut-shell { width: min(100% - 40px, var(--ut-wide)); margin-inline: auto; }
.ut-section { padding-block: clamp(76px, 10vw, 132px); }
.ut-section--paper { background: var(--ut-paper); }
.ut-section--ivory { background: var(--ut-ivory); }
.ut-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ut-gold-dark);
  font-family: var(--ut-serif);
  font-size: .9rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.ut-kicker::before { content: ""; width: 32px; height: 1px; background: var(--ut-gold); }
.ut-heading {
  max-width: 18ch;
  margin: 20px 0 0;
  color: var(--ut-navy);
  font-family: var(--ut-serif-jp);
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.28;
  text-wrap: balance;
}
.ut-heading--small { font-size: clamp(1.8rem, 3.4vw, 3.25rem); }
.ut-lead {
  max-width: 50ch;
  margin: 26px 0 0;
  color: var(--ut-soft);
  font-size: clamp(1.04rem, 1rem + .35vw, 1.3rem);
  line-height: 1.95;
  text-wrap: pretty;
}
.ut-note { color: var(--ut-muted); font-size: .82rem; line-height: 1.75; }

.ut-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(7, 9, 26, .08);
  backdrop-filter: blur(12px);
}
.ut-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ut-logo { display: inline-flex; align-items: center; min-height: 48px; }
.ut-logo img { width: 198px; height: auto; }
.ut-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); }
.ut-nav a { color: var(--ut-soft); font-size: .88rem; font-weight: 600; letter-spacing: .04em; }
.ut-nav a:hover { color: var(--ut-navy); }
.ut-nav .ut-nav__cta { color: var(--ut-navy); border-bottom: 1px solid var(--ut-gold); padding: 9px 0; }

.ut-hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  background: var(--ut-white);
  overflow: clip;
}
.ut-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 58%;
  background: var(--ut-ivory);
  border-left: 1px solid var(--ut-line);
}
.ut-hero .ut-shell { width: min(100% - 48px, 1320px); }
.ut-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(42px, 5vw, 74px);
  align-items: center;
  padding-block: clamp(28px, 4.5vh, 52px);
}
.ut-hero__eyebrow {
  color: var(--ut-gold-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.ut-hero h1 {
  max-width: 12.5ch;
  margin: 16px 0 0;
  color: var(--ut-navy);
  font-family: var(--ut-serif-jp);
  font-size: clamp(3rem, 4.25vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.13;
  text-wrap: balance;
}
.ut-hero h1 span { color: var(--ut-gold-dark); }
.ut-hero__copy { max-width: 45ch; margin: 22px 0 0; color: var(--ut-soft); font-size: clamp(.95rem, .9rem + .2vw, 1.08rem); line-height: 1.85; }
.ut-actions { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; margin-top: 38px; }
.ut-hero .ut-actions { margin-top: 24px; }
.ut-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid var(--ut-navy);
  background: var(--ut-navy);
  color: var(--ut-white) !important;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.ut-button:hover { background: var(--ut-white); color: var(--ut-navy) !important; transform: translateY(-2px); }
.ut-button--line { background: transparent; color: var(--ut-navy) !important; border-color: var(--ut-line-strong); }
.ut-button--line:hover { background: var(--ut-ivory); }
.ut-button--gold { background: var(--ut-gold); border-color: var(--ut-gold); color: var(--ut-navy) !important; }
.ut-button--gold:hover { background: var(--ut-white); }
.ut-text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: var(--ut-navy); font-weight: 700; border-bottom: 1px solid var(--ut-gold); }

.ut-hero__field {
  height: min(680px, 74svh);
  min-height: 570px;
  margin: 0;
  display: grid;
  grid-template-rows: 43px minmax(0, 1fr) 94px 34px;
  background: var(--ut-paper);
  border: 1px solid var(--ut-line-strong);
  box-shadow: 0 26px 80px rgba(7, 9, 26, .11);
  overflow: hidden;
}
.ut-fieldmap__years {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-inline: 18px;
  color: var(--ut-muted);
  font-family: var(--ut-serif);
  font-size: .68rem;
  letter-spacing: .16em;
}
.ut-fieldmap__years i { height: 1px; background: var(--ut-line-strong); }
.ut-fieldmap__years strong { color: var(--ut-gold-dark); font-size: .65rem; font-weight: 600; letter-spacing: .2em; }
.ut-fieldmap__stage {
  position: relative;
  min-height: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(141, 115, 57, .12) 50%, transparent 50.1%),
    linear-gradient(rgba(141, 115, 57, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 115, 57, .07) 1px, transparent 1px),
    var(--ut-ivory);
  background-size: auto, 44px 44px, 44px 44px, auto;
  border-top: 1px solid var(--ut-line);
  border-bottom: 1px solid var(--ut-line);
  overflow: hidden;
}
.ut-fieldmap__statement {
  position: absolute;
  inset: 50% auto auto 7%;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(-50%);
}
.ut-fieldmap__statement b {
  color: transparent;
  font-family: var(--ut-serif);
  font-size: clamp(9rem, 14vw, 12rem);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: .72;
  -webkit-text-stroke: 1px rgba(141, 115, 57, .65);
}
.ut-fieldmap__statement span {
  color: var(--ut-navy);
  font-family: var(--ut-serif-jp);
  font-size: clamp(.9rem, 1.25vw, 1.12rem);
  font-weight: 700;
  line-height: 1.65;
}
.ut-fieldmap__device {
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 7%;
  width: 35%;
  height: 91%;
  padding: 7px;
  background: var(--ut-white);
  border: 1px solid var(--ut-navy);
  box-shadow: 20px 24px 48px rgba(7, 9, 26, .2);
  transform: rotate(1.2deg);
}
.ut-fieldmap__device-bar { height: 23px; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--ut-muted); font-size: .52rem; letter-spacing: .12em; }
.ut-fieldmap__device-bar span { width: 5px; height: 5px; border-radius: 50%; background: var(--ut-gold); }
.ut-fieldmap__device-bar b { font-weight: 600; }
.ut-site .ut-fieldmap__device img { width: 100%; height: calc(100% - 23px); object-fit: cover; object-position: top; }
.ut-fieldmap__routes { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ut-white); }
.ut-fieldmap__routes a {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 16px 12px;
  border-right: 1px solid var(--ut-line);
  transition: background .2s ease;
}
.ut-fieldmap__routes a:last-child { border-right: 0; }
.ut-fieldmap__routes a:hover { background: var(--ut-ivory); }
.ut-fieldmap__routes b { color: var(--ut-gold-dark); font-family: var(--ut-serif); font-size: 1rem; font-style: italic; line-height: 1.3; }
.ut-fieldmap__routes span { color: var(--ut-navy); font-size: .75rem; font-weight: 700; line-height: 1.4; }
.ut-fieldmap__routes small { display: block; margin-top: 5px; color: var(--ut-muted); font-size: .59rem; font-weight: 500; line-height: 1.45; }
.ut-hero__field figcaption { display: flex; align-items: center; padding-inline: 18px; color: var(--ut-muted); font-family: var(--ut-serif); font-size: .58rem; font-style: italic; letter-spacing: .12em; }

.ut-route-intro { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.ut-route-list { border-top: 1px solid var(--ut-line-strong); }
.ut-route {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 126px;
  padding-block: 24px;
  border-bottom: 1px solid var(--ut-line);
}
.ut-route__num { color: var(--ut-gold-dark); font-family: var(--ut-serif); font-size: 1.7rem; font-style: italic; }
.ut-route h3 { margin: 0; color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.5; }
.ut-route p { margin: 7px 0 0; color: var(--ut-soft); font-size: .92rem; line-height: 1.75; }
.ut-route__arrow { color: var(--ut-gold-dark); font-size: 1.4rem; }

.ut-proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ut-line); background: var(--ut-white); }
.ut-proof { padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--ut-line); }
.ut-proof:last-child { border-right: 0; }
.ut-proof strong { display: block; color: var(--ut-navy); font-family: var(--ut-serif); font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 500; line-height: 1; }
.ut-proof span { display: block; margin-top: 12px; color: var(--ut-soft); font-size: .88rem; line-height: 1.65; }

.ut-plans-head { display: flex; justify-content: space-between; gap: 36px; align-items: end; margin-bottom: clamp(44px, 7vw, 80px); }
.ut-plans-head .ut-lead { margin-bottom: 4px; }
.ut-plan-stack { border-top: 1px solid var(--ut-line-strong); }
.ut-plan {
  display: grid;
  grid-template-columns: 120px minmax(0, .75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-block: clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--ut-line);
}
.ut-plan__index { color: var(--ut-gold-dark); font-family: var(--ut-serif); font-size: clamp(3rem, 6vw, 6rem); font-style: italic; font-weight: 500; line-height: .9; }
.ut-plan__tag { display: inline-block; color: var(--ut-gold-dark); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ut-plan h3 { margin: 12px 0 0; color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: clamp(1.6rem, 3vw, 2.65rem); line-height: 1.4; }
.ut-plan__price { margin-top: 22px; color: var(--ut-navy); font-family: var(--ut-serif); font-size: clamp(2.4rem, 4.6vw, 4.6rem); font-weight: 600; line-height: 1; }
.ut-plan__price small { display: inline-block; margin-left: 5px; color: var(--ut-muted); font-family: var(--ut-sans); font-size: .78rem; font-weight: 500; }
.ut-plan__body > p { margin: 0; color: var(--ut-soft); line-height: 1.9; }
.ut-plan__list { list-style: none; margin: 24px 0 0; padding: 0; border-top: 1px solid var(--ut-line); }
.ut-plan__list li { position: relative; padding: 13px 0 13px 24px; border-bottom: 1px solid var(--ut-line); color: var(--ut-ink); font-size: .92rem; }
.ut-plan__list li::before { content: ""; position: absolute; left: 2px; top: 24px; width: 9px; height: 1px; background: var(--ut-gold); }
.ut-plan__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; }

.ut-price-table { width: 100%; margin-top: 26px; border-collapse: collapse; font-size: .86rem; background: var(--ut-white); }
.ut-price-table th, .ut-price-table td { padding: 13px 12px; border-bottom: 1px solid var(--ut-line); text-align: right; white-space: nowrap; }
.ut-price-table th:first-child, .ut-price-table td:first-child { text-align: left; }
.ut-price-table thead th { color: var(--ut-muted); font-size: .74rem; letter-spacing: .06em; }
.ut-price-table tbody th { color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: 1rem; }
.ut-price-table .ut-price-open { color: var(--ut-navy); font-weight: 800; }
.ut-price-table .ut-price-normal { color: var(--ut-muted); }
.ut-plan__fee { margin-top: 15px !important; color: var(--ut-navy) !important; font-size: .86rem; font-weight: 700; }

.ut-personal-status { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 24px; background: var(--ut-line); border: 1px solid var(--ut-line); }
.ut-personal-status div { padding: 20px; background: var(--ut-white); }
.ut-personal-status strong { display: block; color: var(--ut-navy); font-size: 1rem; }
.ut-personal-status span { display: block; margin-top: 6px; color: var(--ut-soft); font-size: .82rem; line-height: 1.7; }

.ut-founder { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(46px, 8vw, 112px); align-items: center; }
.ut-founder__media { position: relative; padding: 0 0 28px 28px; }
.ut-founder__media::before { content: ""; position: absolute; left: 0; bottom: 0; width: 72%; height: 72%; border: 1px solid var(--ut-gold); }
.ut-founder__media img { position: relative; z-index: 1; aspect-ratio: 1 / 1; object-fit: cover; }
.ut-founder__copy p { max-width: 50ch; margin: 24px 0 0; color: var(--ut-soft); line-height: 2; }
.ut-founder__signature { margin-top: 28px; color: var(--ut-gold-dark); font-family: var(--ut-serif); font-size: 1.5rem; font-style: italic; }

.ut-journal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ut-line-strong); }
.ut-journal a { min-height: 220px; padding: 30px clamp(22px, 3vw, 38px); border-right: 1px solid var(--ut-line); border-bottom: 1px solid var(--ut-line); transition: background .2s ease; }
.ut-journal a:last-child { border-right: 0; }
.ut-journal a:hover { background: var(--ut-ivory); }
.ut-journal span { color: var(--ut-gold-dark); font-family: var(--ut-serif); font-size: .82rem; font-style: italic; letter-spacing: .14em; }
.ut-journal h3 { margin: 22px 0 0; color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: 1.15rem; line-height: 1.7; }
.ut-journal p { margin: 12px 0 0; color: var(--ut-soft); font-size: .84rem; line-height: 1.75; }

.ut-final { text-align: center; background: var(--ut-white); }
.ut-final__mark { width: 68px; margin-inline: auto; }
.ut-final .ut-heading { max-width: 18ch; margin-inline: auto; }
.ut-final .ut-lead { margin-inline: auto; }
.ut-final .ut-actions { justify-content: center; }

.ut-footer { padding-block: 46px; background: var(--ut-ivory); border-top: 1px solid var(--ut-line); }
.ut-footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 36px; }
.ut-footer__brand img { width: 190px; }
.ut-footer__brand p { margin: 15px 0 0; color: var(--ut-soft); font-size: .82rem; }
.ut-footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; }
.ut-footer__links a { color: var(--ut-soft); font-size: .82rem; }
.ut-footer__links a:hover { color: var(--ut-navy); }
.ut-footer__bottom { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--ut-line); color: var(--ut-muted); font-size: .72rem; line-height: 1.75; }

.ut-page-hero { padding-block: clamp(72px, 9vw, 118px); background: var(--ut-white); border-bottom: 1px solid var(--ut-line); }
.ut-page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 160px; gap: 48px; align-items: center; }
.ut-page-hero__mark { width: 132px; justify-self: end; opacity: .92; }
.ut-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: var(--ut-muted); font-size: .78rem; }
.ut-breadcrumb a { border-bottom: 1px solid var(--ut-line-strong); }
.ut-summary {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 850px;
  padding: 30px 0;
  border-top: 1px solid var(--ut-line-strong);
  border-bottom: 1px solid var(--ut-line);
}
.ut-summary strong { color: var(--ut-gold-dark); font-family: var(--ut-serif); font-size: 1rem; font-style: italic; letter-spacing: .12em; }
.ut-summary p { margin: 0; color: var(--ut-soft); line-height: 1.9; }

.ut-product-index { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ut-line-strong); }
.ut-product-index a { padding: 28px; border-right: 1px solid var(--ut-line); border-bottom: 1px solid var(--ut-line); }
.ut-product-index a:last-child { border-right: 0; }
.ut-product-index span { color: var(--ut-gold-dark); font-family: var(--ut-serif); font-size: 1.3rem; font-style: italic; }
.ut-product-index strong { display: block; margin-top: 12px; color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: 1.05rem; line-height: 1.6; }
.ut-product-index small { display: block; margin-top: 8px; color: var(--ut-soft); line-height: 1.6; }

.ut-product-detail { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 8vw, 112px); align-items: start; }
.ut-product-detail + .ut-product-detail { margin-top: clamp(80px, 11vw, 148px); padding-top: clamp(80px, 11vw, 148px); border-top: 1px solid var(--ut-line-strong); }
.ut-product-detail h2 { margin: 15px 0 0; color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: clamp(1.8rem, 3.4vw, 3.2rem); line-height: 1.4; }
.ut-product-glyph, .ut-faq-glyph { display: block; width: 54px; height: 54px; margin-bottom: 24px; color: var(--ut-gold-dark); }
.ut-product-glyph *, .ut-faq-glyph * { vector-effect: non-scaling-stroke; }
.ut-product-detail__price { margin-top: 26px; color: var(--ut-navy); font-family: var(--ut-serif); font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 600; line-height: 1; }
.ut-product-detail__price small { display: block; margin-top: 10px; color: var(--ut-muted); font-family: var(--ut-sans); font-size: .8rem; font-weight: 500; }
.ut-product-copy > p { margin: 0; color: var(--ut-soft); line-height: 1.95; }
.ut-product-copy h3 { margin: 38px 0 14px; color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: 1.2rem; }

.ut-rate-ledger { margin-top: 28px; border-top: 1px solid var(--ut-line-strong); }
.ut-rate-head, .ut-rate-row { display: grid; grid-template-columns: .55fr repeat(4, 1fr); gap: 10px; align-items: center; }
.ut-rate-head { padding: 10px 0; color: var(--ut-muted); font-size: .7rem; text-align: right; }
.ut-rate-head span:first-child { text-align: left; }
.ut-rate-row { padding: 17px 0; border-top: 1px solid var(--ut-line); }
.ut-rate-row strong { color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: 1.2rem; }
.ut-rate-row span { color: var(--ut-soft); font-size: .82rem; text-align: right; }
.ut-rate-row .primary { color: var(--ut-navy); font-weight: 800; }
.ut-rate-row em { display: none; }

.ut-contract-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 26px; background: var(--ut-line); border: 1px solid var(--ut-line); }
.ut-contract-list div { padding: 20px; background: var(--ut-white); }
.ut-contract-list dt { color: var(--ut-muted); font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.ut-contract-list dd { margin: 7px 0 0; color: var(--ut-navy); font-size: .9rem; font-weight: 700; line-height: 1.7; }

.ut-faq { max-width: 880px; margin-top: 42px; border-top: 1px solid var(--ut-line-strong); }
.ut-faq details { border-bottom: 1px solid var(--ut-line); }
.ut-faq summary { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 4px; color: var(--ut-navy); cursor: pointer; font-weight: 700; list-style: none; }
.ut-faq summary::-webkit-details-marker { display: none; }
.ut-faq summary::after { content: "+"; color: var(--ut-gold-dark); font-family: var(--ut-serif); font-size: 1.5rem; font-weight: 500; }
.ut-faq details[open] summary::after { content: "−"; }
.ut-faq__answer { padding: 0 4px 22px; color: var(--ut-soft); line-height: 1.9; }
.ut-faq__answer a { border-bottom: 1px solid var(--ut-gold); color: var(--ut-navy); }

.ut-legal-table { max-width: 940px; margin-top: 38px; border-top: 1px solid var(--ut-line-strong); }
.ut-legal-row { display: grid; grid-template-columns: 210px minmax(0, 1fr); border-bottom: 1px solid var(--ut-line); }
.ut-legal-row dt { padding: 22px; color: var(--ut-navy); background: var(--ut-paper); font-weight: 700; }
.ut-legal-row dd { margin: 0; padding: 22px 28px; color: var(--ut-soft); line-height: 1.9; }
.ut-legal-row dd strong { color: var(--ut-navy); }
.ut-legal-row dd a { color: var(--ut-navy); border-bottom: 1px solid var(--ut-gold); }
.ut-legal-row dd ul { margin: 8px 0; padding-left: 1.3em; }
.ut-legal-keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 940px; margin-top: 34px; background: var(--ut-line); border: 1px solid var(--ut-line); }
.ut-legal-key { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 20px; padding: 24px; background: var(--ut-white); }
.ut-legal-key svg { width: 48px; height: 48px; color: var(--ut-gold-dark); }
.ut-legal-key strong { display: block; color: var(--ut-navy); }
.ut-legal-key p { margin: 6px 0 0; color: var(--ut-soft); font-size: .84rem; line-height: 1.75; }

.ut-order-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 46px; background: var(--ut-line); border: 1px solid var(--ut-line); }
.ut-order-choice { padding: clamp(26px, 3vw, 38px); background: var(--ut-white); }
.ut-order-choice span { color: var(--ut-gold-dark); font-family: var(--ut-serif); font-size: 1.3rem; font-style: italic; }
.ut-order-choice h2 { margin: 12px 0 0; color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: 1.25rem; line-height: 1.5; }
.ut-order-choice p { color: var(--ut-soft); font-size: .88rem; line-height: 1.75; }
.ut-order-choice .ut-button { width: 100%; margin-top: 20px; }
.ut-order-form { max-width: 760px; margin-top: 46px; padding: clamp(28px, 5vw, 52px); background: var(--ut-paper); border: 1px solid var(--ut-line); }
.ut-field { margin-top: 22px; }
.ut-field label { display: block; color: var(--ut-navy); font-size: .86rem; font-weight: 700; }
.ut-field input, .ut-field textarea {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid var(--ut-line-strong);
  border-radius: 0;
  background: var(--ut-white);
  color: var(--ut-ink);
}
.ut-field textarea { min-height: 120px; resize: vertical; }
.ut-form-note { margin-top: 18px; color: var(--ut-muted); font-size: .78rem; line-height: 1.7; }

.ut-bridge { max-width: 860px; margin-inline: auto; text-align: center; }
.ut-bridge__mark { width: 96px; margin-inline: auto; }
.ut-bridge .ut-heading, .ut-bridge .ut-lead { margin-inline: auto; }
.ut-bridge__notice { margin-top: 36px; padding: 26px; background: var(--ut-ivory); border: 1px solid var(--ut-line); color: var(--ut-soft); text-align: left; }
.ut-bridge__notice strong { display: block; color: var(--ut-navy); }
.ut-bridge__section { margin-top: 54px; text-align: left; }
.ut-bridge__section h2 { margin: 0; color: var(--ut-navy); font-family: var(--ut-serif-jp); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.5; }
.ut-bridge__section p { margin: 16px 0 0; color: var(--ut-soft); line-height: 1.95; }
.ut-bridge__section ul { margin: 18px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--ut-line); }
.ut-bridge__section li { padding: 13px 0; border-bottom: 1px solid var(--ut-line); color: var(--ut-soft); }
.ut-bridge__section li strong { color: var(--ut-navy); }
.ut-bridge__diagram { width: 100%; height: auto; margin-top: 24px; color: var(--ut-gold-dark); background: var(--ut-paper); border: 1px solid var(--ut-line); }

@media (max-width: 920px) {
  .ut-nav a:not(.ut-nav__cta) { display: none; }
  .ut-hero__grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 28px; }
  .ut-hero h1 { font-size: clamp(2.45rem, 5.3vw, 3.35rem); }
  .ut-hero__field { height: min(590px, 67svh); min-height: 500px; }
  .ut-fieldmap__statement { left: 4%; gap: 10px; }
  .ut-fieldmap__statement b { font-size: clamp(8rem, 17vw, 10.5rem); }
  .ut-fieldmap__statement span { font-size: .9rem; }
  .ut-fieldmap__device { right: 4%; width: 37%; }
  .ut-route-intro, .ut-founder { grid-template-columns: 1fr; }
  .ut-route-intro { gap: 42px; }
  .ut-plans-head { display: block; }
  .ut-plan { grid-template-columns: 72px minmax(0, .7fr) minmax(300px, 1.3fr); gap: 28px; }
  .ut-founder__media { max-width: 560px; }
  .ut-product-detail { grid-template-columns: 1fr; gap: 34px; }
  .ut-order-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .ut-shell { width: min(100% - 32px, var(--ut-wide)); }
  .ut-header__inner { min-height: 68px; }
  .ut-logo img { width: 152px; }
  .ut-nav { gap: 12px; }
  .ut-nav .ut-nav__cta { font-size: .78rem; }
  .ut-hero { min-height: 0; align-items: start; }
  .ut-hero::before { inset: auto 0 0; height: 39%; border-left: 0; border-top: 1px solid var(--ut-line); }
  .ut-hero .ut-shell { width: min(100% - 28px, var(--ut-wide)); }
  .ut-hero__grid { grid-template-columns: 1fr; padding-block: 16px 18px; gap: 14px; }
  .ut-hero__eyebrow { font-size: .62rem; letter-spacing: .06em; }
  .ut-hero h1 { margin-top: 7px; max-width: none; font-size: clamp(1.9rem, 8.4vw, 2.2rem); line-height: 1.12; }
  .ut-hero__copy { margin-top: 9px; font-size: .78rem; line-height: 1.55; }
  .ut-hero .ut-actions { margin-top: 11px; }
  .ut-hero .ut-button { min-height: 44px; padding: 9px 17px; font-size: .8rem; }
  .ut-hero__field { height: 290px; min-height: 0; grid-template-rows: 28px minmax(0, 1fr) 70px 21px; box-shadow: 0 15px 42px rgba(7, 9, 26, .1); }
  .ut-fieldmap__years { gap: 6px; padding-inline: 9px; font-size: .49rem; letter-spacing: .1em; }
  .ut-fieldmap__years strong { font-size: .45rem; letter-spacing: .1em; }
  .ut-fieldmap__stage { background-size: auto, 28px 28px, 28px 28px, auto; }
  .ut-fieldmap__statement { left: 4%; gap: 5px; }
  .ut-fieldmap__statement b { font-size: 6.7rem; -webkit-text-stroke-width: .7px; }
  .ut-fieldmap__statement span { font-size: .66rem; line-height: 1.55; }
  .ut-fieldmap__device { top: 4%; right: 4%; width: 31%; height: 92%; padding: 4px; box-shadow: 10px 12px 26px rgba(7, 9, 26, .2); }
  .ut-fieldmap__device-bar { height: 13px; font-size: .35rem; }
  .ut-fieldmap__device-bar span { width: 3px; height: 3px; }
  .ut-site .ut-fieldmap__device img { height: calc(100% - 13px); }
  .ut-fieldmap__routes a { grid-template-columns: 18px minmax(0, 1fr); gap: 3px; padding: 9px 5px; }
  .ut-fieldmap__routes b { font-size: .72rem; }
  .ut-fieldmap__routes span { font-size: .59rem; line-height: 1.3; }
  .ut-fieldmap__routes small { margin-top: 3px; font-size: .45rem; line-height: 1.25; }
  .ut-hero__field figcaption { padding-inline: 8px; font-size: .4rem; letter-spacing: .06em; }
  .ut-route { grid-template-columns: 38px minmax(0, 1fr) 18px; gap: 12px; min-height: 118px; }
  .ut-proof-strip { grid-template-columns: 1fr; }
  .ut-proof { border-right: 0; border-bottom: 1px solid var(--ut-line); }
  .ut-proof:last-child { border-bottom: 0; }
  .ut-plan { grid-template-columns: 1fr; gap: 18px; }
  .ut-plan__index { font-size: 3.4rem; }
  .ut-price-table { font-size: .78rem; }
  .ut-price-table th, .ut-price-table td { padding: 11px 6px; }
  .ut-personal-status { grid-template-columns: 1fr; }
  .ut-founder { gap: 44px; }
  .ut-founder__media { padding: 0 0 20px 20px; }
  .ut-journal { grid-template-columns: 1fr; }
  .ut-journal a { min-height: 0; border-right: 0; }
  .ut-footer__top { display: block; }
  .ut-footer__links { justify-content: flex-start; margin-top: 28px; }
  .ut-page-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .ut-page-hero__mark { width: 84px; justify-self: start; }
  .ut-summary { grid-template-columns: 1fr; gap: 8px; }
  .ut-product-index { grid-template-columns: 1fr; }
  .ut-product-index a { border-right: 0; }
  .ut-rate-head { display: none; }
  .ut-rate-row { grid-template-columns: 44px 1fr 1fr; gap: 8px; }
  .ut-rate-row strong { grid-row: 1 / 3; align-self: stretch; display: grid; place-items: center; border-right: 1px solid var(--ut-line); }
  .ut-rate-row span { text-align: left; font-size: .75rem; }
  .ut-rate-row em { display: block; color: var(--ut-muted); font-size: .63rem; font-style: normal; }
  .ut-contract-list { grid-template-columns: 1fr; }
  .ut-legal-row { grid-template-columns: 1fr; }
  .ut-legal-row dt { padding: 15px 18px; }
  .ut-legal-row dd { padding: 18px; }
  .ut-legal-keys { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
