@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;

  --white: #FFFFFF;
  --surface: #F7F8FA;
  --border: #E4E7EB;
  --border-dark: #C9CDD4;

  --text-primary: #0F1923;
  --text-secondary: #4A5568;
  --text-muted: #8A94A6;
  --text-inverse: #FFFFFF;

  --brand-navy: #0F1F3D;
  --brand-navy-light: #1A3060;
  --brand-blue: #2461D6;
  --brand-blue-hover: #1A4DB5;
  --brand-blue-active: #163FA0;
  --brand-blue-light: #EBF2FF;

  /* Secondary cards */
  --teal: #0D9488;
  --teal-hover: #0F766E;
  --teal-active: #115E59;
  --teal-light: #F0FDFA;
  --teal-border: #99F6E4;
  --teal-mid: #14B8A6;
  --teal-dark: var(--teal-active);

  --torii: #C0392B;
  --torii-light: #FEF0EE;
  --torii-border: #F5C6C0;

  --save-green: #0A7C4E;
  --save-green-light: #E8F8F2;
  --save-green-border: #A3D9C2;

  --neutral-amber: #B45309;
  --neutral-amber-light: #FEF9EC;
  --neutral-amber-border: #F2D995;

  --shadow-card: 0 2px 8px rgba(15, 25, 35, 0.07);
  --shadow-sm: 0 1px 3px rgba(15, 25, 35, 0.06), 0 1px 2px rgba(15, 25, 35, 0.04);
  --shadow-focus: 0 0 0 3px rgba(36, 97, 214, 0.15);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  --max-tool: 600px;
  --max-content: 680px;
  --max-site: 1080px;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Section */
  --bg-light: var(--surface);
  --color-primary: var(--brand-blue);
  --color-text: var(--text-primary);
  --tool-img: none;
  --seo-hero-img: none;

  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text-secondary);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }

h1, h2, h3 {
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

/* Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-navy);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav {
  width: min(var(--max-site), calc(100% - 32px));
  margin: 0 auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-inverse);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 150ms ease;
}

.nav-links a:hover { color: var(--text-inverse); }

.nav-separator {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  background: var(--brand-blue);
  color: var(--text-inverse);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(36, 97, 214, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: all 150ms ease;
}

.button:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-1px);
}

.button:active {
  background: var(--brand-blue-active);
  transform: translateY(0);
}

.button:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.button.full-width { width: 100%; }

.button.inline { width: auto; min-width: 160px; }

.button-teal {
  background: var(--teal);
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.30);
}
.button-teal:hover  { background: var(--teal-hover); }
.button-teal:active { background: var(--teal-active); }

/* Layout */

.container {
  width: min(var(--max-site), calc(100% - 32px));
  margin: 0 auto;
}

.content-column {
  width: min(var(--max-content), calc(100% - 32px));
  margin: 0 auto;
}

.section { padding: var(--space-10) 0; }
.section-white { background: var(--white); }
.section-surface { background: var(--surface); }

/* Tool hero */

.tool-hero {
  position: relative;
  padding: 28px 0 32px;
  background-image: url('/assets/images/hero-shinkansen-fuji.jpg');
  background-size: cover;
  background-position: 62% center;
}

/* Hero */
@media (min-width: 768px) {
  .tool-hero {
    aspect-ratio: 1672 / 941;
    max-height: 760px;
    padding: 40px 0;
    background-position: center center;
  }
}

.tool-layout {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}

.tool-intro {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 22px 24px 20px;
  box-shadow: 0 8px 28px rgba(15, 25, 35, 0.14), 0 1px 3px rgba(15, 25, 35, 0.08);
}

.tool-intro .breadcrumb {
  margin: 0 0 var(--space-3);
  font-size: 12px;
  color: var(--text-muted);
}

.tool-intro .breadcrumb a {
  color: var(--brand-blue);
  text-decoration: none;
}

.tool-intro .breadcrumb a:hover { text-decoration: underline; }

.tool-intro h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.tool-intro-sub {
  margin: var(--space-3) 0 0;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 400px;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-3);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-line-icon {
  color: var(--save-green);
  font-size: 14px;
}

.context-blurb {
  display: none;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.tool-panel {
  width: 100%;
  max-width: var(--max-tool);
}

/* Calculator card */

.calculator-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
}

.calculator-card-header h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.calculator-card-header p {
  margin: var(--space-2) 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

.calculator-divider {
  margin: var(--space-4) 0;
  border: none;
  border-top: 1px solid #F3F4F6;
}

.calc-form {
  display: grid;
  gap: var(--space-5);
}

.field-label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.field-helper {
  margin: var(--space-1) 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* Section */
.day-segment {
  display: flex;
  padding: 3px;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.day-segment button {
  flex: 1;
  min-width: 44px;
  min-height: 40px;
  padding: 8px 0;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 150ms ease, box-shadow 150ms ease, color 150ms ease;
}

.day-segment button.active {
  background: var(--white);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(15, 25, 35, 0.1);
}

/* Section */
.stepper {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  height: 48px;
}

.stepper-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

.stepper-btn:hover {
  background: var(--surface);
  border-color: var(--border-dark);
}

.stepper-btn:active {
  background: var(--brand-blue-light);
  border-color: var(--brand-blue);
}

.stepper-value {
  min-width: 48px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.input-prefix-wrap { position: relative; }

.input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}

.input-field {
  width: 100%;
  padding: 10px 14px 10px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 16px;
  color: var(--text-primary);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.input-field:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-focus);
}

.input-field::placeholder { color: var(--text-muted); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Result card */

.result-card {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  animation: fadeSlideIn 220ms ease;
}

.result-card[hidden] { display: none; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-card--ticket {
  background: var(--torii-light);
  border: 1px solid var(--torii-border);
  border-left: 4px solid var(--torii);
}

.result-card--ic {
  background: var(--save-green-light);
  border: 1px solid var(--save-green-border);
  border-left: 4px solid var(--save-green);
}

.result-card--tie {
  background: var(--neutral-amber-light);
  border: 1px solid var(--neutral-amber-border);
  border-left: 4px solid var(--neutral-amber);
}

.cost-comparison {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: var(--space-4);
  align-items: start;
}

.cost-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.cost-item { text-align: center; }

.cost-label {
  margin: 0 0 var(--space-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.cost-amount {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.cost-detail {
  margin: var(--space-1) 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

.recommendation-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-4);
  padding: 14px 16px;
  border-radius: var(--radius-md);
}

.result-card--ticket .recommendation-badge { background: rgba(254, 240, 238, 0.8); }
.result-card--ic .recommendation-badge { background: rgba(232, 248, 242, 0.8); }
.result-card--tie .recommendation-badge { background: rgba(254, 249, 236, 0.8); }

.badge-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.result-card--ticket .badge-icon { background: var(--torii); }
.result-card--ic .badge-icon { background: var(--save-green); }
.result-card--tie .badge-icon { background: var(--neutral-amber); }

.recommendation-text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.result-card--ticket .recommendation-text { color: #991B1B; }
.result-card--ic .recommendation-text { color: #065F46; }
.result-card--tie .recommendation-text { color: #92400E; }

.result-explanation {
  margin: var(--space-3) 0 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.break-even-line {
  margin: var(--space-2) 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.important-note {
  margin-top: var(--space-4);
  padding: 10px 14px;
  background: var(--neutral-amber-light);
  border-left: 3px solid var(--neutral-amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.result-links {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
}

.result-links a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
}

.result-links a:hover { text-decoration: underline; }

/* Pass price table */

.price-section h2 {
  margin: 0 0 var(--space-3);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th {
  padding: 10px 14px;
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #F3F4F6;
  font-size: 15px;
  color: var(--text-primary);
}

.price-table tr:last-child td { border-bottom: none; }

.price-table .price-cell {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.table-caption {
  margin: var(--space-2) 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* Future tools */

.future-tools { padding: var(--space-12) 0; }

.future-tools h2 {
  margin: 0 0 var(--space-2);
  font-size: 20px;
  font-weight: 600;
}

.future-tools-sub {
  margin: 0 0 var(--space-8);
  font-size: 14px;
  color: var(--text-muted);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.future-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.future-card-title {
  margin: var(--space-3) 0 var(--space-2);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.future-card-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.future-card-foot {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* Badges */

.badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-live {
  background: #D1FAE5;
  color: #065F46;
}

.badge-soon {
  background: #F3F4F6;
  color: #6B7280;
}

.badge-guide {
  background: var(--brand-blue-light);
  color: #1E40AF;
}

/* FAQ */

.faq-section > h2 {
  margin: 0 0 var(--space-6);
  font-size: 20px;
  font-weight: 600;
}

.faq-see-all {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-blue);
  text-decoration: none;
}

.faq-see-all:hover { text-decoration: underline; }

.accordion-item { border-bottom: 1px solid var(--border); }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 150ms ease;
}

.accordion-trigger:hover { color: var(--brand-blue); }

.accordion-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform 200ms ease;
}

.accordion-item.is-open .accordion-chevron { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.accordion-panel-inner {
  padding: 0 0 var(--space-5);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* FAQ */

.faq-page-header {
  background: var(--surface);
  padding: var(--space-10) 0 var(--space-8);
}

.faq-page-header h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.faq-page-header p {
  margin: var(--space-3) 0 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.faq-category { margin-bottom: var(--space-10); }

.faq-category-heading {
  margin: 0 0 var(--space-5);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--torii);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-cta-block {
  margin-top: var(--space-12);
  padding: var(--space-6);
  background: var(--brand-blue-light);
  border-radius: var(--radius-lg);
  text-align: center;
}

.faq-cta-block p {
  margin: 0 0 var(--space-4);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-updated {
  margin-top: var(--space-10);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* Footer */

.site-footer {
  background: var(--brand-navy);
  color: var(--text-inverse);
  padding: var(--space-12) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: start;
}

.footer-brand {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.footer-tagline {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-note {
  margin: var(--space-2) 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-links a:hover { color: var(--text-inverse); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* Tools page cards */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.card-linked {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.card-linked:hover {
  border-color: #BFDBFE;
  box-shadow: 0 4px 12px rgba(15, 25, 35, 0.08);
}

.card-title {
  margin: var(--space-3) 0 var(--space-2);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.card-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.card-cta {
  margin-top: auto;
  padding-top: var(--space-4);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
}

.tool-card { display: flex; flex-direction: column; min-height: 100%; }

.section-heading {
  margin: 0 0 var(--space-2);
  font-size: 20px;
  font-weight: 600;
}

.section-subhead {
  margin: 0 0 var(--space-8);
  font-size: 14px;
  color: var(--text-muted);
}

.page-header-sub {
  margin: var(--space-3) 0 0;
  font-size: 16px;
  color: var(--text-secondary);
}

/* Page hero banner */
/* Hero */

.page-hero-banner {
  position: relative;
  height: 320px;
  background-image: url('/assets/images/hero-shinkansen-fuji.jpg');
  background-size: cover;
  background-position: 62% center;
  overflow: hidden;
}

.page-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.75) 82%,
    rgba(255, 255, 255, 1) 100%
  );
}

@media (max-width: 767px) {
  .page-hero-banner {
    height: 220px;
    background-position: 62% 30%;
  }
}

/* Article pages */

.article {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-10) 0;
}

.article h1 {
  font-size: 26px;
  font-weight: 700;
}

.article h2 {
  margin-top: var(--space-8);
  font-size: 20px;
  font-weight: 600;
}

.article p, .article li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.article a:not(.button) {
  color: var(--brand-blue);
}

.answer {
  border-left: 4px solid var(--save-green);
  padding: 18px 20px;
  background: var(--save-green-light);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--space-6) 0;
}

.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-title {
  font-size: 26px;
  font-weight: 700;
}

.lede {
  margin: var(--space-3) 0 0;
  font-size: 17px;
  color: var(--text-secondary);
}

.faq-item {
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border);
}

.faq-item h2, .faq-item h3 {
  margin: 0 0 var(--space-2);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Responsive */

@media (min-width: 768px) {
  .tool-layout {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }

  .tool-intro h1 { font-size: 32px; }

  .context-blurb { display: block; }

  .calculator-card { padding: var(--space-6); }

  .result-card { padding: var(--space-6); }

  .cost-amount { font-size: 28px; }

  .tool-panel {
    max-width: var(--max-tool);
    margin-left: auto;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .nav-faq-desktop { display: none; }

  .nav-separator { display: none; }

  .tool-hero {
    padding-top: var(--space-4);
    padding-bottom: var(--space-6);
  }

  .price-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-table { min-width: 520px; }

  .cost-comparison {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .cost-divider { display: none; }

  .tools-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1080px) {
  .tools-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Platform hero */

.platform-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image: url('/assets/images/hero-shinkansen-fuji.jpg');
  background-size: cover;
  background-position: 62% center;
  overflow: hidden;
}

.platform-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(10, 18, 28, 0.90) 0%,
    rgba(10, 18, 28, 0.68) 48%,
    rgba(10, 18, 28, 0.22) 100%
  );
}

.platform-hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  max-width: 600px;
}

.hero-eyebrow {
  margin: 0 0 var(--space-4);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-headline {
  margin: 0 0 var(--space-5);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-sub {
  margin: 0 0 var(--space-8);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.button-hero {
  background: var(--brand-blue);
  box-shadow: 0 4px 20px rgba(36, 97, 214, 0.45);
  font-size: 16px;
  padding: 14px 32px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: var(--white);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

@media (max-width: 767px) {
  .platform-hero { min-height: 420px; }
  .platform-hero-content { padding: 48px 0; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; margin-bottom: var(--space-6); }
}

/* Trust strip */

.trust-strip {
  background: var(--brand-navy);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-strip-inner {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.trust-checkmark {
  color: #34D399;
  font-weight: 700;
}

@media (max-width: 599px) {
  .trust-strip-inner { gap: var(--space-4); }
  .trust-item { font-size: 12px; }
}

/* Premium tool cards */

.tool-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

@media (max-width: 767px) {
  .tool-cards-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .tool-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.tcp {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  position: relative;
}

a.tcp:hover {
  border-color: #BFDBFE;
  box-shadow: 0 6px 20px rgba(15, 25, 35, 0.10);
  transform: translateY(-2px);
}

.tcp--muted { opacity: 0.72; cursor: default; }

.tcp-icon-bar {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 var(--space-5);
  font-size: 30px;
  flex-shrink: 0;
}

.tcp-icon-bar--transit  { background: linear-gradient(135deg, #EBF2FF 0%, #DBEAFE 100%); }
.tcp-icon-bar--pass     { background: linear-gradient(135deg, #FEF0EE 0%, #FECACA 100%); }
.tcp-icon-bar--airport  { background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%); }
.tcp-icon-bar--ic       { background: linear-gradient(135deg, #F0FDF4 0%, #BBF7D0 100%); }
.tcp-icon-bar--wide     { background: linear-gradient(135deg, #FAF5FF 0%, #E9D5FF 100%); }
.tcp-icon-bar--hakone   { background: linear-gradient(135deg, #F0FDF4 0%, #A7F3D0 100%); }
.tcp-icon-bar--osaka    { background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%); }

.tcp-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
}

.tcp-body {
  flex: 1;
  padding: var(--space-4) var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
}

.tcp-category {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tcp-title {
  margin: 0 0 var(--space-2);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.tcp-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.tcp-cta {
  display: block;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
}

.tcp-cta--muted {
  color: var(--text-muted);
  font-weight: 500;
}

/* Tools section header */

.tools-section-header {
  margin-bottom: var(--space-8);
}

.tools-section-header h2 {
  margin: 0 0 var(--space-2);
  font-size: 24px;
  font-weight: 700;
}

.tools-section-header p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

/* Platform about strip */

.about-strip {
  text-align: center;
  padding: var(--space-12) 0;
}

.about-strip h2 {
  margin: 0 0 var(--space-3);
  font-size: 22px;
  font-weight: 700;
}

.about-strip p {
  margin: 0 auto;
  max-width: 500px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Calculator page tool header */

.tool-page-hero {
  position: relative;
  padding: 0;
  background-image: url('/assets/images/hero-shinkansen-fuji.jpg');
  background-size: cover;
  background-position: 62% center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .tool-page-hero {
    aspect-ratio: 1672 / 941;
    max-height: 680px;
    background-position: center center;
  }
}

.tool-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(10, 18, 28, 0.85) 0%,
    rgba(10, 18, 28, 0.55) 55%,
    rgba(10, 18, 28, 0.15) 100%
  );
}

.tool-page-hero-content {
  position: relative;
  z-index: 1;
  padding: 32px 0 36px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .tool-page-hero-content { padding: 48px 0 52px; }
}

.tool-page-hero .breadcrumb {
  margin: 0 0 var(--space-3);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.tool-page-hero .breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.tool-page-hero .breadcrumb a:hover { color: white; }

.tool-page-hero h1 {
  margin: 0 0 var(--space-3);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
}

@media (min-width: 768px) {
  .tool-page-hero h1 { font-size: 36px; }
}

.tool-page-hero .tool-sub {
  margin: 0 0 var(--space-3);
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  max-width: 480px;
}

.tool-page-hero .trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 4px 12px;
}

.tool-page-hero .trust-tag span { color: #34D399; }

/* Layout */

.tool-calc-section {
  background: var(--surface);
  padding: var(--space-8) 0 var(--space-10);
}

.tool-calc-inner {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .tool-calc-inner {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    gap: var(--space-8);
  }
}

/* Related tools block */

.related-tools {
  background: var(--surface);
  padding: var(--space-10) 0;
}

.related-tools h2 {
  margin: 0 0 var(--space-6);
  font-size: 20px;
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .related-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-decoration: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.related-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 4px 12px rgba(15, 25, 35, 0.08);
}

.related-card-title {
  margin: 0 0 var(--space-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.related-card-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.related-card-cta {
  display: block;
  margin-top: var(--space-3);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
}

/* Complete your plan CTA block */

.complete-plan {
  background: var(--brand-navy);
  padding: var(--space-10) 0;
  text-align: center;
}

.complete-plan h2 {
  margin: 0 0 var(--space-3);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.complete-plan p {
  margin: 0 auto var(--space-6);
  max-width: 480px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}

/* Methodology section */

.methodology {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-8);
}

.methodology-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  border: none;
  width: 100%;
  text-align: left;
}

.methodology-body {
  padding: var(--space-5);
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.methodology-body p { margin: 0 0 var(--space-3); }
.methodology-body p:last-child { margin-bottom: 0; }

/* Section */

/* Logo mark */
.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}
.brand-wordmark {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.brand-wordmark span { color: var(--teal-mid); }

/* How it works */
.how-it-works {
  background: var(--surface);
  padding: var(--space-16) 0;
}
.how-it-works-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.how-it-works-header h2 {
  margin: 0 0 var(--space-3);
  font-size: 26px;
  font-weight: 700;
}
.how-it-works-header p {
  margin: 0 auto;
  max-width: 460px;
  font-size: 16px;
  color: var(--text-secondary);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-border) 0%, var(--teal-border) 100%);
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.how-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.how-step h3 {
  margin: 0 0 var(--space-2);
  font-size: 17px;
  font-weight: 700;
}
.how-step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 220px;
}
@media (max-width: 767px) {
  .how-steps { grid-template-columns: 1fr; gap: var(--space-6); }
  .how-steps::before { display: none; }
}

/* Featured tools */
.featured-tools {
  padding: var(--space-16) 0;
  background: var(--white);
}
.featured-tools-header {
  margin-bottom: var(--space-8);
}
.featured-tools-header h2 {
  margin: 0 0 var(--space-2);
  font-size: 26px;
  font-weight: 700;
}
.featured-tools-header p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 767px) { .featured-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1079px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }

/* Popular decisions */
.popular-decisions {
  background: var(--brand-navy);
  padding: var(--space-16) 0;
}
.popular-decisions-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.popular-decisions-header h2 {
  margin: 0 0 var(--space-3);
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
}
.popular-decisions-header p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}
.decision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 767px) { .decision-cards { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1079px) { .decision-cards { grid-template-columns: repeat(2, 1fr); } }

.decision-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.decision-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-2px);
}
.decision-q {
  margin: 0 0 var(--space-4);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}
.decision-answer-preview {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  flex: 1;
}
.decision-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-5);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-mid);
}

/* Why trust */
.why-trust {
  background: var(--white);
  padding: var(--space-16) 0;
}
.why-trust-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.why-trust-header h2 {
  margin: 0 0 var(--space-3);
  font-size: 26px;
  font-weight: 700;
}
.why-trust-header p {
  margin: 0 auto;
  max-width: 460px;
  font-size: 15px;
  color: var(--text-secondary);
}
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
@media (max-width: 767px) { .trust-pillars { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); } }
@media (min-width: 768px) and (max-width: 1079px) { .trust-pillars { grid-template-columns: repeat(2, 1fr); } }

.trust-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.trust-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--teal-light);
  color: var(--teal);
  font-size: 18px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}
.trust-pillar h3 {
  margin: 0 0 var(--space-2);
  font-size: 15px;
  font-weight: 700;
}
.trust-pillar p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* FAQ */
.home-faq {
  background: var(--surface);
  padding: var(--space-16) 0;
}
.home-faq-inner {
  max-width: 680px;
  margin: 0 auto;
}
.home-faq-header {
  margin-bottom: var(--space-8);
}
.home-faq-header h2 {
  margin: 0 0 var(--space-2);
  font-size: 24px;
  font-weight: 700;
}
.home-faq-header p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

/* Homepage hero CTA update */
.button-hero-teal {
  background: var(--teal);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.45);
  font-size: 16px;
  padding: 14px 32px;
  color: var(--white);
}
.button-hero-teal:hover {
  background: var(--teal-hover);
  color: var(--white);
}

/* Quick answer */

/* Quick answer */
.quick-answer {
  border-left: 4px solid var(--teal);
  background: var(--teal-light);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-6) var(--space-8);
  margin: var(--space-8) 0;
}
.quick-answer-label {
  margin: 0 0 var(--space-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}
.quick-answer-q {
  margin: 0 0 var(--space-3);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.quick-answer-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
}
.quick-answer-text strong {
  color: var(--teal-active);
}

/* Common travel scenarios */
.geo-section {
  padding: var(--space-12) 0;
}
.geo-section-header {
  margin-bottom: var(--space-8);
}
.geo-section-header h2 {
  margin: 0 0 var(--space-2);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}
.geo-section-header p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (max-width: 767px) { .scenario-grid { grid-template-columns: 1fr; } }
.scenario-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.scenario-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scenario-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}
.scenario-costs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.scenario-cost-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}
.scenario-cost-label {
  margin: 0 0 2px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.scenario-cost-amount {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.scenario-verdict {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
}
.scenario-verdict--buy {
  background: var(--save-green-light);
  color: var(--save-green);
  border: 1px solid var(--save-green-border);
}
.scenario-verdict--skip {
  background: var(--torii-light);
  color: var(--torii);
  border: 1px solid var(--torii-border);
}
.scenario-verdict--close {
  background: var(--neutral-amber-light);
  color: var(--neutral-amber);
  border: 1px solid var(--neutral-amber-border);
}
.scenario-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Decision factors */
.decision-factors {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.factor-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}
.factor-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.factor-body h3 {
  margin: 0 0 var(--space-1);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.factor-body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Key takeaway */
.key-takeaway {
  background: var(--brand-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-8);
  margin: var(--space-8) 0;
}
.key-takeaway-label {
  margin: 0 0 var(--space-3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-mid);
}
.key-takeaway-text {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
}
.key-takeaway-text em {
  font-style: normal;
  color: var(--teal-mid);
}

/* Decision hub */
.hub-category {
  margin-bottom: var(--space-12);
}
.hub-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--teal);
}
.hub-category-icon {
  font-size: 22px;
  line-height: 1;
}
.hub-category-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}
.hub-category-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (max-width: 767px) { .hub-grid { grid-template-columns: 1fr; } }
@media (min-width: 1024px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }

/* Homepage rebuild */

/* Shared section header */
.hp-section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.hp-section-header h2 {
  margin: 0 0 var(--space-3);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.hp-section-header p {
  margin: 0 auto;
  max-width: 480px;
  font-size: 16px;
  color: var(--text-muted);
}
.hp-section-header--light h2 { color: var(--white); }
.hp-section-header--light p  { color: rgba(255,255,255,0.65); }

/* Hero */
.hp-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-shinkansen-fuji.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,18,35,0.88) 0%,
    rgba(10,18,35,0.70) 50%,
    rgba(10,18,35,0.30) 100%
  );
  z-index: 1;
}
.hp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-16);
  align-items: center;
  padding: 80px 0;
}
@media (max-width: 900px) {
  .hp-hero-inner { grid-template-columns: 1fr; padding: 60px 0; }
  .hp-hero-right { display: none; }
}
.hp-hero-eyebrow {
  margin: 0 0 var(--space-4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-mid);
}
.hp-hero-headline {
  margin: 0 0 var(--space-5);
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
}
.hp-hero-sub {
  margin: 0 0 var(--space-4);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  line-height: 1.4;
}
.hp-hero-body {
  margin: 0 0 var(--space-8);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 420px;
}
.hp-hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.hp-btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,148,136,0.5);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
}
.hp-btn-primary:hover {
  background: var(--teal-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,148,136,0.55);
}
.hp-btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
}
.hp-btn-secondary:hover {
  background: rgba(255,255,255,0.20);
  color: var(--white);
}
.hp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  backdrop-filter: blur(6px);
}

/* Result card */
.hp-result-card {
  background: var(--white);
  border-radius: 16px;
  padding: var(--space-6);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.20);
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hp-result-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}
.hp-result-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hp-result-label {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.hp-result-route {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}
.hp-result-verdict {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-5);
}
.hp-verdict-worth {
  background: var(--save-green-light);
  color: var(--save-green);
  border: 1px solid var(--save-green-border);
}
.hp-result-stats {
  display: flex;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.hp-result-stat { flex: 1; }
.hp-result-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.hp-stat-label {
  margin: 0 0 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  font-weight: 600;
}
.hp-stat-value {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hp-result-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.hp-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
}
.hp-breakdown-cost { font-weight: 600; font-variant-numeric: tabular-nums; }
.hp-breakdown-save { color: var(--save-green); }
.hp-result-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.hp-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--save-green);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.3); }
}

/* Popular decisions */
.hp-decisions {
  background: var(--surface);
  padding: 80px 0;
}
.hp-decisions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 767px)  { .hp-decisions-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1079px) { .hp-decisions-grid { grid-template-columns: repeat(2, 1fr); } }

.hp-decision-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--space-6);
  text-decoration: none;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
  box-shadow: var(--shadow-sm);
}
.hp-decision-card:hover {
  box-shadow: 0 8px 28px rgba(15,25,35,0.12);
  transform: translateY(-3px);
  border-color: var(--teal-border);
}
.hp-dc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}
.hp-dc-icon--pass    { background: #EBF2FF; color: var(--brand-blue); }
.hp-dc-icon--transit { background: var(--teal-light); color: var(--teal); }
.hp-dc-icon--ic      { background: #FEF9EC; color: var(--neutral-amber); }
.hp-dc-icon--airport { background: #F0F4FF; color: #5B7FD4; }
.hp-dc-icon--wide    { background: var(--save-green-light); color: var(--save-green); }
.hp-dc-icon--hakone  { background: #F3F0FF; color: #7C5CBF; }
.hp-dc-icon--osaka   { background: var(--torii-light); color: var(--torii); }

.hp-dc-body { flex: 1; }
.hp-dc-body h3 {
  margin: 0 0 var(--space-2);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.hp-dc-body p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.hp-dc-cta {
  display: block;
  margin-top: var(--space-5);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

/* How it works */
.hp-how {
  background: var(--white);
  padding: 80px 0;
}
.hp-how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
@media (max-width: 767px) {
  .hp-how-steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .hp-how-connector { display: none; }
}
.hp-how-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-border), var(--teal));
  margin-top: 38px;
  border-radius: 2px;
  opacity: 0.5;
}
.hp-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
}
.hp-how-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 2px solid var(--teal-border);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  position: relative;
}
.hp-how-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.hp-how-step h3 {
  margin: 0 0 var(--space-2);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.hp-how-step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 200px;
}

/* Why trust */
.hp-trust {
  background: var(--brand-navy);
  padding: 80px 0;
}
.hp-trust .hp-section-header h2 { color: var(--white); }
.hp-trust .hp-section-header p  { color: rgba(255,255,255,0.60); }
.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 767px)  { .hp-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) and (max-width: 1079px) { .hp-trust-grid { grid-template-columns: repeat(2, 1fr); } }

.hp-trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: var(--space-6);
  transition: background 200ms ease, border-color 200ms ease;
}
.hp-trust-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(20,184,166,0.35);
}
.hp-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(13,148,136,0.15);
  color: var(--teal-mid);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}
.hp-trust-card h3 {
  margin: 0 0 var(--space-2);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.hp-trust-card p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Decision hub */
.hp-hub {
  background: var(--white);
  padding: 80px 0;
}
.hp-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 767px)  { .hp-hub-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1079px) { .hp-hub-grid { grid-template-columns: repeat(2, 1fr); } }

.hp-hub-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.hp-hub-cat-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border-bottom: 2px solid var(--teal);
}
.hp-hub-cat-icon { font-size: 18px; line-height: 1; }
.hp-hub-cat-header h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal);
}
.hp-hub-links {
  display: flex;
  flex-direction: column;
  padding: var(--space-2);
  gap: 2px;
}
.hp-hub-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 150ms ease;
}
.hp-hub-link:hover { background: var(--white); }
.hp-hub-link-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  grid-column: 1;
  grid-row: 1;
}
.hp-hub-link-sub {
  font-size: 11px;
  color: var(--text-muted);
  grid-column: 1;
  grid-row: 2;
  margin-top: 2px;
}
.hp-hub-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--text-muted);
  margin-left: var(--space-3);
  transition: color 150ms ease, transform 150ms ease;
}
.hp-hub-link:hover .hp-hub-arrow {
  color: var(--teal);
  transform: translateX(2px);
}

/* Section */
.hp-coverage {
  background: var(--brand-navy);
  padding: 80px 0;
}
.hp-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 767px)  { .hp-coverage-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1079px) { .hp-coverage-grid { grid-template-columns: repeat(2, 1fr); } }

.hp-coverage-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: var(--space-6);
  transition: background 200ms ease;
}
.hp-coverage-card:hover { background: rgba(255,255,255,0.10); }
.hp-coverage-card--featured {
  border-color: rgba(20,184,166,0.40);
  background: rgba(13,148,136,0.10);
}
.hp-coverage-card--coming {
  opacity: 0.55;
}
.hp-coverage-region {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
}
.hp-coverage-tools {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-mid);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 0 0 var(--space-4);
}
.hp-coverage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.hp-coverage-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding-left: 14px;
  position: relative;
}
.hp-coverage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

/* Trust */
.hp-stats {
  background: var(--teal);
  padding: 48px 0;
}
.hp-stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
@media (max-width: 767px) {
  .hp-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6) var(--space-4);
  }
  .hp-stat-divider { display: none; }
}
.hp-stat-item { text-align: center; }
.hp-stat-num {
  margin: 0 0 4px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.hp-stat-desc {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hp-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.25);
}

/* FAQ */
.hp-faq {
  background: var(--surface);
  padding: 80px 0;
}
.hp-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hp-faq-header {
  margin-bottom: var(--space-10);
}
.hp-faq-header h2 {
  margin: 0 0 var(--space-2);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.hp-faq-header p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}
.hp-faq-list { margin-bottom: var(--space-6); }
.hp-faq-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.hp-faq-all:hover { text-decoration: underline; }

/* Section */
.hp-final-cta {
  background: var(--brand-navy);
  padding: 96px 0;
  text-align: center;
}
.hp-final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.hp-final-cta h2 {
  margin: 0 0 var(--space-4);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
}
.hp-final-cta p {
  margin: 0 0 var(--space-10);
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.hp-final-cta-btns {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hp-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.30);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
}
.hp-btn-outline:hover {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border-color: rgba(255,255,255,0.50);
}

/* Hero */
.page-hero-banner {
  height: 320px;
  background-image: url('/assets/images/hero-shinkansen-fuji.jpg');
  background-size: cover;
  background-position: 62% center;
}
.faq-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-6);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.faq-see-all:hover { text-decoration: underline; }

/* Region cards */

/* Hero */
.hp-hero-overlay {
  background: linear-gradient(
    to right,
    rgba(8,15,30,0.90) 0%,
    rgba(8,15,30,0.70) 36%,
    rgba(8,15,30,0.25) 60%,
    rgba(8,15,30,0.02) 100%
  ) !important;
}

/* Bento cards */
.hp-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 14px;
}
.hp-dc--jr      { grid-column: 1 / 3; grid-row: 1 / 3; }
.hp-dc--narita  { grid-column: 3;     grid-row: 1; }
.hp-dc--subway  { grid-column: 4;     grid-row: 1; }
.hp-dc--haneda  { grid-column: 3 / 5; grid-row: 2; }
.hp-dc--suica   { grid-column: 1;     grid-row: 3; }
.hp-dc--wide    { grid-column: 2;     grid-row: 3; }
.hp-dc--hakone  { grid-column: 3;     grid-row: 3; }
.hp-dc--osaka   { grid-column: 4;     grid-row: 3; }

/* Section */
.hp-dc {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.hp-dc:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.20); }

/* Featured */
.hp-dc--jr {
  background: linear-gradient(145deg, #0B1D3A 0%, #0F2848 55%, #0D3260 100%);
  padding: 26px;
  justify-content: space-between;
}
.hp-dc-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hp-dc-deco span {
  display: block;
  position: absolute;
  height: 1px;
  left: -30%;
  right: -30%;
  background: linear-gradient(90deg, transparent 0%, rgba(20,184,166,0.16) 50%, transparent 100%);
}
.hp-dc-deco span:nth-child(1) { top: 25%; transform: rotate(-7deg); }
.hp-dc-deco span:nth-child(2) { top: 50%; transform: rotate(-7deg); }
.hp-dc-deco span:nth-child(3) { top: 74%; transform: rotate(-7deg); }

.hp-dc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hp-dc-pill {
  padding: 4px 10px;
  background: rgba(20,184,166,0.18);
  border: 1px solid rgba(20,184,166,0.35);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #14B8A6;
}
.hp-dc-icon-lg {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.22);
  color: #14B8A6;
  display: grid;
  place-items: center;
}
.hp-dc-feat-body { flex: 1; margin-bottom: 18px; }
.hp-dc-feat-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}
.hp-dc-feat-desc {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
  max-width: 280px;
}
.hp-dc-price-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 13px;
}
.hp-dc-price-tag span:first-child { color: rgba(255,255,255,0.45); font-weight: 500; }
.hp-dc-price-tag span:last-child  { color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }
.hp-dc-feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: #0D9488;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  align-self: flex-start;
  transition: background 150ms ease;
}
.hp-dc--jr:hover .hp-dc-feat-cta { background: #0F766E; }

/* Secondary cards */
.hp-dc--narita { background: linear-gradient(145deg, #0C2746 0%, #143968 100%); padding: 20px; }
.hp-dc--subway { background: linear-gradient(145deg, #1E0F4A 0%, #2D1B6B 100%); padding: 20px; }
.hp-dc--haneda { background: linear-gradient(145deg, #063D30 0%, #0A5540 100%); padding: 20px 22px; flex-direction: row; align-items: flex-start; gap: 20px; }

.hp-dc-icon-sm {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.hp-dc-title-sm { margin: 0 0 7px; font-size: 16px; font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.02em; }
.hp-dc-desc-sm  { margin: 0; font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.5; flex: 1; }
.hp-dc-cta-sm   { display: block; margin-top: 14px; font-size: 13px; font-weight: 700; color: #14B8A6; }

/* Layout */
.hp-dc-haneda-left { display: flex; flex-direction: column; flex: 1; }
.hp-dc-haneda-left .hp-dc-icon-sm { margin-bottom: 10px; }
.hp-dc-haneda-chips { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; align-self: center; }
.hp-chip {
  padding: 5px 11px;
  background: rgba(255,255,255,0.10);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  white-space: nowrap;
}
.hp-chip--muted { color: rgba(255,255,255,0.45); }

/* Remaining cards */
.hp-dc--suica  { background: linear-gradient(145deg, #FFFBEB 0%, #FEF3C7 100%); padding: 18px; }
.hp-dc--wide   { background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%); padding: 18px; }
.hp-dc--hakone { background: linear-gradient(145deg, #F0FDF4 0%, #D1FAE5 100%); padding: 18px; }
.hp-dc--osaka  { background: linear-gradient(145deg, #FFF5F5 0%, #FEE2E2 100%); padding: 18px; }

.hp-dc-icon-xs {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.hp-icon-amber { background: rgba(180,83,9,0.12);  color: #B45309; }
.hp-icon-blue  { background: rgba(36,97,214,0.12);  color: #2461D6; }
.hp-icon-green { background: rgba(10,124,78,0.12);  color: #0A7C4E; }
.hp-icon-red   { background: rgba(192,57,43,0.12);  color: #C0392B; }

.hp-dc-title-xs { margin: 0 0 5px; font-size: 13px; font-weight: 800; color: #0F1923; line-height: 1.2; letter-spacing: -0.01em; }
.hp-dc-desc-xs  { margin: 0; font-size: 12px; color: #4A5568; line-height: 1.45; flex: 1; }
.hp-dc-cta-xs   { display: block; margin-top: 12px; font-size: 12px; font-weight: 700; }
.hp-cta-amber { color: #B45309; }
.hp-cta-blue  { color: #2461D6; }
.hp-cta-green { color: #0A7C4E; }
.hp-cta-red   { color: #C0392B; }

/* Responsive */
@media (max-width: 767px) {
  .hp-bento { grid-template-columns: 1fr; }
  .hp-dc--jr,.hp-dc--narita,.hp-dc--subway,.hp-dc--haneda,
  .hp-dc--suica,.hp-dc--wide,.hp-dc--hakone,.hp-dc--osaka { grid-column: auto; grid-row: auto; }
  .hp-dc--haneda { flex-direction: column; }
  .hp-dc-haneda-chips { flex-direction: row; flex-wrap: wrap; align-self: auto; margin-top: 10px; }
}
@media (min-width: 768px) and (max-width: 1079px) {
  .hp-bento { grid-template-columns: repeat(2,1fr); }
  .hp-dc--jr     { grid-column: 1/3; grid-row: 1; }
  .hp-dc--narita { grid-column: 1;   grid-row: 2; }
  .hp-dc--subway { grid-column: 2;   grid-row: 2; }
  .hp-dc--haneda { grid-column: 1/3; grid-row: 3; }
  .hp-dc--suica  { grid-column: 1;   grid-row: 4; }
  .hp-dc--wide   { grid-column: 2;   grid-row: 4; }
  .hp-dc--hakone { grid-column: 1;   grid-row: 5; }
  .hp-dc--osaka  { grid-column: 2;   grid-row: 5; }
}

/* Region cards */
.hp-regions { background: var(--brand-navy); padding: 80px 0; }
.hp-regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
@media (max-width: 767px)  { .hp-regions-grid { grid-template-columns: 1fr; grid-auto-rows: 160px; } }
@media (min-width: 768px) and (max-width: 1079px) { .hp-regions-grid { grid-template-columns: repeat(2,1fr); } }

.hp-region {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.hp-region:not(.hp-region--coming):hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.40); }

.hp-region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.06) 100%);
  z-index: 1;
}
.hp-region-body {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hp-region-count { margin: 0 0 3px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #14B8A6; }
.hp-region-name  { margin: 0 0 8px; font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.hp-region-list  { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 3px; }
.hp-region-list li { font-size: 12px; color: rgba(255,255,255,0.68); padding-left: 11px; position: relative; }
.hp-region-list li::before { content: ''; position: absolute; left: 0; top: 6px; width: 4px; height: 4px; border-radius: 50%; background: #14B8A6; }

/* Section */
.hp-region--tokyo {
  background:
    radial-gradient(ellipse at 65% 30%, rgba(120,80,220,0.40) 0%, transparent 58%),
    linear-gradient(145deg, #090918 0%, #111132 40%, #1a1060 100%);
}
.hp-region--airports {
  background:
    radial-gradient(ellipse at 30% 65%, rgba(20,184,166,0.28) 0%, transparent 55%),
    linear-gradient(145deg, #071c2e 0%, #0c3050 40%, #104568 100%);
}
.hp-region--hakone {
  background:
    radial-gradient(ellipse at 60% 35%, rgba(34,197,94,0.22) 0%, transparent 55%),
    linear-gradient(145deg, #061510 0%, #0c2e1c 40%, #184530 100%);
}
.hp-region--osaka {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(255,90,40,0.35) 0%, transparent 55%),
    linear-gradient(145deg, #280905 0%, #481008 40%, #781a10 100%);
}
.hp-region--shinkansen {
  background:
    radial-gradient(ellipse at 75% 25%, rgba(20,184,166,0.22) 0%, transparent 50%),
    linear-gradient(145deg, #091420 0%, #14202e 40%, #1c2e42 100%);
}
.hp-region--coming {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.55;
  cursor: default;
}
/* Region cards */
.hp-region--tokyo::before,
.hp-region--airports::before,
.hp-region--hakone::before,
.hp-region--osaka::before,
.hp-region--shinkansen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255,255,255,0.02) 28px, rgba(255,255,255,0.02) 29px);
}

/* Trust */
.hp-features {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.hp-features-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
@media (max-width: 767px) {
  .hp-features-row { grid-template-columns: 1fr 1fr; gap: var(--space-6) var(--space-4); }
  .hp-feature-sep { display: none; }
}
.hp-feature-item { display: flex; align-items: center; gap: 14px; padding: 0 24px; }
.hp-feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--teal-light);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hp-feature-title { margin: 0 0 2px; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.hp-feature-sub   { margin: 0; font-size: 12px; color: var(--text-muted); }
.hp-feature-sep   { width: 1px; height: 42px; background: var(--border); flex-shrink: 0; }

/* Region cards */
.hp-region--tokyo {
  background-image: url('/assets/images/generated/gen-tokyo-subway.jpg');
  background-size: cover;
  background-position: center;
}
.hp-region--airports {
  background-image: url('/assets/images/generated/gen-narita-rail.jpg');
  background-size: cover;
  background-position: center 60%;
}
.hp-region--hakone {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg');
  background-size: cover;
  background-position: center;
}
.hp-region--osaka {
  background-image: url('/assets/images/generated/gen-osaka-canal.jpg');
  background-size: cover;
  background-position: center;
}
.hp-region--shinkansen {
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg');
  background-size: cover;
  background-position: center 40%;
}
.hp-region--coming {
  background-image: url('/assets/images/generated/gen-kyoto-transit.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}
/* Section */
.hp-region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,10,20,0.85) 0%, rgba(5,10,20,0.30) 55%, rgba(5,10,20,0.10) 100%);
  border-radius: inherit;
}

/* Bento cards */
.hp-dc--jr {
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg');
  background-size: cover;
  background-position: center right;
}
.hp-dc--jr::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,18,40,0.92) 0%, rgba(8,18,40,0.75) 45%, rgba(8,18,40,0.25) 100%);
  border-radius: inherit;
  z-index: 0;
}
.hp-dc--jr > * { position: relative; z-index: 1; }

.hp-dc--narita {
  background-image: url('/assets/images/generated/gen-narita-rail.jpg');
  background-size: cover;
  background-position: center;
}
.hp-dc--narita::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,20,45,0.92) 0%, rgba(8,20,45,0.65) 55%, rgba(8,20,45,0.20) 100%);
  border-radius: inherit;
  z-index: 0;
}
.hp-dc--narita > * { position: relative; z-index: 1; }

.hp-dc--subway {
  background-image: url('/assets/images/generated/gen-tokyo-subway.jpg');
  background-size: cover;
  background-position: center;
}
.hp-dc--subway::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,10,50,0.92) 0%, rgba(20,10,50,0.65) 55%, rgba(20,10,50,0.20) 100%);
  border-radius: inherit;
  z-index: 0;
}
.hp-dc--subway > * { position: relative; z-index: 1; }

.hp-dc--haneda {
  background-image: url('/assets/images/generated/gen-haneda-transfer.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hp-dc--haneda::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,30,20,0.92) 0%, rgba(5,30,20,0.65) 50%, rgba(5,30,20,0.20) 100%);
  border-radius: inherit;
  z-index: 0;
}
.hp-dc--haneda > * { position: relative; z-index: 1; }

.hp-dc--suica {
  background-image: url('/assets/images/generated/gen-ic-card-gate.jpg');
  background-size: cover;
  background-position: center;
}
.hp-dc--suica::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,251,230,0.55);
  border-radius: inherit;
  z-index: 0;
}
.hp-dc--suica > * { position: relative; z-index: 1; }

.hp-dc--wide {
  background-image: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg');
  background-size: cover;
  background-position: center;
}
.hp-dc--wide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(230,240,255,0.55);
  border-radius: inherit;
  z-index: 0;
}
.hp-dc--wide > * { position: relative; z-index: 1; }

.hp-dc--hakone {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg');
  background-size: cover;
  background-position: center;
}
.hp-dc--hakone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(230,248,235,0.55);
  border-radius: inherit;
  z-index: 0;
}
.hp-dc--hakone > * { position: relative; z-index: 1; }

.hp-dc--osaka {
  background-image: url('/assets/images/generated/gen-osaka-canal.jpg');
  background-size: cover;
  background-position: center;
}
.hp-dc--osaka::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,240,240,0.55);
  border-radius: inherit;
  z-index: 0;
}
.hp-dc--osaka > * { position: relative; z-index: 1; }

/* Section */
.hp-dc--suica,
.hp-dc--wide,
.hp-dc--hakone,
.hp-dc--osaka {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  aspect-ratio: 16 / 9;
  min-height: unset;
}
.hp-dc--suica  { background-color: #FFFBEB; }
.hp-dc--wide   { background-color: #EFF6FF; }
.hp-dc--hakone { background-color: #F0FDF4; }
.hp-dc--osaka  { background-color: #FFF5F5; }
/* Section */
.hp-dc--suica::before,
.hp-dc--wide::before,
.hp-dc--hakone::before,
.hp-dc--osaka::before { display: none; }

/* How it works */
.hp-how-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.hp-how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hp-how-card--result {
  background: linear-gradient(145deg, #0B1D3A 0%, #0F2848 100%);
  border-color: transparent;
}
.hp-how-card-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 10px;
}
.hp-how-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
}
.hp-how-card--result .hp-how-card-title { color: #fff; }
.hp-how-card-ui {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 4px 0;
  border: 1px solid var(--border);
}
.hp-how-ui-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
}
.hp-how-ui-label { font-size: 12px; color: var(--text-muted); }
.hp-how-ui-value { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.hp-how-val--bad  { color: #DC2626; }
.hp-how-val--good { color: #16A34A; }
.hp-how-val--save { color: var(--teal); font-size: 14px; }
.hp-how-ui-divider { height: 1px; background: var(--border); margin: 0 14px; }

.hp-how-card-verdict {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
}
.hp-how-verdict-badge {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
.hp-how-verdict--skip {
  background: rgba(20,184,166,0.15);
  color: #5EEAD4;
  border: 1px solid rgba(20,184,166,0.3);
}
.hp-how-verdict-saving { text-align: center; }
.hp-how-verdict-num   { display: block; font-size: 28px; font-weight: 800; color: #5EEAD4; }
.hp-how-verdict-label { display: block; font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.hp-how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  padding: 0 16px;
}

@media (max-width: 767px) {
  .hp-how-cards { grid-template-columns: 1fr; }
  .hp-how-arrow { transform: rotate(90deg); padding: 8px 0; }
}

/* Badges */
.hp-trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.hp-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hp-trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.hp-trust-badge-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hp-trust-badge-item { padding: 8px 16px; font-size: 13px; }
  .hp-trust-badge-sep  { display: none; }
}

/* Section */
.hp-why { background: var(--bg-light); padding: 80px 0; }
.hp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.hp-why-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-2px); }
.hp-why-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.hp-why-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.hp-why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .hp-why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hp-why-num  { font-size: 40px; }
}

/* Layout */
.hp-faq { background: var(--white); padding: 80px 0; }

.hp-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Section */
.hp-faq-image {
  position: sticky;
  top: 32px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.hp-faq-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.hp-faq-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: linear-gradient(to top, rgba(5,10,20,0.80) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

/* FAQ */
.hp-faq-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}
.hp-faq-header { margin-bottom: 32px; }
.hp-faq-header h2 { margin: 0 0 6px; font-size: 32px; }
.hp-faq-header p  { margin: 0; color: var(--text-muted); font-size: 15px; }

.hp-faq-list { border-top: 1px solid var(--border); }

.hp-faq-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.hp-faq-all:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .hp-faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .hp-faq-image  { position: static; }
  .hp-faq-image img { height: 260px; }
}

/* Section */
.hp-proof {
  background: var(--brand-navy);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hp-proof-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 36px;
}
.hp-proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}
.hp-proof-card {
  text-align: center;
  padding: 0 32px;
}
.hp-proof-num {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hp-proof-plus {
  font-size: 36px;
  font-weight: 700;
  color: var(--teal);
  vertical-align: super;
  margin-left: 2px;
}
.hp-proof-unit {
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  margin-left: 2px;
}
.hp-proof-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hp-proof-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hp-proof-grid { grid-template-columns: 1fr; gap: 28px; }
  .hp-proof-divider { display: none; }
  .hp-proof-num { font-size: 40px; }
}

/* Hero */
.hp-hero-overlay {
  background: none !important;
}
.hp-hero-headline,
.hp-hero-sub,
.hp-hero-body,
.hp-hero-eyebrow {
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

/* Bento cards */
.hp-dc--jr::before,
.hp-dc--narita::before,
.hp-dc--subway::before,
.hp-dc--haneda::before {
  display: none !important;
}
/* Section */
.hp-dc--jr *,
.hp-dc--narita *,
.hp-dc--subway *,
.hp-dc--haneda * {
  text-shadow: 0 1px 6px rgba(0,0,0,0.70);
}

/* Bento cards */
.hp-dc--jr *,
.hp-dc--narita *,
.hp-dc--subway *,
.hp-dc--haneda * {
  text-shadow: none !important;
}

/* Section */
.hp-dc--narita,
.hp-dc--subway,
.hp-dc--haneda {
  position: relative;
}
.hp-dc--narita::after,
.hp-dc--subway::after,
.hp-dc--haneda::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,12,28,0.72) 0%,
    rgba(5,12,28,0.50) 42%,
    rgba(5,12,28,0.0) 75%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.hp-dc--narita > *,
.hp-dc--subway > *,
.hp-dc--haneda > * { position: relative; z-index: 1; }

/* Section */
.hp-dc--jr::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,12,28,0.80) 0%,
    rgba(5,12,28,0.55) 40%,
    rgba(5,12,28,0.0) 70%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.hp-dc--jr > * { position: relative; z-index: 1; }

/* How it works */
.hp-how-v2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.hp-how-v2-step { display: flex; flex-direction: column; gap: 10px; }
.hp-how-v2-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--teal);
  padding: 4px 10px;
  background: rgba(20,184,166,0.10);
  border-radius: 999px;
  width: fit-content;
  border: 1px solid rgba(20,184,166,0.25);
}
.hp-how-v2-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.hp-how-v2-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-light);
}

/* Section */
.hp-how-v2-inputs { padding: 6px 0; }
.hp-how-v2-input-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
}
.hp-how-v2-input-row:last-child { border-bottom: none; }
.hp-how-v2-input-label { font-size: 12px; color: var(--text-muted); }
.hp-how-v2-input-val   { font-size: 13px; font-weight: 700; color: var(--text-primary); }

/* Section */
.hp-how-v2-compare {
  display: flex;
  align-items: stretch;
  padding: 16px;
  gap: 10px;
}
.hp-how-v2-option {
  flex: 1;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  border: 1px solid var(--border);
}
.hp-how-v2-option--lose { background: #FFF5F5; border-color: #FCA5A5; }
.hp-how-v2-option--win  { background: #F0FDF4; border-color: #86EFAC; }
.hp-how-v2-option-name  { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.hp-how-v2-option-price { font-size: 20px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.hp-how-v2-option--lose .hp-how-v2-option-price { color: #DC2626; }
.hp-how-v2-option--win  .hp-how-v2-option-price { color: #16A34A; }
.hp-how-v2-option-tag   { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.hp-how-v2-tag--over  { background: #FEE2E2; color: #DC2626; }
.hp-how-v2-tag--save  { background: #DCFCE7; color: #16A34A; }
.hp-how-v2-vs {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  align-self: center;
  flex-shrink: 0;
}

/* Section */
.hp-how-v2-card--result {
  background: linear-gradient(145deg, #071628 0%, #0B2240 60%, #0D2D52 100%);
  border-color: rgba(20,184,166,0.25);
}
.hp-how-v2-card--result .hp-how-v2-card-header {
  background: rgba(20,184,166,0.08);
  border-bottom-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.hp-how-v2-result { padding: 20px 18px; text-align: center; }
.hp-how-v2-verdict {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: #5EEAD4;
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.30);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 18px;
}
.hp-how-v2-saving-block { margin-bottom: 14px; }
.hp-how-v2-saving-num {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hp-how-v2-saving-label {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  margin-top: 6px;
}
.hp-how-v2-breakdown {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.hp-how-v2-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  padding-top: 42px;
}

@media (max-width: 900px) {
  .hp-how-v2 { grid-template-columns: 1fr; }
  .hp-how-v2-arrow { padding: 8px 0; transform: rotate(90deg); }
  .hp-how-v2-saving-num { font-size: 40px; }
}

/* Bento cards */
.hp-dc--suica,
.hp-dc--wide,
.hp-dc--hakone,
.hp-dc--osaka {
  aspect-ratio: 16 / 12 !important;
}

/* Trust */
.hp-trust-v2 {
  background: var(--bg-light);
  padding: 80px 0;
}
.hp-trust-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Section */
.hp-trust-v2-card:nth-child(4),
.hp-trust-v2-card:nth-child(5) {
  grid-column: span 1;
}
.hp-trust-v2-grid::after {
  content: '';
  grid-column: span 1;
}
/* Section */
@supports (display: grid) {
  .hp-trust-v2-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .hp-trust-v2-card { grid-column: span 2; }
  .hp-trust-v2-card:nth-child(4) { grid-column: 2 / span 2; }
  .hp-trust-v2-card:nth-child(5) { grid-column: 4 / span 2; }
}

.hp-trust-v2-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.hp-trust-v2-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.hp-trust-v2-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(20,184,166,0.10);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.hp-trust-v2-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
}
.hp-trust-v2-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .hp-trust-v2-grid { grid-template-columns: 1fr 1fr !important; }
  .hp-trust-v2-card { grid-column: span 1 !important; }
}
@media (max-width: 600px) {
  .hp-trust-v2-grid { grid-template-columns: 1fr !important; }
}

/* FAQ */
.hp-faq-v2-header {
  text-align: center;
  margin-bottom: 3rem;
}
.hp-faq-v2-header .hp-faq-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary, #0a7ea4);
  margin-bottom: 0.75rem;
}
.hp-faq-v2-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text, #1a202c);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.3;
}
.hp-faq-v2-grid {
  display: grid;
  gap: 1.5rem;
}
.hp-faq-card {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 14px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.hp-faq-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.hp-faq-card-q {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text, #1a202c);
  margin: 0 0 1rem;
  line-height: 1.35;
}
.hp-faq-card-short {
  font-size: 0.97rem;
  color: #374151;
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-left: 3px solid var(--color-primary, #0a7ea4);
  border-radius: 0 8px 8px 0;
}
.hp-faq-card-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.hp-faq-card-col {
  background: #f9fafb;
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.hp-faq-card-col--yes {
  border-top: 3px solid #22c55e;
}
.hp-faq-card-col--no {
  border-top: 3px solid #ef4444;
}
.hp-faq-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin: 0 0 0.6rem;
}
.hp-faq-card-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hp-faq-card-col li {
  font-size: 0.88rem;
  color: #374151;
  padding: 0.25rem 0;
  padding-left: 1.1em;
  position: relative;
  line-height: 1.45;
}
.hp-faq-card-col--yes li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 0.75rem;
}
.hp-faq-card-col--no li::before {
  content: '-' ;
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
  font-size: 0.85rem;
}
.hp-faq-card-rec {
  font-size: 0.88rem;
  color: #374151;
  background: #f0f7ff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.hp-faq-rec-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-primary, #0a7ea4);
  border-radius: 4px;
  padding: 0.2em 0.5em;
  margin-top: 0.1em;
}
.hp-faq-v2-footer {
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width: 640px) {
  .hp-faq-card { padding: 1.25rem; }
  .hp-faq-card-cols { grid-template-columns: 1fr; }
}

/* Section */
.sp-progress {
  height: 4px;
  background: #e8edf2;
  border-radius: 99px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.sp-progress-bar {
  height: 100%;
  background: var(--color-primary, #0a7ea4);
  border-radius: 99px;
  transition: width 0.3s ease;
}
.sp-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary, #0a7ea4);
  margin: 0 0 0.5rem;
}
.sp-step-q {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text, #1a202c);
  margin: 0 0 1.25rem;
  line-height: 1.35;
}
.sp-options {
  display: grid;
  gap: 0.65rem;
}
.sp-opt {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: var(--radius-md, 10px);
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text, #1a202c);
  text-align: left;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  width: 100%;
}
.sp-opt:hover {
  border-color: var(--color-primary, #0a7ea4);
  background: #f0f9ff;
}
.sp-opt--selected {
  border-color: var(--color-primary, #0a7ea4);
  background: #e0f2fe;
  box-shadow: 0 0 0 3px rgba(10,126,164,0.12);
}
.sp-opt-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}
.sp-opt-label {
  line-height: 1.3;
}
.sp-back-btn {
  background: none;
  border: none;
  color: var(--color-primary, #0a7ea4);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: 0.75rem;
}
.sp-back-btn:hover { text-decoration: underline; }

/* Result card */
.sp-result-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sp-result-badge {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.sp-result-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text, #1a202c);
  margin: 0 0 1.5rem;
}
.sp-result-body {
  display: grid;
  gap: 1.25rem;
}
.sp-result-block {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.sp-result-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin: 0 0 0.4rem;
}
.sp-result-block p:last-child { margin: 0; font-size: 0.92rem; color: #374151; line-height: 1.55; }
.sp-result-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sp-result-col {
  background: #f9fafb;
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.sp-result-col--pros { border-top: 3px solid #22c55e; }
.sp-result-col--cons { border-top: 3px solid #ef4444; }
.sp-result-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin: 0 0 0.6rem;
}
.sp-result-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
}
.sp-result-col li {
  font-size: 0.85rem;
  color: #374151;
  padding-left: 1.1em;
  position: relative;
  line-height: 1.45;
}
.sp-result-col--pros li::before { content: '+'; position: absolute; left: 0; color: #22c55e; font-weight: 700; font-size: 0.75rem; }
.sp-result-col--cons li::before { content: '-' ; position: absolute; left: 0; color: #ef4444; font-weight: 700; }
.sp-result-bestfor {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #374151;
  background: #f0f7ff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  line-height: 1.5;
}
.sp-bestfor-label {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-primary, #0a7ea4);
  border-radius: 4px;
  padding: 0.2em 0.5em;
  margin-top: 0.1em;
}
.sp-restart {
  background: none;
  border: none;
  color: var(--color-primary, #0a7ea4);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: 0.25rem;
  display: block;
}
.sp-restart:hover { text-decoration: underline; }
.sp-result-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8edf2;
}
.sp-result-cta-text {
  font-size: 0.88rem;
  color: #6b7280;
  margin: 0 0 0.75rem;
}

/* Section */
.sp-info-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.sp-info-col {
  background: #f9fafb;
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.sp-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin: 0 0 0.6rem;
}
.sp-info-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.sp-info-col li {
  font-size: 0.88rem;
  color: #374151;
  padding-left: 1em;
  position: relative;
  line-height: 1.45;
}
.sp-info-col li::before { content: '-' ; position: absolute; left: 0; color: var(--color-primary, #0a7ea4); font-weight: 700; }
.quick-answer-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.4rem;
}
.quick-answer-list li {
  font-size: 0.92rem;
  color: #374151;
  padding-left: 1.3em;
  position: relative;
  line-height: 1.5;
}
.quick-answer-list li::before { content: '+'; position: absolute; left: 0; color: #22c55e; font-weight: 700; font-size: 0.8rem; }

/* Section */
.sp-rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.sp-rec-card {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.sp-rec-card-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.sp-rec-card h3 { font-size: 0.97rem; font-weight: 700; margin: 0; color: var(--color-text, #1a202c); }
.sp-rec-card p { font-size: 0.87rem; color: #374151; margin: 0 0 0.5rem; line-height: 1.5; }
.sp-rec-note { font-size: 0.8rem !important; color: #6b7280 !important; }
.sp-rec-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2em 0.55em;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-rec-tag--suica   { background: #dbeafe; color: #1d4ed8; }
.sp-rec-tag--welcome { background: #dcfce7; color: #15803d; }
.sp-rec-tag--mobile  { background: #ede9fe; color: #7c3aed; }
.sp-rec-tag--pasmo   { background: #fee2e2; color: #b91c1c; }
.sp-rec-tag--passport{ background: #fef3c7; color: #92400e; }

/* Section */
.sp-qa-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8edf2;
}
.sp-qa-block:last-child { border-bottom: none; }
.sp-qa-block h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-text, #1a202c); margin: 0 0 0.75rem; }
.sp-qa-block p { font-size: 0.93rem; color: #374151; line-height: 1.65; margin: 0; }

@media (max-width: 640px) {
  .sp-result-cols { grid-template-columns: 1fr; }
  .sp-info-cols   { grid-template-columns: 1fr; }
  .sp-rec-grid    { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .sp-rec-grid { grid-template-columns: 1fr 1fr; }
}

/* Section */
.twp-dest-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: var(--radius-md, 10px);
  cursor: pointer;
  background: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.twp-dest-row:hover { background: #f8fafc; border-color: #c7d2e0; }
.twp-dest-row--checked { background: #ebf2ff; border-color: var(--color-primary, #0a7ea4); }
.twp-dest-check input { width: 16px; height: 16px; accent-color: var(--brand-blue, #0a7ea4); flex-shrink: 0; cursor: pointer; }
.twp-dest-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.twp-dest-name { font-size: 0.9rem; font-weight: 600; color: var(--color-text, #1a202c); }
.twp-dest-note { font-size: 0.75rem; color: #6b7280; }
.twp-dest-fare { font-size: 0.9rem; font-weight: 700; color: var(--text-secondary, #4b5563); white-space: nowrap; flex-shrink: 0; }

/* Section */
.twp-saving-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 10px;
  margin: 1rem 0;
}
.twp-saving-label { font-size: 0.8rem; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.06em; }
.twp-saving-amount { font-size: 1.1rem; font-weight: 800; color: #374151; }
.twp-saving--positive { color: #15803d; }
.twp-saving--neutral  { color: #92400e; }
.twp-saving--negative { color: #b91c1c; }

/* Section */
.twp-result-tier { margin: 1rem 0 0.5rem; }
.twp-tier-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.7rem;
  text-align: center;
  font-weight: 600;
}
.twp-tier-segment {
  padding: 0.5rem 0.25rem;
  line-height: 1.3;
}
.twp-tier-segment small { font-weight: 400; opacity: 0.85; }
.twp-tier--no    { background: #fee2e2; color: #b91c1c; }
.twp-tier--maybe { background: #fef3c7; color: #92400e; }
.twp-tier--yes   { background: #dcfce7; color: #15803d; }

/* Section */
.twp-cta-bar { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid #e8edf2; }

/* Section */
.twp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.twp-price-card {
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}
.twp-price-type   { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; margin: 0 0 0.4rem; }
.twp-price-amount { font-size: 1.6rem; font-weight: 800; color: var(--color-text, #1a202c); margin: 0 0 0.25rem; }
.twp-price-note   { font-size: 0.75rem; color: #9ca3af; margin: 0; }

@media (max-width: 640px) {
  .twp-price-grid { grid-template-columns: 1fr; }
}

/* Section */
.twp-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.twp-route-card {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.twp-route-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.08); }
.twp-route-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.twp-route-cities {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.twp-route-from {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b7280;
}
.twp-route-arrow {
  color: var(--color-primary, #0a7ea4);
  font-weight: 700;
  font-size: 0.9rem;
}
.twp-route-to {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text, #1a202c);
}
.twp-route-tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: #f0f7ff;
  color: var(--color-primary, #0a7ea4);
  border-radius: 4px;
  padding: 0.2em 0.55em;
  white-space: nowrap;
}
.twp-route-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 10px;
}
.twp-route-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.twp-route-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin: 0;
}
.twp-route-stat-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text, #1a202c);
  margin: 0;
  white-space: nowrap;
}
.twp-route-stat-value--saving { color: #15803d; }
.twp-route-stat-note {
  font-size: 0.68rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.3;
}
.twp-route-verdict {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  line-height: 1.4;
  margin-top: auto;
}
.twp-route-verdict--neutral {
  background: #fef3c7;
  color: #92400e;
}
.twp-route-verdict--good {
  background: #dcfce7;
  color: #15803d;
}
@media (max-width: 900px) {
  .twp-routes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .twp-routes-grid { grid-template-columns: 1fr; }
  .twp-route-stats { grid-template-columns: 1fr 1fr 1fr; }
}

/* Section */
.hk-yn-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: var(--space-3, 0.75rem);
}
.hk-yn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.hk-yn-row:last-child { border-bottom: none; }
.hk-yn-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.hk-yn-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text, #1a202c);
}
.hk-yn-note {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.3;
}
.hk-yn-btns {
  flex-shrink: 0;
  min-width: 110px;
}

/* Section */
.hk-result-detail {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
.hk-result-block {
  background: #f8fafc;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
}
.hk-result-block-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin: 0 0 0.35rem;
}
.hk-result-block p {
  font-size: 0.87rem;
  color: #374151;
  margin: 0;
  line-height: 1.55;
}

/* Section */
.hk-itin-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #6b7280;
  padding: 0.6rem 0;
}
.hk-itin-steps span { color: #374151; font-weight: 500; }
.hk-itin-steps .twp-route-arrow { color: var(--color-primary, #0a7ea4); font-weight: 700; }

@media (max-width: 580px) {
  .hk-yn-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .hk-yn-btns { align-self: flex-start; }
  .twp-price-grid[style*="repeat(4"] { grid-template-columns: 1fr 1fr !important; }
}

/* Section */
.hk-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.hk-route-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.hk-route-card-top {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.hk-route-card-top--blue  { background: #eff6ff; }
.hk-route-card-top--teal  { background: #f0fdf4; }
.hk-route-card-top--red   { background: #fef2f2; }
.hk-route-card-top--green { background: #f0fdf4; }
.hk-route-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #9ca3af;
  line-height: 1;
  flex-shrink: 0;
}
.hk-route-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}
.hk-route-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.hk-route-for {
  font-size: 0.88rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}
.hk-route-path {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.78rem;
  color: #6b7280;
  background: #f9fafb;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
}
.hk-ra {
  color: #d1d5db;
  font-size: 0.7rem;
}
.hk-route-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.hk-route-stat {
  background: #f9fafb;
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
}
.hk-route-stat-label {
  font-size: 0.7rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.2;
}
.hk-route-stat-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
  margin: 0.15rem 0 0;
}
.hk-route-verdict {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-align: center;
}
.hk-route-verdict--yes  { background: #d1fae5; color: #065f46; }
.hk-route-verdict--maybe { background: #fef3c7; color: #92400e; }
.hk-route-tip {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.hk-route-tip a { color: var(--color-primary, #2563eb); }

/* Section */

/* Section */
.shk-city-seg {
  flex-wrap: wrap;
}

/* Section */
.shk-dest-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.shk-dest-grid .twp-dest-row {
  border-radius: 0;
  border-bottom: 1px solid #e5e7eb;
}
.shk-dest-grid .twp-dest-row:last-child {
  border-bottom: none;
}

/* Section */
.shk-saving-display {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.shk-saving--positive { color: #065F46; }
.shk-saving--neutral  { color: #92400E; }
.shk-saving--negative { color: #991B1B; }

/* Layout */
.shk-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .shk-info-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Section */
.shk-coverage-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
}
.shk-coverage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.shk-coverage-table td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
}
.shk-coverage-table tr:last-child td { border-bottom: none; }
.shk-cov--yes { color: #065F46; font-weight: 600; white-space: nowrap; }
.shk-cov--no  { color: #991B1B; font-weight: 600; white-space: nowrap; }

/* Section */
.shk-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.shk-price-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.shk-price-card--featured {
  border-color: #14B8A6;
  box-shadow: 0 0 0 2px rgba(20,184,166,0.15);
}
.shk-price-type {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.shk-price-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  letter-spacing: -0.02em;
}
.shk-price-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}
.shk-price-break-even {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #f3f4f6;
}
.shk-price-footnote {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 1rem;
}

/* Section */
.shk-fare-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}
.shk-fare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.shk-fare-table th {
  background: #f9fafb;
  padding: 0.6rem 0.9rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}
.shk-fare-table td {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
  white-space: nowrap;
}
.shk-fare-table tr:last-child td { border-bottom: none; }

/* Section */
.shk-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 640px) {
  .shk-compare-grid { grid-template-columns: 1fr; }
}
.shk-compare-card {
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid transparent;
}
.shk-compare-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.shk-compare-card ul {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}
.shk-compare-card a { color: #14B8A6; }
.shk-compare-card--pass {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.shk-compare-card--pass h3 { color: #065F46; }
.shk-compare-card--individual {
  background: #fef2f2;
  border-color: #fecaca;
}
.shk-compare-card--individual h3 { color: #991B1B; }

/* Section */
.shk-scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.shk-scenario {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
}
.shk-scenario-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.shk-scenario-label--yes  { color: #065F46; }
.shk-scenario-label--maybe { color: #92400E; }
.shk-scenario h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #111827;
}
.shk-scenario-route {
  font-size: 0.78rem;
  color: #6b7280;
  font-family: monospace;
  margin: 0 0 0.6rem;
  line-height: 1.4;
}
.shk-scenario p:last-child {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}

/* Section */
.shk-reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.shk-reason-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.shk-reason-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e5e7eb;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.1rem;
}
.shk-reason-item h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
}
.shk-reason-item p {
  font-size: 0.84rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.shk-reason-item a { color: #14B8A6; }


/* Section */
.tool-hub-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background: #0b1220 url('/assets/images/hero-shinkansen-fuji.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.tool-hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,14,28,.92), rgba(7,14,28,.62) 48%, rgba(7,14,28,.24)), linear-gradient(0deg, rgba(7,14,28,.88), rgba(7,14,28,.05) 56%);
}
.tool-hub-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: end;
  padding: 86px 0 54px;
}
.tool-hub-kicker {
  margin: 0 0 14px;
  color: #5eead4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tool-hub-title {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .94;
  font-weight: 900;
}
.tool-hub-sub {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.65;
}
.tool-hub-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.tool-hub-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
  max-width: 690px;
}
.tool-hub-proof__item {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  padding: 14px 16px;
}
.tool-hub-proof__num { display: block; color: #fff; font-size: 24px; font-weight: 900; line-height: 1; }
.tool-hub-proof__label { display: block; margin-top: 6px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.35; }
.tool-hub-panel {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.tool-hub-panel__title { margin: 0 0 14px; color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.tool-hub-route { display: flex; flex-direction: column; gap: 10px; }
.tool-hub-route__step { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; padding: 12px; border-radius: 8px; background: rgba(255,255,255,.10); }
.tool-hub-route__num { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #14b8a6; color: #05211e; font-size: 13px; font-weight: 900; }
.tool-hub-route__name { color: #fff; font-size: 14px; font-weight: 800; }
.tool-hub-route__hint { color: rgba(255,255,255,.66); font-size: 12px; }
.tool-hub-route__tag { color: #5eead4; font-size: 12px; font-weight: 800; }
.premium-section { padding: 56px 0; background: #f8fafc; }
.premium-section--white { background: #fff; }
.premium-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 24px; }
.premium-heading h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); line-height: 1.05; letter-spacing: 0; }
.premium-heading p { margin: 0; max-width: 560px; color: #64748b; line-height: 1.6; }
.tool-grid-premium { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.tool-card-premium {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  background: #111827;
  box-shadow: 0 18px 44px rgba(15,23,42,.16);
  border: 1px solid rgba(15,23,42,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tool-card-premium:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(15,23,42,.22); }
.tool-card-premium::before { content: ''; position: absolute; inset: 0; background-image: var(--tool-img); background-size: cover; background-position: center; transform: scale(1.01); transition: transform .22s ease; }
.tool-card-premium:hover::before { transform: scale(1.06); }
.tool-card-premium::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,6,23,.92), rgba(2,6,23,.38) 58%, rgba(2,6,23,.08)); }
.tool-card-premium__body { position: relative; z-index: 1; padding: 22px; }
.tool-card-premium__meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.tool-card-premium__area { color: #5eead4; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tool-card-premium__status { padding: 4px 8px; border-radius: 999px; background: rgba(20,184,166,.18); color: #ccfbf1; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.tool-card-premium h3 { margin: 0; color: #fff; font-size: 22px; line-height: 1.12; font-weight: 900; }
.tool-card-premium p { margin: 10px 0 16px; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.55; }
.tool-card-premium__cta { display: inline-flex; color: #fff; font-size: 13px; font-weight: 900; }
.tool-card-premium--small { min-height: 300px; }
.tool-card-premium--coming::after { background: linear-gradient(0deg, rgba(15,23,42,.94), rgba(15,23,42,.74)); }
.tool-card-premium--coming .tool-card-premium__status { background: rgba(255,255,255,.14); color: rgba(255,255,255,.78); }
.workflow-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; border: 1px solid #dbe3ef; border-radius: 8px; overflow: hidden; background: #dbe3ef; }
.workflow-step { background: #fff; padding: 18px; }
.workflow-step span { display: block; color: #14b8a6; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.workflow-step strong { display: block; margin-top: 8px; color: #0f172a; font-size: 16px; line-height: 1.25; }
.workflow-step p { margin: 8px 0 0; color: #64748b; font-size: 13px; line-height: 1.5; }
.tool-network { padding: 52px 0; background: #0f172a; color: #fff; }
.tool-network__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 22px; }
.tool-network__head h2 { margin: 0; color: #fff; font-size: clamp(24px, 3vw, 36px); line-height: 1.08; }
.tool-network__head p { margin: 8px 0 0; max-width: 650px; color: rgba(255,255,255,.68); line-height: 1.55; }
.tool-network__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.tool-network-card { position: relative; min-height: 190px; overflow: hidden; border-radius: 8px; color: #fff; text-decoration: none; background: #111827; border: 1px solid rgba(255,255,255,.10); }
.tool-network-card::before { content: ''; position: absolute; inset: 0; background-image: var(--tool-img); background-size: cover; background-position: center; opacity: .56; transition: transform .2s ease, opacity .2s ease; }
.tool-network-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,6,23,.94), rgba(2,6,23,.22)); }
.tool-network-card:hover::before { transform: scale(1.06); opacity: .72; }
.tool-network-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; min-height: 190px; padding: 16px; }
.tool-network-card small { color: #5eead4; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.tool-network-card strong { display: block; margin-top: 7px; color: #fff; font-size: 17px; line-height: 1.15; }
.tool-network-card span { display: block; margin-top: 10px; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.45; }
.tool-network__foot { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 18px; padding: 16px 18px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); }
.tool-network__foot p { margin: 0; color: rgba(255,255,255,.74); font-size: 14px; }
@media (max-width: 1079px) {
  .tool-hub-hero__inner { grid-template-columns: 1fr; }
  .tool-hub-panel { max-width: 520px; }
  .tool-grid-premium { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-strip { grid-template-columns: 1fr; }
  .tool-network__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .tool-hub-hero { min-height: auto; }
  .tool-hub-hero__inner { padding: 68px 0 34px; }
  .tool-hub-title { font-size: 42px; }
  .tool-hub-sub { font-size: 16px; }
  .tool-hub-proof { grid-template-columns: 1fr; }
  .premium-heading, .tool-network__head, .tool-network__foot { display: block; }
  .tool-grid-premium, .tool-network__grid { grid-template-columns: 1fr; }
  .tool-card-premium { min-height: 330px; }
}


/* Section */
.guide-tool-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: stretch;
  margin: 26px 0 34px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15,23,42,.10);
}
.guide-tool-callout__body { padding: 24px; }
.guide-tool-callout__label { margin: 0 0 9px; color: #0d9488; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.guide-tool-callout h2 { margin: 0 0 10px; color: #0f172a; font-size: 26px; line-height: 1.08; }
.guide-tool-callout p { margin: 0 0 18px; color: #475569; font-size: 15px; line-height: 1.6; }
.guide-tool-callout__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0 20px; }
.guide-tool-callout__stat { padding: 12px; border-radius: 8px; background: #f8fafc; border: 1px solid #e2e8f0; }
.guide-tool-callout__stat strong { display: block; color: #0f172a; font-size: 18px; line-height: 1; }
.guide-tool-callout__stat span { display: block; margin-top: 6px; color: #64748b; font-size: 11px; line-height: 1.3; }
.guide-tool-callout__image { min-height: 100%; background: #0f172a url('/assets/images/generated/gen-tokyo-subway.jpg') center/cover no-repeat; position: relative; }
.guide-tool-callout__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,23,42,.72), rgba(15,23,42,.08)); }
@media (max-width: 760px) {
  .guide-tool-callout { grid-template-columns: 1fr; }
  .guide-tool-callout__image { min-height: 180px; order: -1; }
  .guide-tool-callout__stats { grid-template-columns: 1fr; }
}


/* Section */
.tool-hub-hero::before,
.tool-card-premium::after,
.tool-network-card::after,
.guide-tool-callout__image::after,
.page-hero-banner::after,
.hp-region-overlay,
.hp-dc--jr::before,
.hp-dc--narita::before,
.hp-dc--subway::before,
.hp-dc--haneda::before,
.hp-dc--narita::after,
.hp-dc--subway::after,
.hp-dc--haneda::after,
.hp-dc--jr::after {
  display: none !important;
}

.tool-card-premium::before,
.tool-network-card::before,
.hp-region--tokyo::before,
.hp-region--airports::before,
.hp-region--hakone::before,
.hp-region--osaka::before,
.hp-region--shinkansen::before {
  opacity: 1 !important;
  filter: none !important;
}

.tool-card-premium__body {
  margin: auto 12px 12px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 12px 30px rgba(15,23,42,.16);
  backdrop-filter: blur(10px);
}
.tool-card-premium h3,
.tool-card-premium p,
.tool-card-premium__cta { color: #0f172a; }
.tool-card-premium__area { color: #0d9488; }
.tool-card-premium__status {
  background: #ccfbf1;
  color: #0f766e;
}
.tool-card-premium--coming .tool-card-premium__status {
  background: #e2e8f0;
  color: #475569;
}

.tool-network-card__body {
  justify-content: flex-end;
  margin: 10px;
  min-height: 170px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 12px 30px rgba(15,23,42,.16);
  backdrop-filter: blur(10px);
}
.tool-network-card small { color: #0d9488; }
.tool-network-card strong,
.tool-network-card span { color: #0f172a; }

.tool-hub-title,
.tool-hub-sub,
.tool-hub-kicker,
.tool-hub-panel,
.tool-hub-proof__item {
  text-shadow: 0 2px 14px rgba(0,0,0,.38);
}
.tool-hub-panel,
.tool-hub-proof__item {
  background: rgba(15,23,42,.52);
  border-color: rgba(255,255,255,.22);
}

.hp-region-body {
  margin: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(15,23,42,.58);
  backdrop-filter: blur(8px);
}
.hp-region-list li { color: rgba(255,255,255,.88); }

.page-hero-banner {
  min-height: 190px;
  background-position: center 44%;
}

.guide-tool-callout__image {
  background-color: transparent;
}


/* Hero */
.platform-hero-overlay,
.tool-page-hero-overlay,
.hp-hero-overlay {
  display: none !important;
}
.platform-hero-content,
.tool-page-hero-content,
.hp-hero-left,
.hp-hero-right {
  text-shadow: 0 2px 14px rgba(0,0,0,.42);
}
.hp-result-card,
.calculator-card,
.tool-panel {
  text-shadow: none;
}


/* Layout */
.tool-card-premium {
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  background: #fff !important;
  color: #0f172a !important;
  overflow: hidden !important;
}
.tool-card-premium::before {
  position: relative !important;
  display: block !important;
  flex: 0 0 210px !important;
  inset: auto !important;
  width: 100% !important;
  min-height: 210px !important;
  background-image: var(--tool-img) !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
.tool-card-premium:hover::before {
  transform: none !important;
}
.tool-card-premium::after {
  display: none !important;
}
.tool-card-premium__body {
  position: relative !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: 18px !important;
  border: 0 !important;
  border-top: 1px solid #e2e8f0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.tool-card-premium__meta {
  margin-bottom: 10px !important;
}
.tool-card-premium__area {
  color: #0d9488 !important;
}
.tool-card-premium__status {
  background: #ccfbf1 !important;
  color: #0f766e !important;
}
.tool-card-premium--coming .tool-card-premium__status {
  background: #e2e8f0 !important;
  color: #475569 !important;
}
.tool-card-premium h3 {
  color: #0f172a !important;
}
.tool-card-premium p {
  color: #475569 !important;
}
.tool-card-premium__cta {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  margin-top: 2px !important;
  padding: 0 12px !important;
  border-radius: 6px !important;
  background: #0f172a !important;
  color: #fff !important;
  font-size: 12px !important;
  text-decoration: none !important;
}
.tool-card-premium--coming .tool-card-premium__cta {
  background: #f1f5f9 !important;
  color: #475569 !important;
}
.tool-card-premium--small::before {
  flex-basis: 180px !important;
  min-height: 180px !important;
}

.tool-network-card {
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
}
.tool-network-card::before {
  position: relative !important;
  display: block !important;
  flex: 0 0 130px !important;
  inset: auto !important;
  width: 100% !important;
  min-height: 130px !important;
  background-image: var(--tool-img) !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
.tool-network-card:hover::before {
  transform: none !important;
  opacity: 1 !important;
}
.tool-network-card::after {
  display: none !important;
}
.tool-network-card__body {
  position: relative !important;
  z-index: 1 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 14px !important;
  border: 0 !important;
  border-top: 1px solid rgba(226,232,240,.9) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.tool-network-card small {
  color: #0d9488 !important;
}
.tool-network-card strong {
  color: #0f172a !important;
}
.tool-network-card span {
  color: #475569 !important;
}

@media (max-width: 640px) {
  .tool-card-premium::before {
    flex-basis: 190px !important;
    min-height: 190px !important;
  }
  .tool-card-premium--small::before {
    flex-basis: 170px !important;
    min-height: 170px !important;
  }
}


/* Section */
.tool-card-premium::before {
  flex-basis: 235px !important;
  min-height: 235px !important;
}
.tool-card-premium__body {
  padding: 12px 14px 13px !important;
}
.tool-card-premium__meta {
  margin-bottom: 6px !important;
}
.tool-card-premium__area {
  font-size: 10px !important;
  letter-spacing: .08em !important;
}
.tool-card-premium__status {
  padding: 3px 7px !important;
  font-size: 9px !important;
}
.tool-card-premium h3 {
  font-size: 18px !important;
  line-height: 1.12 !important;
}
.tool-card-premium p {
  margin: 7px 0 10px !important;
  font-size: 12.5px !important;
  line-height: 1.42 !important;
}
.tool-card-premium__cta {
  min-height: 28px !important;
  padding: 0 10px !important;
  font-size: 11px !important;
  border-radius: 5px !important;
}
.tool-card-premium--small::before {
  flex-basis: 205px !important;
  min-height: 205px !important;
}
.tool-network-card::before {
  flex-basis: 150px !important;
  min-height: 150px !important;
}
.tool-network-card__body {
  padding: 10px 12px 12px !important;
}
.tool-network-card small {
  font-size: 9px !important;
}
.tool-network-card strong {
  margin-top: 5px !important;
  font-size: 14px !important;
}
.tool-network-card span {
  margin-top: 6px !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}
@media (max-width: 640px) {
  .tool-card-premium::before {
    flex-basis: 210px !important;
    min-height: 210px !important;
  }
  .tool-card-premium--small::before {
    flex-basis: 190px !important;
    min-height: 190px !important;
  }
}


/* Section */
.tool-card-premium::before {
  flex-basis: 258px !important;
  min-height: 258px !important;
}
.tool-card-premium--small::before,
.tool-card-premium.is-future::before {
  flex-basis: 230px !important;
  min-height: 230px !important;
}
.tool-card-premium__body {
  padding: 9px 12px 10px !important;
}
.tool-card-premium__meta {
  margin-bottom: 4px !important;
  gap: 8px !important;
  min-height: 0 !important;
}
.tool-card-premium__area,
.tool-card-premium__status {
  font-size: 10px !important;
  line-height: 1.1 !important;
  letter-spacing: .05em !important;
}
.tool-card-premium__status {
  padding: 2px 6px !important;
}
.tool-card-premium h3 {
  margin-bottom: 4px !important;
  font-size: 16.5px !important;
  line-height: 1.15 !important;
}
.tool-card-premium p {
  margin-bottom: 7px !important;
  font-size: 12px !important;
  line-height: 1.28 !important;
  -webkit-line-clamp: 1 !important;
  line-clamp: 1 !important;
}
.tool-card-premium__cta {
  min-height: 26px !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  font-size: 11px !important;
}

.tool-network-card::before {
  flex-basis: 165px !important;
  min-height: 165px !important;
}
.tool-network-card__body {
  padding: 9px 11px 10px !important;
}
.tool-network-card h3 {
  font-size: 15px !important;
  margin-bottom: 3px !important;
}
.tool-network-card p {
  margin-bottom: 6px !important;
  -webkit-line-clamp: 1 !important;
  line-clamp: 1 !important;
}

@media (max-width: 640px) {
  .tool-card-premium::before {
    flex-basis: 230px !important;
    min-height: 230px !important;
  }
  .tool-card-premium--small::before,
  .tool-card-premium.is-future::before {
    flex-basis: 205px !important;
    min-height: 205px !important;
  }
  .tool-card-premium h3 {
    font-size: 16px !important;
  }
}


/* Section */
.tool-grid-premium .tool-card-premium__body {
  padding: 8px 11px 9px !important;
}
.tool-grid-premium .tool-card-premium__meta {
  margin-bottom: 3px !important;
}
.tool-grid-premium .tool-card-premium h3 {
  margin-bottom: 6px !important;
  font-size: 16px !important;
  line-height: 1.12 !important;
}
.tool-grid-premium .tool-card-premium p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden !important;
  margin: 5px 0 8px !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}
.tool-grid-premium .tool-card-premium__cta {
  min-height: 24px !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
}
.tool-grid-premium .tool-card-premium__area,
.tool-grid-premium .tool-card-premium__status {
  font-size: 9.5px !important;
}
.tool-grid-premium .tool-card-premium__status {
  padding: 2px 5px !important;
}


/* Hero */
.tool-hub-panel {
  align-self: end !important;
  max-width: 420px !important;
  padding: 12px !important;
  border-color: rgba(255,255,255,.18) !important;
  background: rgba(15, 23, 42, .22) !important;
  backdrop-filter: blur(10px) saturate(1.05) !important;
  box-shadow: 0 14px 34px rgba(15,23,42,.20) !important;
}
.tool-hub-panel__title {
  margin-bottom: 9px !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 11px !important;
  letter-spacing: .12em !important;
}
.tool-hub-route {
  gap: 7px !important;
}
.tool-hub-route__step {
  min-height: 48px !important;
  padding: 8px 10px !important;
  gap: 9px !important;
  grid-template-columns: 24px 1fr !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  background: rgba(255,255,255,.075) !important;
  color: inherit !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: background .16s ease, border-color .16s ease, transform .16s ease !important;
}
.tool-hub-route__step:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(94,234,212,.36) !important;
  background: rgba(255,255,255,.13) !important;
}
.tool-hub-route__num {
  width: 24px !important;
  height: 24px !important;
  background: rgba(45, 212, 191, .9) !important;
  font-size: 11px !important;
}
.tool-hub-route__name {
  font-size: 13px !important;
  line-height: 1.18 !important;
}
.tool-hub-route__hint {
  margin-top: 2px !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  color: rgba(255,255,255,.62) !important;
}
@media (max-width: 900px) {
  .tool-hub-panel {
    max-width: none !important;
    padding: 11px !important;
  }
}


/* Hero */
@media (max-width: 640px) {
  .tool-hub-panel {
    padding: 10px !important;
    background: rgba(15,23,42,.18) !important;
    box-shadow: 0 10px 24px rgba(15,23,42,.16) !important;
  }
  .tool-hub-panel__title {
    margin-bottom: 8px !important;
    font-size: 10.5px !important;
  }
  .tool-hub-route {
    gap: 6px !important;
  }
  .tool-hub-route__step {
    min-height: 38px !important;
    padding: 7px 9px !important;
  }
  .tool-hub-route__hint {
    display: none !important;
  }
  .tool-hub-route__name {
    font-size: 13px !important;
  }
}


/* Hero */
@media (max-width: 760px) {
  .tool-hub-hero .tool-hub-panel {
    padding: 10px !important;
    background: rgba(15,23,42,.18) !important;
    box-shadow: 0 10px 24px rgba(15,23,42,.16) !important;
  }
  .tool-hub-hero .tool-hub-panel__title {
    margin-bottom: 8px !important;
    font-size: 10.5px !important;
  }
  .tool-hub-hero .tool-hub-route {
    gap: 6px !important;
  }
  .tool-hub-hero .tool-hub-route__step {
    min-height: 38px !important;
    padding: 7px 9px !important;
  }
  .tool-hub-hero .tool-hub-route__hint {
    display: none !important;
  }
  .tool-hub-hero .tool-hub-route__name {
    font-size: 13px !important;
  }
}


/* Hero */
@media (max-width: 760px) {
  .tool-hub-hero .tool-hub-panel__title {
    display: none !important;
  }
  .tool-hub-hero .tool-hub-panel {
    padding: 9px !important;
  }
}


/* Buttons */
.tool-hub-hero .tool-hub-route {
  align-items: flex-start !important;
}
.tool-hub-hero .tool-hub-route__step {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  min-height: 34px !important;
  grid-template-columns: none !important;
  padding: 7px 12px !important;
  gap: 0 !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,.105) !important;
  border-color: rgba(255,255,255,.16) !important;
}
.tool-hub-hero .tool-hub-route__num {
  display: none !important;
}
.tool-hub-hero .tool-hub-route__name {
  white-space: nowrap !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
}
.tool-hub-hero .tool-hub-route__hint {
  display: none !important;
}
@media (max-width: 760px) {
  .tool-hub-hero .tool-hub-panel {
    width: auto !important;
    max-width: max-content !important;
  }
  .tool-hub-hero .tool-hub-route__step {
    min-height: 32px !important;
    padding: 6px 10px !important;
  }
}


/* Buttons */
.tool-hub-hero .tool-hub-panel {
  width: auto !important;
  max-width: 520px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}
.tool-hub-hero .tool-hub-panel__title {
  display: none !important;
}
.tool-hub-hero .tool-hub-route {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
}
.tool-hub-hero .tool-hub-route__step {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  min-height: 34px !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 7px !important;
  background: #2563eb !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none !important;
}
.tool-hub-hero .tool-hub-route__step:hover {
  background: #1d4ed8 !important;
  border-color: rgba(255,255,255,.34) !important;
  transform: none !important;
}
.tool-hub-hero .tool-hub-route__name {
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.tool-hub-hero .tool-hub-route__hint,
.tool-hub-hero .tool-hub-route__num {
  display: none !important;
}
@media (max-width: 760px) {
  .tool-hub-hero .tool-hub-panel {
    max-width: 360px !important;
  }
  .tool-hub-hero .tool-hub-route__step {
    min-height: 32px !important;
    padding: 6px 10px !important;
  }
}


/* Buttons */
.tool-hub-hero .tool-hub-route {
  display: grid !important;
  grid-template-columns: max-content max-content !important;
  gap: 8px !important;
  align-items: center !important;
  justify-content: start !important;
}
.tool-hub-hero .tool-hub-route__step {
  min-height: 32px !important;
  padding: 7px 12px !important;
  border-radius: 2px !important;
  border: 1px solid #1e3a8a !important;
  box-shadow: none !important;
  transform: none !important;
}
.tool-hub-hero .tool-hub-route__step:nth-child(odd) {
  background: #1e3a8a !important;
  color: #fff !important;
}
.tool-hub-hero .tool-hub-route__step:nth-child(odd) .tool-hub-route__name {
  color: #fff !important;
}
.tool-hub-hero .tool-hub-route__step:nth-child(even) {
  background: rgba(255,255,255,.94) !important;
  color: #1e3a8a !important;
}
.tool-hub-hero .tool-hub-route__step:nth-child(even) .tool-hub-route__name {
  color: #1e3a8a !important;
}
.tool-hub-hero .tool-hub-route__step:hover {
  border-color: #172554 !important;
  background: #172554 !important;
}
.tool-hub-hero .tool-hub-route__step:hover .tool-hub-route__name {
  color: #fff !important;
}
@media (max-width: 420px) {
  .tool-hub-hero .tool-hub-route {
    grid-template-columns: 1fr 1fr !important;
    width: min(100%, 340px) !important;
  }
  .tool-hub-hero .tool-hub-route__step {
    width: 100% !important;
    max-width: none !important;
  }
}


/* Section */
.tool-grid-premium .tool-card-premium:nth-child(1)::before,
.tool-grid-premium .tool-card-premium:nth-child(2)::before {
  flex-basis: 176px !important;
  min-height: 176px !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.tool-grid-premium .tool-card-premium:nth-child(1)::before {
  background-position: center center !important;
}
.tool-grid-premium .tool-card-premium:nth-child(2)::before {
  background-position: center top !important;
}
.tool-grid-premium .tool-card-premium:nth-child(1),
.tool-grid-premium .tool-card-premium:nth-child(2) {
  align-self: stretch !important;
}


/* Section */
.hp-stat-value--text {
  font-size: 20px !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}
.hp-dc--suica,
.hp-dc--wide,
.hp-dc--hakone,
.hp-dc--osaka {
  min-height: 168px;
  justify-content: space-between;
}
.hp-dc--suica { background: linear-gradient(145deg, #fff7ed 0%, #fef3c7 58%, #fde68a 100%) !important; }
.hp-dc--wide { background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 55%, #bfdbfe 100%) !important; }
.hp-dc--hakone { background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 55%, #a7f3d0 100%) !important; }
.hp-dc--osaka { background: linear-gradient(145deg, #fff1f2 0%, #fee2e2 55%, #fecaca 100%) !important; }
.hp-dc-icon-xs {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}
.hp-trust-v2-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.hp-trust-v2-card,
.hp-trust-v2-card:nth-child(4),
.hp-trust-v2-card:nth-child(5) {
  grid-column: auto !important;
}
.hp-trust-v2-grid::after {
  display: none !important;
}
.hp-faq-card {
  border-left: 3px solid var(--teal) !important;
}
.hp-decisions { padding-top: 72px !important; padding-bottom: 64px !important; }
.hp-how { padding-top: 68px !important; padding-bottom: 76px !important; }
.hp-trust-v2 { padding-top: 72px !important; padding-bottom: 72px !important; }
.hp-regions { padding-top: 64px !important; padding-bottom: 72px !important; }
@media (max-width: 1079px) {
  .hp-trust-v2-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 767px) {
  .hp-trust-v2-grid { grid-template-columns: 1fr !important; }
}


/* Bento cards */
.hp-bento .hp-dc,
.hp-bento .hp-dc--jr,
.hp-bento .hp-dc--narita,
.hp-bento .hp-dc--subway,
.hp-bento .hp-dc--haneda,
.hp-bento .hp-dc--suica,
.hp-bento .hp-dc--wide,
.hp-bento .hp-dc--hakone,
.hp-bento .hp-dc--osaka {
  background-image: none !important;
  overflow: hidden !important;
}
.hp-bento .hp-dc::before,
.hp-bento .hp-dc::after,
.hp-bento .hp-dc-deco {
  display: none !important;
  content: none !important;
}
.hp-bento .hp-dc--jr {
  background: linear-gradient(145deg, #0b1d3a 0%, #143968 56%, #0f766e 130%) !important;
}
.hp-bento .hp-dc--narita {
  background: linear-gradient(145deg, #0c2746 0%, #155e75 110%) !important;
}
.hp-bento .hp-dc--subway {
  background: linear-gradient(145deg, #241044 0%, #4338ca 115%) !important;
}
.hp-bento .hp-dc--haneda {
  background: linear-gradient(145deg, #063d30 0%, #0f766e 115%) !important;
}
.hp-bento .hp-dc--suica { background: linear-gradient(145deg, #fff7ed 0%, #fde68a 100%) !important; }
.hp-bento .hp-dc--wide { background: linear-gradient(145deg, #eff6ff 0%, #bfdbfe 100%) !important; }
.hp-bento .hp-dc--hakone { background: linear-gradient(145deg, #ecfdf5 0%, #a7f3d0 100%) !important; }
.hp-bento .hp-dc--osaka { background: linear-gradient(145deg, #fff1f2 0%, #fecaca 100%) !important; }
.hp-bento .hp-dc--jr {
  padding: 26px !important;
}
.hp-bento .hp-dc-top {
  margin-bottom: 16px !important;
}
.hp-bento .hp-dc-feat-body {
  margin-bottom: 20px !important;
}
.hp-bento .hp-dc-feat-desc,
.hp-bento .hp-dc-desc-sm {
  color: rgba(255,255,255,.72) !important;
  text-shadow: none !important;
}
.hp-bento .hp-dc-feat-title,
.hp-bento .hp-dc-title-sm,
.hp-bento .hp-dc-cta-sm,
.hp-bento .hp-dc-feat-cta {
  text-shadow: none !important;
}
.hp-bento .hp-dc-icon-lg {
  display: none !important;
}
.hp-bento .hp-dc-price-tag {
  display: none !important;
}
.hp-bento .hp-dc--jr > *,
.hp-bento .hp-dc--narita > *,
.hp-bento .hp-dc--subway > *,
.hp-bento .hp-dc--haneda > * {
  position: relative !important;
  z-index: 1 !important;
}


/* Bento cards */
.hp-bento .hp-dc {
  background-color: #0f172a !important;
  background-image: none !important;
  isolation: isolate !important;
}
.hp-bento .hp-dc::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-image: var(--bento-img) !important;
  background-size: cover !important;
  background-position: var(--bento-pos, center) !important;
  opacity: .82 !important;
  transform: none !important;
}
.hp-bento .hp-dc::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: linear-gradient(90deg, rgba(5,12,26,.86) 0%, rgba(5,12,26,.68) 46%, rgba(5,12,26,.22) 100%) !important;
}
.hp-bento .hp-dc > * {
  position: relative !important;
  z-index: 1 !important;
}
.hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg');
  --bento-pos: center center;
}
.hp-bento .hp-dc--narita {
  --bento-img: url('/assets/images/generated/gen-narita-rail.jpg');
  --bento-pos: 58% center;
}
.hp-bento .hp-dc--subway {
  --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg');
  --bento-pos: center center;
}
.hp-bento .hp-dc--haneda {
  --bento-img: url('/assets/images/generated/gen-narita-rail.jpg');
  --bento-pos: 72% center;
}
.hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg');
  --bento-pos: 45% center;
}
.hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg');
  --bento-pos: 48% center;
}
.hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg');
  --bento-pos: center center;
}
.hp-bento .hp-dc--osaka {
  --bento-img: url('/assets/images/generated/gen-osaka-canal.jpg');
  --bento-pos: center center;
}
.hp-bento .hp-dc--suica::after,
.hp-bento .hp-dc--wide::after,
.hp-bento .hp-dc--hakone::after,
.hp-bento .hp-dc--osaka::after {
  background: linear-gradient(180deg, rgba(5,12,26,.72) 0%, rgba(5,12,26,.82) 100%) !important;
}
.hp-bento .hp-dc-title-xs,
.hp-bento .hp-dc-desc-xs,
.hp-bento .hp-dc-cta-xs {
  color: #fff !important;
  text-shadow: none !important;
}
.hp-bento .hp-dc-desc-xs,
.hp-bento .hp-dc-desc-sm,
.hp-bento .hp-dc-feat-desc {
  color: rgba(255,255,255,.78) !important;
}
.hp-bento .hp-dc-cta-xs,
.hp-bento .hp-dc-cta-sm {
  color: #5eead4 !important;
}
.hp-bento .hp-dc-icon-xs,
.hp-bento .hp-dc-icon-sm {
  display: none !important;
}
.hp-bento .hp-dc-pill {
  background: rgba(20,184,166,.26) !important;
  color: #ccfbf1 !important;
}


/* Bento cards */
.hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: center center !important;
}
.hp-bento .hp-dc--narita {
  --bento-img: url('/assets/images/generated/gen-narita-rail.jpg') !important;
  --bento-pos: 60% center !important;
}
.hp-bento .hp-dc--subway {
  --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  --bento-pos: 64% center !important;
}
.hp-bento .hp-dc--haneda {
  --bento-img: url('/assets/images/generated/gen-haneda-transfer.jpg') !important;
  --bento-pos: 62% center !important;
}
.hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/generated/gen-ic-card-gate.jpg') !important;
  --bento-pos: center center !important;
}
.hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg') !important;
  --bento-pos: 54% center !important;
}
.hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  --bento-pos: center center !important;
}
.hp-bento .hp-dc--osaka {
  --bento-img: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  --bento-pos: center center !important;
}
.hp-bento .hp-dc-desc-sm,
.hp-bento .hp-dc-desc-xs,
.hp-bento .hp-dc-feat-desc {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden !important;
  max-width: 26ch !important;
  line-height: 1.35 !important;
}
.hp-bento .hp-dc--haneda .hp-dc-desc-sm {
  max-width: 32ch !important;
}
.hp-bento .hp-dc-feat-desc {
  max-width: 30ch !important;
}


/* Bento cards */
.hp-bento .hp-dc-desc-sm,
.hp-bento .hp-dc-desc-xs,
.hp-bento .hp-dc-feat-desc {
  flex: 0 0 auto !important;
  display: block !important;
  max-height: 2.7em !important;
  min-height: 0 !important;
  overflow: hidden !important;
  line-height: 1.35 !important;
}
.hp-bento .hp-dc-title-xs,
.hp-bento .hp-dc-title-sm,
.hp-bento .hp-dc-feat-title {
  flex: 0 0 auto !important;
}
.hp-bento .hp-dc-cta-xs,
.hp-bento .hp-dc-cta-sm,
.hp-bento .hp-dc-feat-cta {
  margin-top: 12px !important;
}


/* Section */
.hp-decisions {
  padding-top: 42px !important;
  padding-bottom: 58px !important;
}
.hp-decisions .hp-section-header {
  margin-bottom: 20px !important;
}
.hp-decisions .hp-section-header h2 {
  margin-bottom: 10px !important;
}
.hp-decisions .hp-section-header p {
  margin-bottom: 0 !important;
}
.hp-decisions .hp-bento {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .hp-decisions {
    padding-top: 34px !important;
  }
  .hp-decisions .hp-section-header {
    margin-bottom: 16px !important;
  }
}


/* Bento cards */
.hp-bento .hp-dc--suica,
.hp-bento .hp-dc--wide,
.hp-bento .hp-dc--hakone,
.hp-bento .hp-dc--osaka {
  min-height: 150px !important;
  height: 150px !important;
  padding: 18px 18px 16px !important;
  justify-content: flex-start !important;
  gap: 7px !important;
}
.hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  --bento-pos: center center !important;
}
.hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: center center !important;
}
.hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  --bento-pos: center center !important;
}
.hp-bento .hp-dc--osaka {
  --bento-img: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  --bento-pos: center center !important;
}
.hp-bento .hp-dc--suica::after,
.hp-bento .hp-dc--wide::after,
.hp-bento .hp-dc--hakone::after,
.hp-bento .hp-dc--osaka::after {
  background: linear-gradient(90deg, rgba(5,12,26,.86) 0%, rgba(5,12,26,.62) 58%, rgba(5,12,26,.22) 100%) !important;
}
.hp-bento .hp-dc--suica .hp-dc-title-xs,
.hp-bento .hp-dc--wide .hp-dc-title-xs,
.hp-bento .hp-dc--hakone .hp-dc-title-xs,
.hp-bento .hp-dc--osaka .hp-dc-title-xs {
  margin: 0 0 2px !important;
  font-size: 15px !important;
  line-height: 1.1 !important;
}
.hp-bento .hp-dc--suica .hp-dc-desc-xs,
.hp-bento .hp-dc--wide .hp-dc-desc-xs,
.hp-bento .hp-dc--hakone .hp-dc-desc-xs,
.hp-bento .hp-dc--osaka .hp-dc-desc-xs {
  margin: 0 !important;
  max-width: 24ch !important;
  max-height: 2.55em !important;
  line-height: 1.28 !important;
  font-size: 12px !important;
}
.hp-bento .hp-dc--suica .hp-dc-cta-xs,
.hp-bento .hp-dc--wide .hp-dc-cta-xs,
.hp-bento .hp-dc--hakone .hp-dc-cta-xs,
.hp-bento .hp-dc--osaka .hp-dc-cta-xs {
  margin-top: 8px !important;
  font-size: 12px !important;
}
@media (max-width: 767px) {
  .hp-bento .hp-dc--suica,
  .hp-bento .hp-dc--wide,
  .hp-bento .hp-dc--hakone,
  .hp-bento .hp-dc--osaka {
    height: auto !important;
    min-height: 128px !important;
  }
}


/* Bento cards */
.hp-decisions .hp-bento {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-rows: 136px !important;
  gap: 14px !important;
  align-items: stretch !important;
}
.hp-decisions .hp-bento .hp-dc {
  width: auto !important;
  max-width: none !important;
}
.hp-decisions .hp-bento .hp-dc--jr {
  grid-column: 1 / 3 !important;
  grid-row: 1 / 3 !important;
  min-height: 286px !important;
}
.hp-decisions .hp-bento .hp-dc--narita {
  grid-column: 3 !important;
  grid-row: 1 !important;
  min-height: 136px !important;
}
.hp-decisions .hp-bento .hp-dc--subway {
  grid-column: 4 !important;
  grid-row: 1 !important;
  min-height: 136px !important;
}
.hp-decisions .hp-bento .hp-dc--haneda {
  grid-column: 3 / 5 !important;
  grid-row: 2 !important;
  min-height: 136px !important;
}
.hp-decisions .hp-bento .hp-dc--suica,
.hp-decisions .hp-bento .hp-dc--wide,
.hp-decisions .hp-bento .hp-dc--hakone,
.hp-decisions .hp-bento .hp-dc--osaka {
  min-height: 136px !important;
  height: 136px !important;
  padding: 16px !important;
  justify-content: flex-start !important;
}
.hp-decisions .hp-bento .hp-dc--suica { grid-column: 1 !important; grid-row: 3 !important; }
.hp-decisions .hp-bento .hp-dc--wide { grid-column: 2 !important; grid-row: 3 !important; }
.hp-decisions .hp-bento .hp-dc--hakone { grid-column: 3 !important; grid-row: 3 !important; }
.hp-decisions .hp-bento .hp-dc--osaka { grid-column: 4 !important; grid-row: 3 !important; }
.hp-decisions .hp-bento .hp-dc--suica .hp-dc-cta-xs,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-cta-xs,
.hp-decisions .hp-bento .hp-dc--hakone .hp-dc-cta-xs,
.hp-decisions .hp-bento .hp-dc--osaka .hp-dc-cta-xs {
  margin-top: auto !important;
}

@media (min-width: 768px) and (max-width: 1079px) {
  .hp-decisions .hp-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 132px !important;
  }
  .hp-decisions .hp-bento .hp-dc--jr {
    grid-column: 1 / 3 !important;
    grid-row: 1 / 3 !important;
    min-height: 278px !important;
  }
  .hp-decisions .hp-bento .hp-dc--narita {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }
  .hp-decisions .hp-bento .hp-dc--subway {
    grid-column: 2 !important;
    grid-row: 3 !important;
  }
  .hp-decisions .hp-bento .hp-dc--haneda {
    grid-column: 1 / 3 !important;
    grid-row: 4 !important;
  }
  .hp-decisions .hp-bento .hp-dc--suica {
    grid-column: 1 !important;
    grid-row: 5 !important;
  }
  .hp-decisions .hp-bento .hp-dc--wide {
    grid-column: 2 !important;
    grid-row: 5 !important;
  }
  .hp-decisions .hp-bento .hp-dc--hakone {
    grid-column: 1 !important;
    grid-row: 6 !important;
  }
  .hp-decisions .hp-bento .hp-dc--osaka {
    grid-column: 2 !important;
    grid-row: 6 !important;
  }
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    height: 132px !important;
    min-height: 132px !important;
  }
}

@media (max-width: 767px) {
  .hp-decisions .hp-bento {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
  }
  .hp-decisions .hp-bento .hp-dc--jr,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--haneda,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 126px !important;
  }
}


/* Section */
.seo-launch-page { background: #f8fafc; color: #111827; }
.seo-launch-hero { position: relative; overflow: hidden; background: #0f172a; color: #fff; }
.seo-launch-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(5,12,26,.92), rgba(5,12,26,.70) 48%, rgba(5,12,26,.30)), var(--seo-hero-img); background-size: cover; background-position: center; transform: scale(1.02); }
.seo-launch-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr); gap: 32px; align-items: center; min-height: 440px; padding: 72px 0; }
.seo-launch-hero__copy h1 { margin: 0; max-width: 800px; font-size: clamp(38px, 6vw, 72px); line-height: .95; letter-spacing: -0.035em; color: #fff; }
.seo-launch-hero__copy > p { max-width: 680px; margin: 22px 0 0; font-size: clamp(17px, 2vw, 21px); line-height: 1.55; color: rgba(255,255,255,.86); }
.seo-launch-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.seo-launch-card { background: rgba(255,255,255,.94); color: #111827; border: 1px solid rgba(255,255,255,.6); border-radius: 14px; padding: 24px; box-shadow: 0 24px 80px rgba(0,0,0,.28); }
.seo-launch-card__label { display: inline-flex; margin-bottom: 12px; padding: 5px 10px; border-radius: 999px; background: #ccfbf1; color: #0f766e; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.seo-launch-card strong { display: block; font-size: 22px; line-height: 1.15; color: #0f172a; }
.seo-launch-card p { margin: 12px 0 16px; color: #475569; line-height: 1.5; }
.seo-launch-card a { color: #0f766e; font-weight: 800; text-decoration: none; }
.seo-article { max-width: 920px; }
.seo-table-wrap { overflow-x: auto; margin: 18px 0 28px; border: 1px solid #dbe4ef; border-radius: 12px; background: #fff; }
.seo-decision-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.seo-decision-table th, .seo-decision-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid #e5edf6; vertical-align: top; }
.seo-decision-table th { background: #f1f5f9; color: #0f172a; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.seo-decision-table tr:last-child td { border-bottom: 0; }
.seo-article .faq-item { border-left: 3px solid #14b8a6; background: #fff; border-radius: 8px; padding: 16px 18px; box-shadow: 0 8px 24px rgba(15,23,42,.06); }
.seo-article .faq-item + .faq-item { margin-top: 12px; }
.seo-article .faq-item h3 { margin-top: 0; }
@media (max-width: 767px) { .seo-launch-hero__inner { grid-template-columns: 1fr; min-height: auto; padding: 52px 0; } .seo-launch-card { padding: 20px; } .seo-launch-actions .button { width: 100%; justify-content: center; } }


/* Section */
.seo-guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.seo-guide-card { display: flex; min-height: 132px; flex-direction: column; justify-content: space-between; gap: 12px; padding: 18px; border: 1px solid #d8e3ef; border-radius: 10px; background: #fff; color: #0f172a; text-decoration: none; box-shadow: 0 10px 30px rgba(15,23,42,.06); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.seo-guide-card:hover { transform: translateY(-2px); border-color: #14b8a6; box-shadow: 0 18px 44px rgba(15,23,42,.12); }
.seo-guide-card span { color: #64748b; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.seo-guide-card strong { font-size: 18px; line-height: 1.15; letter-spacing: -0.02em; }
.seo-guide-card em { color: #0f766e; font-style: normal; font-size: 13px; font-weight: 800; }
.hp-seo-paths { padding: 54px 0; background: #f8fafc; }
.seo-guide-grid--compact .seo-guide-card { min-height: 112px; }
@media (max-width: 900px) { .seo-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .seo-guide-grid { grid-template-columns: 1fr; } .seo-guide-card { min-height: 106px; } }


/* Bento cards */
.hp-decisions .hp-bento {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-template-rows: 220px 160px 156px !important;
  grid-auto-rows: unset !important;
  gap: 14px !important;
  align-items: stretch !important;
}
.hp-decisions .hp-bento .hp-dc {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 20px !important;
  border-radius: 14px !important;
  background-color: #0f172a !important;
  background-image: none !important;
  box-shadow: 0 18px 48px rgba(15,23,42,.13) !important;
  isolation: isolate !important;
  transform: none !important;
}
.hp-decisions .hp-bento .hp-dc:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 22px 56px rgba(15,23,42,.2) !important;
}
.hp-decisions .hp-bento .hp-dc::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  background-image: var(--bento-img) !important;
  background-size: cover !important;
  background-position: var(--bento-pos, center) !important;
  opacity: .92 !important;
  transform: none !important;
}
.hp-decisions .hp-bento .hp-dc::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  background: linear-gradient(90deg, rgba(5,12,26,.82) 0%, rgba(5,12,26,.58) 48%, rgba(5,12,26,.20) 100%) !important;
}
.hp-decisions .hp-bento .hp-dc > * {
  position: relative !important;
  z-index: 1 !important;
}
.hp-decisions .hp-bento .hp-dc--jr { grid-column: 1 / 3 !important; grid-row: 1 / 3 !important; padding: 26px !important; --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important; --bento-pos: center center !important; }
.hp-decisions .hp-bento .hp-dc--narita { grid-column: 3 !important; grid-row: 1 !important; --bento-img: url('/assets/images/generated/gen-narita-rail.jpg') !important; --bento-pos: 54% center !important; }
.hp-decisions .hp-bento .hp-dc--subway { grid-column: 4 !important; grid-row: 1 !important; --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg') !important; --bento-pos: 62% center !important; }
.hp-decisions .hp-bento .hp-dc--haneda { grid-column: 3 / 5 !important; grid-row: 2 !important; --bento-img: url('/assets/images/generated/gen-haneda-transfer.jpg') !important; --bento-pos: 60% center !important; }
.hp-decisions .hp-bento .hp-dc--suica { grid-column: 1 !important; grid-row: 3 !important; --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg') !important; --bento-pos: 45% center !important; }
.hp-decisions .hp-bento .hp-dc--wide { grid-column: 2 !important; grid-row: 3 !important; --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important; --bento-pos: center center !important; }
.hp-decisions .hp-bento .hp-dc--hakone { grid-column: 3 !important; grid-row: 3 !important; --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important; --bento-pos: center center !important; }
.hp-decisions .hp-bento .hp-dc--osaka { grid-column: 4 !important; grid-row: 3 !important; --bento-img: url('/assets/images/generated/gen-osaka-canal.jpg') !important; --bento-pos: center center !important; }
.hp-decisions .hp-bento .hp-dc--suica::after,
.hp-decisions .hp-bento .hp-dc--wide::after,
.hp-decisions .hp-bento .hp-dc--hakone::after,
.hp-decisions .hp-bento .hp-dc--osaka::after {
  background: linear-gradient(180deg, rgba(5,12,26,.78) 0%, rgba(5,12,26,.58) 46%, rgba(5,12,26,.86) 100%) !important;
}
.hp-decisions .hp-bento .hp-dc-icon-sm {
  display: grid !important;
  width: 36px !important;
  height: 36px !important;
  margin: 0 0 12px !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: #ccfbf1 !important;
}
.hp-decisions .hp-bento .hp-dc-icon-sm svg {
  width: 19px !important;
  height: 19px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-feat-title {
  margin: 0 0 8px !important;
  color: #fff !important;
  text-shadow: none !important;
  letter-spacing: -0.025em !important;
}
.hp-decisions .hp-bento .hp-dc-title-sm {
  font-size: 18px !important;
  line-height: 1.08 !important;
}
.hp-decisions .hp-bento .hp-dc-feat-title {
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: .98 !important;
}
.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-feat-desc {
  display: block !important;
  margin: 0 !important;
  max-width: 28ch !important;
  max-height: 3em !important;
  overflow: hidden !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
  text-shadow: none !important;
}
.hp-decisions .hp-bento .hp-dc-feat-desc { max-width: 34ch !important; font-size: 15px !important; }
.hp-decisions .hp-bento .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc-feat-cta {
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  margin-top: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #5eead4 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}
.hp-decisions .hp-bento .hp-dc-feat-cta { padding: 11px 16px !important; border-radius: 8px !important; background: #0d9488 !important; color: #fff !important; margin-top: 18px !important; }
.hp-decisions .hp-bento .hp-dc-pill {
  background: rgba(20,184,166,.22) !important;
  border: 1px solid rgba(94,234,212,.32) !important;
  color: #ccfbf1 !important;
}
.hp-decisions .hp-bento .hp-dc-deco,
.hp-decisions .hp-bento .hp-dc-icon-xs,
.hp-decisions .hp-bento .hp-dc-title-xs,
.hp-decisions .hp-bento .hp-dc-desc-xs,
.hp-decisions .hp-bento .hp-dc-cta-xs,
.hp-decisions .hp-bento .hp-dc-haneda-chips { display: none !important; }
.hp-decisions .hp-bento .hp-dc-haneda-left { display: flex !important; flex: 1 1 auto !important; flex-direction: column !important; min-width: 0 !important; }

@media (min-width: 768px) and (max-width: 1079px) {
  .hp-decisions .hp-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: 280px 190px 190px 190px 190px !important;
    grid-auto-rows: 190px !important;
  }
  .hp-decisions .hp-bento .hp-dc--jr { grid-column: 1 / 3 !important; grid-row: 1 !important; }
  .hp-decisions .hp-bento .hp-dc--narita { grid-column: 1 !important; grid-row: 2 !important; }
  .hp-decisions .hp-bento .hp-dc--subway { grid-column: 2 !important; grid-row: 2 !important; }
  .hp-decisions .hp-bento .hp-dc--haneda { grid-column: 1 / 3 !important; grid-row: 3 !important; }
  .hp-decisions .hp-bento .hp-dc--suica { grid-column: 1 !important; grid-row: 4 !important; }
  .hp-decisions .hp-bento .hp-dc--wide { grid-column: 2 !important; grid-row: 4 !important; }
  .hp-decisions .hp-bento .hp-dc--hakone { grid-column: 1 !important; grid-row: 5 !important; }
  .hp-decisions .hp-bento .hp-dc--osaka { grid-column: 2 !important; grid-row: 5 !important; }
}
@media (max-width: 767px) {
  .hp-decisions .hp-bento {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    grid-auto-rows: auto !important;
  }
  .hp-decisions .hp-bento .hp-dc--jr,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--haneda,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 190px !important;
  }
  .hp-decisions .hp-bento .hp-dc--jr { min-height: 280px !important; }
}


/* Bento cards */
.hp-decisions .hp-bento .hp-dc,
.hp-decisions .hp-bento .hp-dc--suica,
.hp-decisions .hp-bento .hp-dc--wide,
.hp-decisions .hp-bento .hp-dc--hakone,
.hp-decisions .hp-bento .hp-dc--osaka {
  justify-self: stretch !important;
  align-self: stretch !important;
  inline-size: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}


/* Trust */
.trust-article .breadcrumb { margin-bottom: var(--space-4); }
.geo-answer-block { border-left: 4px solid var(--teal); background: #F0FDFA; padding: var(--space-4) var(--space-5); border-radius: var(--radius-md); margin: var(--space-6) 0; }
.geo-answer-label, .result-trust-kicker { margin: 0 0 0.35rem; color: var(--teal-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.trust-principles-grid, .result-trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); margin: var(--space-5) 0; }
.trust-principles-grid div, .result-trust-grid div { border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-4); background: #fff; }
.trust-principles-grid strong, .result-trust-grid strong { display: block; color: var(--text-primary); margin-bottom: 0.35rem; }
.trust-principles-grid span, .result-trust-grid span { display: block; color: var(--text-secondary); font-size: 0.92rem; line-height: 1.55; }
.example-box { border: 1px solid var(--border); border-left: 3px solid var(--teal); border-radius: var(--radius-md); padding: var(--space-4); background: #fff; margin: var(--space-4) 0 var(--space-6); color: var(--text-secondary); }
.trust-steps { color: var(--text-secondary); line-height: 1.7; }
.result-trust-block, .traveler-reports-placeholder { margin-top: var(--space-4); border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; padding: var(--space-5); box-shadow: var(--shadow-sm); }
.result-trust-block h2, .traveler-reports-placeholder h2 { font-size: 1.15rem; margin-bottom: var(--space-3); }
.result-trust-note { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; margin-top: var(--space-4); }
.result-trust-links { font-size: 0.92rem; font-weight: 700; margin: var(--space-3) 0 0; }
.traveler-reports-placeholder ul { margin: var(--space-3) 0 0; padding-left: 1.2rem; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 760px) { .trust-principles-grid, .result-trust-grid { grid-template-columns: 1fr; } }


/* Bento cards */
.hp-decisions .hp-bento .hp-dc::after {
  display: none !important;
}

.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  --bento-pos: center 44% !important;
}

.hp-decisions .hp-bento .hp-dc--narita {
  --bento-img: url('/assets/images/generated/gen-narita-rail.jpg') !important;
  --bento-pos: 50% center !important;
}

.hp-decisions .hp-bento .hp-dc--subway {
  --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  --bento-pos: 50% center !important;
}

.hp-decisions .hp-bento .hp-dc--haneda {
  --bento-img: url('/assets/images/generated/gen-narita-rail.jpg') !important;
  --bento-pos: 58% center !important;
}

.hp-decisions .hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  --bento-pos: 44% center !important;
}

.hp-decisions .hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: 50% center !important;
}

.hp-decisions .hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  --bento-pos: center center !important;
}

.hp-decisions .hp-bento .hp-dc--osaka {
  --bento-img: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  --bento-pos: center center !important;
}

.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-feat-title,
.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-feat-desc,
.hp-decisions .hp-bento .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc-feat-cta {
  text-shadow: 0 2px 10px rgba(0, 0, 0, .72) !important;
}


/* Bento cards */
.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: 58% center !important;
}

.hp-decisions .hp-bento .hp-dc--narita {
  --bento-img: url('/assets/images/generated/gen-narita-rail.jpg') !important;
  --bento-pos: 54% center !important;
}

.hp-decisions .hp-bento .hp-dc--subway {
  --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  --bento-pos: 58% center !important;
}

.hp-decisions .hp-bento .hp-dc--haneda {
  --bento-img: url('/assets/images/generated/gen-haneda-transfer.jpg') !important;
  --bento-pos: 62% center !important;
}

.hp-decisions .hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/generated/gen-ic-card-gate.jpg') !important;
  --bento-pos: 34% center !important;
}

.hp-decisions .hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg') !important;
  --bento-pos: 34% center !important;
}

.hp-decisions .hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  --bento-pos: center center !important;
}

.hp-decisions .hp-bento .hp-dc--osaka {
  --bento-img: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  --bento-pos: center center !important;
}

.hp-decisions .hp-bento .hp-dc--suica .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--suica .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-desc-sm {
  color: #0f172a !important;
  text-shadow: none !important;
}

.hp-decisions .hp-bento .hp-dc--suica .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-cta-sm {
  color: #0f766e !important;
  text-shadow: none !important;
}


/* Bento cards */
.hp-decisions .hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  --bento-pos: 45% center !important;
}

.hp-decisions .hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: 52% center !important;
}

.hp-decisions .hp-bento .hp-dc--suica .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--suica .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-desc-sm {
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .72) !important;
}

.hp-decisions .hp-bento .hp-dc--suica .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-cta-sm {
  color: #5eead4 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .72) !important;
}


/* Section */
.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: center center !important;
}


/* Section */
.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  --bento-pos: center 45% !important;
}

.hp-decisions .hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: 52% center !important;
}


/* Bento cards */
.hp-decisions .hp-bento .hp-dc-icon-sm,
.hp-decisions .hp-bento .hp-dc-icon-xs {
  display: none !important;
}


/* Region cards */
.hp-regions .hp-region-overlay,
.hp-regions .hp-region::before {
  display: none !important;
  opacity: 0 !important;
  background: none !important;
  background-image: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.hp-regions .hp-region-body {
  margin: 0 !important;
  padding: 18px 20px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hp-regions .hp-region--tokyo {
  background-image: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  background-size: cover !important;
  background-position: center 52% !important;
}

.hp-regions .hp-region--airports {
  background-image: url('/assets/images/generated/gen-haneda-transfer.jpg') !important;
  background-size: cover !important;
  background-position: center 54% !important;
}

.hp-regions .hp-region--hakone {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  background-size: cover !important;
  background-position: center 50% !important;
}

.hp-regions .hp-region--osaka {
  background-image: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  background-size: cover !important;
  background-position: center 50% !important;
}

.hp-regions .hp-region--shinkansen {
  background-image: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg') !important;
  background-size: cover !important;
  background-position: center 50% !important;
}

.hp-regions .hp-region--coming {
  background-image: url('/assets/images/generated/gen-kyoto-transit.jpg') !important;
  background-size: cover !important;
  background-position: center 50% !important;
  opacity: 1 !important;
}

.hp-regions .hp-region-count,
.hp-regions .hp-region-name,
.hp-regions .hp-region-list li {
  text-shadow: 0 2px 10px rgba(0,0,0,.82), 0 1px 2px rgba(0,0,0,.72) !important;
}

.hp-regions .hp-region-list li {
  color: rgba(255,255,255,.94) !important;
}


/* Bento cards */
.hp-decisions .hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  --bento-pos: center 50% !important;
}

.hp-decisions .hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  --bento-pos: center 50% !important;
}


/* Bento cards */
.hp-decisions .hp-bento .hp-dc {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  color: #0f172a !important;
  border: 1px solid #dbe4ef !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08) !important;
}

.hp-decisions .hp-bento .hp-dc::before {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  flex: 0 0 58% !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  background-image: var(--bento-img) !important;
  background-size: cover !important;
  background-position: var(--bento-pos, center) !important;
}

.hp-decisions .hp-bento .hp-dc--jr::before {
  flex-basis: 60% !important;
}

.hp-decisions .hp-bento .hp-dc--haneda::before {
  flex-basis: 62% !important;
}

.hp-decisions .hp-bento .hp-dc::after {
  display: none !important;
}

.hp-decisions .hp-bento .hp-dc > * {
  position: relative !important;
  z-index: 1 !important;
}

.hp-decisions .hp-bento .hp-dc-top,
.hp-decisions .hp-bento .hp-dc-feat-body,
.hp-decisions .hp-bento .hp-dc-feat-cta,
.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc-haneda-left {
  margin-left: 18px !important;
  margin-right: 18px !important;
}

.hp-decisions .hp-bento .hp-dc-top,
.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-haneda-left {
  margin-top: 14px !important;
}

.hp-decisions .hp-bento .hp-dc-feat-body {
  margin-top: 8px !important;
}

.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-feat-title,
.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-feat-desc,
.hp-decisions .hp-bento .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc-feat-cta {
  color: #0f172a !important;
  text-shadow: none !important;
}

.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-feat-title {
  line-height: 1.05 !important;
}

.hp-decisions .hp-bento .hp-dc-title-sm {
  font-size: 18px !important;
  margin-bottom: 6px !important;
}

.hp-decisions .hp-bento .hp-dc-feat-title {
  font-size: 31px !important;
  margin: 0 0 8px !important;
}

.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-feat-desc {
  color: #64748b !important;
  max-width: none !important;
  line-height: 1.45 !important;
  margin-bottom: 8px !important;
}

.hp-decisions .hp-bento .hp-dc-desc-sm {
  font-size: 13px !important;
}

.hp-decisions .hp-bento .hp-dc-feat-desc {
  font-size: 14px !important;
}

.hp-decisions .hp-bento .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc-feat-cta {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  margin-top: auto !important;
  margin-bottom: 14px !important;
  color: #0f766e !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.hp-decisions .hp-bento .hp-dc-feat-cta {
  margin-left: 18px !important;
}

.hp-decisions .hp-bento .hp-dc-pill {
  color: #0f766e !important;
  background: #ccfbf1 !important;
  border-color: #99f6e4 !important;
  text-shadow: none !important;
}

.hp-decisions .hp-bento .hp-dc-haneda-left {
  display: flex !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
}

.hp-decisions .hp-bento .hp-dc--suica .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--suica .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc--suica .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-cta-sm {
  text-shadow: none !important;
}

@media (max-width: 767px) {
  .hp-decisions .hp-bento .hp-dc::before,
  .hp-decisions .hp-bento .hp-dc--jr::before,
  .hp-decisions .hp-bento .hp-dc--haneda::before {
    flex-basis: 56% !important;
  }

  .hp-decisions .hp-bento .hp-dc-feat-title {
    font-size: 28px !important;
  }
}


/* Bento cards */
@media (min-width: 1080px) {
  .hp-decisions .hp-bento {
    grid-template-rows: 250px 210px 220px !important;
  }
}

.hp-decisions .hp-bento .hp-dc::before {
  flex-basis: 52% !important;
}

.hp-decisions .hp-bento .hp-dc--jr::before {
  flex-basis: 56% !important;
}

.hp-decisions .hp-bento .hp-dc--haneda::before {
  flex-basis: 52% !important;
}

.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-feat-title,
.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-feat-desc,
.hp-decisions .hp-bento .hp-dc--suica .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--suica .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc--hakone .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--hakone .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc--osaka .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--osaka .hp-dc-desc-sm {
  color: #0f172a !important;
  text-shadow: none !important;
}

.hp-decisions .hp-bento .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc-feat-cta,
.hp-decisions .hp-bento .hp-dc--suica .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc--wide .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc--hakone .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc--osaka .hp-dc-cta-sm {
  color: #0f766e !important;
  text-shadow: none !important;
}

.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-cta-sm {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.hp-decisions .hp-bento .hp-dc-title-sm {
  margin-top: 12px !important;
}

.hp-decisions .hp-bento .hp-dc-desc-sm {
  display: block !important;
  margin-top: 0 !important;
}

.hp-decisions .hp-bento .hp-dc-cta-sm {
  margin-top: auto !important;
}


/* Bento cards */
.hp-decisions .hp-bento .hp-dc::before {
  flex-basis: 45% !important;
}

.hp-decisions .hp-bento .hp-dc--jr::before {
  flex-basis: 48% !important;
}

.hp-decisions .hp-bento .hp-dc--haneda::before {
  flex-basis: 45% !important;
}

@media (min-width: 1080px) {
  .hp-decisions .hp-bento {
    grid-template-rows: 300px 250px 245px !important;
  }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .hp-decisions .hp-bento {
    grid-template-rows: 420px 260px 255px 245px 245px !important;
  }
}

@media (max-width: 767px) {
  .hp-decisions .hp-bento .hp-dc,
  .hp-decisions .hp-bento .hp-dc--jr,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--haneda,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    min-height: 260px !important;
  }
}


/* Article pages */

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

@media (max-width: 767px)  { .guide-card-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1079px) { .guide-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.guide-card:hover {
  border-color: var(--teal-border);
  box-shadow: 0 6px 20px rgba(15, 25, 35, 0.10);
  transform: translateY(-2px);
}

.guide-card-cat {
  display: inline-block;
  margin-bottom: var(--space-3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
}

.guide-card-title {
  margin: 0 0 var(--space-3);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.guide-card-desc {
  margin: 0;
  flex: 1;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.guide-card-cta {
  display: block;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}


/* Article pages */

.ilink-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: var(--space-8) 0;
}

@media (max-width: 599px) { .ilink-grid { grid-template-columns: 1fr; } }

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

@media (max-width: 767px) { .ilink-grid--3col { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 899px) { .ilink-grid--3col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.ilink-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.ilink-card:hover {
  background: var(--teal-light);
  border-color: var(--teal-border);
  border-left-color: var(--teal);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.12);
}

.ilink-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
}

.ilink-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.ilink-card-cta {
  margin-top: var(--space-2);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
}




/* Responsive */
.tool-layout,
.tool-intro,
.tool-panel,
.calculator-card,
.content-column,
.result-trust-block,
.traveler-reports-placeholder,
.twp-route-card {
  min-width: 0;
  max-width: 100%;
}

.price-section,
.table-scroll,
.shk-fare-table-wrap,
.seo-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content-column.price-section,
.shk-info-grid,
.shk-coverage-box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.twp-route-stats,
.result-trust-grid,
.trust-principles-grid {
  min-width: 0;
}

.twp-route-stat,
.result-trust-grid > div,
.trust-principles-grid > div {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (min-width: 901px) {
  .twp-routes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .tool-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .container,
  .content-column,
  .section,
  .section-white,
  .section-surface,
  .shk-info-grid,
  .shk-coverage-box {
    min-width: 0;
    max-width: 100%;
  }

  .tool-panel {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .tool-intro,
  .calculator-card {
    width: 100%;
  }

  .day-segment,
  .shk-city-seg {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .day-segment button {
    min-width: 0;
    white-space: normal;
  }

  .price-table,
  .shk-coverage-table,
  .shk-fare-table,
  .seo-decision-table {
    min-width: 520px;
  }

  .shk-info-grid,
  .content-column.price-section {
    width: 100%;
  }

  .twp-routes-grid,
  .shk-info-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .twp-route-stats {
    grid-template-columns: 1fr;
  }

  .twp-route-stat-value,
  .twp-route-stat-label,
  .twp-route-stat-note {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Homepage decision cards final image/text balance */
.hp-decisions .hp-bento .hp-dc {
  overflow: hidden !important;
  background: #fff !important;
}

.hp-decisions .hp-bento .hp-dc::before {
  flex: 0 0 62% !important;
  background-size: cover !important;
  background-position: center center !important;
}

.hp-decisions .hp-bento .hp-dc--jr::before,
.hp-decisions .hp-bento .hp-dc--haneda::before {
  flex-basis: 64% !important;
}

.hp-decisions .hp-bento .hp-dc-top,
.hp-decisions .hp-bento .hp-dc-feat-body,
.hp-decisions .hp-bento .hp-dc-feat-cta,
.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc-haneda-left {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-haneda-left,
.hp-decisions .hp-bento .hp-dc-top {
  margin-top: 12px !important;
}

.hp-decisions .hp-bento .hp-dc-feat-body {
  margin-top: 8px !important;
  margin-bottom: 6px !important;
}

.hp-decisions .hp-bento .hp-dc-title-sm {
  margin-bottom: 5px !important;
  font-size: 17px !important;
  line-height: 1.08 !important;
}

.hp-decisions .hp-bento .hp-dc-feat-title {
  margin-bottom: 6px !important;
  font-size: clamp(28px, 4vw, 38px) !important;
  line-height: .98 !important;
}

.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-feat-desc {
  margin-bottom: 6px !important;
  max-height: 2.9em !important;
  overflow: hidden !important;
  font-size: 12.5px !important;
  line-height: 1.38 !important;
}

.hp-decisions .hp-bento .hp-dc-feat-desc {
  font-size: 13px !important;
  max-height: 2.8em !important;
}

.hp-decisions .hp-bento .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc-feat-cta {
  margin-top: auto !important;
  margin-bottom: 12px !important;
}

@media (max-width: 767px) {
  .hp-decisions .hp-bento .hp-dc,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--haneda,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    min-height: 305px !important;
  }

  .hp-decisions .hp-bento .hp-dc--jr {
    min-height: 335px !important;
  }

  .hp-decisions .hp-bento .hp-dc::before,
  .hp-decisions .hp-bento .hp-dc--jr::before,
  .hp-decisions .hp-bento .hp-dc--haneda::before {
    flex-basis: 66% !important;
  }

  .hp-decisions .hp-bento .hp-dc-title-sm,
  .hp-decisions .hp-bento .hp-dc-feat-title,
  .hp-decisions .hp-bento .hp-dc-desc-sm,
  .hp-decisions .hp-bento .hp-dc-feat-desc,
  .hp-decisions .hp-bento .hp-dc-cta-sm,
  .hp-decisions .hp-bento .hp-dc-feat-cta {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .hp-decisions .hp-bento .hp-dc-desc-sm,
  .hp-decisions .hp-bento .hp-dc-feat-desc {
    max-height: 2.75em !important;
  }
}


/* ============================================================
   GLOBAL CONSOLIDATION 鈥 width:100%, overflow, mobile scroll
   ============================================================ */

/* Prevent any element wider than viewport from causing horizontal scroll */
body {
  overflow-x: hidden;
}

/* Content containers fill their parent grid/flex cell */
.tool-layout,
.tool-intro,
.tool-panel,
.calculator-card,
.sp-result-card,
.result-card,
.sp-wizard {
  width: 100%;
  box-sizing: border-box;
}

/* All section containers must stay within viewport */
.container,
.content-column {
  box-sizing: border-box;
}

/* Tables: always scroll inside their wrapper, never overflow the page */
.price-section,
.table-scroll,
.shk-fare-table-wrap,
.seo-table-wrap,
.content-column.price-section {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  box-sizing: border-box;
}

/* Override inline style grid that bypasses media-query collapse on mobile */
@media (max-width: 640px) {
  .twp-price-grid[style*="repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .twp-price-grid[style*="repeat(3"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 420px) {
  .twp-price-grid[style*="repeat(4"],
  .twp-price-grid[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

/* Ensure all top-level sections don't overflow horizontally */
.section,
.section-white,
.section-surface,
.tool-hero,
.hp-decisions,
.hp-how,
.hp-trust-v2,
.hp-regions,
.hp-faq,
.hp-final-cta,
.hp-seo-paths,
.complete-plan,
.related-tools,
.tool-network {
  max-width: 100%;
  overflow-x: hidden;
}

/* Compact price grid: replaces legacy inline four-column layout */
.twp-price-grid.twp-price-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
}

@media (max-width: 1079px) {
  .twp-price-grid.twp-price-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .twp-price-grid.twp-price-grid--compact {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Browser QA fix: complete homepage decision-card images */
.hp-decisions .hp-bento .hp-dc {
  min-height: 360px !important;
  overflow: hidden !important;
}

.hp-decisions .hp-bento .hp-dc--jr {
  min-height: 440px !important;
}

.hp-decisions .hp-bento .hp-dc--haneda {
  min-height: 380px !important;
}

.hp-decisions .hp-bento .hp-dc::before,
.hp-decisions .hp-bento .hp-dc--jr::before,
.hp-decisions .hp-bento .hp-dc--haneda::before {
  flex: 0 0 60% !important;
  min-height: 0 !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: #eef6ff !important;
}

.hp-decisions .hp-bento .hp-dc-feat-body,
.hp-decisions .hp-bento .hp-dc-haneda-left {
  flex: 0 0 auto !important;
}

.hp-decisions .hp-bento .hp-dc-top,
.hp-decisions .hp-bento .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc-haneda-left {
  margin-top: 14px !important;
}

.hp-decisions .hp-bento .hp-dc-feat-title {
  font-size: clamp(30px, 4.5vw, 42px) !important;
  line-height: 1 !important;
}

.hp-decisions .hp-bento .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc-feat-desc {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  margin-bottom: 8px !important;
}

.hp-decisions .hp-bento .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc-feat-cta {
  margin-top: 6px !important;
  margin-bottom: 14px !important;
}

@media (min-width: 1080px) {
  .hp-decisions .hp-bento {
    grid-template-rows: 360px 330px 320px !important;
  }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .hp-decisions .hp-bento {
    grid-template-rows: 440px 360px 380px 350px 350px !important;
  }
}

@media (max-width: 767px) {
  .hp-decisions .hp-bento .hp-dc,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    min-height: 360px !important;
  }

  .hp-decisions .hp-bento .hp-dc--jr {
    min-height: 440px !important;
  }

  .hp-decisions .hp-bento .hp-dc--haneda {
    min-height: 380px !important;
  }

  .hp-decisions .hp-bento .hp-dc::before,
  .hp-decisions .hp-bento .hp-dc--jr::before,
  .hp-decisions .hp-bento .hp-dc--haneda::before {
    flex-basis: 60% !important;
  }
}

/* Browser QA fix: fill decision-card image width without large gutters */
.hp-decisions .hp-bento .hp-dc::before,
.hp-decisions .hp-bento .hp-dc--jr::before,
.hp-decisions .hp-bento .hp-dc--haneda::before {
  flex-basis: 58% !important;
  width: 100% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

.hp-decisions .hp-bento .hp-dc--jr::before {
  flex-basis: 55% !important;
  background-position: center 48% !important;
}

.hp-decisions .hp-bento .hp-dc--narita::before {
  background-position: center 50% !important;
}

.hp-decisions .hp-bento .hp-dc--subway::before {
  background-position: center 52% !important;
}

.hp-decisions .hp-bento .hp-dc--haneda::before {
  flex-basis: 56% !important;
  background-position: center 50% !important;
}

.hp-decisions .hp-bento .hp-dc--suica::before,
.hp-decisions .hp-bento .hp-dc--wide::before,
.hp-decisions .hp-bento .hp-dc--hakone::before,
.hp-decisions .hp-bento .hp-dc--osaka::before {
  background-position: center center !important;
}

.hp-decisions .hp-bento .hp-dc-top {
  margin-top: 10px !important;
}

.hp-decisions .hp-bento .hp-dc-feat-body {
  margin-top: 6px !important;
  margin-bottom: 4px !important;
}

.hp-decisions .hp-bento .hp-dc-feat-title {
  margin-bottom: 6px !important;
}

@media (max-width: 767px) {
  .hp-decisions .hp-bento .hp-dc,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    min-height: 330px !important;
  }

  .hp-decisions .hp-bento .hp-dc--jr {
    min-height: 365px !important;
  }

  .hp-decisions .hp-bento .hp-dc--haneda {
    min-height: 340px !important;
  }

  .hp-decisions .hp-bento .hp-dc::before {
    flex-basis: 58% !important;
  }

  .hp-decisions .hp-bento .hp-dc--jr::before {
    flex-basis: 52% !important;
  }

  .hp-decisions .hp-bento .hp-dc--haneda::before {
    flex-basis: 56% !important;
  }
}

/* Browser QA fix: force homepage decision cards to no-text image set */
.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--narita,
.hp-decisions .hp-bento .hp-dc--haneda {
  --bento-img: url('/assets/images/generated/gen-haneda-transfer.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--subway,
.hp-decisions .hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--osaka {
  --bento-img: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
}

/* Browser QA fix: final direct no-text image overrides for homepage cards */
.hp-decisions .hp-bento .hp-dc--jr::before {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--narita::before,
.hp-decisions .hp-bento .hp-dc--haneda::before {
  background-image: url('/assets/images/generated/gen-haneda-transfer.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--subway::before,
.hp-decisions .hp-bento .hp-dc--suica::before {
  background-image: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--wide::before {
  background-image: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--hakone::before {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
}

.hp-decisions .hp-bento .hp-dc--osaka::before {
  background-image: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
}

/* Browser QA fix: premium compact design for homepage guide paths */
.hp-seo-paths {
  padding: 64px 0 70px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 42%, #eef4fb 100%) !important;
  overflow-x: hidden !important;
}

.hp-seo-paths .container {
  max-width: 1120px !important;
}

.hp-seo-paths .hp-section-header {
  margin: 0 auto 26px !important;
  max-width: 680px !important;
  text-align: center !important;
}

.hp-seo-paths .hp-section-header h2 {
  margin-bottom: 10px !important;
  color: #0f1923 !important;
  letter-spacing: -0.025em !important;
}

.hp-seo-paths .hp-section-header p {
  color: #64748b !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.hp-seo-paths .seo-guide-grid,
.hp-seo-paths .seo-guide-grid--compact {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding: 18px !important;
  border: 1px solid rgba(148, 163, 184, 0.24) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 18px 50px rgba(15, 25, 35, 0.08) !important;
}

.hp-seo-paths .seo-guide-card,
.hp-seo-paths .seo-guide-grid--compact .seo-guide-card {
  position: relative !important;
  display: flex !important;
  min-height: 0 !important;
  height: auto !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 7px !important;
  padding: 16px 16px 15px 18px !important;
  border: 1px solid #e3eaf2 !important;
  border-left: 3px solid #0d9488 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #0f1923 !important;
  box-shadow: 0 1px 2px rgba(15, 25, 35, 0.04) !important;
  overflow: hidden !important;
}

.hp-seo-paths .seo-guide-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 0 auto !important;
  width: 40px !important;
  background: linear-gradient(90deg, rgba(13, 148, 136, 0), rgba(13, 148, 136, 0.08)) !important;
  opacity: 0 !important;
  transition: opacity 180ms ease !important;
  pointer-events: none !important;
}

.hp-seo-paths .seo-guide-card:hover {
  transform: translateY(-2px) !important;
  border-color: #b9d5e8 !important;
  border-left-color: #14b8a6 !important;
  box-shadow: 0 12px 28px rgba(15, 25, 35, 0.10) !important;
}

.hp-seo-paths .seo-guide-card:hover::after {
  opacity: 1 !important;
}

.hp-seo-paths .seo-guide-card span {
  display: block !important;
  color: #64748b !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.hp-seo-paths .seo-guide-card strong {
  display: block !important;
  color: #0f1923 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.015em !important;
}

.hp-seo-paths .seo-guide-card em {
  display: inline-flex !important;
  width: fit-content !important;
  align-items: center !important;
  margin-top: 3px !important;
  color: #0f766e !important;
  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.hp-seo-paths .seo-guide-card:nth-child(1),
.hp-seo-paths .seo-guide-card:nth-child(2),
.hp-seo-paths .seo-guide-card:nth-child(3),
.hp-seo-paths .seo-guide-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

@media (max-width: 980px) {
  .hp-seo-paths .seo-guide-grid,
  .hp-seo-paths .seo-guide-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .hp-seo-paths {
    padding: 46px 0 52px !important;
    background: #f8fafc !important;
  }

  .hp-seo-paths .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hp-seo-paths .hp-section-header {
    margin-bottom: 18px !important;
    text-align: left !important;
  }

  .hp-seo-paths .hp-section-header h2 {
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  .hp-seo-paths .hp-section-header p {
    font-size: 15px !important;
  }

  .hp-seo-paths .seo-guide-grid,
  .hp-seo-paths .seo-guide-grid--compact {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .hp-seo-paths .seo-guide-card,
  .hp-seo-paths .seo-guide-grid--compact .seo-guide-card {
    min-height: 0 !important;
    padding: 15px 16px 14px !important;
    gap: 6px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
  }

  .hp-seo-paths .seo-guide-card strong {
    font-size: 18px !important;
    line-height: 1.18 !important;
  }
}

/* ==============================================================
   CANONICAL BENTO CARD SYSTEM 鈥 v4 (final, no more stacking)
   This block is last in the file and wins every prior override.
   Do not add new bento rules above this block.
   ==============================================================

   Layout: flex column 鈥 ::before (photo, top 58-62%) then text
   panel (white, bottom 38-42%).  No ::after overlay.  Dark text.
   ============================================================== */

/* --- Grid container ------------------------------------------ */
.hp-decisions .hp-bento {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-template-rows: 340px 270px 265px !important;
  grid-auto-rows: unset !important;
  gap: 12px !important;
  align-items: stretch !important;
  margin-top: 0 !important;
}

/* --- Base card ----------------------------------------------- */
.hp-decisions .hp-bento .hp-dc {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  border: 1px solid #dde4ee !important;
  box-shadow: 0 1px 4px rgba(15,23,42,.05), 0 3px 12px rgba(15,23,42,.04) !important;
  background: #ffffff !important;
  color: #0f172a !important;
  text-decoration: none !important;
  transition: transform .16s ease, box-shadow .16s ease !important;
  padding: 0 !important;
  min-height: 0 !important;
  isolation: isolate !important;
}

.hp-decisions .hp-bento .hp-dc:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(15,23,42,.10) !important;
}

/* --- Image pane (::before = top of card) --------------------- */
.hp-decisions .hp-bento .hp-dc::before {
  content: '' !important;
  display: block !important;
  position: relative !important;
  inset: auto !important;
  flex: 0 0 58% !important;
  width: 100% !important;
  min-height: 0 !important;
  background-image: var(--bento-img) !important;
  background-size: cover !important;
  background-position: var(--bento-pos, center) !important;
  background-color: #dde4ee !important;
  background-repeat: no-repeat !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  border-radius: 0 !important;
  border: 0 !important;
}

/* JR Pass (large card) 鈥 slightly more image */
.hp-decisions .hp-bento .hp-dc--jr::before {
  flex-basis: 62% !important;
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  background-position: 48% center !important;
}
.hp-decisions .hp-bento .hp-dc--narita::before {
  background-image: url('/assets/images/generated/gen-haneda-transfer.jpg') !important;
  background-position: 56% center !important;
}
.hp-decisions .hp-bento .hp-dc--subway::before {
  background-image: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  background-position: 62% center !important;
}
.hp-decisions .hp-bento .hp-dc--haneda::before {
  flex-basis: 58% !important;
  background-image: url('/assets/images/generated/gen-haneda-transfer.jpg') !important;
  background-position: 36% center !important;
}
.hp-decisions .hp-bento .hp-dc--suica::before {
  background-image: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  background-position: 38% center !important;
}
.hp-decisions .hp-bento .hp-dc--wide::before {
  background-image: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg') !important;
  background-position: 50% center !important;
}
.hp-decisions .hp-bento .hp-dc--hakone::before {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  background-position: center 50% !important;
}
.hp-decisions .hp-bento .hp-dc--osaka::before {
  background-image: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  background-position: 58% center !important;
}

/* --- No overlay (:after hidden completely) ------------------- */
.hp-decisions .hp-bento .hp-dc::after {
  display: none !important;
  content: none !important;
}

/* --- Hide elements that no longer belong in design ----------- */
.hp-decisions .hp-bento .hp-dc-icon-sm,
.hp-decisions .hp-bento .hp-dc-icon-xs,
.hp-decisions .hp-bento .hp-dc-deco,
.hp-decisions .hp-bento .hp-dc-haneda-chips,
.hp-decisions .hp-bento .hp-dc-price-tag,
.hp-decisions .hp-bento .hp-dc-cta-xs { display: none !important; }

/* --- Pill badge (JR Pass "Most Asked") ----------------------- */
.hp-decisions .hp-bento .hp-dc-top {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  padding: 10px 14px 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.hp-decisions .hp-bento .hp-dc-pill {
  display: inline-flex !important;
  align-items: center !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  background: #ccfbf1 !important;
  border: 1px solid #99f6e4 !important;
  color: #0f766e !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

/* --- JR Pass large card text --------------------------------- */
.hp-decisions .hp-bento .hp-dc-feat-body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 6px 14px 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.hp-decisions .hp-bento .hp-dc-feat-title {
  flex: 0 0 auto !important;
  margin: 0 0 5px !important;
  font-size: clamp(22px, 2.8vw, 32px) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
  color: #0f172a !important;
  text-shadow: none !important;
}

.hp-decisions .hp-bento .hp-dc-feat-desc {
  flex: 0 0 auto !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  color: #475569 !important;
  text-shadow: none !important;
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
}

.hp-decisions .hp-bento .hp-dc-feat-cta {
  flex: 0 0 auto !important;
  margin: auto 0 14px 14px !important;
  padding: 0 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #0d9488 !important;
  background: transparent !important;
  border: 0 !important;
  text-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: block !important;
}

/* --- Standard card text (all other 7 cards) ------------------ */
.hp-decisions .hp-bento .hp-dc-title-sm {
  flex: 0 0 auto !important;
  margin: 10px 14px 3px !important;
  padding: 0 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
  color: #0f172a !important;
  text-shadow: none !important;
}

.hp-decisions .hp-bento .hp-dc-desc-sm {
  flex: 1 1 auto !important;
  margin: 0 14px !important;
  padding: 0 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: #64748b !important;
  text-shadow: none !important;
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
}

.hp-decisions .hp-bento .hp-dc-cta-sm {
  flex: 0 0 auto !important;
  display: block !important;
  margin: auto 0 12px 14px !important;
  padding: 0 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #0d9488 !important;
  background: transparent !important;
  border: 0 !important;
  text-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Haneda: left-content wrapper */
.hp-decisions .hp-bento .hp-dc-haneda-left {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

/* --- Grid positions ------------------------------------------ */
.hp-decisions .hp-bento .hp-dc--jr     { grid-column: 1 / 3 !important; grid-row: 1 / 3 !important; }
.hp-decisions .hp-bento .hp-dc--narita  { grid-column: 3 !important;    grid-row: 1 !important; }
.hp-decisions .hp-bento .hp-dc--subway  { grid-column: 4 !important;    grid-row: 1 !important; }
.hp-decisions .hp-bento .hp-dc--haneda  { grid-column: 3 / 5 !important; grid-row: 2 !important; }
.hp-decisions .hp-bento .hp-dc--suica   { grid-column: 1 !important;    grid-row: 3 !important; }
.hp-decisions .hp-bento .hp-dc--wide    { grid-column: 2 !important;    grid-row: 3 !important; }
.hp-decisions .hp-bento .hp-dc--hakone  { grid-column: 3 !important;    grid-row: 3 !important; }
.hp-decisions .hp-bento .hp-dc--osaka   { grid-column: 4 !important;    grid-row: 3 !important; }

/* --- Tablet: 2 columns --------------------------------------- */
@media (min-width: 768px) and (max-width: 1079px) {
  .hp-decisions .hp-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: 420px 240px 240px 240px 240px !important;
    grid-auto-rows: 240px !important;
  }
  .hp-decisions .hp-bento .hp-dc--jr     { grid-column: 1 / 3 !important; grid-row: 1 !important; }
  .hp-decisions .hp-bento .hp-dc--narita  { grid-column: 1 !important;    grid-row: 2 !important; }
  .hp-decisions .hp-bento .hp-dc--subway  { grid-column: 2 !important;    grid-row: 2 !important; }
  .hp-decisions .hp-bento .hp-dc--haneda  { grid-column: 1 / 3 !important; grid-row: 3 !important; }
  .hp-decisions .hp-bento .hp-dc--suica   { grid-column: 1 !important;    grid-row: 4 !important; }
  .hp-decisions .hp-bento .hp-dc--wide    { grid-column: 2 !important;    grid-row: 4 !important; }
  .hp-decisions .hp-bento .hp-dc--hakone  { grid-column: 1 !important;    grid-row: 5 !important; }
  .hp-decisions .hp-bento .hp-dc--osaka   { grid-column: 2 !important;    grid-row: 5 !important; }
  .hp-decisions .hp-bento .hp-dc--jr::before { flex-basis: 64% !important; }
}

/* --- Mobile: single column ----------------------------------- */
@media (max-width: 767px) {
  .hp-decisions .hp-bento {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    grid-auto-rows: auto !important;
    gap: 10px !important;
  }
  .hp-decisions .hp-bento .hp-dc--jr,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--haneda,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 280px !important;
  }
  .hp-decisions .hp-bento .hp-dc--jr { min-height: 340px !important; }
  .hp-decisions .hp-bento .hp-dc--jr::before { flex-basis: 60% !important; }
  .hp-decisions .hp-bento .hp-dc::before { flex-basis: 56% !important; }
}


/* ==============================================================
   GUIDE INDEX 鈥 grouped decision guide list (replaces seo-grid)
   ============================================================== */

/* Section inherits padding + background from .hp-seo-paths rules above */

.hp-guide-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 28px;
  align-items: start;
}

.hp-guide-cat-label {
  display: block;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #d8e3ef;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0d9488;
}

.hp-guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hp-guide-link {
  display: block;
  padding: 7px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .12s ease;
}

.hp-guide-link:hover {
  background: #edf4fb;
}

.hp-guide-link-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 2px;
}

.hp-guide-link-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.hp-guide-link:hover .hp-guide-link-title {
  color: #0d9488;
}

.hp-guide-footer {
  margin-top: 28px;
  text-align: center;
}

.hp-guide-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 18px;
  border: 1.5px solid #0d9488;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0d9488;
  text-decoration: none;
  transition: background .14s ease, color .14s ease;
}

.hp-guide-view-all:hover {
  background: #0d9488;
  color: #fff;
}

/* Tablet: 2 columns */
@media (min-width: 600px) and (max-width: 1079px) {
  .hp-guide-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: single column */
@media (max-width: 599px) {
  .hp-guide-cats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hp-guide-link-title {
    font-size: 14px;
  }
}

/* Align guide section container width with the rest of the page */
.hp-seo-paths.hp-guide-index .container {
  max-width: 1080px !important;
}

/* Browser QA fix: move JR Pass badge onto the image so the text panel starts higher */
.hp-decisions .hp-bento .hp-dc--jr .hp-dc-top {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  z-index: 4 !important;
  display: flex !important;
  justify-content: flex-end !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  pointer-events: none !important;
}

.hp-decisions .hp-bento .hp-dc--jr .hp-dc-pill {
  box-shadow: 0 8px 20px rgba(15, 25, 35, 0.12) !important;
}

.hp-decisions .hp-bento .hp-dc--jr .hp-dc-feat-body {
  padding-top: 12px !important;
}

/* Browser QA fix: unify mobile white text panels in homepage decision cards */
@media (max-width: 767px) {
  .hp-decisions .hp-bento .hp-dc,
  .hp-decisions .hp-bento .hp-dc--jr,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--haneda,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    min-height: 0 !important;
    height: auto !important;
  }

  .hp-decisions .hp-bento .hp-dc::before,
  .hp-decisions .hp-bento .hp-dc--narita::before,
  .hp-decisions .hp-bento .hp-dc--subway::before,
  .hp-decisions .hp-bento .hp-dc--haneda::before,
  .hp-decisions .hp-bento .hp-dc--suica::before,
  .hp-decisions .hp-bento .hp-dc--wide::before,
  .hp-decisions .hp-bento .hp-dc--hakone::before,
  .hp-decisions .hp-bento .hp-dc--osaka::before {
    flex: 0 0 156px !important;
    min-height: 156px !important;
  }

  .hp-decisions .hp-bento .hp-dc--jr::before {
    flex: 0 0 172px !important;
    min-height: 172px !important;
  }

  .hp-decisions .hp-bento .hp-dc-title-sm,
  .hp-decisions .hp-bento .hp-dc-desc-sm,
  .hp-decisions .hp-bento .hp-dc-cta-sm,
  .hp-decisions .hp-bento .hp-dc-feat-title,
  .hp-decisions .hp-bento .hp-dc-feat-desc,
  .hp-decisions .hp-bento .hp-dc-feat-cta {
    flex: 0 0 auto !important;
  }

  .hp-decisions .hp-bento .hp-dc-title-sm,
  .hp-decisions .hp-bento .hp-dc-feat-title {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
  }

  .hp-decisions .hp-bento .hp-dc-desc-sm,
  .hp-decisions .hp-bento .hp-dc-feat-desc {
    margin-bottom: 10px !important;
  }

  .hp-decisions .hp-bento .hp-dc-cta-sm,
  .hp-decisions .hp-bento .hp-dc-feat-cta {
    margin: 0 !important;
    padding-bottom: 0 !important;
  }

  .hp-decisions .hp-bento .hp-dc-feat-body {
    flex: 0 0 auto !important;
    padding: 14px 14px 0 !important;
  }
}

/* Browser QA fix: premium guide index and calculator-flow sections */
.hp-seo-paths.hp-guide-index {
  padding: 66px 0 !important;
  background: linear-gradient(180deg, #f8fafc 0%, #eef5fb 100%) !important;
}

.hp-seo-paths.hp-guide-index .container {
  max-width: 1080px !important;
}

.hp-seo-paths.hp-guide-index .hp-section-header {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 28px !important;
  max-width: none !important;
  margin: 0 0 24px !important;
  text-align: left !important;
}

.hp-seo-paths.hp-guide-index .hp-section-header h2 {
  max-width: 460px !important;
  margin: 0 !important;
  font-size: clamp(32px, 4vw, 46px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.04em !important;
  color: #0f1923 !important;
}

.hp-seo-paths.hp-guide-index .hp-section-header p {
  max-width: 380px !important;
  margin: 0 !important;
  color: #526179 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.hp-guide-cats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 0 !important;
}

.hp-guide-cat {
  position: relative !important;
  min-width: 0 !important;
  padding: 18px 16px 16px !important;
  border: 1px solid #dce6f1 !important;
  border-top: 3px solid #0d9488 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 36px rgba(15, 25, 35, 0.07) !important;
  overflow: hidden !important;
}

.hp-guide-cat::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 72px !important;
  height: 72px !important;
  background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), rgba(20, 184, 166, 0) 70%) !important;
  pointer-events: none !important;
}

.hp-guide-cat-label {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin: 0 0 12px !important;
  padding: 0 0 10px !important;
  border-bottom: 1px solid #e4ecf5 !important;
  color: #0f766e !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.hp-guide-list {
  gap: 4px !important;
}

.hp-guide-link {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 10px !important;
  align-items: center !important;
  min-height: 48px !important;
  padding: 9px 30px 9px 10px !important;
  border-radius: 7px !important;
  background: transparent !important;
}

.hp-guide-link::after {
  content: "->" !important;
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #0d9488 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  opacity: 0 !important;
  transition: opacity 140ms ease, right 140ms ease !important;
}

.hp-guide-link:hover {
  background: #edf7f5 !important;
}

.hp-guide-link:hover::after {
  right: 8px !important;
  opacity: 1 !important;
}

.hp-guide-link-label {
  color: #70819a !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
}

.hp-guide-link-title {
  color: #13233a !important;
  font-size: 13.5px !important;
  font-weight: 750 !important;
  line-height: 1.22 !important;
}

.hp-guide-footer {
  margin-top: 22px !important;
}

.hp-guide-view-all {
  background: #0d9488 !important;
  color: #ffffff !important;
  border-color: #0d9488 !important;
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.18) !important;
}

.hp-how {
  padding: 72px 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.hp-how > .container {
  max-width: 1080px !important;
  padding: 34px !important;
  border: 1px solid #dde7f1 !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%) !important;
  box-shadow: 0 24px 70px rgba(15, 25, 35, 0.10) !important;
}

.hp-how .hp-section-header {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 28px !important;
  max-width: none !important;
  margin: 0 0 26px !important;
  text-align: left !important;
}

.hp-how .hp-section-header h2 {
  max-width: 430px !important;
  margin: 0 !important;
  color: #0f1923 !important;
  font-size: clamp(30px, 3.4vw, 42px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.hp-how .hp-section-header p {
  margin: 0 !important;
  color: #64748b !important;
  font-size: 16px !important;
  font-weight: 650 !important;
}

.hp-how-v2 {
  grid-template-columns: 1fr 34px 1.25fr 34px 1fr !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.hp-how-v2-step {
  gap: 9px !important;
}

.hp-how-v2-badge {
  border: 1px solid #99f6e4 !important;
  border-radius: 6px !important;
  background: #f0fdfa !important;
  color: #0f766e !important;
}

.hp-how-v2-card {
  height: 100% !important;
  border-radius: 10px !important;
  border: 1px solid #dce6f1 !important;
  background: #ffffff !important;
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.08) !important;
}

.hp-how-v2-card-header {
  padding: 14px 16px !important;
  background: #f8fafc !important;
}

.hp-how-v2-input-row {
  padding: 13px 16px !important;
}

.hp-how-v2-compare {
  padding: 18px !important;
}

.hp-how-v2-option {
  border-radius: 8px !important;
}

.hp-how-v2-card--result {
  border-color: #0f2f47 !important;
  background: linear-gradient(145deg, #082338 0%, #0b3b4a 100%) !important;
  box-shadow: 0 18px 46px rgba(8, 35, 56, 0.20) !important;
}

.hp-how-v2-card--result .hp-how-v2-card-header {
  background: rgba(255, 255, 255, 0.06) !important;
}

.hp-how-v2-arrow {
  color: #0d9488 !important;
  font-weight: 900 !important;
}

@media (max-width: 900px) {
  .hp-seo-paths.hp-guide-index .hp-section-header,
  .hp-how .hp-section-header {
    display: block !important;
  }

  .hp-seo-paths.hp-guide-index .hp-section-header h2,
  .hp-how .hp-section-header h2 {
    margin-bottom: 10px !important;
  }

  .hp-guide-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hp-how-v2 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 599px) {
  .hp-seo-paths.hp-guide-index,
  .hp-how {
    padding: 46px 0 !important;
  }

  .hp-seo-paths.hp-guide-index .container,
  .hp-how > .container {
    margin-left: 16px !important;
    margin-right: 16px !important;
    padding: 20px !important;
    border-radius: 12px !important;
  }

  .hp-seo-paths.hp-guide-index .hp-section-header h2,
  .hp-how .hp-section-header h2 {
    font-size: 29px !important;
    line-height: 1.02 !important;
  }

  .hp-guide-cats {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hp-guide-cat {
    padding: 16px 14px !important;
  }

  .hp-guide-link {
    min-height: 44px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .hp-guide-link-title {
    font-size: 14px !important;
  }

  .hp-how-v2-arrow {
    padding: 7px 0 !important;
    transform: rotate(90deg) !important;
  }

  .hp-how-v2-card {
    box-shadow: 0 8px 22px rgba(15, 25, 35, 0.08) !important;
  }
}

/* Browser QA fix: normalize mobile decision-card title rhythm */
@media (max-width: 767px) {
  .hp-decisions .hp-bento .hp-dc {
    overflow: hidden !important;
  }

  .hp-decisions .hp-bento .hp-dc-title-sm,
  .hp-decisions .hp-bento .hp-dc-feat-title {
    min-height: 44px !important;
    max-height: 44px !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    overflow: hidden !important;
    margin: 0 0 8px !important;
    color: #0f172a !important;
    font-size: 20px !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
  }

  .hp-decisions .hp-bento .hp-dc-feat-title br,
  .hp-decisions .hp-bento .hp-dc-title-sm br {
    display: none !important;
  }

  .hp-decisions .hp-bento .hp-dc-desc-sm,
  .hp-decisions .hp-bento .hp-dc-feat-desc {
    min-height: 38px !important;
    max-height: 38px !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    overflow: hidden !important;
    margin: 0 0 12px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .hp-decisions .hp-bento .hp-dc-cta-sm,
  .hp-decisions .hp-bento .hp-dc-feat-cta {
    display: block !important;
    min-height: 18px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  .hp-decisions .hp-bento .hp-dc--jr .hp-dc-feat-body {
    padding-top: 14px !important;
  }
}

/* Browser QA fix: remove excess mobile whitespace from decision-card text panels */
@media (max-width: 767px) {
  .hp-decisions .hp-bento .hp-dc,
  .hp-decisions .hp-bento .hp-dc--jr,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--haneda,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 0 14px !important;
    background: #ffffff !important;
  }

  .hp-decisions .hp-bento .hp-dc::before,
  .hp-decisions .hp-bento .hp-dc--jr::before,
  .hp-decisions .hp-bento .hp-dc--narita::before,
  .hp-decisions .hp-bento .hp-dc--subway::before,
  .hp-decisions .hp-bento .hp-dc--haneda::before,
  .hp-decisions .hp-bento .hp-dc--suica::before,
  .hp-decisions .hp-bento .hp-dc--wide::before,
  .hp-decisions .hp-bento .hp-dc--hakone::before,
  .hp-decisions .hp-bento .hp-dc--osaka::before {
    flex: 0 0 150px !important;
    height: 150px !important;
    min-height: 150px !important;
    max-height: 150px !important;
  }

  .hp-decisions .hp-bento .hp-dc--jr::before {
    flex-basis: 166px !important;
    height: 166px !important;
    min-height: 166px !important;
    max-height: 166px !important;
  }

  .hp-decisions .hp-bento .hp-dc > h3,
  .hp-decisions .hp-bento .hp-dc > p,
  .hp-decisions .hp-bento .hp-dc > span,
  .hp-decisions .hp-bento .hp-dc .hp-dc-haneda-left,
  .hp-decisions .hp-bento .hp-dc .hp-dc-feat-body,
  .hp-decisions .hp-bento .hp-dc .hp-dc-feat-cta {
    margin-left: 14px !important;
    margin-right: 14px !important;
  }

  .hp-decisions .hp-bento .hp-dc-title-sm,
  .hp-decisions .hp-bento .hp-dc-feat-title {
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    margin-top: 13px !important;
    margin-bottom: 5px !important;
  }

  .hp-decisions .hp-bento .hp-dc-desc-sm,
  .hp-decisions .hp-bento .hp-dc-feat-desc {
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    margin-bottom: 9px !important;
  }

  .hp-decisions .hp-bento .hp-dc-cta-sm,
  .hp-decisions .hp-bento .hp-dc-feat-cta {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hp-decisions .hp-bento .hp-dc-feat-body {
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* Browser QA fix: dark headers for homepage guide category cards */
.hp-guide-cat {
  padding-top: 0 !important;
  overflow: hidden !important;
}

.hp-guide-cat-label {
  display: flex !important;
  align-items: center !important;
  min-height: 48px !important;
  margin: 0 -16px 14px !important;
  padding: 0 16px !important;
  border-bottom: 0 !important;
  background: linear-gradient(135deg, #10233f 0%, #12365c 100%) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
}

.hp-guide-cat:nth-child(2) .hp-guide-cat-label {
  background: linear-gradient(135deg, #0b2d42 0%, #0d5c67 100%) !important;
}

.hp-guide-cat:nth-child(3) .hp-guide-cat-label {
  background: linear-gradient(135deg, #143052 0%, #1f5f8b 100%) !important;
}

.hp-guide-cat:nth-child(4) .hp-guide-cat-label {
  background: linear-gradient(135deg, #102a36 0%, #0f766e 100%) !important;
}

@media (max-width: 599px) {
  .hp-guide-cat-label {
    min-height: 46px !important;
    margin-left: -14px !important;
    margin-right: -14px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* Browser QA fix: dark product header for calculator-flow section */
.hp-how .hp-section-header {
  position: relative !important;
  align-items: center !important;
  margin: -34px -34px 28px !important;
  padding: 26px 34px !important;
  border-radius: 14px 14px 0 0 !important;
  background: linear-gradient(135deg, #10233f 0%, #12365c 58%, #0f766e 140%) !important;
  color: #ffffff !important;
  overflow: hidden !important;
}

.hp-how .hp-section-header::after {
  content: "" !important;
  position: absolute !important;
  right: -36px !important;
  top: -52px !important;
  width: 180px !important;
  height: 180px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.30), rgba(20, 184, 166, 0) 68%) !important;
  pointer-events: none !important;
}

.hp-how .hp-section-header h2 {
  position: relative !important;
  z-index: 1 !important;
  color: #ffffff !important;
  text-shadow: none !important;
}

.hp-how .hp-section-header p {
  position: relative !important;
  z-index: 1 !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-weight: 700 !important;
}

@media (max-width: 599px) {
  .hp-how .hp-section-header {
    margin: -20px -20px 22px !important;
    padding: 22px 20px !important;
    border-radius: 12px 12px 0 0 !important;
  }
}

/* Browser QA fix: prevent awkward one-word wraps in final CTA on mobile */
@media (max-width: 599px) {
  .hp-final-cta {
    padding: 64px 0 54px !important;
  }

  .hp-final-cta .container,
  .hp-final-cta-box,
  .hp-final-cta-inner {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  .hp-final-cta h2 {
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 25px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
    text-wrap: balance !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: manual !important;
  }

  .hp-final-cta p {
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    text-wrap: pretty !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hp-final-cta .button,
  .hp-final-cta a.button {
    min-width: 162px !important;
    max-width: 220px !important;
  }
}

/* Browser QA fix: unify footer on deeper near-black background */
.site-footer {
  background: #07111f !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.site-footer .container {
  background: transparent !important;
}

.footer-brand {
  color: #ffffff !important;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.72) !important;
}

.footer-note,
.footer-bottom {
  color: rgba(255, 255, 255, 0.42) !important;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68) !important;
}

.footer-links a:hover {
  color: #5eead4 !important;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 599px) {
  .site-footer {
    background: #050d18 !important;
  }
}


/* 鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲
   VISUAL FIX PASS 鈥 2026-06-21
   Restores overlay text-contrast, standardizes
   section header weight, ensures cover sizing.
   Later !important wins the cascade for all
   rules that collide with earlier layers.
   鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲 */

/* 鈹鈹 1. Hero overlays 鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹
   All three were hidden at line 5413-5416.
   Their gradient definitions remain in the base
   rules 鈥 restoring display is enough.         */
.hp-hero-overlay,
.platform-hero-overlay,
.tool-page-hero-overlay {
  display: block !important;
}

/* 鈹鈹 2. Inner-page banner bottom fade 鈹鈹鈹鈹鈹鈹鈹鈹鈹
   .page-hero-banner::after was hidden at
   line 5319. Restore the white bottom-fade so
   the banner bleeds into white page content.   */
.page-hero-banner::after {
  display: block !important;
}

/* 鈹鈹 3. Region card overlay 鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹鈹
   .hp-region-overlay had display:none at line
   5320 AND background:none at line 6973-6982.
   Must restore both 鈥 background-image is not
   inherited from the base rule since it was
   explicitly overwritten to none.              */
.hp-regions .hp-region-overlay {
  display: block !important;
  opacity: 1 !important;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.30) 50%,
    rgba(0, 0, 0, 0.04) 100%
  ) !important;
}

/* 鈹鈹 4. Section heading weight normalization 鈹鈹
   Article/tool pages used 600-weight h2 (line
   1029) and geo pages used 700 (line 1983).
   Bumping both toward 700-800 makes them feel
   as deliberate as the homepage headings.      */
.section-heading {
  font-weight: 700;
  letter-spacing: -0.018em;
}

.geo-section-header h2 {
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.15;
}

.article h2 {
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

/* 鈹鈹 5. .tw-section-header utility class 鈹鈹鈹鈹鈹
   Standard section header for new page sections
   and any page that replaces scattered heading
   patterns. Three modifiers: center, light.    */
.tw-section-header {
  margin-bottom: var(--space-8);
}
.tw-section-header--center { text-align: center; }
.tw-section-header--light .tw-sh-title { color: var(--white); }
.tw-section-header--light .tw-sh-sub   { color: rgba(255,255,255,0.62); }

.tw-sh-eyebrow {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.tw-section-header--light .tw-sh-eyebrow { color: var(--teal-mid); }

.tw-sh-title {
  margin: 0 0 var(--space-2);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-primary);
}

.tw-sh-sub {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 鈹鈹 6. Global image sizing safety net 鈹鈹鈹鈹鈹鈹鈹鈹
   Ensures no background image can accidentally
   render as contain (letterbox) on any element
   that previously had explicit cover set.       */
.tool-page-hero,
.platform-hero,
.hp-hero-bg,
.page-hero-banner,
.tool-hub-hero,
.hp-region--tokyo,
.hp-region--airports,
.hp-region--hakone,
.hp-region--osaka,
.hp-region--shinkansen,
.hp-region--coming {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* TripWorth unified logo lock */
.site-header .brand-logo,
.site-footer .footer-brand {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header .brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 36px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  flex: 0 0 auto !important;
}

.site-header .brand-logo svg {
  width: 26px !important;
  height: 18px !important;
  display: block !important;
  flex: 0 0 26px !important;
}

.site-header .brand-logo svg path {
  stroke: #14b8a6 !important;
  stroke-width: 2.5 !important;
}

.site-header .brand-wordmark {
  display: inline-flex !important;
  align-items: baseline !important;
  white-space: nowrap !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  color: #ffffff !important;
}

.site-header .brand-wordmark span {
  color: #14b8a6 !important;
}

.site-footer .footer-brand {
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

@media (max-width: 520px) {
  .site-header .brand-logo {
    gap: 7px !important;
    min-height: 34px !important;
  }

  .site-header .brand-logo svg {
    width: 24px !important;
    height: 17px !important;
    flex-basis: 24px !important;
  }

  .site-header .brand-wordmark {
    font-size: 17px !important;
  }
}

/* Browser QA fix: compact mobile bento text panels v2 */
@media (max-width: 767px) {
  .hp-decisions .hp-bento {
    align-items: stretch !important;
    gap: 14px !important;
  }

  .hp-decisions .hp-bento .hp-dc,
  .hp-decisions .hp-bento .hp-dc--jr,
  .hp-decisions .hp-bento .hp-dc--narita,
  .hp-decisions .hp-bento .hp-dc--subway,
  .hp-decisions .hp-bento .hp-dc--haneda,
  .hp-decisions .hp-bento .hp-dc--suica,
  .hp-decisions .hp-bento .hp-dc--wide,
  .hp-decisions .hp-bento .hp-dc--hakone,
  .hp-decisions .hp-bento .hp-dc--osaka {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: unset !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 0 16px !important;
    background: #ffffff !important;
  }

  .hp-decisions .hp-bento .hp-dc::before,
  .hp-decisions .hp-bento .hp-dc--jr::before,
  .hp-decisions .hp-bento .hp-dc--narita::before,
  .hp-decisions .hp-bento .hp-dc--subway::before,
  .hp-decisions .hp-bento .hp-dc--haneda::before,
  .hp-decisions .hp-bento .hp-dc--suica::before,
  .hp-decisions .hp-bento .hp-dc--wide::before,
  .hp-decisions .hp-bento .hp-dc--hakone::before,
  .hp-decisions .hp-bento .hp-dc--osaka::before {
    flex: 0 0 166px !important;
    width: 100% !important;
    height: 166px !important;
    min-height: 166px !important;
    max-height: 166px !important;
    margin: 0 !important;
  }

  .hp-decisions .hp-bento .hp-dc--jr::before {
    flex-basis: 176px !important;
    height: 176px !important;
    min-height: 176px !important;
    max-height: 176px !important;
  }

  .hp-decisions .hp-bento .hp-dc .hp-dc-haneda-left,
  .hp-decisions .hp-bento .hp-dc .hp-dc-feat-body {
    display: block !important;
    flex: 0 0 auto !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 14px 14px 0 !important;
  }

  .hp-decisions .hp-bento .hp-dc-title-sm,
  .hp-decisions .hp-bento .hp-dc-feat-title,
  .hp-decisions .hp-bento .hp-dc-desc-sm,
  .hp-decisions .hp-bento .hp-dc-feat-desc,
  .hp-decisions .hp-bento .hp-dc-cta-sm,
  .hp-decisions .hp-bento .hp-dc-feat-cta {
    flex: 0 0 auto !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }

  .hp-decisions .hp-bento .hp-dc .hp-dc-haneda-left .hp-dc-title-sm,
  .hp-decisions .hp-bento .hp-dc .hp-dc-haneda-left .hp-dc-desc-sm,
  .hp-decisions .hp-bento .hp-dc .hp-dc-haneda-left .hp-dc-cta-sm,
  .hp-decisions .hp-bento .hp-dc .hp-dc-feat-body .hp-dc-feat-title,
  .hp-decisions .hp-bento .hp-dc .hp-dc-feat-body .hp-dc-feat-desc {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hp-decisions .hp-bento .hp-dc-title-sm,
  .hp-decisions .hp-bento .hp-dc-feat-title {
    margin-top: 14px !important;
    margin-bottom: 5px !important;
  }

  .hp-decisions .hp-bento .hp-dc .hp-dc-haneda-left .hp-dc-title-sm,
  .hp-decisions .hp-bento .hp-dc .hp-dc-feat-body .hp-dc-feat-title {
    margin-top: 0 !important;
  }

  .hp-decisions .hp-bento .hp-dc-desc-sm,
  .hp-decisions .hp-bento .hp-dc-feat-desc {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }

  .hp-decisions .hp-bento .hp-dc-cta-sm,
  .hp-decisions .hp-bento .hp-dc-feat-cta {
    display: inline-flex !important;
    align-items: center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
}

/* Tools hub hero refresh: separate image, quieter title, homepage-style choices */
.tool-hub-hero {
  min-height: 480px !important;
  align-items: center !important;
  background-image: url('/assets/images/tool-hub-castle-fuji.jpg') !important;
  background-position: center center !important;
  background-size: cover !important;
}

.tool-hub-hero::before {
  background:
    linear-gradient(90deg, rgba(7,14,28,.76), rgba(7,14,28,.46) 46%, rgba(7,14,28,.12)),
    linear-gradient(0deg, rgba(7,14,28,.38), rgba(7,14,28,.02) 58%) !important;
}

.tool-hub-hero__inner {
  align-items: center !important;
  padding: 70px 0 54px !important;
}

.tool-hub-title {
  max-width: 680px !important;
  font-size: clamp(38px, 5vw, 58px) !important;
  line-height: 1.02 !important;
  font-weight: 850 !important;
  letter-spacing: -0.015em !important;
}

.tool-hub-sub {
  max-width: 650px !important;
  margin-top: 18px !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,.86) !important;
}

.tool-hub-panel {
  border: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.tool-hub-panel__title {
  margin-bottom: 14px !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 12px !important;
  letter-spacing: .1em !important;
}

.tool-hub-route {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.tool-hub-route__step {
  display: block !important;
  min-height: 50px !important;
  padding: 12px 14px !important;
  border-radius: 2px !important;
  border: 2px solid #1d4ed8 !important;
  background: rgba(255,255,255,.95) !important;
  color: #1e3a8a !important;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(2,6,23,.16) !important;
}

.tool-hub-route__step:nth-child(odd) {
  background: #1d4ed8 !important;
  color: #ffffff !important;
}

.tool-hub-route__name {
  color: inherit !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 850 !important;
}

.tool-hub-route__hint {
  display: none !important;
}

.tool-hub-route__step:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 30px rgba(2,6,23,.20) !important;
}

@media (max-width: 767px) {
  .tool-hub-hero {
    min-height: 440px !important;
    align-items: flex-end !important;
    background-position: center center !important;
  }

  .tool-hub-hero__inner {
    padding: 56px 0 34px !important;
    gap: 24px !important;
  }

  .tool-hub-title {
    max-width: 430px !important;
    font-size: 36px !important;
    line-height: 1.05 !important;
  }

  .tool-hub-sub {
    margin-top: 14px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .tool-hub-panel {
    max-width: none !important;
  }

  .tool-hub-route {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .tool-hub-route__step {
    min-height: 42px !important;
    padding: 10px 12px !important;
  }

  .tool-hub-route__name {
    font-size: 13px !important;
  }
}

/* Tools hub route buttons: match homepage four-button style */
.tool-hub-hero .tool-hub-panel {
  width: 272px !important;
  max-width: 272px !important;
  justify-self: start !important;
}

.tool-hub-hero .tool-hub-panel__title {
  display: none !important;
}

.tool-hub-hero .tool-hub-route {
  display: grid !important;
  grid-template-columns: repeat(2, 124px) !important;
  gap: 8px !important;
  width: 256px !important;
  max-width: 256px !important;
}

.tool-hub-hero .tool-hub-route__step {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 124px !important;
  min-width: 124px !important;
  max-width: 124px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  padding: 0 10px !important;
  border-radius: 2px !important;
  border: 2px solid #1d4ed8 !important;
  box-shadow: 0 8px 18px rgba(2,6,23,.16) !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.tool-hub-hero .tool-hub-route__step:nth-child(1),
.tool-hub-hero .tool-hub-route__step:nth-child(3) {
  background: #1d4ed8 !important;
  color: #ffffff !important;
}

.tool-hub-hero .tool-hub-route__step:nth-child(2),
.tool-hub-hero .tool-hub-route__step:nth-child(4) {
  background: rgba(255,255,255,.96) !important;
  color: #173b86 !important;
}

.tool-hub-hero .tool-hub-route__step > div {
  min-width: 0 !important;
  width: 100% !important;
}

.tool-hub-hero .tool-hub-route__name {
  color: inherit !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: -0.005em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: center !important;
}

.tool-hub-hero .tool-hub-route__hint {
  display: none !important;
}

.tool-hub-hero .tool-hub-route__step:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 22px rgba(2,6,23,.20) !important;
}

@media (max-width: 767px) {
  .tool-hub-hero .tool-hub-panel {
    width: 272px !important;
    max-width: 272px !important;
  }

  .tool-hub-hero .tool-hub-route {
    grid-template-columns: repeat(2, 124px) !important;
    gap: 8px !important;
    width: 256px !important;
    max-width: 256px !important;
  }

  .tool-hub-hero .tool-hub-route__step {
    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    padding: 0 9px !important;
  }

  .tool-hub-hero .tool-hub-route__name {
    font-size: 13px !important;
  }
}

/* Tools hub route buttons: align color and size with homepage brand */
.tool-hub-hero .tool-hub-panel {
  width: 296px !important;
  max-width: 296px !important;
}

.tool-hub-hero .tool-hub-route {
  grid-template-columns: repeat(2, 136px) !important;
  gap: 8px !important;
  width: 280px !important;
  max-width: 280px !important;
}

.tool-hub-hero .tool-hub-route__step {
  width: 136px !important;
  min-width: 136px !important;
  max-width: 136px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  padding: 0 12px !important;
  border-radius: 6px !important;
  border: 1px solid #0d9488 !important;
  box-shadow: 0 4px 20px rgba(13,148,136,.28) !important;
}

.tool-hub-hero .tool-hub-route__step:nth-child(1),
.tool-hub-hero .tool-hub-route__step:nth-child(3) {
  background: #0d9488 !important;
  color: #ffffff !important;
}

.tool-hub-hero .tool-hub-route__step:nth-child(2),
.tool-hub-hero .tool-hub-route__step:nth-child(4) {
  background: rgba(255,255,255,.94) !important;
  color: #0f766e !important;
  border-color: rgba(13,148,136,.72) !important;
  box-shadow: 0 4px 20px rgba(15,23,42,.12) !important;
}

.tool-hub-hero .tool-hub-route__name {
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
}

.tool-hub-hero .tool-hub-route__step:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(13,148,136,.38) !important;
}

@media (max-width: 767px) {
  .tool-hub-hero .tool-hub-panel {
    width: 296px !important;
    max-width: 296px !important;
  }

  .tool-hub-hero .tool-hub-route {
    grid-template-columns: repeat(2, 136px) !important;
    gap: 8px !important;
    width: 280px !important;
    max-width: 280px !important;
  }

  .tool-hub-hero .tool-hub-route__step {
    width: 136px !important;
    min-width: 136px !important;
    max-width: 136px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 10px !important;
  }

  .tool-hub-hero .tool-hub-route__name {
    font-size: 13px !important;
  }
}

/* Tools hub route buttons: frosted translucent, 20 percent larger */
.tool-hub-hero .tool-hub-panel {
  width: 348px !important;
  max-width: 348px !important;
}

.tool-hub-hero .tool-hub-route {
  grid-template-columns: repeat(2, 164px) !important;
  gap: 10px !important;
  width: 338px !important;
  max-width: 338px !important;
}

.tool-hub-hero .tool-hub-route__step {
  width: 164px !important;
  min-width: 164px !important;
  max-width: 164px !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  padding: 0 14px !important;
  border-radius: 6px !important;
  backdrop-filter: blur(14px) saturate(145%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(145%) !important;
  box-shadow: 0 12px 28px rgba(2,6,23,.24) !important;
}

.tool-hub-hero .tool-hub-route__step:nth-child(1),
.tool-hub-hero .tool-hub-route__step:nth-child(3) {
  background: rgba(13,148,136,.78) !important;
  border-color: rgba(94,234,212,.62) !important;
  color: #ffffff !important;
}

.tool-hub-hero .tool-hub-route__step:nth-child(2),
.tool-hub-hero .tool-hub-route__step:nth-child(4) {
  background: rgba(255,255,255,.26) !important;
  border-color: rgba(255,255,255,.58) !important;
  color: #ffffff !important;
}

.tool-hub-hero .tool-hub-route__name {
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-shadow: 0 1px 12px rgba(2,6,23,.28) !important;
}

.tool-hub-hero .tool-hub-route__step:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 34px rgba(2,6,23,.30) !important;
}

@media (max-width: 767px) {
  .tool-hub-hero .tool-hub-panel {
    width: 348px !important;
    max-width: min(348px, calc(100vw - 32px)) !important;
  }

  .tool-hub-hero .tool-hub-route {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: min(338px, calc(100vw - 32px)) !important;
    max-width: min(338px, calc(100vw - 32px)) !important;
  }

  .tool-hub-hero .tool-hub-route__step {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    padding: 0 12px !important;
  }

  .tool-hub-hero .tool-hub-route__name {
    font-size: 14px !important;
  }
}

/* Tools hub route buttons: exact homepage CTA colors */
.tool-hub-hero .tool-hub-route__step:nth-child(1),
.tool-hub-hero .tool-hub-route__step:nth-child(3) {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-color: var(--teal) !important;
  box-shadow: 0 4px 20px rgba(13,148,136,0.5) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.tool-hub-hero .tool-hub-route__step:nth-child(2),
.tool-hub-hero .tool-hub-route__step:nth-child(4) {
  background: rgba(255,255,255,0.12) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.tool-hub-hero .tool-hub-route__step:nth-child(1):hover,
.tool-hub-hero .tool-hub-route__step:nth-child(3):hover {
  background: var(--teal-hover) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 28px rgba(13,148,136,0.55) !important;
}

.tool-hub-hero .tool-hub-route__step:nth-child(2):hover,
.tool-hub-hero .tool-hub-route__step:nth-child(4):hover {
  background: rgba(255,255,255,0.20) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.tool-hub-hero .tool-hub-route__name {
  color: inherit !important;
  text-shadow: none !important;
}

/* Tools hub route buttons: force white text on frosted buttons */
.tool-hub-hero .tool-hub-route__step,
.tool-hub-hero .tool-hub-route__step:link,
.tool-hub-hero .tool-hub-route__step:visited,
.tool-hub-hero .tool-hub-route__step:hover,
.tool-hub-hero .tool-hub-route__step:focus,
.tool-hub-hero .tool-hub-route__step *,
.tool-hub-hero .tool-hub-route__name {
  color: #ffffff !important;
}

/* Tools hub route buttons: final white text lock */
.tool-hub-hero .tool-hub-route__step,
.tool-hub-hero .tool-hub-route__step:nth-child(1),
.tool-hub-hero .tool-hub-route__step:nth-child(2),
.tool-hub-hero .tool-hub-route__step:nth-child(3),
.tool-hub-hero .tool-hub-route__step:nth-child(4),
.tool-hub-hero .tool-hub-route__step:link,
.tool-hub-hero .tool-hub-route__step:visited,
.tool-hub-hero .tool-hub-route__step:hover,
.tool-hub-hero .tool-hub-route__step:focus,
.tool-hub-hero .tool-hub-route__step *,
.tool-hub-hero .tool-hub-route__step .tool-hub-route__name {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Launch P0 fare-data note */
.tool-fare-note {
  padding: 18px 0;
  background: #f8fafc;
  border-top: 1px solid #e5edf6;
}

.tool-fare-note p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

/* Suica vs Pasmo premium decision page */
.ic-page {
  background: #f5f8fb;
  color: #0f172a;
}
.ic-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(20, 184, 166, 0.18), transparent 34%),
    linear-gradient(135deg, #071226 0%, #0f2544 54%, #092f3b 100%);
  color: #fff;
  padding: 76px 0 64px;
}
.ic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}
.ic-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 48px;
  align-items: center;
}
.ic-page .breadcrumb {
  margin: 0 0 22px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.86rem;
}
.ic-page .breadcrumb a {
  color: rgba(94, 234, 212, 0.92);
  text-decoration: none;
}
.ic-eyebrow {
  margin: 0 0 12px;
  color: #5eead4;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ic-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}
.ic-hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(241, 245, 249, 0.86);
  font-size: 1.08rem;
  line-height: 1.75;
}
.ic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.ic-hero__visual {
  position: relative;
  min-height: 472px;
}
.ic-photo {
  position: absolute;
  inset: 0 0 58px 34px;
  border-radius: 12px;
  background-image: url('/assets/images/generated/gen-ic-card-gate.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 80px rgba(0,0,0,0.36);
}
.ic-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(7,18,38,0.02), rgba(7,18,38,0.28));
  pointer-events: none;
}
.ic-verdict-card {
  position: absolute;
  left: 0;
  right: 46px;
  bottom: 0;
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  box-shadow: 0 24px 54px rgba(0,0,0,0.22);
  backdrop-filter: blur(16px);
}
.ic-verdict-card__label {
  display: block;
  margin-bottom: 8px;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ic-verdict-card strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}
.ic-verdict-card p {
  margin: 10px 0 0;
  color: #475569;
  line-height: 1.55;
}
.ic-answer {
  padding: 58px 0;
}
.ic-answer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
}
.ic-answer__main,
.ic-answer__side,
.ic-choice-card,
.ic-scenario-grid article {
  border: 1px solid #dbe5ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15,23,42,0.07);
}
.ic-answer__main {
  padding: 34px;
}
.ic-answer__main h2,
.ic-choice-section h2,
.ic-scenarios h2 {
  letter-spacing: 0;
}
.ic-answer__main h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  font-weight: 900;
}
.ic-answer__main > p:not(.ic-eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.75;
}
.ic-rule-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.ic-rule-list div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 8px;
  background: #f6fafc;
}
.ic-rule-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #14b8a6;
  color: #042f2e;
  font-size: 0.78rem;
  font-weight: 900;
}
.ic-rule-list p {
  margin: 0;
  color: #334155;
  line-height: 1.55;
}
.ic-answer__side {
  padding: 28px;
  background: linear-gradient(180deg, #0f2544 0%, #082f3b 100%);
  color: #fff;
}
.ic-side-label {
  margin: 0 0 12px;
  color: #5eead4;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ic-answer__side h3 {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.15;
}
.ic-answer__side p:last-child {
  color: rgba(226,232,240,0.8);
  line-height: 1.65;
}
.ic-choice-section {
  padding: 72px 0;
}
.ic-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.ic-choice-card {
  padding: 24px;
  min-height: 284px;
  display: flex;
  flex-direction: column;
}
.ic-choice-card--primary {
  border-color: rgba(20,184,166,0.55);
  box-shadow: 0 24px 64px rgba(20,184,166,0.14);
}
.ic-choice-tag {
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 999px;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ic-choice-card h3 {
  margin: 18px 0 10px;
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1.08;
}
.ic-choice-card p {
  margin: 0;
  color: #52637a;
  line-height: 1.58;
}
.ic-choice-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}
.ic-choice-card li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.35;
}
.ic-choice-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14b8a6;
}
.ic-scenarios {
  max-width: 1080px;
}
.ic-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.ic-scenario-grid article {
  padding: 24px;
}
.ic-scenario-grid span {
  color: #0f766e;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.ic-scenario-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.25rem;
  line-height: 1.15;
}
.ic-scenario-grid p {
  margin: 0;
  color: #52637a;
  line-height: 1.6;
}
.ic-page .quick-answer {
  border-left: 3px solid #14b8a6;
}
.ic-page .quick-answer + .quick-answer {
  margin-top: 16px;
}
.ic-page .tool-network {
  margin-top: 0;
}
.ic-page .faq-section {
  max-width: 880px;
}
@media (max-width: 980px) {
  .ic-hero__grid,
  .ic-answer__grid {
    grid-template-columns: 1fr;
  }
  .ic-hero__visual {
    min-height: 390px;
  }
  .ic-photo {
    inset: 0 0 56px 0;
  }
  .ic-verdict-card {
    right: 22px;
  }
  .ic-choice-grid,
  .ic-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .ic-hero {
    padding: 48px 0 42px;
  }
  .ic-hero h1 {
    font-size: 2.55rem;
  }
  .ic-hero__lead {
    font-size: 1rem;
  }
  .ic-hero__visual {
    min-height: 320px;
  }
  .ic-verdict-card {
    left: 14px;
    right: 14px;
    padding: 18px;
  }
  .ic-answer__main,
  .ic-answer__side,
  .ic-choice-card,
  .ic-scenario-grid article {
    border-radius: 8px;
  }
  .ic-answer__main,
  .ic-answer__side {
    padding: 22px;
  }
  .ic-rule-list div {
    grid-template-columns: 1fr;
  }
  .ic-choice-grid,
  .ic-scenario-grid {
    grid-template-columns: 1fr;
  }
  .ic-choice-card {
    min-height: auto;
  }
}

/* Suica vs Pasmo mobile polish pass */
@media (max-width: 640px) {
  .ic-hero {
    padding: 34px 0 34px;
  }

  .ic-hero__grid {
    gap: 24px;
  }

  .ic-page .breadcrumb {
    margin-bottom: 16px;
    font-size: 0.78rem;
  }

  .ic-eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .ic-hero h1 {
    font-size: 2.12rem;
    line-height: 1.02;
  }

  .ic-hero__lead {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .ic-hero__actions {
    margin-top: 22px;
  }

  .ic-hero__actions .button {
    min-height: 46px;
    padding: 13px 16px;
  }

  .ic-hero__visual {
    min-height: 276px;
  }

  .ic-photo {
    inset: 0 0 46px 0;
    border-radius: 10px;
  }

  .ic-verdict-card {
    left: 10px;
    right: 10px;
    padding: 15px 16px;
  }

  .ic-verdict-card strong {
    font-size: 1.22rem;
  }

  .ic-verdict-card p {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

/* Homepage bento image dedupe: final unique map */
.hp-decisions .hp-bento .hp-dc--jr::before {
  background-image: url('/assets/images/card-jr-pass-clean.jpg') !important;
  background-position: center center !important;
}

.hp-decisions .hp-bento .hp-dc--narita::before {
  background-image: url('/assets/images/bento-narita.jpg') !important;
  background-position: center center !important;
}

.hp-decisions .hp-bento .hp-dc--subway::before {
  background-image: url('/assets/images/bento-subway.jpg') !important;
  background-position: center center !important;
}

.hp-decisions .hp-bento .hp-dc--haneda::before {
  background-image: url('/assets/images/bento-haneda.jpg') !important;
  background-position: center center !important;
}

.hp-decisions .hp-bento .hp-dc--suica::before {
  background-image: url('/assets/images/bento-suica.jpg') !important;
  background-position: center center !important;
}

.hp-decisions .hp-bento .hp-dc--wide::before {
  background-image: url('/assets/images/bento-wide.jpg') !important;
  background-position: center center !important;
}

.hp-decisions .hp-bento .hp-dc--hakone::before {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  background-position: center center !important;
}

.hp-decisions .hp-bento .hp-dc--osaka::before {
  background-image: url('/assets/images/bento-osaka-pass.jpg') !important;
  background-position: center center !important;
}


/* Footer final tone: deep blue, not near-black */
.site-footer {
  background: #0b2f4a !important;
}

@media (max-width: 640px) {
  .site-footer {
    background: #0b2f4a !important;
  }
}

/* Narita Express vs Skyliner premium tool page */
.narita-page {
  background: #f5f8fb;
}

.narita-page main {
  background: linear-gradient(180deg, #eef5fb 0%, #f7fafc 28%, #ffffff 100%);
}

.narita-page .tool-hero {
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 62px;
  background:
    linear-gradient(90deg, rgba(9, 24, 45, 0.94) 0%, rgba(9, 28, 51, 0.84) 42%, rgba(9, 28, 51, 0.42) 100%),
    url('/assets/images/bento-narita.jpg') center center / cover no-repeat !important;
}

.narita-page .tool-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(20, 184, 166, 0.20), transparent 28%),
    linear-gradient(180deg, rgba(15, 31, 61, 0) 0%, rgba(15, 31, 61, 0.18) 100%);
}

.narita-page .tool-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.narita-page .tool-intro {
  max-width: 660px;
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.narita-page .tool-intro .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
}

.narita-page .tool-intro .breadcrumb a {
  color: #7dd3fc;
  text-decoration: none;
}

.narita-page .tool-intro h1 {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(2.55rem, 5vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 850;
  text-wrap: balance;
}

.narita-page .tool-intro-sub {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.narita-page .trust-line {
  margin-top: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.18);
  color: #ccfbf1;
  font-weight: 750;
}

.narita-page .trust-line-icon {
  color: #5eead4;
}

.narita-page .context-blurb {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid #14b8a6;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.16);
}

.narita-page .tool-panel {
  display: grid;
  gap: 16px;
  max-width: none;
}

.narita-page .calculator-card,
.narita-page .result-trust-block,
.narita-page .traveler-reports-placeholder {
  overflow: hidden;
  border: 1px solid rgba(214, 226, 240, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.22), 0 2px 8px rgba(15, 25, 35, 0.08);
}

.narita-page .calculator-card {
  padding: 0;
}

.narita-page .calculator-card-header {
  padding: 22px 24px 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbff 100%);
  border-bottom: 1px solid #dbe7f3;
}

.narita-page .calculator-card-header h2,
.narita-page .result-trust-block h2,
.narita-page .traveler-reports-placeholder h2 {
  color: #0f172a;
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 820;
}

.narita-page .calculator-card-header p {
  color: #64748b;
  font-size: 0.94rem;
}

.narita-page .calculator-divider {
  display: none;
}

.narita-page .calc-form {
  padding: 22px 24px 24px;
  gap: 18px;
}

.narita-page .field-label {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.narita-page .input-field,
.narita-page select.input-field {
  min-height: 52px;
  border: 1px solid #cfdae8;
  border-radius: 8px;
  background-color: #ffffff;
  color: #0f172a;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(15, 25, 35, 0.03);
}

.narita-page .input-field:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.13);
}

.narita-page .stepper {
  width: fit-content;
  min-width: 150px;
  padding: 4px;
  border: 1px solid #cfdae8;
  border-radius: 999px;
  background: #f8fafc;
}

.narita-page .stepper-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  color: #0f3d68;
  box-shadow: 0 1px 2px rgba(15, 25, 35, 0.10);
}

.narita-page .stepper-value {
  min-width: 52px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 850;
}

.narita-page .button.full-width {
  min-height: 52px;
  border-radius: 8px;
  background: #0d9488;
  color: #ffffff;
  font-weight: 820;
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.24);
}

.narita-page .button.full-width:hover {
  background: #0f766e;
}

.narita-page #nex-result {
  padding: 0 24px 24px;
  background: #ffffff;
  border: 1px solid #dbe7f3;
  border-radius: 12px;
}

.narita-page #nex-result[hidden] {
  display: none !important;
}

.narita-page .result-trust-block,
.narita-page .traveler-reports-placeholder {
  padding: 22px 24px;
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.12), 0 2px 8px rgba(15, 25, 35, 0.06);
}

.narita-page .result-trust-kicker {
  margin: 0 0 10px;
  color: #0d9488;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.narita-page .result-trust-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.narita-page .result-trust-grid div {
  padding: 13px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.narita-page .result-trust-grid strong {
  color: #0f172a;
}

.narita-page .result-trust-grid span,
.narita-page .result-trust-note,
.narita-page .traveler-reports-placeholder p,
.narita-page .traveler-reports-placeholder li {
  color: #52637a;
}

.narita-page .price-section,
.narita-page .content-column,
.narita-page .faq-section {
  max-width: 920px;
}

.narita-page .price-table {
  border: 1px solid #dbe7f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.06);
}

.narita-page .quick-answer,
.narita-page .key-takeaway,
.narita-page .scenario-card,
.narita-page .factor-item,
.narita-page .related-card {
  border-radius: 12px;
  border: 1px solid #dbe7f3;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.06);
}

.narita-page .quick-answer,
.narita-page .key-takeaway {
  border-left: 4px solid #14b8a6;
}

.narita-page .scenario-card {
  border-top: 3px solid #14b8a6;
}

@media (min-width: 768px) {
  .narita-page .tool-hero {
    aspect-ratio: auto;
    max-height: none;
  }
}

@media (max-width: 920px) {
  .narita-page .tool-hero {
    padding: 46px 0 34px;
    background:
      linear-gradient(180deg, rgba(9, 24, 45, 0.90) 0%, rgba(9, 28, 51, 0.70) 55%, rgba(9, 28, 51, 0.90) 100%),
      url('/assets/images/bento-narita.jpg') center center / cover no-repeat !important;
  }

  .narita-page .tool-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .narita-page .tool-intro h1 {
    font-size: clamp(2.1rem, 9vw, 3.35rem);
  }

  .narita-page .context-blurb {
    display: none;
  }
}

@media (max-width: 640px) {
  .narita-page .tool-hero {
    padding: 34px 0 26px;
  }

  .narita-page .tool-intro .breadcrumb {
    margin-bottom: 14px;
  }

  .narita-page .tool-intro h1 {
    font-size: 2.15rem;
    line-height: 1.02;
  }

  .narita-page .tool-intro-sub {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .narita-page .trust-line {
    align-items: flex-start;
    border-radius: 8px;
    line-height: 1.35;
  }

  .narita-page .calculator-card-header,
  .narita-page .calc-form,
  .narita-page .result-trust-block,
  .narita-page .traveler-reports-placeholder {
    padding-left: 18px;
    padding-right: 18px;
  }

  .narita-page .stepper {
    width: 100%;
    justify-content: space-between;
  }
}

/* Narita mobile hero containment */
@media (max-width: 640px) {
  .narita-page .tool-hero {
    background:
      linear-gradient(180deg, rgba(9, 24, 45, 0.92) 0 390px, #f5f8fb 390px 100%),
      url('/assets/images/bento-narita.jpg') top center / auto 390px no-repeat !important;
  }

  .narita-page .tool-hero::before {
    opacity: 0.55;
    height: 390px;
    bottom: auto;
  }

  .narita-page .result-trust-block,
  .narita-page .traveler-reports-placeholder {
    box-shadow: 0 12px 28px rgba(15, 25, 35, 0.08);
  }
}

/* Shared decision-stack CTA polish */
.tool-network__foot .button-secondary,
.tool-network__foot .button-secondary:link,
.tool-network__foot .button-secondary:visited {
  min-height: 48px !important;
  padding: 13px 22px !important;
  border: 1px solid rgba(94, 234, 212, 0.35) !important;
  border-radius: 8px !important;
  background: #0d9488 !important;
  color: #ffffff !important;
  font-weight: 850 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(13, 148, 136, 0.26) !important;
}

.tool-network__foot .button-secondary:hover {
  background: #0f766e !important;
  color: #ffffff !important;
}

/* JR Pass premium tool page */
.jr-page {
  background: #f5f8fb;
}

.jr-page main {
  background: linear-gradient(180deg, #eef5fb 0%, #f7fafc 30%, #ffffff 100%);
}

.jr-page .tool-hero {
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 62px;
  background:
    linear-gradient(90deg, rgba(9, 24, 45, 0.95) 0%, rgba(9, 28, 51, 0.86) 45%, rgba(9, 28, 51, 0.44) 100%),
    url('/assets/images/region-new-shinkansen.jpg') center center / cover no-repeat !important;
}

.jr-page .tool-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 184, 166, 0.20), transparent 28%),
    linear-gradient(180deg, rgba(15, 31, 61, 0) 0%, rgba(15, 31, 61, 0.20) 100%);
}

.jr-page .tool-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.jr-page .tool-intro {
  max-width: 670px;
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.jr-page .tool-intro .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
}

.jr-page .tool-intro .breadcrumb a {
  color: #7dd3fc;
  text-decoration: none;
}

.jr-page .tool-intro h1 {
  max-width: 640px;
  color: #ffffff;
  font-size: clamp(2.55rem, 5vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 850;
  text-wrap: balance;
}

.jr-page .tool-intro-sub {
  max-width: 570px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.jr-page .trust-line {
  margin-top: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.18);
  color: #ccfbf1;
  font-weight: 750;
}

.jr-page .trust-line-icon {
  color: #5eead4;
}

.jr-page .tool-intro > .table-caption {
  max-width: 600px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.55;
}

.jr-page .context-blurb {
  display: block;
  max-width: 620px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid #14b8a6;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.16);
}

.jr-page .tool-panel {
  display: grid;
  gap: 16px;
  max-width: none;
}

.jr-page .calculator-card,
.jr-page .result-card,
.jr-page .result-trust-block,
.jr-page .traveler-reports-placeholder {
  overflow: hidden;
  border: 1px solid rgba(214, 226, 240, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.22), 0 2px 8px rgba(15, 25, 35, 0.08);
}

.jr-page .calculator-card {
  padding: 0;
}

.jr-page .calculator-card-header {
  padding: 22px 24px 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbff 100%);
  border-bottom: 1px solid #dbe7f3;
}

.jr-page .calculator-card-header h2,
.jr-page .result-trust-block h2,
.jr-page .traveler-reports-placeholder h2 {
  color: #0f172a;
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 820;
}

.jr-page .calculator-card-header p,
.jr-page .field-helper {
  color: #64748b;
  font-size: 0.9rem;
}

.jr-page .calculator-divider {
  display: none;
}

.jr-page .calc-form {
  padding: 22px 24px 24px;
  gap: 18px;
}

.jr-page .field-label {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jr-page .day-segment {
  padding: 4px;
  gap: 4px;
  border: 1px solid #cfdae8;
  border-radius: 10px;
  background: #f1f6fb;
}

.jr-page .day-segment button {
  min-height: 44px;
  border-radius: 8px;
  color: #52637a;
  font-weight: 760;
}

.jr-page .day-segment button.active {
  background: #0d9488;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(13, 148, 136, 0.20);
}

.jr-page #route-list label {
  min-height: 52px !important;
  padding: 12px 14px !important;
  border: 1px solid #dbe7f3 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  font-size: 0.94rem !important;
  box-shadow: 0 1px 0 rgba(15, 25, 35, 0.03) !important;
}

.jr-page #route-list label:hover {
  border-color: #99f6e4 !important;
  background: #f0fdfa !important;
}

.jr-page #route-list input[type="checkbox"] {
  accent-color: #0d9488 !important;
}

.jr-page .button.full-width {
  min-height: 52px;
  border-radius: 8px;
  background: #0d9488;
  color: #ffffff;
  font-weight: 820;
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.24);
}

.jr-page .button.full-width:hover {
  background: #0f766e;
}

.jr-page .result-card {
  margin-top: 0;
  padding: 24px;
}

.jr-page .result-card[hidden] {
  display: none !important;
}

.jr-page .result-trust-block,
.jr-page .traveler-reports-placeholder {
  padding: 22px 24px;
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.12), 0 2px 8px rgba(15, 25, 35, 0.06);
}

.jr-page .result-trust-kicker {
  margin: 0 0 10px;
  color: #0d9488;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jr-page .result-trust-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.jr-page .result-trust-grid div {
  padding: 13px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.jr-page .result-trust-grid strong {
  color: #0f172a;
}

.jr-page .price-section,
.jr-page .content-column,
.jr-page .faq-section {
  max-width: 920px;
}

.jr-page .price-table {
  border: 1px solid #dbe7f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.06);
}

.jr-page .quick-answer,
.jr-page .key-takeaway,
.jr-page .scenario-card,
.jr-page .factor-item,
.jr-page .related-card {
  border-radius: 12px;
  border: 1px solid #dbe7f3;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.06);
}

.jr-page .quick-answer,
.jr-page .key-takeaway {
  border-left: 4px solid #14b8a6;
}

.jr-page .scenario-card {
  border-top: 3px solid #14b8a6;
}

@media (min-width: 768px) {
  .jr-page .tool-hero {
    aspect-ratio: auto;
    max-height: none;
  }
}

@media (max-width: 920px) {
  .jr-page .tool-hero {
    padding: 46px 0 34px;
    background:
      linear-gradient(180deg, rgba(9, 24, 45, 0.90) 0%, rgba(9, 28, 51, 0.72) 55%, rgba(9, 28, 51, 0.90) 100%),
      url('/assets/images/region-new-shinkansen.jpg') center center / cover no-repeat !important;
  }

  .jr-page .tool-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .jr-page .tool-intro h1 {
    font-size: clamp(2.1rem, 9vw, 3.35rem);
  }

  .jr-page .context-blurb {
    display: none;
  }
}

@media (max-width: 640px) {
  .jr-page .tool-hero {
    padding: 34px 0 26px;
    background:
      linear-gradient(180deg, rgba(9, 24, 45, 0.92) 0 430px, #f5f8fb 430px 100%),
      url('/assets/images/region-new-shinkansen.jpg') top center / auto 430px no-repeat !important;
  }

  .jr-page .tool-hero::before {
    opacity: 0.55;
    height: 430px;
    bottom: auto;
  }

  .jr-page .tool-intro h1 {
    font-size: 2.15rem;
    line-height: 1.02;
  }

  .jr-page .tool-intro-sub {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .jr-page .tool-intro > .table-caption {
    display: none;
  }

  .jr-page .trust-line {
    align-items: flex-start;
    border-radius: 8px;
    line-height: 1.35;
  }

  .jr-page .calculator-card-header,
  .jr-page .calc-form,
  .jr-page .result-card,
  .jr-page .result-trust-block,
  .jr-page .traveler-reports-placeholder {
    padding-left: 18px;
    padding-right: 18px;
  }

  .jr-page .cost-comparison {
    grid-template-columns: 1fr;
  }

  .jr-page .cost-divider {
    width: 100%;
    height: 1px;
  }
}

/* Unified premium UI for remaining live tool pages */
.subway-page { --tw-tool-image: url('/assets/images/bento-subway.jpg'); --tw-tool-pos: center center; }
.haneda-page { --tw-tool-image: url('/assets/images/bento-haneda.jpg'); --tw-tool-pos: center center; }
.wide-page { --tw-tool-image: url('/assets/images/bento-wide.jpg'); --tw-tool-pos: center center; }
.hakone-page { --tw-tool-image: url('/assets/images/generated/gen-hakone-lake.jpg'); --tw-tool-pos: center center; }
.osaka-page { --tw-tool-image: url('/assets/images/bento-osaka-pass.jpg'); --tw-tool-pos: center center; }

.subway-page,
.haneda-page,
.wide-page,
.hakone-page,
.osaka-page {
  background: #f5f8fb;
}

.subway-page main,
.haneda-page main,
.wide-page main,
.hakone-page main,
.osaka-page main {
  background: linear-gradient(180deg, #eef5fb 0%, #f7fafc 30%, #ffffff 100%);
}

.subway-page .tool-hero,
.haneda-page .tool-hero,
.wide-page .tool-hero,
.hakone-page .tool-hero,
.osaka-page .tool-hero {
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 62px;
  background:
    linear-gradient(90deg, rgba(9, 24, 45, 0.95) 0%, rgba(9, 28, 51, 0.86) 45%, rgba(9, 28, 51, 0.44) 100%),
    var(--tw-tool-image) var(--tw-tool-pos) / cover no-repeat !important;
}

.subway-page .tool-hero::before,
.haneda-page .tool-hero::before,
.wide-page .tool-hero::before,
.hakone-page .tool-hero::before,
.osaka-page .tool-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 184, 166, 0.20), transparent 28%),
    linear-gradient(180deg, rgba(15, 31, 61, 0) 0%, rgba(15, 31, 61, 0.20) 100%);
}

.subway-page .tool-layout,
.haneda-page .tool-layout,
.wide-page .tool-layout,
.hakone-page .tool-layout,
.osaka-page .tool-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.subway-page .tool-intro,
.haneda-page .tool-intro,
.wide-page .tool-intro,
.hakone-page .tool-intro,
.osaka-page .tool-intro {
  max-width: 680px;
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.subway-page .tool-intro .breadcrumb,
.haneda-page .tool-intro .breadcrumb,
.wide-page .tool-intro .breadcrumb,
.hakone-page .tool-intro .breadcrumb,
.osaka-page .tool-intro .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
}

.subway-page .tool-intro .breadcrumb a,
.haneda-page .tool-intro .breadcrumb a,
.wide-page .tool-intro .breadcrumb a,
.hakone-page .tool-intro .breadcrumb a,
.osaka-page .tool-intro .breadcrumb a {
  color: #7dd3fc;
  text-decoration: none;
}

.subway-page .tool-intro h1,
.haneda-page .tool-intro h1,
.wide-page .tool-intro h1,
.hakone-page .tool-intro h1,
.osaka-page .tool-intro h1 {
  max-width: 650px;
  color: #ffffff;
  font-size: clamp(2.45rem, 4.6vw, 4.2rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
  font-weight: 850;
  text-wrap: balance;
}

.subway-page .tool-intro-sub,
.haneda-page .tool-intro-sub,
.wide-page .tool-intro-sub,
.hakone-page .tool-intro-sub,
.osaka-page .tool-intro-sub {
  max-width: 570px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.subway-page .trust-line,
.haneda-page .trust-line,
.wide-page .trust-line,
.hakone-page .trust-line,
.osaka-page .trust-line {
  margin-top: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.18);
  color: #ccfbf1;
  font-weight: 750;
}

.subway-page .trust-line-icon,
.haneda-page .trust-line-icon,
.wide-page .trust-line-icon,
.hakone-page .trust-line-icon,
.osaka-page .trust-line-icon {
  color: #5eead4;
}

.subway-page .context-blurb,
.haneda-page .context-blurb,
.wide-page .context-blurb,
.hakone-page .context-blurb,
.osaka-page .context-blurb {
  display: block;
  max-width: 620px;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid #14b8a6;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.16);
}

.subway-page .tool-panel,
.haneda-page .tool-panel,
.wide-page .tool-panel,
.hakone-page .tool-panel,
.osaka-page .tool-panel {
  display: grid;
  gap: 16px;
  max-width: none;
}

.subway-page .calculator-card,
.subway-page .result-card,
.subway-page .result-trust-block,
.subway-page .traveler-reports-placeholder,
.haneda-page .calculator-card,
.haneda-page .result-card,
.haneda-page .result-trust-block,
.haneda-page .traveler-reports-placeholder,
.wide-page .calculator-card,
.wide-page .result-card,
.wide-page .result-trust-block,
.wide-page .traveler-reports-placeholder,
.hakone-page .calculator-card,
.hakone-page .result-card,
.hakone-page .result-trust-block,
.hakone-page .traveler-reports-placeholder,
.osaka-page .calculator-card,
.osaka-page .result-card,
.osaka-page .result-trust-block,
.osaka-page .traveler-reports-placeholder {
  overflow: hidden;
  border: 1px solid rgba(214, 226, 240, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.22), 0 2px 8px rgba(15, 25, 35, 0.08);
}

.subway-page .calculator-card,
.haneda-page .calculator-card,
.wide-page .calculator-card,
.hakone-page .calculator-card,
.osaka-page .calculator-card {
  padding: 0;
}

.subway-page .calculator-card-header,
.haneda-page .calculator-card-header,
.wide-page .calculator-card-header,
.hakone-page .calculator-card-header,
.osaka-page .calculator-card-header {
  padding: 22px 24px 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbff 100%);
  border-bottom: 1px solid #dbe7f3;
}

.subway-page .calculator-card-header h2,
.subway-page .result-trust-block h2,
.subway-page .traveler-reports-placeholder h2,
.haneda-page .calculator-card-header h2,
.haneda-page .result-trust-block h2,
.haneda-page .traveler-reports-placeholder h2,
.wide-page .calculator-card-header h2,
.wide-page .result-trust-block h2,
.wide-page .traveler-reports-placeholder h2,
.hakone-page .calculator-card-header h2,
.hakone-page .result-trust-block h2,
.hakone-page .traveler-reports-placeholder h2,
.osaka-page .calculator-card-header h2,
.osaka-page .result-trust-block h2,
.osaka-page .traveler-reports-placeholder h2 {
  color: #0f172a;
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 820;
}

.subway-page .calculator-divider,
.haneda-page .calculator-divider,
.wide-page .calculator-divider,
.hakone-page .calculator-divider,
.osaka-page .calculator-divider {
  display: none;
}

.subway-page .calc-form,
.haneda-page .calc-form,
.wide-page .calc-form,
.hakone-page .calc-form,
.osaka-page .calc-form {
  padding: 22px 24px 24px;
  gap: 18px;
}

.subway-page .field-label,
.haneda-page .field-label,
.wide-page .field-label,
.hakone-page .field-label,
.osaka-page .field-label {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subway-page .field-helper,
.haneda-page .field-helper,
.wide-page .field-helper,
.hakone-page .field-helper,
.osaka-page .field-helper,
.subway-page .calculator-card-header p,
.haneda-page .calculator-card-header p,
.wide-page .calculator-card-header p,
.hakone-page .calculator-card-header p,
.osaka-page .calculator-card-header p {
  color: #64748b;
  font-size: 0.9rem;
}

.subway-page .day-segment,
.haneda-page .day-segment,
.wide-page .day-segment,
.hakone-page .day-segment,
.osaka-page .day-segment {
  padding: 4px;
  gap: 4px;
  border: 1px solid #cfdae8;
  border-radius: 10px;
  background: #f1f6fb;
}

.subway-page .day-segment button,
.haneda-page .day-segment button,
.wide-page .day-segment button,
.hakone-page .day-segment button,
.osaka-page .day-segment button {
  min-height: 44px;
  border-radius: 8px;
  color: #52637a;
  font-weight: 760;
}

.subway-page .day-segment button.active,
.haneda-page .day-segment button.active,
.wide-page .day-segment button.active,
.hakone-page .day-segment button.active,
.osaka-page .day-segment button.active {
  background: #0d9488;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(13, 148, 136, 0.20);
}

.subway-page .input-field,
.haneda-page .input-field,
.wide-page .input-field,
.hakone-page .input-field,
.osaka-page .input-field {
  min-height: 52px;
  border: 1px solid #cfdae8;
  border-radius: 8px;
  background-color: #ffffff;
  color: #0f172a;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(15, 25, 35, 0.03);
}

.subway-page .stepper,
.haneda-page .stepper,
.wide-page .stepper,
.hakone-page .stepper,
.osaka-page .stepper {
  width: fit-content;
  min-width: 150px;
  padding: 4px;
  border: 1px solid #cfdae8;
  border-radius: 999px;
  background: #f8fafc;
}

.subway-page .stepper-btn,
.haneda-page .stepper-btn,
.wide-page .stepper-btn,
.hakone-page .stepper-btn,
.osaka-page .stepper-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  color: #0f3d68;
  box-shadow: 0 1px 2px rgba(15, 25, 35, 0.10);
}

.subway-page .button.full-width,
.haneda-page .button.full-width,
.wide-page .button.full-width,
.hakone-page .button.full-width,
.osaka-page .button.full-width {
  min-height: 52px;
  border-radius: 8px;
  background: #0d9488;
  color: #ffffff;
  font-weight: 820;
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.24);
}

.subway-page .button.full-width:hover,
.haneda-page .button.full-width:hover,
.wide-page .button.full-width:hover,
.hakone-page .button.full-width:hover,
.osaka-page .button.full-width:hover {
  background: #0f766e;
}

.subway-page #wide-route-list label,
.subway-page #osaka-attraction-list label,
.wide-page #wide-route-list label,
.osaka-page #osaka-attraction-list label,
.jr-page #route-list label {
  min-height: 52px !important;
  padding: 12px 14px !important;
  border: 1px solid #dbe7f3 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  font-size: 0.94rem !important;
  box-shadow: 0 1px 0 rgba(15, 25, 35, 0.03) !important;
}

.wide-page #wide-route-list label:hover,
.osaka-page #osaka-attraction-list label:hover,
.jr-page #route-list label:hover {
  border-color: #99f6e4 !important;
  background: #f0fdfa !important;
}

.subway-page .result-card,
.haneda-page .result-card,
.wide-page .result-card,
.hakone-page .result-card,
.osaka-page .result-card {
  margin-top: 0;
  padding: 24px;
}

.subway-page .result-card[hidden],
.haneda-page .result-card[hidden],
.wide-page .result-card[hidden],
.hakone-page .result-card[hidden],
.osaka-page .result-card[hidden],
.haneda-page #haneda-result[hidden] {
  display: none !important;
}

.haneda-page #haneda-result {
  margin-top: 0 !important;
  padding: 22px 24px;
  border: 1px solid rgba(214, 226, 240, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.12), 0 2px 8px rgba(15, 25, 35, 0.06);
}

.subway-page .result-trust-block,
.subway-page .traveler-reports-placeholder,
.haneda-page .result-trust-block,
.haneda-page .traveler-reports-placeholder,
.wide-page .result-trust-block,
.wide-page .traveler-reports-placeholder,
.hakone-page .result-trust-block,
.hakone-page .traveler-reports-placeholder,
.osaka-page .result-trust-block,
.osaka-page .traveler-reports-placeholder {
  padding: 22px 24px;
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.12), 0 2px 8px rgba(15, 25, 35, 0.06);
}

.subway-page .result-trust-kicker,
.haneda-page .result-trust-kicker,
.wide-page .result-trust-kicker,
.hakone-page .result-trust-kicker,
.osaka-page .result-trust-kicker {
  margin: 0 0 10px;
  color: #0d9488;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subway-page .result-trust-grid,
.haneda-page .result-trust-grid,
.wide-page .result-trust-grid,
.hakone-page .result-trust-grid,
.osaka-page .result-trust-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.subway-page .result-trust-grid div,
.haneda-page .result-trust-grid div,
.wide-page .result-trust-grid div,
.hakone-page .result-trust-grid div,
.osaka-page .result-trust-grid div {
  padding: 13px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.subway-page .price-section,
.subway-page .content-column,
.subway-page .faq-section,
.haneda-page .price-section,
.haneda-page .content-column,
.haneda-page .faq-section,
.wide-page .price-section,
.wide-page .content-column,
.wide-page .faq-section,
.hakone-page .price-section,
.hakone-page .content-column,
.hakone-page .faq-section,
.osaka-page .price-section,
.osaka-page .content-column,
.osaka-page .faq-section {
  max-width: 920px;
}

.subway-page .price-table,
.haneda-page .price-table,
.wide-page .price-table,
.hakone-page .price-table,
.osaka-page .price-table {
  border: 1px solid #dbe7f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.06);
}

.subway-page .quick-answer,
.subway-page .key-takeaway,
.subway-page .scenario-card,
.subway-page .factor-item,
.subway-page .related-card,
.haneda-page .quick-answer,
.haneda-page .key-takeaway,
.haneda-page .scenario-card,
.haneda-page .factor-item,
.haneda-page .related-card,
.wide-page .quick-answer,
.wide-page .key-takeaway,
.wide-page .scenario-card,
.wide-page .factor-item,
.wide-page .related-card,
.hakone-page .quick-answer,
.hakone-page .key-takeaway,
.hakone-page .scenario-card,
.hakone-page .factor-item,
.hakone-page .related-card,
.osaka-page .quick-answer,
.osaka-page .key-takeaway,
.osaka-page .scenario-card,
.osaka-page .factor-item,
.osaka-page .related-card {
  border-radius: 12px;
  border: 1px solid #dbe7f3;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.06);
}

.subway-page .quick-answer,
.subway-page .key-takeaway,
.haneda-page .quick-answer,
.haneda-page .key-takeaway,
.wide-page .quick-answer,
.wide-page .key-takeaway,
.hakone-page .quick-answer,
.hakone-page .key-takeaway,
.osaka-page .quick-answer,
.osaka-page .key-takeaway {
  border-left: 4px solid #14b8a6;
}

.subway-page .scenario-card,
.haneda-page .scenario-card,
.wide-page .scenario-card,
.hakone-page .scenario-card,
.osaka-page .scenario-card {
  border-top: 3px solid #14b8a6;
}

@media (min-width: 768px) {
  .subway-page .tool-hero,
  .haneda-page .tool-hero,
  .wide-page .tool-hero,
  .hakone-page .tool-hero,
  .osaka-page .tool-hero {
    aspect-ratio: auto;
    max-height: none;
  }
}

@media (max-width: 920px) {
  .subway-page .tool-hero,
  .haneda-page .tool-hero,
  .wide-page .tool-hero,
  .hakone-page .tool-hero,
  .osaka-page .tool-hero {
    padding: 46px 0 34px;
    background:
      linear-gradient(180deg, rgba(9, 24, 45, 0.90) 0%, rgba(9, 28, 51, 0.72) 55%, rgba(9, 28, 51, 0.90) 100%),
      var(--tw-tool-image) var(--tw-tool-pos) / cover no-repeat !important;
  }

  .subway-page .tool-layout,
  .haneda-page .tool-layout,
  .wide-page .tool-layout,
  .hakone-page .tool-layout,
  .osaka-page .tool-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .subway-page .tool-intro h1,
  .haneda-page .tool-intro h1,
  .wide-page .tool-intro h1,
  .hakone-page .tool-intro h1,
  .osaka-page .tool-intro h1 {
    font-size: clamp(2.1rem, 9vw, 3.35rem);
  }

  .subway-page .context-blurb,
  .haneda-page .context-blurb,
  .wide-page .context-blurb,
  .hakone-page .context-blurb,
  .osaka-page .context-blurb {
    display: none;
  }
}

@media (max-width: 640px) {
  .subway-page .tool-hero,
  .haneda-page .tool-hero,
  .wide-page .tool-hero,
  .hakone-page .tool-hero,
  .osaka-page .tool-hero {
    padding: 34px 0 26px;
    background:
      linear-gradient(180deg, rgba(9, 24, 45, 0.92) 0 420px, #f5f8fb 420px 100%),
      var(--tw-tool-image) top center / auto 420px no-repeat !important;
  }

  .subway-page .tool-hero::before,
  .haneda-page .tool-hero::before,
  .wide-page .tool-hero::before,
  .hakone-page .tool-hero::before,
  .osaka-page .tool-hero::before {
    opacity: 0.55;
    height: 420px;
    bottom: auto;
  }

  .subway-page .tool-intro h1,
  .haneda-page .tool-intro h1,
  .wide-page .tool-intro h1,
  .hakone-page .tool-intro h1,
  .osaka-page .tool-intro h1 {
    font-size: 2.08rem;
    line-height: 1.03;
  }

  .subway-page .tool-intro-sub,
  .haneda-page .tool-intro-sub,
  .wide-page .tool-intro-sub,
  .hakone-page .tool-intro-sub,
  .osaka-page .tool-intro-sub {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .subway-page .trust-line,
  .haneda-page .trust-line,
  .wide-page .trust-line,
  .hakone-page .trust-line,
  .osaka-page .trust-line {
    align-items: flex-start;
    border-radius: 8px;
    line-height: 1.35;
  }

  .subway-page .calculator-card-header,
  .subway-page .calc-form,
  .subway-page .result-card,
  .subway-page .result-trust-block,
  .subway-page .traveler-reports-placeholder,
  .haneda-page .calculator-card-header,
  .haneda-page .calc-form,
  .haneda-page #haneda-result,
  .haneda-page .result-trust-block,
  .haneda-page .traveler-reports-placeholder,
  .wide-page .calculator-card-header,
  .wide-page .calc-form,
  .wide-page .result-card,
  .wide-page .result-trust-block,
  .wide-page .traveler-reports-placeholder,
  .hakone-page .calculator-card-header,
  .hakone-page .calc-form,
  .hakone-page .result-card,
  .hakone-page .result-trust-block,
  .hakone-page .traveler-reports-placeholder,
  .osaka-page .calculator-card-header,
  .osaka-page .calc-form,
  .osaka-page .result-card,
  .osaka-page .result-trust-block,
  .osaka-page .traveler-reports-placeholder {
    padding-left: 18px;
    padding-right: 18px;
  }

  .subway-page .cost-comparison,
  .wide-page .cost-comparison,
  .hakone-page .cost-comparison,
  .osaka-page .cost-comparison {
    grid-template-columns: 1fr;
  }

  .subway-page .cost-divider,
  .wide-page .cost-divider,
  .hakone-page .cost-divider,
  .osaka-page .cost-divider {
    width: 100%;
    height: 1px;
  }

  .subway-page .stepper,
  .haneda-page .stepper,
  .wide-page .stepper,
  .hakone-page .stepper,
  .osaka-page .stepper {
    width: 100%;
    justify-content: space-between;
  }
}

/* Professional related tools + decision stack polish */
.related-tools {
  background: #f6f9fc !important;
  padding: 56px 0 !important;
  border-top: 1px solid #e2e8f0;
}

.related-tools .container {
  width: min(1080px, calc(100% - 32px));
}

.related-tools h2 {
  margin: 0 0 22px !important;
  color: #0f172a;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem) !important;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 850 !important;
}

.related-grid {
  gap: 18px !important;
}

.related-card {
  position: relative;
  min-height: 132px;
  padding: 22px 22px 20px !important;
  border: 1px solid #dbe7f3 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 30px rgba(15, 25, 35, 0.05) !important;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease !important;
}

.related-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: #14b8a6;
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: #99f6e4 !important;
  box-shadow: 0 18px 44px rgba(15, 25, 35, 0.10) !important;
}

.related-card-title {
  margin: 0 0 8px !important;
  color: #0f172a !important;
  font-size: 1.02rem !important;
  line-height: 1.22;
  font-weight: 820 !important;
}

.related-card-desc {
  color: #52637a !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.related-card-cta {
  display: inline-flex !important;
  align-items: center;
  margin-top: 16px !important;
  color: #0d9488 !important;
  font-size: 0.86rem !important;
  font-weight: 850 !important;
}

.tool-network {
  padding: 64px 0 !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(20, 184, 166, 0.16), transparent 30%),
    linear-gradient(180deg, #0f1f3d 0%, #0b172e 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-network .container {
  width: min(1080px, calc(100% - 32px));
}

.tool-network__head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center !important;
  gap: 28px !important;
  margin-bottom: 28px !important;
}

.tool-network__head h2 {
  max-width: 720px;
  color: #ffffff !important;
  font-size: clamp(1.8rem, 3.1vw, 2.65rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em;
  font-weight: 880 !important;
}

.tool-network__head p:not(.tool-hub-kicker) {
  max-width: 710px !important;
  margin-top: 12px !important;
  color: rgba(226, 232, 240, 0.76) !important;
  font-size: 1rem;
  line-height: 1.6 !important;
}

.tool-network__head .button-hero,
.tool-network__head .button-hero:link,
.tool-network__head .button-hero:visited {
  width: auto !important;
  min-width: 154px !important;
  min-height: 46px !important;
  padding: 13px 20px !important;
  border: 1px solid rgba(94, 234, 212, 0.42) !important;
  border-radius: 8px !important;
  background: #0d9488 !important;
  color: #ffffff !important;
  font-size: 0.94rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-shadow: 0 16px 34px rgba(13, 148, 136, 0.30) !important;
}

.tool-network__head .button-hero::after {
  content: "鈫";
  margin-left: 8px;
  font-weight: 900;
}

.tool-network__head .button-hero:hover {
  background: #0f766e !important;
  transform: translateY(-1px);
}

.tool-network__grid {
  gap: 14px !important;
}

.tool-network-card {
  border-radius: 10px !important;
  border: 1px solid rgba(219, 231, 243, 0.18) !important;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18) !important;
}

.tool-network-card__body {
  min-height: 196px !important;
  padding: 18px !important;
}

.tool-network__foot {
  margin-top: 22px !important;
  padding: 18px 20px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.075) !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
}

.tool-network__foot p {
  max-width: 720px;
  color: rgba(226, 232, 240, 0.76) !important;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .tool-network__head {
    grid-template-columns: 1fr;
    gap: 18px !important;
  }

  .tool-network__head .button-hero {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .related-tools,
  .tool-network {
    padding: 42px 0 !important;
  }

  .related-card {
    min-height: auto;
  }

  .tool-network__head .button-hero {
    min-width: 0 !important;
    width: auto !important;
  }
}

/* Narita hero mobile safe padding */
.narita-page .tool-hero .container.tool-layout {
  box-sizing: border-box;
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .narita-page .tool-hero .container.tool-layout {
    width: calc(100% - 32px);
  }

  .narita-page .tool-intro h1,
  .narita-page .tool-intro-sub,
  .narita-page .trust-line {
    max-width: 100%;
  }
}

/* Unified live tool hero safe padding */
.jr-page .tool-hero .container.tool-layout,
.narita-page .tool-hero .container.tool-layout,
.subway-page .tool-hero .container.tool-layout,
.haneda-page .tool-hero .container.tool-layout,
.wide-page .tool-hero .container.tool-layout,
.hakone-page .tool-hero .container.tool-layout,
.osaka-page .tool-hero .container.tool-layout {
  box-sizing: border-box;
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin-inline: auto;
}

.jr-page .tool-intro h1,
.narita-page .tool-intro h1,
.subway-page .tool-intro h1,
.haneda-page .tool-intro h1,
.wide-page .tool-intro h1,
.hakone-page .tool-intro h1,
.osaka-page .tool-intro h1,
.jr-page .tool-intro-sub,
.narita-page .tool-intro-sub,
.subway-page .tool-intro-sub,
.haneda-page .tool-intro-sub,
.wide-page .tool-intro-sub,
.hakone-page .tool-intro-sub,
.osaka-page .tool-intro-sub,
.jr-page .trust-line,
.narita-page .trust-line,
.subway-page .trust-line,
.haneda-page .trust-line,
.wide-page .trust-line,
.hakone-page .trust-line,
.osaka-page .trust-line {
  max-width: 100%;
}

@media (max-width: 640px) {
  .jr-page .tool-hero .container.tool-layout,
  .narita-page .tool-hero .container.tool-layout,
  .subway-page .tool-hero .container.tool-layout,
  .haneda-page .tool-hero .container.tool-layout,
  .wide-page .tool-hero .container.tool-layout,
  .hakone-page .tool-hero .container.tool-layout,
  .osaka-page .tool-hero .container.tool-layout {
    width: calc(100% - 32px);
  }
}

/* Unified live tool content safe padding */
.jr-page .content-column,
.narita-page .content-column,
.subway-page .content-column,
.haneda-page .content-column,
.wide-page .content-column,
.hakone-page .content-column,
.osaka-page .content-column,
.jr-page .price-section,
.narita-page .price-section,
.subway-page .price-section,
.haneda-page .price-section,
.wide-page .price-section,
.hakone-page .price-section,
.osaka-page .price-section,
.jr-page .faq-section,
.narita-page .faq-section,
.subway-page .faq-section,
.haneda-page .faq-section,
.wide-page .faq-section,
.hakone-page .faq-section,
.osaka-page .faq-section {
  box-sizing: border-box;
  width: min(1120px, calc(100% - 48px)) !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
}

@media (max-width: 640px) {
  .jr-page .content-column,
  .narita-page .content-column,
  .subway-page .content-column,
  .haneda-page .content-column,
  .wide-page .content-column,
  .hakone-page .content-column,
  .osaka-page .content-column,
  .jr-page .price-section,
  .narita-page .price-section,
  .subway-page .price-section,
  .haneda-page .price-section,
  .wide-page .price-section,
  .hakone-page .price-section,
  .osaka-page .price-section,
  .jr-page .faq-section,
  .narita-page .faq-section,
  .subway-page .faq-section,
  .haneda-page .faq-section,
  .wide-page .faq-section,
  .hakone-page .faq-section,
  .osaka-page .faq-section {
    width: calc(100% - 32px) !important;
  }

  .jr-page .price-table,
  .narita-page .price-table,
  .subway-page .price-table,
  .haneda-page .price-table,
  .wide-page .price-table,
  .hakone-page .price-table,
  .osaka-page .price-table {
    min-width: 520px;
  }
}

/* Japan Route Cost Planner */
.route-planner-page {
  background: #f3f7fb;
  color: #102033;
}

.route-planner-page .route-hero {
  position: relative;
  isolation: isolate;
  padding: 84px 0 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 31, 57, 0.94) 0%, rgba(9, 31, 57, 0.82) 48%, rgba(9, 31, 57, 0.28) 100%),
    url("/assets/images/generated/gen-kyoto-transit.jpg") center / cover no-repeat;
}

.route-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
}

.route-kicker {
  margin: 0 0 10px;
  color: #0d9488;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-hero .route-kicker {
  color: #5eead4;
}

.route-hero__copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

.route-hero__copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.65;
}

.route-trust-line {
  display: inline-flex;
  max-width: 720px;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(94, 234, 212, 0.28);
  border-radius: 8px;
  background: rgba(13, 148, 136, 0.22);
  color: #dffcf7;
  font-weight: 800;
  line-height: 1.45;
}

.route-hero__panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(6, 24, 44, 0.58);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.route-hero__panel span {
  display: block;
  color: #5eead4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-hero__panel strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.1;
}

.route-hero__panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.route-planner-shell {
  padding: 48px 0 64px;
}

.route-planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.route-card {
  overflow: hidden;
  border: 1px solid #d8e3ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 37, 64, 0.11);
}

.route-card__head,
.route-result-empty,
.route-result-ready {
  padding: 28px;
}

.route-card h2,
.route-result-ready h2,
.route-explain-section h2,
.route-related h2 {
  margin: 0;
  color: #102033;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.route-card__head p:not(.route-kicker),
.route-result-empty p:not(.route-kicker),
.route-explain-section p,
.route-related p {
  margin: 12px 0 0;
  color: #607086;
  font-size: 17px;
  line-height: 1.6;
}

.route-form {
  padding: 0 28px 28px;
}

.route-form label {
  display: grid;
  gap: 8px;
  color: #607086;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.route-stop-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.route-planner-page .input-field {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d6e2ef;
  border-radius: 8px;
  background: #fff;
  color: #102033;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.route-planner-page .button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: #0d9488;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.route-result-empty {
  min-height: 320px;
  display: grid;
  align-content: center;
  background: linear-gradient(145deg, #f9fcff, #eef7f6);
}

.route-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 26px;
}

.route-cost-grid div {
  padding: 16px;
  border: 1px solid #d8e3ef;
  border-radius: 10px;
  background: #f7fbff;
}

.route-cost-grid span,
.route-cost-grid em {
  display: block;
  color: #607086;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.route-cost-grid strong {
  display: block;
  margin: 8px 0;
  color: #0d9488;
  font-size: 28px;
  line-height: 1;
}

.route-result-ready h3 {
  margin: 24px 0 10px;
  color: #102033;
  font-size: 18px;
}

.route-leg-list,
.route-reco-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.route-leg-list li,
.route-reco-list li {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid #d8e3ef;
  border-radius: 8px;
  background: #fff;
}

.route-leg-list li {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.route-leg-list span,
.route-reco-list span {
  color: #607086;
  line-height: 1.45;
}

.route-leg-list strong,
.route-reco-list strong {
  color: #102033;
}

.route-disclaimer {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 3px solid #0d9488;
  border-radius: 8px;
  background: #eef7f6;
  color: #36506a;
  line-height: 1.5;
}

.route-explain-section {
  padding: 72px 0;
  background: #fff;
}

.route-explain-section .content-column {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
}

.route-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.route-principles div {
  padding: 18px;
  border: 1px solid #d8e3ef;
  border-top: 3px solid #0d9488;
  border-radius: 8px;
  background: #f7fbff;
}

.route-principles strong,
.route-principles span {
  display: block;
}

.route-principles strong {
  color: #102033;
}

.route-principles span {
  margin-top: 8px;
  color: #607086;
  line-height: 1.5;
}

.route-related {
  padding: 72px 0;
  background: #f3f7fb;
}

.route-related .related-grid {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .route-hero__grid,
  .route-planner-grid {
    grid-template-columns: 1fr;
  }

  .route-hero__panel {
    max-width: 520px;
  }

  .route-cost-grid,
  .route-principles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .route-planner-page .route-hero {
    padding: 54px 0 46px;
  }

  .route-planner-page .container {
    width: calc(100% - 32px);
  }

  .route-hero__copy h1 {
    font-size: 42px;
  }

  .route-hero__copy > p {
    font-size: 17px;
  }

  .route-card__head,
  .route-result-empty,
  .route-result-ready,
  .route-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .route-form__row {
    grid-template-columns: 1fr;
  }

  .route-leg-list li {
    grid-template-columns: 1fr;
  }
}

/* Route planner hero legibility fix */
.route-planner-page .route-hero .route-hero__copy h1 {
  color: #ffffff !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.route-planner-page .route-hero .route-hero__copy > p {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

/* Route planner advisor framing */
.route-hero-checklist {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.route-hero-checklist p {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.route-hero-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.route-hero-checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.route-hero-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.route-hero-checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.52em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.route-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 14px;
  padding: 14px 16px;
  border: 1px solid #d8e3ef;
  border-left-width: 4px;
  border-radius: 10px;
  background: #f7fbff;
}

.route-status strong,
.route-status span,
.route-next-action span,
.route-next-action strong {
  display: block;
}

.route-status strong {
  color: #102033;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.route-status span {
  color: #607086;
  font-size: 13px;
  font-weight: 900;
}

.route-status--good { border-left-color: #10b981; background: #f0fdf4; }
.route-status--better { border-left-color: #0d9488; background: #eef7f6; }
.route-status--check { border-left-color: #f59e0b; background: #fffbeb; }
.route-status--warning { border-left-color: #ef4444; background: #fff1f2; }

.route-advisor-copy {
  margin: 0 0 18px;
  color: #36506a;
  font-size: 16px;
  line-height: 1.6;
}

.route-next-action {
  margin: 4px 0 24px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #102033;
  color: #fff;
}

.route-next-action span {
  color: #5eead4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-next-action strong {
  margin-top: 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .route-hero-checklist ul {
    grid-template-columns: 1fr;
  }

  .route-status {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Route planner hero image brightness */
.route-planner-page .route-hero {
  background:
    linear-gradient(90deg, rgba(9, 31, 57, 0.50) 0%, rgba(9, 31, 57, 0.28) 44%, rgba(9, 31, 57, 0.06) 100%),
    url("/assets/images/generated/gen-kyoto-transit.jpg") center / cover no-repeat !important;
}

.route-planner-page .route-hero__panel {
  background: rgba(6, 24, 44, 0.34);
  border-color: rgba(255, 255, 255, 0.24);
}

.route-planner-page .route-trust-line {
  background: rgba(13, 148, 136, 0.28);
}

/* Route planner hero white glass panel */
.route-planner-page .route-hero__panel {
  background: rgba(255, 255, 255, 0.76) !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 20px 60px rgba(15, 37, 64, 0.18) !important;
  backdrop-filter: blur(18px) saturate(1.12);
}

.route-planner-page .route-hero__panel span {
  color: #0d9488 !important;
}

.route-planner-page .route-hero__panel strong {
  color: #102033 !important;
}

.route-planner-page .route-hero__panel p {
  color: #36506a !important;
}

/* Homepage JR Pass bento distinct image override */
.hp-decisions .hp-bento .hp-dc--jr::before {
  background-image: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg') !important;
  background-position: center center !important;
}

/* Route planner advisor upgrade */
.route-stop-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: -4px 0 18px;
}

.route-secondary-button {
  min-height: 44px;
  border: 1px solid #b9d2e7;
  border-radius: 8px;
  background: #f7fbff;
  color: #0f3f63;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.route-secondary-button:hover:not(:disabled) {
  border-color: #0d9488;
  color: #0d9488;
}

.route-secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.route-toggle {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #cfe2f3;
  border-left: 3px solid #0d9488;
  border-radius: 8px;
  background: #f7fbff;
  color: #36506a !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.route-toggle input {
  width: 18px;
  height: 18px;
  accent-color: #0d9488;
}

.route-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: -8px 0 24px;
}

.route-option-card {
  padding: 16px;
  border: 1px solid #d8e3ef;
  border-radius: 10px;
  background: #ffffff;
}

.route-option-card span,
.route-option-card em,
.route-option-card small {
  display: block;
}

.route-option-card span {
  color: #0d9488;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-option-card strong {
  display: block;
  margin: 8px 0;
  color: #102033;
  font-size: 25px;
  line-height: 1;
}

.route-option-card em {
  color: #36506a;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.route-option-card small {
  margin-top: 10px;
  color: #607086;
  font-size: 13px;
  line-height: 1.45;
}

.route-insight {
  margin: -6px 0 20px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #eef7f6;
  color: #36506a;
  font-weight: 800;
  line-height: 1.5;
}

.route-leg-warning {
  display: inline-block;
  margin-left: 8px;
  color: #b45309;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .route-stop-actions,
  .route-option-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ Quick Answer Block ══ */
.qa-block {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2rem;
  max-width: 720px;
}
.qa-question {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111827;
  margin: 0.25rem 0 1rem;
  line-height: 1.25;
}
.qa-answer {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.qa-quick-table {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.qa-quick-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.qa-quick-row:last-child { border-bottom: none; }
.qa-quick-row--verdict {
  background: #f0fdf4;
  font-weight: 600;
}
.qa-val {
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  margin-left: 1rem;
}
.qa-val--win { color: #065F46; }
.qa-exception {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 0.75rem;
  padding: 0.75rem 1rem;
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  border-radius: 0 6px 6px 0;
}
.qa-rec {
  font-size: 0.88rem;
  color: #065F46;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 0;
  line-height: 1.5;
}

/* ══ Price Verified Box ══ */
.price-verified-box {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px dashed #14B8A6;
  border-radius: 8px;
  background: rgba(20,184,166,0.04);
}
.price-verified-icon {
  color: #14B8A6;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.price-verified-box p {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.price-verified-box a {
  color: #14B8A6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══ Traveler Reports ══ */
.tw-reports-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.tw-reports-collecting {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.tw-reports-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.tw-reports-headline {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
}
.tw-reports-subline {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.tw-reports-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tw-reports-list li {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tw-reports-list li::before {
  content: '·';
  color: #14B8A6;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tw-reports-q {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.4;
}
.tw-reports-empty {
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   DESIGN UPGRADE v3 — Premium Polish (2026-06-24)
   ══════════════════════════════════════════════════════════ */

/* ── Better shadow system ─────────────────────────────── */
:root {
  --shadow-card:       0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 4px 28px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-elevated:   0 12px 48px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.08);
  --radius-lg: 14px;
  --radius-xl: 18px;
}

/* ── Fix washed-out bento cards (replace pale overlay with rich dark gradient) */
.hp-dc--suica::before {
  background: linear-gradient(150deg, rgba(20,12,0,0.76) 0%, rgba(10,8,0,0.60) 100%) !important;
}
.hp-dc--wide::before {
  background: linear-gradient(150deg, rgba(0,18,55,0.76) 0%, rgba(0,12,45,0.60) 100%) !important;
}
.hp-dc--hakone::before {
  background: linear-gradient(150deg, rgba(0,38,22,0.78) 0%, rgba(0,28,16,0.62) 100%) !important;
}
.hp-dc--osaka::before {
  background: linear-gradient(150deg, rgba(55,5,5,0.78) 0%, rgba(45,4,4,0.62) 100%) !important;
}

/* Ensure titles/text always read white on dark backgrounds */
.hp-dc--suica .hp-dc-title-sm,
.hp-dc--wide  .hp-dc-title-sm,
.hp-dc--hakone .hp-dc-title-sm,
.hp-dc--osaka  .hp-dc-title-sm { color: #ffffff !important; }

.hp-dc--suica .hp-dc-desc-sm,
.hp-dc--wide  .hp-dc-desc-sm,
.hp-dc--hakone .hp-dc-desc-sm,
.hp-dc--osaka  .hp-dc-desc-sm { color: rgba(255,255,255,0.72) !important; }

.hp-dc--suica .hp-dc-cta-sm,
.hp-dc--wide  .hp-dc-cta-sm,
.hp-dc--hakone .hp-dc-cta-sm,
.hp-dc--osaka  .hp-dc-cta-sm { color: #5eead4 !important; }

/* ── Global card hover lift ──────────────────────────── */
.hp-dc, .card, .result-card,
.hk-route-card, .shk-scenario,
.sp-qa-block, .hp-decision-card,
.hp-trust-card, .hp-trust-v2-card { transition: transform 200ms ease, box-shadow 220ms ease; }

.hp-dc:hover         { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.result-card:hover   { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.hk-route-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.hp-trust-v2-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }

/* ── Premium button refinement ─────────────────────────── */
.button {
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10), 0 2px 8px rgba(36,97,214,0.15);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(36,97,214,0.25); }
.button:active { transform: translateY(0); }

/* ── Typography: larger, bolder stat numbers ─────────────── */
.hp-stat-value, .shk-saving-amount,
.hk-route-stat-val { font-variant-numeric: tabular-nums; font-weight: 800; }

/* ── Section polish ─────────────────────────────────────── */
.section { padding-top: 72px; padding-bottom: 72px; }
.section-surface { background: #f7f8fa; }

/* Subtle top-border accent on hero sections */
.seo-hero, .tool-hero {
  border-top: 3px solid var(--teal-mid);
}

/* ── Better tool card in calculator pages ──────────────── */
.card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
}

/* ── Result card glow on success ────────────────────────── */
.result-card--ic { box-shadow: 0 0 0 2px #14B8A6, var(--shadow-elevated); }
.result-card--pass { box-shadow: 0 0 0 2px var(--brand-blue), var(--shadow-elevated); }

/* ── Answer blocks premium style ────────────────────────── */
.sp-qa-block {
  border-left: 3px solid var(--teal-mid);
  box-shadow: var(--shadow-card);
}
.sp-qa-block:hover { box-shadow: var(--shadow-card-hover); }

/* ── Nav glass effect ────────────────────────────────────── */
.site-header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(15,31,61,0.96) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.07), 0 4px 24px rgba(0,0,0,0.18);
}

/* ── Guide index premium links ───────────────────────────── */
.hp-guide-link {
  transition: background 150ms ease, border-color 150ms ease, transform 120ms ease;
}
.hp-guide-link:hover { transform: translateX(3px); }

/* ── Footer refinement ───────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }

/* ── Mobile polish ───────────────────────────────────────── */
@media (max-width: 767px) {
  .section { padding-top: 48px; padding-bottom: 48px; }
  .hp-dc:hover { transform: none; }
}

/* ── Shinkansen bento card (new 5th row addition) ─────────── */
.hp-dc--shink {
  grid-column: 1 / 3;
  background: linear-gradient(145deg, #050E2B 0%, #091830 55%, #0A2448 100%);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}
.hp-dc--shink-right {
  grid-column: 3 / 5;
  background: linear-gradient(145deg, #0C1B3A 0%, #0F2040 100%);
  padding: 20px 22px;
}
@media (max-width: 767px) {
  .hp-dc--shink, .hp-dc--shink-right { grid-column: auto; grid-row: auto; }
}
@media (min-width: 768px) and (max-width: 1079px) {
  .hp-dc--shink       { grid-column: 1/3; }
  .hp-dc--shink-right { grid-column: 1/3; }
}

/* ── Stats bar upgrade ────────────────────────────────────── */
.hp-stats {
  background: linear-gradient(90deg, #0D9488 0%, #0F766E 50%, #0D9488 100%);
  background-size: 200% 100%;
}
.hp-stat-num { font-size: clamp(28px, 4vw, 40px) !important; font-weight: 900 !important; letter-spacing: -0.04em; }

/* ── How-it-works v2 polish ─────────────────────────────── */
.hp-how-v2-verdict {
  letter-spacing: 0.08em;
  font-weight: 900;
}

/* ── Final CTA upgrade ─────────────────────────────────── */
.hp-final-cta-box {
  background: linear-gradient(135deg, #0A1628 0%, #0F2848 60%, #0B2060 100%) !important;
  box-shadow: var(--shadow-elevated);
}

/* ══ BENTO IMAGE FINAL FIX (2026-06-24) ═══════════════════
   Replace generic gen-* with purpose-composed bento-*.jpg
   Fix missing images on new Shinkansen & Nozomi cards
   ════════════════════════════════════════════════════════ */

/* JR Pass featured card — switch away from train-heavy image */
.hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/bento-jr-pass-balanced.jpg') !important;
  --bento-pos: 50% 40% !important;
}

/* Narita — keep dedicated bento image */
.hp-bento .hp-dc--narita {
  --bento-img: url('/assets/images/bento-narita.jpg') !important;
  --bento-pos: 55% center !important;
}

/* Subway */
.hp-bento .hp-dc--subway {
  --bento-img: url('/assets/images/bento-subway.jpg') !important;
  --bento-pos: 50% center !important;
}

/* Haneda */
.hp-bento .hp-dc--haneda {
  --bento-img: url('/assets/images/bento-haneda.jpg') !important;
  --bento-pos: 60% center !important;
}

/* Bottom 4 — proper bento images, consistent sizing */
.hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/bento-suica.jpg') !important;
  --bento-pos: 50% 30% !important;
}
.hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/bento-wide.jpg') !important;
  --bento-pos: 50% 35% !important;
}
.hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/bento-hakone-pass.jpg') !important;
  --bento-pos: 50% 40% !important;
}
.hp-bento .hp-dc--osaka {
  --bento-img: url('/assets/images/bento-osaka-pass.jpg') !important;
  --bento-pos: 50% 35% !important;
}

/* Bottom 4 — consistent min-height so all same size */
.hp-bento .hp-dc--suica,
.hp-bento .hp-dc--wide,
.hp-bento .hp-dc--hakone,
.hp-bento .hp-dc--osaka {
  min-height: 160px !important;
}

/* NEW: Shinkansen vs JR Pass card */
.hp-bento .hp-dc--shink {
  --bento-img: url('/assets/images/bento-jr-pass.jpg') !important;
  --bento-pos: 50% 45% !important;
  position: relative !important;
  overflow: hidden !important;
}
.hp-bento .hp-dc--shink::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-image: url('/assets/images/bento-jr-pass.jpg') !important;
  background-size: cover !important;
  background-position: 50% 45% !important;
  opacity: .82 !important;
}
.hp-bento .hp-dc--shink::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: linear-gradient(90deg, rgba(5,12,26,.90) 0%, rgba(5,12,26,.72) 55%, rgba(5,12,26,.30) 100%) !important;
}
.hp-bento .hp-dc--shink > * { position: relative !important; z-index: 1 !important; }

/* NEW: Nozomi vs Hikari card */
.hp-bento .hp-dc--shink-right {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: 60% center !important;
  position: relative !important;
  overflow: hidden !important;
}
.hp-bento .hp-dc--shink-right::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  background-size: cover !important;
  background-position: 60% center !important;
  opacity: .82 !important;
}
.hp-bento .hp-dc--shink-right::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: linear-gradient(90deg, rgba(5,12,26,.88) 0%, rgba(5,12,26,.65) 55%, rgba(5,12,26,.25) 100%) !important;
}
.hp-bento .hp-dc--shink-right > * { position: relative !important; z-index: 1 !important; }

/* Ensure all bento card text is white over images */
.hp-bento .hp-dc--shink .hp-dc-feat-title,
.hp-bento .hp-dc--shink .hp-dc-desc-sm,
.hp-bento .hp-dc--shink .hp-dc-cta-sm,
.hp-bento .hp-dc--shink-right .hp-dc-title-sm,
.hp-bento .hp-dc--shink-right .hp-dc-desc-sm,
.hp-bento .hp-dc--shink-right .hp-dc-cta-sm { color: #fff !important; }

.hp-bento .hp-dc--shink .hp-dc-cta-sm,
.hp-bento .hp-dc--shink-right .hp-dc-cta-sm { color: #5eead4 !important; }

/* Bottom 4 overlay — slightly lighter so image is more visible */
.hp-bento .hp-dc--suica::after,
.hp-bento .hp-dc--wide::after,
.hp-bento .hp-dc--hakone::after,
.hp-bento .hp-dc--osaka::after {
  background: linear-gradient(160deg, rgba(5,12,26,.65) 0%, rgba(5,12,26,.78) 100%) !important;
}

/* ══ BENTO IMAGE CORRECT SPECIFICITY FIX (2026-06-24) ══
   Must use .hp-decisions prefix (3-class specificity)
   to win over existing rules at line 6649–7050+
   ════════════════════════════════════════════════════ */

/* JR Pass — replace train image with pass-focused photo */
.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/bento-jr-pass-balanced.jpg') !important;
  --bento-pos: 50% 38% !important;
}

/* Narita, Subway, Haneda — keep or use dedicated images */
.hp-decisions .hp-bento .hp-dc--narita {
  --bento-img: url('/assets/images/bento-narita.jpg') !important;
  --bento-pos: 55% center !important;
}
.hp-decisions .hp-bento .hp-dc--subway {
  --bento-img: url('/assets/images/bento-subway.jpg') !important;
  --bento-pos: 50% center !important;
}
.hp-decisions .hp-bento .hp-dc--haneda {
  --bento-img: url('/assets/images/bento-haneda.jpg') !important;
  --bento-pos: 60% center !important;
}

/* Bottom 4 — dedicated bento images, consistent composition */
.hp-decisions .hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/bento-suica.jpg') !important;
  --bento-pos: 50% 30% !important;
}
.hp-decisions .hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/bento-wide.jpg') !important;
  --bento-pos: 50% 35% !important;
}
.hp-decisions .hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/bento-hakone-pass.jpg') !important;
  --bento-pos: 50% 40% !important;
}
.hp-decisions .hp-bento .hp-dc--osaka {
  --bento-img: url('/assets/images/bento-osaka-pass.jpg') !important;
  --bento-pos: 50% 35% !important;
}

/* Bottom 4 — consistent min-height */
.hp-decisions .hp-bento .hp-dc--suica,
.hp-decisions .hp-bento .hp-dc--wide,
.hp-decisions .hp-bento .hp-dc--hakone,
.hp-decisions .hp-bento .hp-dc--osaka {
  min-height: 160px !important;
}

/* NEW Shinkansen card — inside .hp-decisions */
.hp-decisions .hp-bento .hp-dc--shink {
  --bento-img: url('/assets/images/bento-jr-pass.jpg') !important;
  --bento-pos: 50% 45% !important;
  position: relative !important;
  overflow: hidden !important;
}
.hp-decisions .hp-bento .hp-dc--shink::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-image: url('/assets/images/bento-jr-pass.jpg') !important;
  background-size: cover !important;
  background-position: 50% 45% !important;
  opacity: .82 !important;
}
.hp-decisions .hp-bento .hp-dc--shink::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: linear-gradient(90deg, rgba(5,12,26,.90) 0%, rgba(5,12,26,.72) 55%, rgba(5,12,26,.30) 100%) !important;
}
.hp-decisions .hp-bento .hp-dc--shink > * { position: relative !important; z-index: 1 !important; }

/* NEW Nozomi vs Hikari card — inside .hp-decisions */
.hp-decisions .hp-bento .hp-dc--shink-right {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: 60% center !important;
  position: relative !important;
  overflow: hidden !important;
}
.hp-decisions .hp-bento .hp-dc--shink-right::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  background-size: cover !important;
  background-position: 60% center !important;
  opacity: .82 !important;
}
.hp-decisions .hp-bento .hp-dc--shink-right::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: linear-gradient(90deg, rgba(5,12,26,.88) 0%, rgba(5,12,26,.65) 55%, rgba(5,12,26,.25) 100%) !important;
}
.hp-decisions .hp-bento .hp-dc--shink-right > * { position: relative !important; z-index: 1 !important; }

/* ══ 新卡片去掉深色蒙版 (2026-06-24) ════════════════════ */
.hp-decisions .hp-bento .hp-dc--shink::after,
.hp-decisions .hp-bento .hp-dc--shink-right::after {
  background: linear-gradient(90deg, rgba(5,12,26,.45) 0%, rgba(5,12,26,.20) 60%, rgba(5,12,26,.05) 100%) !important;
}
/* 前景图层透明度提升，让图片更清晰 */
.hp-decisions .hp-bento .hp-dc--shink::before,
.hp-decisions .hp-bento .hp-dc--shink-right::before {
  opacity: 1 !important;
}

/* ══ 新卡片蒙版再调淡 (2026-06-24) ════════════════════ */
.hp-decisions .hp-bento .hp-dc--shink::after,
.hp-decisions .hp-bento .hp-dc--shink-right::after {
  background: linear-gradient(90deg, rgba(5,12,26,.55) 0%, rgba(5,12,26,.18) 70%, rgba(5,12,26,.06) 100%) !important;
}
/* 确保文字可读 — 左侧文字区域有足够对比度 */
.hp-decisions .hp-bento .hp-dc--shink .hp-dc-feat-title,
.hp-decisions .hp-bento .hp-dc--shink-right .hp-dc-title-sm {
  text-shadow: 0 1px 6px rgba(0,0,0,.55) !important;
}

/* ══ 底部4张卡统一改用实地风景照 (2026-06-24) ══════════
   去掉通票宣传卡图，改用 gen-* 系列同风格旅行照
   ════════════════════════════════════════════════════ */
.hp-decisions .hp-bento .hp-dc--suica {
  --bento-img: url('/assets/images/generated/gen-ic-card-gate.jpg') !important;
  --bento-pos: 50% center !important;
}
.hp-decisions .hp-bento .hp-dc--wide {
  --bento-img: url('/assets/images/generated/gen-kyoto-transit.jpg') !important;
  --bento-pos: 50% 40% !important;
}
.hp-decisions .hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  --bento-pos: 50% 45% !important;
}
.hp-decisions .hp-bento .hp-dc--osaka {
  --bento-img: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  --bento-pos: 50% 40% !important;
}

/* ══ 底部4张卡::before 直接覆盖 — 统一用风景照 (2026-06-24) ══ */
.hp-decisions .hp-bento .hp-dc--suica::before {
  background-image: url('/assets/images/generated/gen-ic-card-gate.jpg') !important;
  background-position: 50% center !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--wide::before {
  background-image: url('/assets/images/generated/gen-kyoto-transit.jpg') !important;
  background-position: 50% 40% !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--hakone::before {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  background-position: 50% 45% !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--osaka::before {
  background-image: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  background-position: 50% 40% !important;
  background-size: cover !important;
}

/* ══ 底部4张卡换用确认实景照 (2026-06-24) ══════════════
   gen-ic-card-gate.jpg 和 gen-osaka-canal.jpg 实际为卡图
   改用确认是地点/交通实景的图片
   ════════════════════════════════════════════════════ */
.hp-decisions .hp-bento .hp-dc--suica::before {
  background-image: url('/assets/images/generated/gen-tokyo-subway.jpg') !important;
  background-position: 42% center !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--wide::before {
  background-image: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg') !important;
  background-position: 50% 38% !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--hakone::before {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  background-position: 50% 45% !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--osaka::before {
  background-image: url('/assets/images/generated/gen-narita-rail.jpg') !important;
  background-position: 50% 40% !important;
  background-size: cover !important;
}

/* ══ 底部4张卡最终修复 — 用纯风景照 (2026-06-24) ══════
   gen-tokyo-subway / gen-ic-card-gate / gen-osaka-canal /
   gen-tokyo-daytrip-rail 均含通票品牌元素，改用干净照片
   ════════════════════════════════════════════════════ */
.hp-decisions .hp-bento .hp-dc--suica::before {
  background-image: url('/assets/images/generated/gen-kyoto-transit.jpg') !important;
  background-position: 55% center !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--wide::before {
  background-image: url('/assets/images/generated/gen-narita-rail.jpg') !important;
  background-position: 50% 40% !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--hakone::before {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  background-position: 50% 45% !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--osaka::before {
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  background-position: 62% center !important;
  background-size: cover !important;
}

/* ══ 底部4张卡终极修复 — 仅用确认纯景照 (2026-06-24) ══
   kyoto-transit/tokyo-subway/osaka-canal 均含IC卡/通票图
   只有这4张确认无卡图: narita-rail / haneda-transfer /
   hakone-lake / jr-shinkansen
   ════════════════════════════════════════════════════ */
.hp-decisions .hp-bento .hp-dc--suica::before {
  background-image: url('/assets/images/generated/gen-narita-rail.jpg') !important;
  background-position: 45% center !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--wide::before {
  background-image: url('/assets/images/generated/gen-haneda-transfer.jpg') !important;
  background-position: 50% 40% !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--hakone::before {
  background-image: url('/assets/images/generated/gen-hakone-lake.jpg') !important;
  background-position: 50% 45% !important;
  background-size: cover !important;
}
.hp-decisions .hp-bento .hp-dc--osaka::before {
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  background-position: 60% center !important;
  background-size: cover !important;
}

/* ══ Suica 换图 — 避免与 Narita Express 重复 (2026-06-24) */
.hp-decisions .hp-bento .hp-dc--suica::before {
  background-image: url('/assets/images/generated/gen-tripworth-method.jpg') !important;
  background-position: 50% center !important;
  background-size: cover !important;
}

/* ══ Suica 最终换图 — ic-card-gate 场景符合主题 (2026-06-24) ══ */
.hp-decisions .hp-bento .hp-dc--suica::before {
  background-image: url('/assets/images/generated/gen-ic-card-gate.jpg') !important;
  background-position: 50% 40% !important;
  background-size: cover !important;
}

/* ══ 卡片图片高度增加 + 图片换图 + 去蒙版 (2026-06-24) ══ */

/* 1. 所有小卡图片区高度增加到 220px */
.hp-decisions .hp-bento .hp-dc--narita::before,
.hp-decisions .hp-bento .hp-dc--subway::before,
.hp-decisions .hp-bento .hp-dc--haneda::before,
.hp-decisions .hp-bento .hp-dc--suica::before,
.hp-decisions .hp-bento .hp-dc--wide::before,
.hp-decisions .hp-bento .hp-dc--hakone::before,
.hp-decisions .hp-bento .hp-dc--osaka::before {
  flex: 0 0 220px !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
}

/* 大卡也适当增高 */
.hp-decisions .hp-bento .hp-dc--jr::before {
  flex-basis: 240px !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
}

/* 2. Shinkansen vs JR Pass 卡 — 换成 JR Pass Worth It? 同款干净列车照 */
.hp-decisions .hp-bento .hp-dc--shink::before {
  background-image: url('/assets/images/bento-jr-pass-balanced.jpg') !important;
  background-position: 50% 38% !important;
  background-size: cover !important;
}

/* 3. Osaka Amazing Pass — 换掉重复的新干线图，用运河城市照 */
.hp-decisions .hp-bento .hp-dc--osaka::before {
  background-image: url('/assets/images/generated/gen-osaka-canal.jpg') !important;
  background-position: 50% 40% !important;
  background-size: cover !important;
}

/* 4. 完全去除两张新卡的深色蒙版 */
.hp-decisions .hp-bento .hp-dc--shink::after,
.hp-decisions .hp-bento .hp-dc--shink-right::after {
  background: none !important;
  display: none !important;
}

/* 5. 新卡图片区高度也跟上 */
.hp-decisions .hp-bento .hp-dc--shink::before,
.hp-decisions .hp-bento .hp-dc--shink-right::before {
  flex: 0 0 220px !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
}

/* ══ 新卡重构：图片在上文字在下，去掉背景叠字 (2026-06-24) ══ */

/* 容器：标准 flex column，与普通小卡一致 */
.hp-decisions .hp-bento .hp-dc--shink,
.hp-decisions .hp-bento .hp-dc--shink-right {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  position: relative !important;
  overflow: hidden !important;
}

/* ::before 从 absolute 改为 flex item，固定高度图片区 */
.hp-decisions .hp-bento .hp-dc--shink::before,
.hp-decisions .hp-bento .hp-dc--shink-right::before {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  flex: 0 0 220px !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  width: 100% !important;
  background-size: cover !important;
  opacity: 1 !important;
  z-index: 0 !important;
}

/* 各自图片 */
.hp-decisions .hp-bento .hp-dc--shink::before {
  background-image: url('/assets/images/bento-jr-pass-balanced.jpg') !important;
  background-position: 50% 38% !important;
}
.hp-decisions .hp-bento .hp-dc--shink-right::before {
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  background-position: 60% center !important;
}

/* 完全去除遮罩层 */
.hp-decisions .hp-bento .hp-dc--shink::after,
.hp-decisions .hp-bento .hp-dc--shink-right::after {
  display: none !important;
  content: none !important;
}

/* 子元素恢复普通文档流，不再叠在图片上 */
.hp-decisions .hp-bento .hp-dc--shink > *,
.hp-decisions .hp-bento .hp-dc--shink-right > * {
  position: static !important;
  z-index: auto !important;
}

/* 文字颜色恢复正常（深色，不再强制白色） */
.hp-decisions .hp-bento .hp-dc--shink .hp-dc-feat-title,
.hp-decisions .hp-bento .hp-dc--shink .hp-dc-pill,
.hp-decisions .hp-bento .hp-dc--shink .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc--shink .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc--shink-right .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--shink-right .hp-dc-desc-sm,
.hp-decisions .hp-bento .hp-dc--shink-right .hp-dc-cta-sm {
  color: inherit !important;
}

/* CTA 链接色保持品牌绿 */
.hp-decisions .hp-bento .hp-dc--shink .hp-dc-cta-sm,
.hp-decisions .hp-bento .hp-dc--shink-right .hp-dc-cta-sm {
  color: #14b8a6 !important;
}

/* ══ Shinkansen page hero — 参照 narita-page 模式 (2026-06-24) ══ */
.shinkansen-page .tool-hero {
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0 68px;
  background:
    linear-gradient(90deg, rgba(5,14,32,0.93) 0%, rgba(5,16,38,0.80) 44%, rgba(5,16,38,0.38) 100%),
    url('/assets/images/generated/gen-jr-shinkansen.jpg') 60% center / cover no-repeat !important;
}
.shinkansen-page .tool-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 20%, rgba(20,184,166,0.18), transparent 26%),
    linear-gradient(180deg, rgba(10,25,55,0) 0%, rgba(10,25,55,0.15) 100%);
}
.shinkansen-page .tool-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
  gap: 34px;
  align-items: start;
}
.shinkansen-page .tool-intro {
  max-width: 660px;
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  color: rgba(255,255,255,0.86);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.shinkansen-page .tool-intro .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 650;
}
.shinkansen-page .tool-intro .breadcrumb a { color: rgba(255,255,255,0.72); text-decoration: none; }
.shinkansen-page .tool-intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.shinkansen-page .tool-intro .tool-intro-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin: 0 0 14px;
}
.shinkansen-page .tool-intro .trust-line {
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
}
.shinkansen-page .tool-intro .table-caption,
.shinkansen-page .tool-intro .context-blurb {
  color: rgba(255,255,255,0.58);
  font-size: 0.80rem;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .shinkansen-page .tool-hero { padding: 52px 0 44px; }
  .shinkansen-page .tool-intro h1 { font-size: 1.7rem; }
}

/* ══ Bento 第一张新卡换成干净列车照（去掉含UI文字的图）══ */
.hp-decisions .hp-bento .hp-dc--shink::before {
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  background-position: 55% center !important;
}

/* ══ Shinkansen page — 图片独立 band，tool-hero 恢复白底 (2026-06-24) ══ */

/* 纯图片横幅，不叠文字 */
.shink-hero-band {
  width: 100%;
  height: 280px;
  background:
    url('/assets/images/generated/gen-jr-shinkansen.jpg') 55% 40% / cover no-repeat;
  display: block;
}

/* 恢复 tool-hero 为干净白色，取消之前叠图方案 */
.shinkansen-page .tool-hero {
  isolation: auto !important;
  overflow: visible !important;
  padding: 56px 0 56px !important;
  background: #fff !important;
}
.shinkansen-page .tool-hero::before {
  display: none !important;
  content: none !important;
}

/* 恢复文字为正常深色 */
.shinkansen-page .tool-intro {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  max-width: none !important;
}
.shinkansen-page .tool-intro h1,
.shinkansen-page .tool-intro .tool-intro-sub,
.shinkansen-page .tool-intro .trust-line,
.shinkansen-page .tool-intro .table-caption,
.shinkansen-page .tool-intro .context-blurb {
  color: inherit !important;
}
.shinkansen-page .tool-intro .breadcrumb {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}
.shinkansen-page .tool-intro .breadcrumb a { color: inherit !important; }

/* 容器左右 padding，防止内容贴边 */
.shinkansen-page .container {
  padding-left: clamp(16px, 4vw, 40px) !important;
  padding-right: clamp(16px, 4vw, 40px) !important;
}

/* 两列布局允许表格完整显示 */
.shinkansen-page .tool-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 40px !important;
  align-items: start !important;
}

@media (max-width: 768px) {
  .shink-hero-band { height: 200px; }
  .shinkansen-page .tool-layout {
    grid-template-columns: 1fr !important;
  }
}

/* ══ 修复 tw-reports-list 图标乱码 (2026-06-24) ══ */
.tw-reports-list li::before {
  content: '?' !important;
  color: #14B8A6 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  width: 1.2rem !important;
  text-align: center !important;
}

/* ══ tw-reports-list 图标改为箭头 (2026-06-24) ══ */
.tw-reports-list li::before {
  content: '\2192' !important;
  color: #14B8A6 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  flex-shrink: 0 !important;
  width: 1.2rem !important;
  text-align: center !important;
}

/* ══ JR Pass 大卡换图：去掉含"7 day pass ￥50,000"文字的营销图 (2026-06-24) ══ */
.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  --bento-pos: 50% 42% !important;
}
.hp-decisions .hp-bento .hp-dc--jr::before {
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  background-position: 50% 42% !important;
  background-size: cover !important;
}

/* ══ Subway page — 文字左右留边 (2026-06-24) ══ */
.subway-page .tool-hero .container {
  padding-left: clamp(24px, 5vw, 52px) !important;
  padding-right: clamp(24px, 5vw, 52px) !important;
}

/* ══ key-takeaway 白底页面文字颜色修复 (2026-06-24) ══ */
/* 这些页面把 key-takeaway 背景改为白色，但未同步修改文字颜色导致白底白字不可见 */
.narita-page .key-takeaway-text,
.subway-page .key-takeaway-text,
.haneda-page .key-takeaway-text,
.wide-page .key-takeaway-text,
.hakone-page .key-takeaway-text,
.osaka-page .key-takeaway-text,
.jr-page .key-takeaway-text {
  color: #0f1f3d !important;
}

/* em 强调部分保持品牌绿 */
.narita-page .key-takeaway-text em,
.subway-page .key-takeaway-text em,
.haneda-page .key-takeaway-text em,
.wide-page .key-takeaway-text em,
.hakone-page .key-takeaway-text em,
.osaka-page .key-takeaway-text em,
.jr-page .key-takeaway-text em {
  color: #14b8a6 !important;
}

/* ══ "Open the decision hub" 按钮防止文字折行 (2026-06-24) ══ */
.tool-network__foot .button,
.tool-network__foot .button-secondary {
  white-space: nowrap !important;
  min-width: max-content !important;
}

/* ══ 新卡换图（消除与JR Pass大卡和Hero重复）+ 去标题阴影 (2026-06-24) ══ */

/* Shinkansen vs JR Pass → 京都车站月台实景 */
.hp-decisions .hp-bento .hp-dc--shink::before {
  background-image: url('/assets/images/generated/gen-kyoto-transit.jpg') !important;
  background-position: 50% 38% !important;
  background-size: cover !important;
}

/* Nozomi vs Hikari → 东京铁路日游实景 */
.hp-decisions .hp-bento .hp-dc--shink-right::before {
  background-image: url('/assets/images/generated/gen-tokyo-daytrip-rail.jpg') !important;
  background-position: 50% 42% !important;
  background-size: cover !important;
}

/* 去掉标题文字阴影 */
.hp-decisions .hp-bento .hp-dc--shink .hp-dc-feat-title,
.hp-decisions .hp-bento .hp-dc--shink .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--shink-right .hp-dc-title-sm,
.hp-decisions .hp-bento .hp-dc--shink-right .hp-dc-feat-title {
  text-shadow: none !important;
}

/* ══ JR Pass Worth It 大卡换图 — 避免与 Hero 雷同 (2026-06-24) ══ */
.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-narita-rail.jpg') !important;
  --bento-pos: 50% 38% !important;
}
.hp-decisions .hp-bento .hp-dc--jr::before {
  background-image: url('/assets/images/generated/gen-narita-rail.jpg') !important;
  background-position: 50% 38% !important;
  background-size: cover !important;
}

/* ══ JR Pass Worth It 大卡再换图 — 避免与 Narita 卡撞图 (2026-06-24) ══ */
.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/generated/gen-tripworth-method.jpg') !important;
  --bento-pos: 50% 40% !important;
}
.hp-decisions .hp-bento .hp-dc--jr::before {
  background-image: url('/assets/images/generated/gen-tripworth-method.jpg') !important;
  background-position: 50% 40% !important;
  background-size: cover !important;
}

/* 鈺愨晲 4寮犳柊鍥炬寜鍐呭鍒嗛厤鍒板悇 bento 鍗＄墖 (2026-06-24) 鈺愨晲 */

/* Shinkansen vs JR Pass 鈫 宀氬北绔规灄锛堜含閮戒唬琛ㄦ櫙鐐癸紝鏂板共绾跨洰鐨勫湴锛*/
.hp-decisions .hp-bento .hp-dc--shink::before {
  background-image: url('/assets/images/japan-bamboo-grove.jpg') !important;
  background-position: 50% 50% !important;
}

/* Nozomi vs Hikari 鈫 瀵屽＋灞辩鍙讹紙涓滄捣閬撴柊骞茬嚎杞︾獥澶栫粡鍏搁鏅級*/
.hp-decisions .hp-bento .hp-dc--shink-right::before {
  background-image: url('/assets/images/japan-fuji-autumn.jpg') !important;
  background-position: 50% 35% !important;
}

/* Hakone Freepass 鈫 瀵屽＋灞辨槬妯憋紙绠辨牴鏈钁楀悕鐨勫瘜澹北瑙傛櫙鍦帮級*/
.hp-decisions .hp-bento .hp-dc--hakone {
  --bento-img: url('/assets/images/japan-fuji-spring.jpg') !important;
  --bento-pos: 50% 40% !important;
}
.hp-decisions .hp-bento .hp-dc--hakone::before {
  background-image: url('/assets/images/japan-fuji-spring.jpg') !important;
  background-position: 50% 40% !important;
  background-size: cover !important;
}

/* JR Pass Worth It 鈫 浼忚绋昏嵎锛圝R Pass 鎸佹湁鑰呭繀鍘荤殑浜兘鏅偣锛*/
.hp-decisions .hp-bento .hp-dc--jr {
  --bento-img: url('/assets/images/japan-fushimi-inari.jpg') !important;
  --bento-pos: 50% 50% !important;
}
.hp-decisions .hp-bento .hp-dc--jr::before {
  background-image: url('/assets/images/japan-fushimi-inari.jpg') !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
}

/* 鈺愨晲 FAQ AI-answer block styles (2026-06-24) 鈺愨晲 */
.faq-answer-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* One-line verdict 鈥 the quotable sentence */
.faq-verdict {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1f3d;
  line-height: 1.45;
  padding: 10px 14px;
  background: #f0fdf9;
  border-left: 3px solid #14b8a6;
  border-radius: 4px;
  margin: 0;
}

.faq-why {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Example data block */
.faq-example {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-example-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.faq-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.875rem;
  color: #374151;
  padding: 3px 0;
  border-bottom: 1px solid #f1f5f9;
}
.faq-compare-row:last-of-type {
  border-bottom: none;
}

.faq-num {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: #0f1f3d;
  flex-shrink: 0;
}
.faq-num--save { color: #0a7c4e; }
.faq-num--cost { color: #c0392b; }

.faq-example-verdict {
  font-size: 0.875rem;
  color: #374151;
  margin: 6px 0 0;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

.faq-cta-inline {
  margin: 0;
  font-size: 0.875rem;
}
.faq-cta-inline a {
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
}
.faq-cta-inline a:hover { text-decoration: underline; }

/* 鈺愨晲 JR Pass vs Individual Tickets 鈥 comparison cards (2026-06-24) 鈺愨晲 */
.jrp-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}
@media (max-width: 680px) { .jrp-vs-grid { grid-template-columns: 1fr; } }

.jrp-vs-card {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.jrp-vs-card--individual {
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #86efac;
}
.jrp-vs-card--pass {
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
  border: 1.5px solid #93c5fd;
}

.jrp-vs-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  background: #16a34a;
  color: #fff;
  width: fit-content;
}
.jrp-vs-badge--pass { background: #2563eb; }

.jrp-vs-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f1f3d;
  margin: 0;
}

.jrp-vs-list {
  margin: 0;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jrp-vs-list li {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.jrp-vs-example {
  margin-top: auto;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.jrp-vs-route {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}
.jrp-vs-cost {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f1f3d;
}
.jrp-vs-cost span {
  font-size: 0.78rem;
  font-weight: 500;
  color: #94a3b8;
  margin-left: 6px;
}
.jrp-vs-cost--win { color: #16a34a; }
.jrp-vs-saving {
  font-size: 0.8rem;
  font-weight: 600;
  color: #059669;
}

/* Route scenario table */
.jrp-scenario-table {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin: 16px 0 8px;
}
.jrp-scenario-header,
.jrp-scenario-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  align-items: center;
}
@media (max-width: 640px) {
  .jrp-scenario-header { display: none; }
  .jrp-scenario-row { grid-template-columns: 1fr 1fr; gap: 4px; padding: 12px 14px; }
  .jrp-route { grid-column: 1 / -1; font-weight: 600; }
}
.jrp-scenario-header {
  background: #f8fafc;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}
.jrp-scenario-header span,
.jrp-scenario-row span { padding: 0 8px; }
.jrp-scenario-row {
  padding: 12px 8px;
  border-bottom: 1px solid #f1f5f9;
  transition: background 120ms;
}
.jrp-scenario-row:last-child { border-bottom: none; }
.jrp-scenario-row:hover { background: #f8fafc; }
.jrp-route { font-size: 0.875rem; color: #374151; font-weight: 500; }
.jrp-num { font-size: 0.9rem; font-weight: 700; color: #0f1f3d; font-variant-numeric: tabular-nums; }
.jrp-num--win { color: #16a34a; }
.jrp-verdict {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px !important;
  border-radius: 99px;
  width: fit-content;
}
.jrp-verdict--individual { background: #dcfce7; color: #15803d; }
.jrp-verdict--pass { background: #dbeafe; color: #1d4ed8; }

/* 鈺愨晲 Glass buttons 鈥 all .button elements (2026-06-24) 鈺愨晲 */
.button {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0) 55%
  ),
  var(--brand-blue) !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 4px 14px rgba(36,97,214,0.30) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.button:hover {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0) 55%
  ),
  var(--brand-blue-hover) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 6px 20px rgba(36,97,214,0.38) !important;
}
.button-teal,
.button.button-teal {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0) 55%
  ),
  #0d9488 !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 4px 14px rgba(13,148,136,0.30) !important;
}
.button-teal:hover {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0) 55%
  ),
  #0f766e !important;
}
/* Glass secondary (on dark/image bg) stays translucent */
.button-secondary {
  background: rgba(255,255,255,0.14) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset !important;
}
.button-secondary:hover {
  background: rgba(255,255,255,0.24) !important;
}

/* 鈺愨晲 Hero headline size + top spacing fix (2026-06-24) 鈺愨晲 */
.hp-hero-headline {
  font-size: clamp(26px, 4vw, 44px) !important;
  letter-spacing: -0.025em !important;
  margin-top: 32px !important;
  margin-bottom: var(--space-4) !important;
}
.hp-hero-sub {
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  opacity: 0.88 !important;
}

/* 鈺愨晲 Button revert to original + hero headline +1/3 size (2026-06-24) 鈺愨晲 */
.button {
  background: var(--brand-blue) !important;
  border: none !important;
  box-shadow: 0 1px 2px rgba(15,25,35,0.12) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.button:hover {
  background: var(--brand-blue-hover) !important;
  box-shadow: 0 2px 8px rgba(36,97,214,0.25) !important;
}
.button-teal,
.button.button-teal {
  background: #0d9488 !important;
  border: none !important;
  box-shadow: 0 1px 2px rgba(13,148,136,0.30) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.button-teal:hover { background: #0f766e !important; }

.button-secondary {
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  box-shadow: none !important;
}
.button-secondary:hover {
  background: rgba(255,255,255,0.22) !important;
}

/* Hero headline: previous 44px max 鈫 脳1.333 鈮 59px */
.hp-hero-headline {
  font-size: clamp(34px, 5.3vw, 59px) !important;
}

/* 鈺愨晲 Hero buttons: restore teal primary + frosted glass secondary (2026-06-24) 鈺愨晲 */
.hp-btn-primary,
a.hp-btn-primary,
.hp-btn-primary:link,
.hp-btn-primary:visited {
  background: var(--teal) !important;
  color: var(--white) !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(13,148,136,0.5) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.hp-btn-primary:hover {
  background: var(--teal-hover) !important;
  box-shadow: 0 8px 28px rgba(13,148,136,0.55) !important;
  transform: translateY(-2px);
}

.hp-btn-secondary,
a.hp-btn-secondary,
.hp-btn-secondary:link,
.hp-btn-secondary:visited {
  background: rgba(255,255,255,0.12) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}
.hp-btn-secondary:hover {
  background: rgba(255,255,255,0.20) !important;
  color: var(--white) !important;
}

/* 鈺愨晲 Nav: 5-link layout (2026-06-24) 鈺愨晲 */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.875rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 120ms;
}
.nav-links a:hover {
  background: rgba(255,255,255,0.1);
}
@media (max-width: 640px) {
  .nav-links a[href="/about/"],
  .nav-links a[href="/contact/"] {
    display: none;
  }
}
@media (max-width: 400px) {
  .nav-links a[href="/guides/"] {
    display: none;
  }
}

/* 鈺愨晲 Hero headline sub-line smaller (2026-06-24) 鈺愨晲 */
.hp-hero-headline-sub {
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0em;
  margin-top: 4px;
}

/* 鈺愨晲 Hero headline 3-line design (2026-06-24) 鈺愨晲 */
.hp-hero-headline {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.hp-hl-line1 {
  display: block;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
}
.hp-hl-line1 em {
  font-style: normal;
  color: #5eead4;
}
.hp-hl-line2 {
  display: block;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.03em;
}
.hp-hl-line3 {
  display: block;
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  margin-top: 6px;
}

/* 鈺愨晲 Hero line3 size up (2026-06-24) 鈺愨晲 */
.hp-hl-line3 {
  font-size: clamp(22px, 3.2vw, 42px) !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.75) !important;
  margin-top: 4px !important;
}

/* 鈺愨晲 Hero line2 teal accent (2026-06-24) 鈺愨晲 */
.hp-hl-teal {
  font-style: normal;
  color: #5eead4;
}

/* 鈺愨晲 Hero: dark fallback bg + instant render 鈥 no white flash (2026-06-24) 鈺愨晲 */
.hp-hero {
  background: #0f1f3d !important;
}
.hp-hero-bg {
  background-color: #0f1f3d !important;
  background-image: url('/assets/images/generated/gen-jr-shinkansen.jpg') !important;
  background-size: cover !important;
  background-position: center 40% !important;
}

/* line2 font size adjust for longer text */
.hp-hl-line2 {
  font-size: clamp(18px, 2.8vw, 36px) !important;
  letter-spacing: -0.02em !important;
  font-weight: 800 !important;
}

/* 鈺愨晲 Hero: restore cherry blossom image + font +1/3 (2026-06-24) 鈺愨晲 */
.hp-hero-bg {
  background-image: url('/assets/images/hero-shinkansen-fuji.jpg') !important;
  background-position: center 35% !important;
}

/* Line 1: clamp(28px,4.2vw,52px) 脳 1.333 */
.hp-hl-line1 {
  font-size: clamp(37px, 5.6vw, 69px) !important;
}

/* Line 2: clamp(18px,2.8vw,36px) 脳 1.333 */
.hp-hl-line2 {
  font-size: clamp(24px, 3.7vw, 48px) !important;
}
