:root {
  --bg: #07111f;
  --bg-soft: #0d1b2f;
  --bg-card: #102139;
  --text: #f7f9fc;
  --muted: #b5c0d0;
  --line: rgba(255,255,255,.12);
  --gold: #f26a21;
  --gold-2: #ff8a3d;
  --orange: #ff6b00;
  --red: #df2018;
  --navy: #071f45;
  --blue: #0b57d0;
  --white: #fff;
  --black: #07111f;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.section.light { background: #f7f8fb; color: #101828; }
.section.light .section-lead, .section.light .muted { color: #56657a; }
.section.compact { padding: 64px 0; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: currentColor; }
.h1, h1 { font-size: clamp(42px, 7vw, 88px); line-height: 1.05; letter-spacing: -.05em; margin: 20px 0 24px; }
.h2, h2 { font-size: clamp(30px, 4vw, 54px); line-height: 1.18; letter-spacing: -.04em; margin: 14px 0 18px; }
.h3, h3 { font-size: 24px; line-height: 1.35; margin: 0 0 10px; }
.section-lead { max-width: 760px; color: var(--muted); font-size: 17px; }
.text-gold { color: var(--gold-2); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,17,31,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 22px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 34px rgba(216,177,95,.28);
}
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff; box-shadow: 0 18px 42px rgba(255,107,0,.25); }
.btn-outline { border-color: rgba(255,255,255,.22); color: var(--white); background: rgba(255,255,255,.04); }
.btn-dark { background: #07111f; color: white; }
.btn-wide { min-width: 260px; }

.hero {
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(83,166,255,.22), transparent 28%),
    radial-gradient(circle at 10% 15%, rgba(216,177,95,.20), transparent 30%),
    linear-gradient(145deg, #071f45 0%, #0a2f66 54%, #102139 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -12% -26% auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(216,177,95,.11);
  filter: blur(4px);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-copy p { font-size: 18px; color: var(--muted); max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 16px; color: var(--muted); font-size: 13px; }
.hero-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(216,177,95,.18), transparent 45%); pointer-events: none; }
.panel { position: relative; background: rgba(7,17,31,.82); border: 1px solid var(--line); border-radius: 26px; padding: 24px; }
.panel-title { color: var(--gold-2); font-weight: 900; letter-spacing: .08em; font-size: 13px; }
.salary { display: grid; gap: 14px; margin-top: 22px; }
.salary-row { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.06); }
.salary-row strong { font-size: 22px; }
.salary-row span { color: var(--muted); font-size: 13px; }
.arrow { text-align: center; color: var(--gold-2); font-size: 28px; line-height: 1; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: -48px; position: relative; z-index: 5; }
.stat { background: #fff; color: #101828; border-radius: 22px; padding: 28px; box-shadow: 0 18px 50px rgba(5,16,35,.14); }
.stat .num { font-size: clamp(34px, 4vw, 56px); line-height: 1; font-weight: 900; letter-spacing: -.04em; color: #07111f; }
.stat .label { color: #667085; margin-top: 8px; font-weight: 700; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 100%;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
}
.light .card { background: #fff; border-color: #e8edf5; box-shadow: 0 16px 46px rgba(16,24,40,.06); }
.card .tag { display: inline-flex; color: #07111f; background: var(--gold-2); border-radius: 999px; padding: 4px 10px; font-weight: 900; font-size: 12px; margin-bottom: 18px; }
.card-link { color: var(--gold-2); font-weight: 900; margin-top: 16px; display: inline-flex; }
.light .card-link { color: #8c6412; }

.reason { display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: start; }
.reason-num { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: rgba(216,177,95,.15); color: var(--gold-2); font-weight: 900; font-size: 20px; }
.light .reason-num { background: #fff4d8; color: #8c6412; }

.flow { counter-reset: step; display: grid; gap: 14px; }
.flow-item { counter-increment: step; display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start; padding: 22px; border-radius: 22px; border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.flow-item::before { content: counter(step, decimal-leading-zero); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff; font-weight: 900; }

.case { display: grid; gap: 16px; }
.case-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.case-change { color: #8c6412; background: #fff4d8; border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 900; }
.before-after { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; font-weight: 800; }
.ba-box { background: #f3f6fb; border-radius: 16px; padding: 14px; }
.ba-arrow { color: #8c6412; font-size: 24px; }

.advisor { display: grid; grid-template-columns: 120px 1fr; gap: 22px; align-items: center; }
.avatar { width: 120px; height: 120px; border-radius: 28px; background: linear-gradient(135deg, #1a3152, #d8b15f); display: grid; place-items: center; font-size: 34px; font-weight: 900; color: #fff; }

.faq { display: grid; gap: 12px; }
details { background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; }
.light details { background: #fff; border-color: #e8edf5; }
summary { cursor: pointer; font-weight: 900; }
details p { margin: 10px 0 0; color: var(--muted); }
.light details p { color: #56657a; }

.cta-band { background: linear-gradient(135deg, #102139, #07111f); border: 1px solid var(--line); border-radius: 34px; padding: clamp(34px, 6vw, 70px); text-align: center; box-shadow: var(--shadow); }
.footer { border-top: 1px solid var(--line); padding: 36px 0; color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.lp-hero { min-height: 620px; }
.breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 22px 0 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: start; }
.check-list li::before { content: '✓'; color: var(--gold-2); font-weight: 900; }
.job-examples { display: grid; gap: 12px; }
.job-row { display: grid; grid-template-columns: 1.2fr .8fr .7fr; gap: 14px; padding: 16px; border-radius: 16px; background: #f3f6fb; font-weight: 700; }
.job-row span { color: #667085; font-weight: 600; font-size: 13px; display: block; }

.form-shell { max-width: 760px; margin: 30px auto 0; background: #fff; color: #101828; border-radius: 26px; padding: 26px; text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 800; font-size: 13px; color: #344054; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #d0d5dd; border-radius: 12px; padding: 12px 14px; color: #101828; background: #fff; }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-note { color: #667085; font-size: 12px; margin-top: 12px; }

.mobile-menu { display: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 72px 0; }
  .stats { grid-template-columns: 1fr; margin-top: 0; padding-top: 24px; }
  .advisor { grid-template-columns: 1fr; }
  .job-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 68px 0; }
  .nav-actions .btn-outline { display: none; }
  .hero-actions .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); text-align: center; }
}


/* 2026-06 directory/form refresh: white x red x orange x navy */
.header-light {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid #e8edf5;
  color: var(--navy);
}
.header-light .logo { color: var(--navy); }
.header-light .logo-mark { box-shadow: 0 10px 28px rgba(223,32,24,.18); }
.btn-outline-navy {
  color: var(--navy);
  border-color: #d8e0ee;
  background: #fff;
}
.btn-outline-navy:hover { border-color: var(--orange); color: var(--red); }
.text-orange { color: var(--orange); }
.eyebrow-navy { color: var(--red); }
.eyebrow-navy::before { background: var(--red); }
.footer-light {
  background: #fff;
  color: #667085;
  border-top: 1px solid #e8edf5;
}
.form-page,
.reservation-page {
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,107,0,.11), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
}
.registration-hero,
.reservation-hero {
  min-height: auto;
  background:
    linear-gradient(135deg, rgba(7,31,69,.06), rgba(255,107,0,.06)),
    #fff;
}
.registration-grid,
.reservation-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 40px;
  align-items: start;
}
.registration-copy,
.reservation-intro {
  position: sticky;
  top: 104px;
  padding: 28px 0;
}
.registration-copy h1,
.reservation-intro h1 {
  font-size: clamp(38px, 5vw, 70px);
  color: var(--navy);
}
.registration-copy p,
.reservation-intro p {
  color: #56657a;
  font-weight: 600;
  max-width: 560px;
}
.mini-stats,
.reservation-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
}
.mini-stats div,
.reservation-notes div {
  background: #fff;
  border: 1px solid #e5ebf5;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 14px 36px rgba(16,24,40,.06);
}
.mini-stats strong,
.reservation-notes strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}
.mini-stats span,
.reservation-notes span {
  display: block;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
  margin-top: 6px;
}
.premium-form-card,
.reservation-card {
  background: rgba(255,255,255,.96);
  border: 1px solid #e3eaf5;
  border-radius: 30px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 28px 70px rgba(7,31,69,.13);
  position: relative;
  overflow: hidden;
}
.premium-form-card::before,
.reservation-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--navy), var(--red), var(--orange));
}
.form-card-head span,
.schedule-head span {
  color: var(--red);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}
.form-card-head h2,
.schedule-head h2 {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  margin: 4px 0 8px;
}
.form-card-head p,
.schedule-head p { color: #667085; margin: 0; }
.hubspot-custom-form { margin-top: 24px; display: grid; gap: 16px; }
.compact-grid { grid-template-columns: 1fr 1fr; }
.hubspot-custom-form .form-field label { color: var(--navy); font-weight: 900; }
.hubspot-custom-form .form-field label span { color: var(--red); margin-left: 2px; }
.hubspot-custom-form input,
.hubspot-custom-form select {
  min-height: 48px;
  border: 1px solid #d4deed;
  border-radius: 12px;
  background: #fbfcff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.hubspot-custom-form input:focus,
.hubspot-custom-form select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,0,.12);
}
.consent-box {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}
.consent-box input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange); }
.consent-box a { color: var(--blue); text-decoration: underline; }
.form-submit { width: 100%; margin-top: 4px; }
.form-message { min-height: 22px; margin: 0; color: #16a34a; font-weight: 800; font-size: 13px; }
.form-message.is-error { color: #dc2626; }
.schedule-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.schedule-text-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  white-space: nowrap;
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.day-card {
  border: 1px solid #e1e8f3;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.day-card__head {
  background: linear-gradient(135deg, var(--navy), #0b57d0);
  color: #fff;
  padding: 14px;
  text-align: center;
}
.day-card__head span { display: block; font-size: 24px; font-weight: 900; line-height: 1; }
.day-card__head strong { display: block; margin-top: 4px; font-size: 13px; }
.day-card__slots { display: grid; gap: 8px; padding: 12px; }
.time-slot {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8e0ee;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.time-slot:hover { transform: translateY(-2px); border-color: var(--orange); }
.time-slot.is-selected { background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff; border-color: transparent; }
.selected-panel {
  margin-top: 22px;
  padding: 20px;
  border-radius: 20px;
  background: #f5f8ff;
  border: 1px solid #dbe6f8;
  display: grid;
  gap: 10px;
}
.selected-panel p { margin: 0; color: #667085; font-size: 13px; font-weight: 900; }
.selected-panel strong { color: var(--navy); font-size: 22px; }
.selected-panel span { color: #667085; font-size: 12px; font-weight: 700; }
.selected-panel .btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

@media (max-width: 920px) {
  .registration-grid,
  .reservation-layout { grid-template-columns: 1fr; }
  .registration-copy,
  .reservation-intro { position: static; padding: 0; }
  .schedule-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .compact-grid { grid-template-columns: 1fr; }
  .premium-form-card,
  .reservation-card { border-radius: 22px; }
  .schedule-head { display: grid; }
}

/* 2026-06 visual refactor v2: align to current job-edge.jp/highclass white x red x orange x navy tone */
:root {
  --je-white: #ffffff;
  --je-paper: #f5f5f5;
  --je-navy: #00346f;
  --je-navy-deep: #002553;
  --je-blue: #0056d6;
  --je-red: #e92116;
  --je-orange: #ff6b00;
  --je-orange-2: #ff8a00;
  --je-black: #111827;
  --je-gray: #5f6b7a;
  --je-line: #dce4f0;
}

html { background: var(--je-white); }
body {
  background: var(--je-white);
  color: var(--je-black);
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body::before { display: none !important; }

.container { width: min(100% - 32px, 1040px); }
.section { padding: 72px 0; }
.section.light { background: #f4f4f4; color: var(--je-black); }
.section.compact { padding: 40px 0; }

.header,
.header-light {
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid #edf0f5 !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.04);
  color: var(--je-black) !important;
}
.nav { height: 64px; }
.logo,
.header-light .logo {
  color: var(--je-navy) !important;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -.04em;
}
.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--je-red), var(--je-orange));
  box-shadow: none;
}
.nav-links { color: #38465a; font-size: 13px; font-weight: 800; gap: 24px; }
.nav-links a:hover { color: var(--je-red); }

.btn {
  border-radius: 4px;
  min-height: 48px;
  font-weight: 900;
  letter-spacing: .01em;
}
.btn-primary {
  background: linear-gradient(90deg, var(--je-red), var(--je-orange));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(233,33,22,.22);
}
.btn-outline,
.btn-outline-navy {
  background: #fff;
  color: var(--je-navy) !important;
  border: 2px solid var(--je-navy);
}
.btn-outline:hover,
.btn-outline-navy:hover { color: var(--je-red) !important; border-color: var(--je-red); }
.btn-wide { min-width: 250px; }
.nav-actions .btn-primary::before { content: '[簡単30秒] '; }
.nav-actions .btn-primary { min-width: 178px; }

.hero,
.hero.lp-hero,
.registration-hero,
.reservation-hero {
  min-height: auto;
  padding: 0 0 0;
  overflow: visible;
  background: #fff;
  color: var(--je-black);
}
.hero::after { display: none; }
.hero-grid {
  width: min(100% - 32px, 940px);
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  min-height: 430px;
  margin: 0 auto;
  padding: 64px 62px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(0,82,170,.72) 0%, rgba(0,52,111,.86) 48%, rgba(0,24,58,.96) 100%),
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.28), transparent 26%),
    linear-gradient(135deg, #d8eaf9 0%, #4da3e4 38%, #002553 100%);
  border-radius: 0;
  box-shadow: 0 16px 46px rgba(0,37,83,.18);
  position: relative;
  overflow: hidden;
}
.hero-grid::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  background: linear-gradient(122deg, rgba(255,255,255,.26), rgba(255,255,255,0) 64%);
  clip-path: polygon(0 0, 100% 0, 54% 100%, 0 100%);
  pointer-events: none;
}
.hero-grid::after {
  content: '';
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.hero-copy,
.hero-card { position: relative; z-index: 2; }
.eyebrow {
  color: var(--je-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  margin: 0 10px 4px 0;
  background: var(--je-orange);
}
h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  color: inherit;
  letter-spacing: -.06em;
  margin: 18px 0 22px;
}
h2 {
  color: inherit;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.25;
}
h3 { color: inherit; }
.hero-copy p,
.section-lead { color: inherit; }
.hero-copy p { color: rgba(255,255,255,.92); font-weight: 800; line-height: 2; }
.text-gold,
.text-orange { color: var(--je-orange) !important; }
.hero-actions { margin-top: 28px; }
.hero-note { color: rgba(255,255,255,.82); font-weight: 700; }

.hero-card {
  padding: 18px;
  border-radius: 0;
  border: 0;
  background: rgba(0,37,83,.12);
  box-shadow: none;
}
.hero-card::before { display: none; }
.panel {
  background: rgba(255,255,255,.94);
  color: var(--je-black);
  border-radius: 0;
  border: 0;
  padding: 26px;
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
}
.panel-title { color: var(--je-orange); }
.salary-row {
  background: #f2f6fc;
  border-radius: 0;
  border-left: 5px solid var(--je-navy);
}
.salary-row strong { color: var(--je-black); }
.salary-row span { color: var(--je-gray); font-weight: 900; }
.arrow { color: var(--je-orange); }

.stats {
  width: min(100% - 32px, 760px);
  gap: 16px;
  margin: -1px auto 0;
}
.stat {
  background: #fff;
  color: var(--je-black);
  border: 2px solid var(--je-blue);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: hidden;
  text-align: center;
}
.stat .label {
  margin: 0;
  padding: 12px;
  background: var(--je-blue);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}
.stat .num {
  padding: 22px 12px;
  color: #000;
  font-size: clamp(30px, 3.8vw, 44px);
}

.card {
  background: #fff;
  color: var(--je-black);
  border: 1px solid var(--je-line);
  border-radius: 0;
  box-shadow: 0 8px 22px rgba(0,52,111,.07);
}
.light .card { border-color: var(--je-line); }
.card .tag {
  color: #fff;
  background: var(--je-blue);
  border-radius: 0;
}
.card-link,
.light .card-link { color: var(--je-red); }
.muted,
details p,
.light details p { color: #536273; }
.reason-num,
.light .reason-num {
  border-radius: 0;
  background: var(--je-blue);
  color: #fff;
}
.flow-item {
  background: #fff;
  color: var(--je-black);
  border-color: var(--je-line);
  border-radius: 0;
}
.flow-item::before { background: linear-gradient(90deg, var(--je-red), var(--je-orange)); }
.case-change { color: #fff; background: var(--je-red); border-radius: 0; }
.ba-box { border-radius: 0; background: #f1f5fb; }
.advisor .avatar { border-radius: 0; background: linear-gradient(135deg, var(--je-navy), var(--je-blue)); }
details,
.light details { background: #fff; border-color: var(--je-line); border-radius: 0; }
.cta-band {
  border-radius: 0;
  background: linear-gradient(100deg, var(--je-navy), var(--je-navy-deep));
  border: 0;
}
.footer,
.footer-light {
  background: #fff;
  color: #536273;
  border-top: 1px solid #edf0f5;
}
.footer a { color: var(--je-navy); }

/* Registration and reservation pages */
.form-page,
.reservation-page { background: #f4f4f4; }
.registration-hero,
.reservation-hero { padding: 34px 0 72px; background: #f4f4f4; }
.registration-grid,
.reservation-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  align-items: start;
}
.registration-copy,
.reservation-intro {
  background:
    linear-gradient(135deg, rgba(0,52,111,.96), rgba(0,37,83,.98)),
    radial-gradient(circle at 0% 0%, rgba(255,107,0,.22), transparent 30%);
  color: #fff;
  padding: 38px;
  min-height: 100%;
  box-shadow: 0 14px 38px rgba(0,37,83,.14);
}
.registration-copy p,
.reservation-intro p { color: rgba(255,255,255,.9); font-weight: 700; line-height: 1.9; }
.mini-stats,
.reservation-notes {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.mini-stats div,
.reservation-notes div {
  background: rgba(255,255,255,.10);
  border-left: 4px solid var(--je-orange);
  padding: 14px 16px;
}
.mini-stats strong,
.reservation-notes strong { display:block; font-size: 22px; color:#fff; }
.mini-stats span,
.reservation-notes span { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; }
.premium-form-card,
.reservation-card {
  background: #fff;
  color: var(--je-black);
  padding: 30px;
  border: 1px solid var(--je-line);
  border-top: 8px solid var(--je-navy);
  box-shadow: 0 16px 44px rgba(0,52,111,.10);
}
.form-card-head span,
.schedule-head span { color: var(--je-orange); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form-card-head h2,
.schedule-head h2 { color: var(--je-navy); }
.form-card-head p { color: var(--je-gray); }
.hubspot-custom-form { display: grid; gap: 16px; }
.form-field label { color: var(--je-navy); }
.form-field label span { color: var(--je-red); margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0;
  border: 1px solid #cbd6e5;
  min-height: 46px;
  background: #fff;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(0,86,214,.18);
  border-color: var(--je-blue);
}
.consent-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: #f7f9fd;
  border: 1px solid var(--je-line);
  color: var(--je-black);
}
.consent-box a { color: var(--je-blue); text-decoration: underline; }
.form-submit { width: 100%; border-radius: 0; }
.form-message { color: var(--je-red); font-weight: 800; min-height: 22px; }

.schedule-head {
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items:flex-start;
  margin-bottom: 20px;
}
.schedule-text-link { color: var(--je-blue); font-weight: 900; text-decoration: underline; }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.day-card {
  border: 1px solid var(--je-line);
  background: #fff;
}
.day-card__head {
  background: var(--je-blue);
  color: #fff;
  text-align:center;
  padding: 12px;
  font-weight: 900;
}
.day-card__head span { display:block; font-size: 22px; }
.day-card__head strong { font-size: 13px; }
.day-card__slots { display:grid; gap: 8px; padding: 12px; }
.time-slot {
  min-height: 42px;
  border: 1px solid #cbd6e5;
  background: #fff;
  color: var(--je-navy);
  font-weight: 900;
  cursor: pointer;
}
.time-slot:hover,
.time-slot.is-selected { background: linear-gradient(90deg, var(--je-red), var(--je-orange)); color: #fff; border-color: var(--je-orange); }
.selected-panel {
  margin-top: 18px;
  padding: 18px;
  background: #f7f9fd;
  border: 1px solid var(--je-line);
  display:grid;
  gap: 10px;
}
.selected-panel p { margin: 0; color: var(--je-gray); font-weight: 800; }
.selected-panel strong { color: var(--je-navy); font-size: 22px; }
.selected-panel span { color: var(--je-gray); font-size: 13px; }
.selected-panel .btn { width: 100%; border-radius: 0; }

@media (max-width: 920px) {
  .hero-grid,
  .registration-grid,
  .reservation-layout { grid-template-columns: 1fr; }
  .hero-grid { padding: 48px 28px; }
  .schedule-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { height: 60px; }
  .logo { font-size: 17px; }
  .nav-actions .btn-primary { min-width: auto; padding: 0 14px; font-size: 13px; }
  .nav-actions .btn-primary::before { content: ''; }
  h1 { font-size: 44px; }
  .hero-grid { width: 100%; padding: 44px 20px; }
  .stats { width: 100%; grid-template-columns: 1fr; }
  .registration-copy,
  .reservation-intro,
  .premium-form-card,
  .reservation-card { padding: 22px; }
}

/* 2026-06 visual refactor v3: closer to current https://job-edge.jp/highclass */
.je-current-like-page {
  --je-blue: #0055d8;
  --je-blue-dark: #003a87;
  --je-red: #e60012;
  --je-orange: #ff7a00;
  --je-black: #111;
  --je-gray: #f0f0f0;
  --je-line: #d5d5d5;
  margin: 0;
  background: #fff;
  color: var(--je-black);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}
.je-current-like-page * { box-sizing: border-box; }
.je-current-like-page a { color: inherit; text-decoration: none; }
.je-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 58px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e7e7e7;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.je-site-header__inner {
  width: min(100%, 900px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.je-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  color: var(--je-blue);
  font-weight: 900;
  line-height: .88;
  font-size: 16px;
  letter-spacing: -.08em;
}
.je-logo__text { display: block; transform: skew(-8deg); }
.je-header-copy {
  flex: 1;
  margin: 0;
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  font-weight: 700;
}
.je-header-cta {
  align-self: stretch;
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(90deg, var(--je-red), var(--je-orange));
  font-size: 13px;
  font-weight: 900;
}
.je-main-visual {
  width: min(100%, 900px);
  min-height: 448px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  background: #12285a;
}
.je-main-visual__photo {
  position: relative;
  min-height: 448px;
  overflow: hidden;
  background: #1f5ca8;
}
.je-main-visual__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}
.je-main-visual__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,50,126,0.10), rgba(8,50,126,0.20));
  pointer-events: none;
}
.je-main-visual__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 66px 42px 48px;
  color: #fff;
  background: #142a64;
}
.je-main-visual__copy h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 46px;
  line-height: 1.28;
  letter-spacing: -.02em;
  font-weight: 900;
}
.je-main-visual__copy p {
  margin: 0 0 32px;
  color: #fff;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 900;
}
.je-main-visual__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 330px;
}
.je-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}
.je-btn--primary { background: linear-gradient(90deg, var(--je-red), var(--je-orange)); color: #fff; }
.je-btn--secondary { background: #fff; color: #123066; border-color: var(--je-orange); }
.je-logo-section {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 22px 20px 24px;
  background: #fff;
  text-align: center;
}
.je-logo-section p { margin: 0 0 16px; font-size: 12px; }
.je-company-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 28px;
  align-items: center;
  justify-items: center;
}
.je-company-logos span {
  color: #0a55c8;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  filter: saturate(.9);
}
.je-company-logos span:nth-child(1), .je-company-logos span:nth-child(4), .je-company-logos span:nth-child(10) { color: #222; font-family: serif; }
.je-company-logos span:nth-child(2), .je-company-logos span:nth-child(11) { color: #15875d; }
.je-company-logos span:nth-child(7), .je-company-logos span:nth-child(8) { color: #111; font-size: 24px; }
.je-company-logos span:nth-child(9) { color: #1257ff; font-size: 22px; font-style: italic; }
.je-intro-section, .je-voices-section, .je-bottom-cta { background: #f0f0f0; }
.je-intro-section { padding: 50px 0 46px; }
.je-narrow { width: min(100% - 32px, 820px); margin: 0 auto; }
.je-intro-section { text-align: center; }
.je-intro-section h2 {
  margin: 0 0 24px;
  font-size: 22px;
  line-height: 1.8;
  font-weight: 900;
}
.je-intro-section h2 span, .je-intro-section p span, .je-support-section h2 span { color: var(--je-blue); }
.je-intro-section p { margin: 0 0 18px; font-size: 20px; line-height: 1.8; }
.je-intro-section hr { border: 0; border-top: 1px solid #b7b7b7; margin: 34px auto 22px; max-width: 690px; }
.je-intro-section h3 { margin: 0 0 18px; font-size: 16px; }
.je-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 690px; margin: 0 auto; }
.je-stats-row div { border: 2px solid var(--je-blue); background: #fff; }
.je-stats-row strong { display: block; padding: 12px; color: #fff; background: var(--je-blue); font-size: 13px; line-height: 1.5; }
.je-stats-row em { display: block; padding: 18px 12px; font-style: normal; font-size: 12px; }
.je-stats-row b { font-size: 30px; }
.je-support-section { padding: 56px 0 42px; background: #fff; text-align: center; }
.je-support-section h2 { margin: 0 0 38px; font-size: 22px; }
.je-support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 44px; }
.je-support-grid div { display: grid; justify-items: center; gap: 12px; }
.je-support-grid i {
  width: 58px; height: 58px; border: 2px solid var(--je-blue); border-radius: 50%; display: grid; place-items: center; color: var(--je-blue); font-style: normal; font-size: 15px; font-weight: 900;
}
.je-support-grid p { margin: 0; font-size: 13px; line-height: 1.6; }
.je-company-logos--border { border-top: 1px solid #e1e5ed; border-bottom: 1px solid #e1e5ed; padding: 22px 0; }
.je-domains-section { padding: 58px 0; background: #fff; text-align: center; }
.je-domains-section h2, .je-advisor-section h2, .je-voices-section h2, .je-faq-section h2 { color: var(--je-blue); font-size: 28px; margin: 0 0 24px; text-align: center; }
.je-section-lead { margin: -12px auto 24px; font-size: 14px; color: #444; }
.je-domain-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.je-domain-grid a { border: 1px solid #cdd7e8; padding: 18px 10px; background: #fff; transition: .2s; }
.je-domain-grid a:hover { border-color: var(--je-orange); transform: translateY(-2px); }
.je-domain-grid strong { display: block; color: var(--je-blue); font-size: 14px; margin-bottom: 8px; }
.je-domain-grid span { display: block; color: #444; font-size: 11px; line-height: 1.5; }
.je-advisor-section { padding: 56px 0 32px; background: #fff; }
.je-advisor-row { display: grid; grid-template-columns: 330px 1fr; align-items: center; gap: 42px; margin: 34px auto 68px; max-width: 700px; }
.je-advisor-row--reverse { grid-template-columns: 1fr 330px; }
.je-advisor-row--reverse .je-advisor-photo { order: 2; }
.je-advisor-photo { height: 330px; display: grid; place-items: end center; color: transparent; background: linear-gradient(180deg, #eef3f8, #d6e4f7); position: relative; overflow: hidden; }
.je-advisor-photo::before { content: ''; position: absolute; width: 116px; height: 116px; border-radius: 50%; top: 34px; background: #f2c3a1; }
.je-advisor-photo::after { content: ''; position: absolute; width: 210px; height: 210px; border-radius: 92px 92px 0 0; bottom: -20px; background: linear-gradient(90deg, #111 0 20%, #182c54 20% 80%, #111 80%); }
.je-advisor-row h3 { margin: 0 0 14px; font-size: 22px; }
.je-advisor-row p { margin: 0; font-size: 14px; line-height: 2; }
.je-voices-section { padding: 58px 0; }
.je-voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.je-voice-grid article { background: #f7f7f7; border: 1px solid #bfc5cf; padding: 34px; min-height: 330px; }
.je-voice-grid span { display: block; margin-bottom: 22px; font-size: 12px; }
.je-voice-grid h3 { color: var(--je-blue); font-size: 16px; line-height: 1.7; }
.je-voice-grid p { font-size: 13px; line-height: 2; }
.je-faq-section { padding: 58px 0; background: #fff; }
.je-faq-wrap { max-width: 520px; }
.je-faq-wrap details { border: 1px solid #e5e5e5; background: #fff; margin-bottom: 14px; padding: 0; }
.je-faq-wrap summary { list-style: none; cursor: pointer; padding: 18px 18px 18px 56px; position: relative; font-size: 13px; border-bottom: 1px solid #c9c9c9; }
.je-faq-wrap summary::before { content: 'Q'; position: absolute; left: 18px; top: 14px; width: 24px; height: 24px; display: grid; place-items: center; color: #fff; background: var(--je-blue); border-radius: 3px; }
.je-faq-wrap details p { margin: 0; padding: 18px; color: #111; font-size: 12px; line-height: 2; }
.je-bottom-cta { padding: 54px 0; text-align: center; }
.je-bottom-cta h2 { margin: 0 0 24px; font-size: 22px; }
.je-bottom-cta div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 660px; margin: 0 auto; }
.je-bottom-cta .je-btn { min-height: 48px; }
.je-footer { text-align: center; padding: 18px 0 26px; color: #777; font-size: 12px; background: #fff; }
.je-footer a { color: var(--je-blue); font-weight: 900; }
.je-footer p { margin: 8px 0 0; color: #999; }

/* registration/reservation close to current design */
.je-form-body { background: #f0f0f0; }
.je-form-hero, .je-reservation-wrap { width: min(100% - 32px, 900px); margin: 0 auto; padding: 36px 0 60px; display: grid; grid-template-columns: 330px 1fr; gap: 28px; align-items: start; }
.je-form-visual, .je-reservation-intro { min-height: 460px; background: linear-gradient(135deg, rgba(0,85,216,.20), rgba(0,37,87,.88)), linear-gradient(135deg, #e9f5ff, #124c88); color: #fff; display: grid; align-items: end; padding: 28px; }
.je-form-visual__copy span, .je-reservation-intro span { color: var(--je-orange); letter-spacing: .12em; font-size: 12px; font-weight: 900; }
.je-form-visual__copy h1, .je-reservation-intro h1 { margin: 10px 0 14px; color: #fff; font-size: 34px; line-height: 1.35; }
.je-form-visual__copy p, .je-reservation-intro p { margin: 0; font-size: 14px; line-height: 1.9; }
.je-form-card, .je-reservation-card { background: #fff; border: 1px solid #d9e1ee; border-top: 8px solid var(--je-blue); padding: 30px; box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.je-form-card__head span, .je-reservation-card__head span { color: var(--je-orange); font-size: 12px; letter-spacing: .12em; font-weight: 900; }
.je-form-card__head h2, .je-reservation-card__head h2 { margin: 4px 0 8px; color: var(--je-blue); font-size: 24px; }
.je-form-card__head p { margin: 0 0 22px; color: #555; font-size: 13px; }
.je-hubspot-form { display: grid; gap: 16px; }
.je-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.je-hubspot-form label { display: grid; gap: 6px; color: #111; font-size: 13px; }
.je-hubspot-form label span { color: var(--je-red); margin-left: 2px; }
.je-hubspot-form small { color: #666; font-size: 11px; }
.je-hubspot-form input, .je-hubspot-form select { width: 100%; min-height: 42px; border: 1px solid #cbd6e5; background: #fff; padding: 9px 11px; border-radius: 0; font-weight: 500; }
.je-hubspot-form input:focus, .je-hubspot-form select:focus { outline: 2px solid rgba(0,85,216,.18); border-color: var(--je-blue); }
.je-consent { display: flex !important; flex-direction: row; align-items: flex-start; gap: 10px; padding: 12px; border: 1px solid #d9e1ee; background: #f7f9fd; line-height: 1.7; }
.je-consent input { width: auto; min-height: auto; margin-top: 4px; accent-color: var(--je-blue); }
.je-form-submit { min-height: 48px; border: 0; background: linear-gradient(90deg, var(--je-red), var(--je-orange)); color: #fff; font-weight: 900; cursor: pointer; }
.je-form-submit:disabled { opacity: .55; cursor: not-allowed; }
.form-message { margin: 0; min-height: 22px; color: var(--je-red); font-size: 13px; }
.je-reservation-intro { min-height: 410px; align-content: start; }
.je-reservation-points { display: grid; gap: 10px; margin-top: 24px; }
.je-reservation-points div { border-left: 4px solid var(--je-orange); background: rgba(255,255,255,.12); padding: 12px 14px; }
.je-reservation-points b { display: block; color: #fff; font-size: 22px; }
.je-reservation-points small { color: rgba(255,255,255,.86); }
.je-reservation-card__head { display: flex; justify-content: space-between; gap: 16px; align-items: start; margin-bottom: 22px; }
.je-reservation-card__head a { color: var(--je-blue); text-decoration: underline; font-size: 12px; }
.je-current-like-page .schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.je-current-like-page .day-card { border: 1px solid #d2dbe9; background: #fff; }
.je-current-like-page .day-card__head { background: var(--je-blue); color: #fff; text-align: center; padding: 12px; }
.je-current-like-page .day-card__head span { display: block; font-size: 22px; font-weight: 900; }
.je-current-like-page .day-card__slots { display: grid; gap: 8px; padding: 12px; }
.je-current-like-page .time-slot { min-height: 40px; border: 1px solid #cbd6e5; background: #fff; color: var(--je-blue); font-weight: 900; cursor: pointer; }
.je-current-like-page .time-slot.is-selected, .je-current-like-page .time-slot:hover { color: #fff; background: linear-gradient(90deg, var(--je-red), var(--je-orange)); border-color: var(--je-orange); }
.je-current-like-page .selected-panel { margin-top: 18px; padding: 16px; background: #f7f9fd; border: 1px solid #d9e1ee; display: grid; gap: 9px; }
.je-current-like-page .selected-panel p { margin: 0; color: #555; font-size: 12px; }
.je-current-like-page .selected-panel strong { color: var(--je-blue); font-size: 20px; }
.je-current-like-page .selected-panel span { color: #666; font-size: 12px; }

@media (max-width: 900px) {
  .je-site-header__inner, .je-main-visual, .je-logo-section { width: 100%; }
  .je-site-header__inner { padding-left: 14px; }
  .je-header-copy { display: none; }
  .je-main-visual { grid-template-columns: 1fr; min-height: auto; }
  .je-main-visual__photo { min-height: 260px; }
  .je-main-visual__copy { padding: 34px 24px 32px; }
  .je-main-visual__copy h1 { font-size: 36px; }
  .je-company-logos { grid-template-columns: repeat(3, 1fr); }
  .je-stats-row, .je-support-grid, .je-voice-grid, .je-domain-grid { grid-template-columns: 1fr; }
  .je-advisor-row, .je-advisor-row--reverse { grid-template-columns: 1fr; max-width: 420px; }
  .je-advisor-row--reverse .je-advisor-photo { order: initial; }
  .je-bottom-cta div { grid-template-columns: 1fr; width: min(100% - 32px, 420px); }
  .je-form-hero, .je-reservation-wrap { grid-template-columns: 1fr; width: min(100% - 28px, 680px); }
  .je-form-visual, .je-reservation-intro { min-height: auto; }
  .je-current-like-page .schedule-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .je-header-cta { min-width: 142px; padding: 0 12px; font-size: 12px; }
  .je-main-visual__photo { min-height: 220px; }
  .je-main-visual__buttons, .je-form-grid { grid-template-columns: 1fr; }
  .je-company-logos { grid-template-columns: repeat(2, 1fr); }
  .je-form-card, .je-reservation-card { padding: 22px; }
}

/* Uploaded visual assets update */
.je-company-logos img {
  display: block;
  max-width: 118px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(.95) contrast(1.02);
}
.je-company-logos--border img {
  max-width: 112px;
  max-height: 42px;
}
.je-company-logos span { display: none; }
.je-advisor-photo {
  background: #f4f7fb;
  border-radius: 2px;
}
.je-advisor-photo::before,
.je-advisor-photo::after {
  display: none !important;
}
.je-advisor-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 900px) {
  .je-company-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 18px;
  }
  .je-company-logos img {
    max-width: 98px;
    max-height: 36px;
  }
}


/* Second asset batch: real brand logo and additional company logos */
.je-logo--image {
  width: 96px;
  padding: 0;
}
.je-logo--image img {
  display: block;
  width: 96px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}
.je-company-logos {
  row-gap: 18px;
}
.je-company-logos img {
  max-width: 124px;
  max-height: 46px;
  mix-blend-mode: multiply;
}
.je-company-logos--border {
  grid-template-columns: repeat(7, 1fr);
  gap: 20px 24px;
}
.je-company-logos--border img {
  max-width: 112px;
  max-height: 42px;
}
@media (max-width: 900px) {
  .je-logo--image, .je-logo--image img { width: 86px; }
  .je-company-logos--border { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .je-company-logos--border { grid-template-columns: repeat(2, 1fr); }
}


/* First view banner update */
.je-main-visual__photo, .je-main-visual__copy { align-self: stretch; }


/* Hero fine-tuning based on current production LP */
.je-header-cta,
.je-current-like-page .je-header-cta,
.je-current-like-page a.je-header-cta {
  color: #fff !important;
}
.je-main-visual {
  display: block;
  min-height: 448px;
  background: #0f4380;
}
.je-main-visual__photo {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background: #0f4380;
}
.je-main-visual__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.je-main-visual__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,85,180,.08) 0%, rgba(0,62,135,.04) 42%, rgba(0,26,74,.48) 73%, rgba(0,19,62,.70) 100%);
  pointer-events: none;
}
.je-main-visual__copy {
  position: absolute;
  top: 78px;
  right: 48px;
  width: 405px;
  padding: 0;
  display: block;
  background: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}
.je-main-visual__copy h1 {
  margin-bottom: 22px;
  font-size: 43px;
  line-height: 1.28;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.je-main-visual__copy p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}
.je-main-visual__buttons {
  position: absolute;
  left: 128px;
  bottom: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 304px;
  max-width: none;
}
.je-main-visual__buttons .je-btn {
  min-height: 38px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.je-logo-section .je-company-logos img:nth-child(1),
.je-logo-section .je-company-logos img:nth-child(3) {
  max-width: 138px;
  max-height: 54px;
}
.je-logo-section .je-company-logos img:nth-child(7),
.je-logo-section .je-company-logos img:nth-child(8),
.je-logo-section .je-company-logos img:nth-child(9) {
  max-width: 96px;
  max-height: 36px;
}
@media (max-width: 900px) {
  .je-main-visual { min-height: auto; }
  .je-main-visual__photo { position: relative; min-height: 260px; }
  .je-main-visual__copy {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    padding: 30px 24px 18px;
    background: #142a64;
    text-shadow: none;
  }
  .je-main-visual__copy h1 { white-space: normal; font-size: 36px; }
  .je-main-visual__buttons {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    max-width: 340px;
    margin: 18px 24px 28px;
  }
}
@media (max-width: 560px) {
  .je-main-visual__photo { min-height: 220px; }
  .je-main-visual__buttons { grid-template-columns: 1fr; }
}
