/* UNISIA ToC LP v1.8.8 — navy, travel-magazine. No gold. No orange as primary. */
:root {
  --navy: #0A2F5C;
  --deep: #061E3D;
  --light: #1E5A9A;
  --sky: #4C8FCE;
  --ice: #F5F8FC;
  --text: #1A1A1A;
  --muted: #5A6573;
  --white: #FFFFFF;
  --line: #D7E1EC;
  --shadow: 0 18px 50px rgba(6, 30, 61, 0.16);
  --display: "Fraunces", "Times New Roman", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.utoc-lp {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(30, 90, 154, 0.18), transparent 55%),
    radial-gradient(700px 380px at 110% 8%, rgba(10, 47, 92, 0.12), transparent 50%),
    #DDE7F3;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.utoc-page {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.utoc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: visible;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 47, 92, 0.08);
}
.utoc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  overflow: visible;
}
.utoc-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  overflow: visible;
}
.utoc-logo img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: none;
}
.utoc-nav { display: none; }
.utoc-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utoc-hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  overflow: hidden;
}
.utoc-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  transform: scale(1.06);
}
.utoc-hero-float { display: none; }
.utoc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 30, 61, 0.15) 0%, rgba(6, 30, 61, 0.35) 38%, rgba(6, 30, 61, 0.92) 100%);
}
.utoc-hero-inner {
  position: relative;
  z-index: 1;
  padding: 38vh 22px 40px;
}
.utoc-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
.utoc-kicker {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.28em;
  font-weight: 700;
  opacity: 0.92;
  margin-bottom: 10px;
}
.utoc-hero h1 {
  font-size: 34px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.utoc-hero p.lead {
  font-size: 15px;
  opacity: 0.94;
  margin-bottom: 18px;
}
.utoc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.utoc-pills span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
}

.utoc-cta-wrap { margin-top: 22px; }
.utoc-cta-wrap.center { text-align: center; }
.utoc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(10, 47, 92, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.utoc-cta:hover { transform: translateY(-1px); }
.utoc-cta-hero {
  background: #fff;
  color: var(--navy);
}
.utoc-hero-next {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}
.utoc-cta-navy {
  background: var(--navy);
  color: #fff;
}
.utoc-cta-sm {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 12px;
  box-shadow: 0 6px 16px rgba(10, 47, 92, 0.18);
  background: var(--navy);
  color: #fff;
  white-space: nowrap;
}
.utoc-cta-note {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.utoc-cta-note.light {
  color: rgba(255, 255, 255, 0.82);
}

.utoc-ticker {
  background: var(--deep);
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.utoc-ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: utoc-marquee 28s linear infinite;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.utoc-ticker-track span::before {
  content: "✦ ";
  color: var(--sky);
}
@keyframes utoc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .utoc-ticker-track { animation: none; }
}

.utoc-section { padding: 48px 22px; }
.utoc-section[id] { scroll-margin-top: 64px; }
.utoc-section.ice { background: var(--ice); }
.utoc-section.after {
  background:
    linear-gradient(180deg, #fff 0%, var(--ice) 100%);
}
.utoc-section.navy {
  background: radial-gradient(800px 400px at 80% 0%, rgba(30, 90, 154, 0.45), transparent 55%), var(--deep);
  color: #fff;
}
.utoc-h2 {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--deep);
  letter-spacing: -0.02em;
}
.utoc-section.navy .utoc-h2,
.utoc-oversea .utoc-h2,
.utoc-final .utoc-h2 { color: #fff; }
.utoc-en {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--light);
  font-weight: 700;
  margin-bottom: 8px;
}
.utoc-en.light,
.utoc-section.navy .utoc-en { color: #9ec0e6; }
.utoc-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.utoc-section.navy .utoc-sub { color: rgba(255,255,255,.78); }

.utoc-photo {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.utoc-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.utoc-photo-desktop { display: none; }
.utoc-photo-mobile { display: block; }
.utoc-photo-tilt { transform: rotate(-1.5deg); }

.utoc-worries { display: grid; gap: 10px; }
.utoc-worry {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(10, 47, 92, 0.05);
}
.utoc-worry .utoc-num {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3D8AD4;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-top: 0;
  border: 3px solid var(--navy);
  box-shadow: 0 4px 0 var(--navy), 0 8px 16px rgba(10, 47, 92, 0.22);
}
.utoc-worry p { font-size: 15px; font-weight: 800; line-height: 1.45; }
.utoc-worry > div span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.55;
}

.utoc-bridge {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.utoc-mosaic { display: grid; gap: 14px; }
.utoc-mosaic-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(10, 47, 92, 0.07);
}
.utoc-mosaic-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: var(--deep);
}
.utoc-mosaic-card .cap {
  padding: 16px 16px 18px;
}
.utoc-mosaic-card span {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--sky);
  font-weight: 700;
}
.utoc-mosaic-card h3 {
  font-size: 17px;
  margin: 6px 0 8px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.4;
}
.utoc-mosaic-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.utoc-duo { display: grid; gap: 16px; }
.utoc-duo-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 47, 92, 0.06);
}
.utoc-duo-img { height: 190px; overflow: hidden; }
.utoc-duo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.utoc-duo-card:hover .utoc-duo-img img { transform: scale(1.05); }
.utoc-duo-card > :not(.utoc-duo-img) { padding-left: 18px; padding-right: 18px; }
.utoc-duo-tag {
  display: inline-block;
  margin: 16px 18px 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.utoc-duo-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 10px 0 8px;
  padding-left: 18px;
  padding-right: 18px;
}
.utoc-duo-card p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 18px 20px;
}

.utoc-oversea {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 420px;
}
.utoc-oversea-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.utoc-oversea::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 30, 61, 0.45), rgba(6, 30, 61, 0.88));
}
.utoc-oversea-inner {
  position: relative;
  z-index: 1;
  padding: 52px 22px 48px;
}

.utoc-offer {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.utoc-offer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.utoc-offer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(6, 30, 61, 0.55), rgba(6, 30, 61, 0.94));
}
.utoc-offer-inner {
  position: relative;
  z-index: 1;
  padding: 56px 22px 52px;
  text-align: center;
}
.utoc-offer .utoc-h2 { color: #fff; }
.utoc-checklist {
  list-style: none;
  margin: 0 auto 22px;
  max-width: 360px;
  text-align: left;
}
.utoc-checklist li {
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
}
.utoc-checklist li:last-child { border-bottom: 0; }
.utoc-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--sky);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: grid;
  place-items: center;
  line-height: 1;
}
.utoc-want { color: #fff; }
.utoc-want em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, #4C8FCE 62%);
  padding: 0 2px;
}
.utoc-deal {
  position: relative;
  background: #fff;
  color: var(--navy);
  border-radius: 22px;
  padding: 36px 18px 22px;
  margin: 8px auto 18px;
  max-width: 440px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.utoc-deal-bubble {
  position: absolute;
  top: -14px;
  left: 16px;
  background: var(--sky);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 7px 14px;
  border-radius: 16px 16px 16px 4px;
}
.utoc-deal-was {
  font-size: 15px;
  font-weight: 800;
  color: #8a93a0;
  margin-bottom: 2px;
}
.utoc-deal-was s {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.utoc-deal-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--sky);
  margin-bottom: 6px;
}
.utoc-deal-head {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 18px;
}
.utoc-deal .utoc-cta {
  width: 100%;
  max-width: 320px;
}
.utoc-get {
  margin: 22px auto 0;
  max-width: 100%;
}
.utoc-get li {
  color: var(--navy);
  border-bottom-color: var(--line);
  font-size: 14px;
}
.utoc-offer-limit {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c5ddf5;
}
.utoc-oversea-grid { display: grid; gap: 12px; margin-top: 20px; }
.utoc-oversea-grid article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 18px 16px;
  backdrop-filter: blur(10px);
}
.utoc-oversea-grid h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 900;
  line-height: 1.4;
}
.utoc-oversea-grid p { font-size: 14px; opacity: 0.92; }
.utoc-tiny {
  margin-top: 8px !important;
  font-size: 12px !important;
  opacity: 0.78 !important;
}

.utoc-proof {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.utoc-proof-top {
  background: linear-gradient(135deg, var(--navy), var(--light));
  color: #fff;
  padding: 24px 18px 18px;
}
.utoc-proof-top .label {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: .85;
}
.utoc-proof-top h3 { font-size: 20px; margin: 8px 0 16px; }
.utoc-compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}
.utoc-arrow { font-family: var(--display); font-size: 22px; }
.utoc-pricebox {
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
}
.utoc-pricebox .who { font-size: 11px; opacity: .8; }
.utoc-pricebox .yen { font-size: 24px; font-weight: 900; font-family: var(--display); }
.utoc-pricebox.old .yen { text-decoration: line-through; opacity: .75; font-size: 18px; }
.utoc-save {
  text-align: center;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  padding: 14px;
  font-size: 18px;
}
.utoc-fares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px 4px;
}
.utoc-fare {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
}
.utoc-fare .route {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
}
.utoc-fare .yen {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 2px;
}
.utoc-story {
  padding: 16px 18px 18px;
  font-size: 14px;
  color: var(--muted);
  background: #fff;
}
.utoc-voices {
  display: grid;
  gap: 10px;
  padding: 0 14px 4px;
}
.utoc-voice {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}
.utoc-voice.featured {
  background: #fff;
  border-color: var(--navy);
}
.utoc-voice .who {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--light);
  margin-bottom: 4px;
}
.utoc-voice .yen {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.utoc-voice p:last-child {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.utoc-swipe {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--light);
  margin: -12px 0 14px;
}
@media (min-width: 900px) {
  .utoc-swipe { display: none; }
}
.utoc-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -8px; padding: 0 8px; }
.utoc-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(10, 47, 92, 0.08);
}
.utoc-table th, .utoc-table td {
  border-bottom: 1px solid var(--line);
  padding: 11px 8px;
  text-align: center;
  vertical-align: middle;
}
.utoc-table th {
  background: var(--ice);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.35;
}
.utoc-table th small { display: block; font-weight: 600; color: var(--muted); font-size: 10px; }
.utoc-table th.hi, .utoc-table td.hi {
  background: var(--navy);
  color: #fff;
}
.utoc-table td.hi small {
  display: block;
  font-weight: 600;
  opacity: 0.78;
  font-size: 10px;
  margin-top: 2px;
}
.utoc-table td.left,
.utoc-table th:first-child {
  text-align: left;
  font-weight: 800;
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
  min-width: 92px;
}
.utoc-table th:first-child { background: var(--ice); }
.utoc-table .bad { color: #8a93a0; }

.utoc-flow { display: grid; gap: 12px; }
.utoc-flow-item {
  background: var(--ice);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
}
.utoc-flow-no {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: 8px;
}
.utoc-flow-item h3 { font-size: 15px; font-weight: 900; margin-bottom: 4px; line-height: 1.4; }
.utoc-flow-item p { font-size: 13px; color: var(--muted); }
.utoc-flow-item a,
.utoc-faq a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
}

.utoc-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.utoc-faq summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.utoc-faq summary::-webkit-details-marker { display: none; }
.utoc-faq details p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.utoc-final {
  position: relative;
  min-height: 420px;
  color: #fff;
  overflow: hidden;
}
.utoc-final > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.utoc-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 30, 61, 0.4), rgba(6, 30, 61, 0.9));
}
.utoc-final-inner {
  position: relative;
  z-index: 1;
  padding: 56px 22px 48px;
  text-align: center;
}
.utoc-checks {
  text-align: left;
  margin: 16px auto 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  max-width: 280px;
}
.utoc-checks li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}
.utoc-checks li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--sky);
}
.utoc-company {
  margin-top: 22px;
  font-size: 12px;
  opacity: 0.8;
}
.utoc-final .utoc-cta {
  margin-top: 20px;
}

.utoc-footer {
  padding: 22px;
  text-align: center;
  font-size: 11px;
  background: var(--deep);
  color: rgba(255,255,255,.65);
}
.utoc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-bottom: 10px;
}
.utoc-footer-links a {
  color: rgba(255,255,255,.88);
  text-decoration: underline;
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 900px) {
  body.utoc-lp { padding: 32px 24px 56px; }
  .utoc-page {
    max-width: 1160px;
    border-radius: 28px;
  }
  .utoc-header-inner { padding: 10px 40px; }
  .utoc-logo img { height: 80px; }
  .utoc-nav {
    display: flex;
    gap: 20px;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
  }
  .utoc-nav a:hover { color: var(--light); }

  .utoc-hero { min-height: 720px; }
  .utoc-hero-photo { object-position: 62% 20%; }
  .utoc-hero-float {
    display: block;
    position: absolute;
    right: 40px;
    bottom: 48px;
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 22px;
    z-index: 2;
    box-shadow: 0 24px 50px rgba(0,0,0,.35);
    border: 4px solid rgba(255,255,255,.85);
    transform: rotate(3deg);
  }
  .utoc-hero::after {
    background: linear-gradient(90deg, rgba(6, 30, 61, 0.82) 0%, rgba(6, 30, 61, 0.5) 46%, rgba(6, 30, 61, 0.2) 100%);
  }
  .utoc-hero-inner {
    max-width: 600px;
    padding: 120px 56px 80px;
  }
  .utoc-hero h1 { font-size: 52px; }

  .utoc-section { padding: 80px 56px; }
  .utoc-h2 { font-size: 38px; }
  .utoc-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
  }
  .utoc-photo { margin-bottom: 0; }
  .utoc-photo-mobile { display: none; }
  .utoc-photo-desktop { display: block; }

  .utoc-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .utoc-mosaic-card .cap { padding: 20px 22px 22px; }
  .utoc-mosaic-card h3 { font-size: 20px; }

  .utoc-duo { grid-template-columns: 1fr 1fr; gap: 24px; }
  .utoc-duo-img { height: 240px; }

  .utoc-oversea-inner { padding: 80px 56px; }
  .utoc-offer-inner { padding: 80px 56px; }
  .utoc-deal { max-width: 520px; padding: 42px 28px 26px; }
  .utoc-deal-head { font-size: 32px; }
  .utoc-oversea-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .utoc-oversea-grid h3 { font-size: 16px; }

  .utoc-proof-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
  }
  .utoc-table { min-width: 0; font-size: 13px; }
  .utoc-table th, .utoc-table td { padding: 14px 10px; }

  .utoc-fares { grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 18px 8px; }
  .utoc-fare .yen { font-size: 24px; }
  .utoc-voices {
    grid-template-columns: 1fr 1fr;
    padding: 0 18px 8px;
  }
  .utoc-voice.featured { grid-column: 1 / -1; }

  .utoc-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .utoc-final-inner { padding: 88px 56px; }
  .utoc-final h2 { font-size: 42px; }
}

@media (max-width: 899px) {
  .utoc-split { display: block; }
}
