
  :root {
    --white: #FFFFFF;
    --bg-soft: #F7F8FA;
    --line: #E5E8EE;
    --text: #0A2540;
    --text-sub: #5B6474;
    --navy: #002E5D;
    --navy-deep: #001B3A;
    --gold: #E8A33D;
    --gold-soft: #F4C97A;
    --max: 1440px;
    --radius: 4px;
    --ease: cubic-bezier(.22,.61,.36,1);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  .container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
  /* ============ Header ============ */
  header.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
    transition: all .3s var(--ease);
  }
  .header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    text-decoration: none;
  }
  .logo-img {
    height: 38px;
    width: auto;
    display: block;
  }
  .logo-mark { display: none; }
  nav.global-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  nav.global-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
    transition: color .2s var(--ease);
  }
  nav.global-nav a:hover { color: var(--navy); }
  nav.global-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
  }
  nav.global-nav a:hover::after { width: 100%; }
  .header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all .25s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--navy);
    color: #fff;
  }
  .btn-primary:hover {
    background: var(--navy-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,46,93,0.2);
  }
  .btn-outline {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
  }
  .btn-outline:hover {
    background: var(--navy);
    color: #fff;
  }
  .btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 8px 16px;
    font-size: 13px;
  }
  .btn-ghost:hover { color: var(--navy); }
  .btn .arrow {
    display: inline-block;
    transition: transform .25s var(--ease);
  }
  .btn:hover .arrow { transform: translateX(4px); }
  /* ============ Hero ============ */
  section.hero {
    padding: 180px 0 120px;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background:
      radial-gradient(circle at 70% 30%, rgba(0,46,93,0.04) 0%, transparent 60%),
      linear-gradient(180deg, rgba(232,163,61,0.03) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.15em;
    margin-bottom: 32px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--text);
    margin-bottom: 32px;
  }
  .hero-title .accent { color: var(--navy); }
  .hero-title .gold-line {
    display: inline-block;
    background: linear-gradient(transparent 70%, rgba(232,163,61,0.35) 70%);
  }
  .hero-lead {
    font-size: 17px;
    line-height: 2;
    color: var(--text-sub);
    margin-bottom: 48px;
    max-width: 520px;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #F0F3F8 0%, #E5EAF2 100%);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,46,93,0.18), 0 6px 20px rgba(0,46,93,0.08);
  }
  .hero-visual-photo { background: var(--navy-deep); }
  .hero-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-visual-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,27,58,0.10) 0%, rgba(0,27,58,0.05) 40%, rgba(0,27,58,0.15) 100%),
      radial-gradient(circle at 30% 20%, rgba(0,46,93,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
  }
  .hero-visual-photo::before {
    content: '';
    position: absolute;
    top: 20px; right: 20px;
    width: 60px; height: 2px;
    background: var(--gold);
    z-index: 3;
  }
  .hero-visual-photo::after {
    content: '';
    position: absolute;
    bottom: 20px; left: 20px;
    width: 60px; height: 2px;
    background: var(--gold);
    z-index: 3;
  }
  .hero-visual-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
  }
  .hero-visual-cell {
    background: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.2em;
    position: relative;
  }
  .hero-visual-cell::before {
    content: attr(data-num);
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 10px;
    color: var(--gold);
    font-weight: 700;
  }
  .hero-scroll {
    position: absolute;
    left: 40px;
    bottom: 40px;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--text-sub);
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  /* ============ Section Common ============ */
  section.block {
    padding: 120px 0;
    position: relative;
  }
  section.block.tight { padding: 100px 0; }
  section.block.bg-soft { background: var(--bg-soft); }
  section.block.bg-navy {
    background: var(--navy);
    color: #fff;
  }
  .section-head {
    margin-bottom: 72px;
    max-width: 780px;
  }
  .section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--navy);
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .section-eyebrow .num {
    color: var(--gold);
    font-family: 'Inter', sans-serif;
  }
  .bg-navy .section-eyebrow { color: #fff; }
  .bg-navy .section-eyebrow .num { color: var(--gold); }
  .section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
  }
  .section-lead {
    font-size: 16px;
    line-height: 2;
    color: var(--text-sub);
    max-width: 640px;
  }
  .bg-navy .section-lead { color: rgba(255,255,255,0.75); }
  /* ============ Section 02: About ============ */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #F0F3F8 0%, #DCE3EE 100%);
    position: relative;
    overflow: hidden;
  }
  .about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(45deg, transparent 48%, rgba(0,46,93,0.08) 48%, rgba(0,46,93,0.08) 52%, transparent 52%),
      linear-gradient(-45deg, transparent 48%, rgba(232,163,61,0.06) 48%, rgba(232,163,61,0.06) 52%, transparent 52%);
    background-size: 60px 60px;
  }
  .about-visual-label {
    position: absolute;
    left: 32px; bottom: 32px;
    background: #fff;
    padding: 20px 28px;
    border-left: 3px solid var(--gold);
  }
  .about-visual-label .en {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 4px;
  }
  .about-visual-label .jp {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
  }
  .about-body h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 32px;
  }
  .about-body p {
    font-size: 15px;
    line-height: 2;
    color: var(--text-sub);
    margin-bottom: 20px;
  }
  .about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .about-signature-mark {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative;
  }
  .about-signature-mark::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--gold);
  }
  .about-signature-text {
    font-size: 13px;
    color: var(--text-sub);
  }
  .about-signature-text strong {
    color: var(--text);
    font-weight: 600;
  }
  /* ============ Section 03: Numbers ============ */
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .number-card {
    padding: 56px 24px;
    border-right: 1px solid rgba(255,255,255,0.15);
    text-align: left;
    position: relative;
    transition: background .3s var(--ease);
  }
  .number-card:last-child { border-right: none; }
  .number-card:hover { background: rgba(255,255,255,0.03); }
  .number-card .num-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
  }
  .number-card .num-value {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .number-card .num-unit {
    font-size: 14px;
    color: var(--gold-soft);
    font-weight: 500;
    margin-bottom: 16px;
  }
  .number-card .num-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
  }
  .number-card .num-note {
    display: block;
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.38);
    font-weight: 400;
  }
  /* ============ Section 04: Strengths ============ */
  .strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .strength-card {
    background: #fff;
    padding: 48px 40px;
    border: 1px solid var(--line);
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .strength-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
  }
  .strength-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,46,93,0.08);
  }
  .strength-card:hover::before { transform: scaleX(1); }
  .strength-num {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
  .strength-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,46,93,0.05);
    border-radius: 50%;
    margin-bottom: 28px;
    color: var(--navy);
  }
  .strength-title-en {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .strength-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text);
  }
  .strength-body {
    font-size: 14px;
    line-height: 2;
    color: var(--text-sub);
  }
  /* ============ Section 04: 4-column Strengths ============ */
  .strengths-grid.strengths-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .strengths-grid.strengths-grid-4 .strength-card {
    padding: 40px 28px;
  }
  .strengths-grid.strengths-grid-4 .strength-title {
    font-size: 19px;
  }
  /* ============ Values ============ */
  .block.bg-values {
    background: linear-gradient(180deg, #FAFBFD 0%, #F0F3F8 100%);
    position: relative;
    overflow: hidden;
  }
  .block.bg-values::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(232,163,61,0.10) 0%, transparent 70%);
    pointer-events: none;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
  }
  .value-card {
    background: #fff;
    padding: 32px 26px 32px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 24px rgba(0,46,93,0.05);
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    transition: all .3s var(--ease);
    position: relative;
  }
  .value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,46,93,0.12);
  }
  .value-word {
    font-family: 'Inter', sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(232,163,61,0.15);
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
    padding-top: 4px;
    user-select: none;
  }
  .value-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .value-num::after {
    content: '／';
    color: var(--line);
    margin-left: 8px;
    font-weight: 400;
  }
  .roots-network {
    position: relative;
    margin-top: -2px;
    margin-bottom: -1px;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
  }
  .roots-network svg {
    display: block;
    width: 100%;
    height: 180px;
  }
  .values-vision-roots {
    display: flex; justify-content: center;
    margin-bottom: 20px;
    opacity: 0.85;
  }
  .value-num {
    font-family: 'Inter', sans-serif;
    font-size: 14px; font-weight: 700;
    color: var(--gold); letter-spacing: 0.1em;
  }
  .value-en {
    font-size: 13px; font-weight: 600;
    color: var(--navy); letter-spacing: 0.08em;
  }
  .value-jp {
    font-size: 26px; font-weight: 700;
    color: var(--text); line-height: 1.4;
    margin-bottom: 14px; letter-spacing: 0.03em;
  }
  .value-lead {
    font-size: 13px; font-weight: 600;
    color: var(--navy); line-height: 1.75; margin-bottom: 14px;
  }
  .value-body {
    font-size: 12.5px; line-height: 1.9;
    color: var(--text-sub); margin-bottom: 20px;
  }
  .value-actions {
    list-style: none; padding: 0; margin: 0 0 4px 0;
    border-top: 1px dashed var(--line); padding-top: 18px;
  }
  .value-actions li {
    font-size: 11.5px; line-height: 1.75;
    color: var(--text-sub); padding: 6px 0 6px 16px; position: relative;
  }
  .value-actions li::before {
    content: ''; position: absolute;
    left: 0; top: 14px;
    width: 6px; height: 2px; background: var(--gold);
  }
  .values-vision {
    margin-top: 0; text-align: center;
    padding: 40px 40px 56px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff; position: relative; overflow: hidden;
  }
  .values-vision::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  }
  .values-vision-eyebrow {
    font-size: 11px; letter-spacing: 0.35em;
    color: var(--gold); font-weight: 600; margin-bottom: 20px;
  }
  .values-vision-title {
    font-size: 40px; font-weight: 700;
    line-height: 1.4; margin-bottom: 12px; letter-spacing: 0.05em;
  }
  .values-vision-en {
    font-size: 13px; letter-spacing: 0.15em;
    color: rgba(255,255,255,0.6); font-style: italic;
  }
  /* ============ Company Overview ============ */
  .company-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px; align-items: flex-start;
  }
  .company-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding: 56px 44px; color: #fff;
    position: relative; overflow: hidden;
  }
  .company-visual::before {
    content: ''; position: absolute;
    top: -40px; right: -40px;
    width: 220px; height: 220px;
    border: 1px solid rgba(232,163,61,0.25);
    border-radius: 50%;
  }
  .company-visual::after {
    content: ''; position: absolute;
    top: 0px; right: 0px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(232,163,61,0.15) 0%, transparent 70%);
  }
  .company-visual-eyebrow {
    font-size: 11px; letter-spacing: 0.3em;
    color: var(--gold); font-weight: 600; margin-bottom: 32px;
    position: relative; z-index: 1;
  }
  .company-visual-title {
    font-size: 28px; font-weight: 700; line-height: 1.5;
    margin-bottom: 20px; position: relative; z-index: 1;
  }
  .company-visual-lead {
    font-size: 13px; line-height: 1.9;
    color: rgba(255,255,255,0.75); margin-bottom: 40px;
    position: relative; z-index: 1;
  }
  .company-visual-slogan {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative; z-index: 1;
  }
  .company-visual-slogan .jp {
    font-size: 22px; font-weight: 700;
    letter-spacing: 0.08em; margin-bottom: 8px;
  }
  .company-visual-slogan .en {
    font-size: 11px; letter-spacing: 0.15em;
    color: var(--gold-soft); font-style: italic;
  }
  .company-table { width: 100%; border-collapse: collapse; }
  .company-table th, .company-table td {
    text-align: left; padding: 20px 8px;
    border-bottom: 1px solid var(--line);
    vertical-align: top; font-size: 14px; line-height: 1.75;
  }
  .company-table th {
    width: 30%; color: var(--navy);
    font-weight: 600; letter-spacing: 0.08em;
    font-size: 12px; padding-top: 24px;
  }
  .company-table td { color: var(--text); font-weight: 500; }
  .company-table tr:first-child th,
  .company-table tr:first-child td {
    border-top: 1px solid var(--line);
  }
  .company-business {
    margin-top: 32px; padding: 28px 32px;
    background: var(--bg-soft); border-left: 3px solid var(--gold);
  }
  .company-business-title {
    font-size: 12px; letter-spacing: 0.2em;
    font-weight: 600; color: var(--navy); margin-bottom: 16px;
  }
  .company-business ul {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  }
  .company-business li {
    font-size: 13px; color: var(--text);
    padding-left: 18px; position: relative; line-height: 1.8;
  }
  .company-business li::before {
    content: '\25CF'; position: absolute;
    left: 0; top: 0; color: var(--gold); font-size: 10px;
  }
  /* ============ Access (New in v3) ============ */
  .block.bg-access {
    background: linear-gradient(180deg, #F7F8FA 0%, #EDF0F5 100%);
    position: relative;
    overflow: hidden;
  }
  .block.bg-access::before {
    content: ''; position: absolute;
    top: -60px; left: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(0,46,93,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .access-topbar {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    background: #fff;
    padding: 40px 44px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 24px rgba(0,46,93,0.06);
    margin-bottom: 56px;
    align-items: center;
  }
  .access-address-eyebrow {
    font-size: 11px; letter-spacing: 0.3em;
    color: var(--gold); font-weight: 700; margin-bottom: 14px;
  }
  .access-address-name {
    font-size: 20px; font-weight: 700;
    color: var(--text); margin-bottom: 6px; letter-spacing: 0.03em;
  }
  .access-address-jp {
    font-size: 15px; line-height: 1.85;
    color: var(--text); font-weight: 500;
  }
  .access-address-jp .zip {
    display: block;
    font-size: 12px;
    color: var(--text-sub);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .access-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 22px;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all .25s var(--ease);
  }
  .access-map-btn:hover {
    background: var(--navy-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,46,93,0.2);
  }
  .access-mapthumb {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #eef1f5;
    box-shadow: 0 2px 12px rgba(0,46,93,0.08);
  }
  .access-mapthumb a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .access-mapthumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .3s var(--ease);
  }
  .access-mapthumb:hover img {
    transform: scale(1.015);
  }
  .access-routes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .route-card {
    background: #fff;
    padding: 36px 32px 32px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,46,93,0.05);
    display: flex;
    flex-direction: column;
    transition: all .3s var(--ease);
  }
  .route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,46,93,0.10);
  }
  .route-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }
  .route-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(0,46,93,0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
  }
  .route-icon.gold {
    background: rgba(232,163,61,0.12);
    color: #A66E1F;
  }
  .route-name-block { flex: 1; min-width: 0; }
  .route-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .route-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .route-summary {
    font-size: 12.5px;
    line-height: 1.85;
    color: var(--text-sub);
    padding: 12px 14px;
    background: var(--bg-soft);
    border-left: 2px solid var(--gold);
    margin-bottom: 20px;
  }
  .route-summary strong {
    color: var(--navy);
    font-weight: 700;
  }
  .route-steps {
    list-style: none;
    padding: 0; margin: 0 0 auto;
    counter-reset: rstep;
  }
  .route-steps li {
    position: relative;
    padding: 12px 0 12px 40px;
    font-size: 12.5px;
    line-height: 1.8;
    color: var(--text);
    border-bottom: 1px dashed var(--line);
    counter-increment: rstep;
  }
  .route-steps li:last-child { border-bottom: none; }
  .route-steps li::before {
    content: counter(rstep);
    position: absolute;
    left: 0; top: 12px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
  }
  .route-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--navy);
    transition: color .2s var(--ease);
  }
  .route-link:hover { color: var(--gold); }
  .route-link .arrow {
    transition: transform .25s var(--ease);
  }
  .route-link:hover .arrow { transform: translateX(4px); }
  /* ============ Section 05: Projects ============ */
  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .project-card {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all .3s var(--ease);
    cursor: pointer;
  }
  .project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0,46,93,0.1);
    border-color: transparent;
  }
  .project-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #F0F3F8 0%, #DCE3EE 100%);
    position: relative;
    overflow: hidden;
  }
  .project-thumb.a::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 40%, rgba(0,46,93,0.2) 0%, transparent 40%),
      radial-gradient(circle at 80% 60%, rgba(232,163,61,0.15) 0%, transparent 45%);
  }
  .project-thumb.b::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(60deg, rgba(0,46,93,0.15) 0%, transparent 50%),
      radial-gradient(circle at 70% 30%, rgba(232,163,61,0.2) 0%, transparent 50%);
  }
  .project-thumb.c::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(-30deg, rgba(0,46,93,0.18) 0%, transparent 60%),
      radial-gradient(circle at 30% 70%, rgba(232,163,61,0.12) 0%, transparent 50%);
  }
  .project-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: rgba(255,255,255,0.95);
    color: var(--navy);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  .project-body {
    padding: 32px 28px;
  }
  .project-cat {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .project-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 16px;
    min-height: 58px;
  }
  .project-desc {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-sub);
    margin-bottom: 20px;
  }
  .project-more {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--navy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  /* ============ Section 06: Services ============ */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .service-item {
    background: #fff;
    padding: 44px 36px;
    transition: all .3s var(--ease);
    cursor: pointer;
    position: relative;
  }
  .service-item:hover {
    background: var(--navy);
    color: #fff;
  }
  .service-item:hover .service-num,
  .service-item:hover .service-desc { color: rgba(255,255,255,0.7); }
  .service-item:hover .service-arrow { color: var(--gold); }
  .service-num {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    transition: color .3s var(--ease);
  }
  .service-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .service-desc {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-sub);
    transition: color .3s var(--ease);
  }
  .service-arrow {
    position: absolute;
    right: 28px; bottom: 28px;
    font-size: 14px;
    color: var(--text-sub);
    transition: color .3s var(--ease);
  }
  /* ============ Section 07: AI & DX ============ */
  .ai-section {
    background: var(--navy);
    color: #fff;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .ai-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,163,61,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .ai-body h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 32px;
    color: #fff;
  }
  .ai-body h2 .gold { color: var(--gold); }
  .ai-body p {
    font-size: 15px;
    line-height: 2;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
  }
  .ai-points {
    list-style: none;
    margin-top: 32px;
  }
  .ai-points li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .ai-points li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .ai-visual {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(232,163,61,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ai-visual-inner {
    text-align: center;
  }
  .ai-visual-inner .big {
    font-family: 'Inter', sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
  }
  .ai-visual-inner .small {
    font-size: 14px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    text-transform: uppercase;
  }
  .ai-visual-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
  }
  /* ============ Section 08: People ============ */
  .people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .people-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .people-cell {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #F0F3F8 0%, #DCE3EE 100%);
    position: relative;
    overflow: hidden;
  }
  .people-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0,46,93,0.15) 0%, transparent 60%);
  }
  .people-cell.tall { grid-row: span 2; aspect-ratio: 3/8; margin-top: -40px; }
  .people-cell-label {
    position: absolute;
    left: 16px; bottom: 16px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
  }
  /* ============ Section 09: Group ============ */
  .group-block {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .group-inner {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }
  .group-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 24px;
  }
  .group-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .group-body {
    font-size: 15px;
    line-height: 2;
    color: var(--text-sub);
    margin-bottom: 40px;
  }
  .group-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
  }
  .group-logo {
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.1em;
    font-size: 18px;
    opacity: 0.7;
  }
  .group-logo-divider {
    width: 1px; height: 24px;
    background: var(--line);
  }
  /* ============ Section 10: News ============ */
  .news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
  }
  .news-list {
    border-top: 1px solid var(--line);
  }
  .news-item {
    display: grid;
    grid-template-columns: 100px 100px 1fr auto;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    transition: all .2s var(--ease);
    cursor: pointer;
  }
  .news-item:hover { padding-left: 8px; }
  .news-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-sub);
    font-weight: 500;
  }
  .news-cat {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-soft);
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .news-cat.ai { background: var(--navy); color: #fff; }
  .news-cat.event { background: rgba(232,163,61,0.15); color: #A66E1F; }
  .news-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
  }
  .news-arrow { color: var(--text-sub); font-size: 12px; }
  /* ============ Section 11: CTA ============ */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  }
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.15);
  }
  .cta-box {
    background: var(--navy);
    padding: 60px;
    text-align: left;
    transition: background .3s var(--ease);
    cursor: pointer;
  }
  .cta-box:hover { background: var(--navy-deep); }
  .cta-box .eyebrow {
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .cta-box h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #fff;
  }
  .cta-box p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
  }
  .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold);
  }
  /* ============ Footer ============ */
  footer.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo {
    color: #fff;
    margin-bottom: 20px;
  }
  .footer-brand p {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 20px;
  }
  .footer-address {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
  }
  .footer-col h4 {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color .2s var(--ease);
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
  }
  .footer-bottom .links {
    display: flex;
    gap: 32px;
  }
  /* ============ Responsive ============ */
  @media (max-width: 1024px) {
    .hero-title { font-size: 44px; }
    .section-title { font-size: 32px; }
    .hero-inner, .about-grid, .ai-grid, .people-grid, .news-grid {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .number-card:nth-child(2n) { border-right: none; }
    .strengths-grid.strengths-grid-4 { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .access-topbar { grid-template-columns: 1fr; }
    .access-routes { grid-template-columns: 1fr; }
    .company-grid { grid-template-columns: 1fr; gap: 40px; }
    .strengths-grid, .projects-grid, .services-grid {
      grid-template-columns: 1fr 1fr;
    }
    .cta-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    nav.global-nav { display: none; }
  }
  @media (max-width: 640px) {
    .container { padding: 0 24px; }
    section.block { padding: 80px 0; }
    section.hero { padding: 140px 0 80px; }
    .hero-title { font-size: 32px; }
    .section-title { font-size: 26px; }
    .numbers-grid, .strengths-grid, .projects-grid, .services-grid, .footer-top {
      grid-template-columns: 1fr;
    }
    .number-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .header-cta .btn-outline { display: none; }
    .header-inner { padding: 16px 24px; }
    .cta-box { padding: 40px 28px; }
  }
  /* ============ Management Team ============ */
  .block.bg-management {
    background: linear-gradient(180deg, #FAFBFD 0%, #F0F3F8 100%);
    position: relative;
    overflow: hidden;
  }
  .block.bg-management::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(0,46,93,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .management-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
  }
  .management-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform .3s var(--ease);
  }
  .management-card:hover {
    transform: translateY(-4px);
  }
  .management-photo {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    background: #EDEFF3;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,46,93,0.08);
    margin-bottom: 20px;
    transition: box-shadow .3s var(--ease);
  }
  .management-card:hover .management-photo {
    box-shadow: 0 14px 32px rgba(0,46,93,0.14);
  }
  .management-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .management-body {
    padding: 0 8px;
  }
  .management-position-en {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .management-position {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text-sub);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    min-height: 40px;
  }
  .management-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    letter-spacing: 0.06em;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .management-name .name-en {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--text-sub);
    letter-spacing: 0.14em;
    margin-top: 4px;
  }
  @media (max-width: 1024px) {
    .management-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  }
  @media (max-width: 640px) {
    .management-grid { grid-template-columns: 1fr; gap: 20px; }
  }



/* ===== Header layout & language switch (v10 fixes) ===== */
header.site-header .header-inner{
  gap:24px;
  padding:16px 32px;
}
header.site-header .logo{
  flex-shrink:0;
}
/* ===== 大成建設グループ ロゴ（SJGR-1C：カラー）ロックアップ =====
   大成建設VIデザインシステム準拠：
   ・SJGR-1C（コーポレート・シグネチャー＋和文グループロゴ／横）カラー版を使用
   ・アイソレーション（クリアスペース）Y = 0.06W（W＝ロゴ左右幅）を四方に確保
   ・正式ロゴは PowerSite＞VIデザインシステム・マニュアル より SJGR-1C（印刷用）を
     /assets/images/brand/taisei-group.png（またはsvg）として配置してください */
.brand-lock{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
}
.brand-divider{
  width:1px;
  align-self:center;
  height:28px;
  margin:0 20px;
  background:var(--line);
}
.group-brand{
  --tg-logo-w:190px;                          /* SJGR-1C 横型の描画幅（W）※スローガン入りフル版の視認性を確保 */
  --tg-clear:calc(var(--tg-logo-w) * 0.06);   /* クリアスペース Y = 0.06W */
  display:inline-flex;
  align-items:center;
  padding:var(--tg-clear);                     /* 四方にアイソレーションを確保 */
  box-sizing:content-box;
  line-height:0;
}
.group-brand-img{
  width:var(--tg-logo-w);
  height:auto;
  display:block;
}
/* 正式ロゴ未配置時のプレースホルダー（レイアウト確認用・差し替え前提） */
.group-brand-ph{
  display:none;
  width:var(--tg-logo-w);
  min-height:34px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  border:1px dashed var(--line);
  border-radius:4px;
  padding:5px 6px;
  font-size:10px;
  font-weight:700;
  color:var(--navy);
  text-align:center;
  line-height:1.25;
}
.group-brand-ph small{ font-size:8px; font-weight:500; color:var(--text-sub); }
header.site-header .logo-img{ height: 36px; }
.footer-brand .logo-img{ height: 44px; }
.group-logo-img img{ height: 48px; width: auto; display:block; }
@media (max-width: 900px){
  header.site-header .logo-img{ height: 30px; }
  .group-logo-img img{ height: 40px; }
  .group-brand{ --tg-logo-w:158px; }
  .brand-divider{ margin:0 15px; height:24px; }
}
@media (max-width: 600px){
  header.site-header .logo-img{ height: 26px; }
  .footer-brand .logo-img{ height: 38px; }
  .group-logo-img img{ height: 34px; }
  .group-brand{ --tg-logo-w:128px; }
  .brand-divider{ margin:0 11px; height:20px; }
}
@media (max-width: 380px){
  .brand-divider, .group-brand{ display:none; }
}
nav.global-nav{flex:1;min-width:0;}
nav.global-nav ul{
  gap:22px;
  flex-wrap:nowrap;
  justify-content:center;
}
nav.global-nav a{
  font-size:13px;
  white-space:nowrap;
}
.header-cta{gap:10px;flex-shrink:0;}
.header-cta .btn{padding:10px 18px;font-size:13px;white-space:nowrap;}
.header-cta .btn-ghost{padding:8px 10px;font-size:12px;}
.lang-switch{
  display:inline-flex;align-items:center;
  border:1px solid var(--line);border-radius:999px;
  padding:3px;background:#fff;
  box-shadow:0 2px 8px rgba(0,46,93,.05);
  flex-shrink:0;
}
.lang-btn{
  border:0;background:transparent;color:var(--text-sub);
  font:600 11px/1 'Inter',sans-serif;letter-spacing:.08em;
  padding:7px 11px;border-radius:999px;
  cursor:pointer;transition:.2s;
}
.lang-btn.is-active{background:var(--navy);color:#fff;}
.lang-btn:focus-visible{outline:2px solid var(--gold);outline-offset:2px;}
@media (max-width:1180px){
  nav.global-nav ul{gap:16px;}
  nav.global-nav a{font-size:12px;}
}
@media (max-width:1024px){
  nav.global-nav{display:none;}
  header.site-header .header-inner{padding:16px 24px;}
}
@media (max-width:640px){
  .header-cta .btn-ghost{display:none;}
  .header-cta{gap:8px;}
  .header-cta .btn{padding:9px 12px;font-size:12px;}
  .lang-btn{padding:6px 8px;font-size:10px;}
}
/* ===== English mode typography tweaks ===== */
html[lang="en"] body{
  font-family:'Inter','Noto Sans JP',-apple-system,BlinkMacSystemFont,sans-serif;
  letter-spacing:.005em;
}
html[lang="en"] .hero-title{font-size:52px;line-height:1.18;letter-spacing:-.02em;}
html[lang="en"] .section-title,
html[lang="en"] .about-body h2,
html[lang="en"] .ai-body h2{line-height:1.25;letter-spacing:-.01em;}
html[lang="en"] .value-jp{font-size:22px;line-height:1.3;}
html[lang="en"] .route-name{font-size:16px;}
html[lang="en"] .cta-box h3{font-size:26px;line-height:1.3;}
@media (max-width:1024px){
  html[lang="en"] .hero-title{font-size:40px;}
}
@media (max-width:640px){
  html[lang="en"] .hero-title{font-size:30px;}
}
/* ===== Mobile UX improvements (v11) ===== */
.nav-toggle{
  display:none;
  width:44px; height:44px;
  background:none; border:0; cursor:pointer;
  flex-direction:column; align-items:center; justify-content:center;
  gap:5px; flex-shrink:0; padding:0;
}
.nav-toggle span{
  display:block; width:22px; height:2px;
  background:var(--navy); border-radius:2px;
  transition:transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.mobile-nav{
  position:fixed; top:0; right:0; bottom:0;
  width:min(82vw,340px);
  background:#fff;
  box-shadow:-8px 0 32px rgba(0,46,93,.12);
  transform:translateX(100%);
  transition:transform .32s var(--ease);
  z-index:99; padding:92px 28px 40px;
  overflow-y:auto;
}
.mobile-nav.is-open{ transform:translateX(0); }
.mobile-nav ul{ list-style:none; display:flex; flex-direction:column; gap:2px; }
.mobile-nav a{
  display:block; padding:15px 8px;
  font-size:16px; font-weight:500; color:var(--text);
  border-bottom:1px solid var(--line);
  transition:color .2s var(--ease);
}
.mobile-nav a:hover{ color:var(--navy); }
.mobile-nav a.is-cta{
  margin-top:16px; border-bottom:0;
  background:var(--navy); color:#fff;
  border-radius:var(--radius); text-align:center; font-weight:600;
}
.nav-overlay{
  position:fixed; inset:0;
  background:rgba(0,27,58,.28);
  opacity:0; visibility:hidden;
  transition:opacity .3s var(--ease), visibility .3s var(--ease);
  z-index:98;
}
.nav-overlay.is-open{ opacity:1; visibility:visible; }
body.nav-open{ overflow:hidden; }
@media (max-width:1024px){ .nav-toggle{ display:flex; } }
@media (min-width:1025px){ .mobile-nav, .nav-overlay{ display:none; } }
body{ line-break:strict; word-break:normal; overflow-wrap:anywhere; }
.hero-title, .section-title, .strength-title,
.project-title, .service-title,
.about-body h2, .ai-body h2, .group-title{ text-wrap:balance; }
@media (max-width:640px){
  .br-pc{ display:none; }
  body{ font-size:15px; }
  .hero-lead{ line-height:1.9; }
  p{ line-height:1.85; }
  section.block{ padding:64px 0; }
}
@media (max-width:640px){
  .container{ overflow-x:hidden; }
  table{ width:100%; }
  table th, table td{
    display:block; width:100%; padding:6px 0; text-align:left;
  }
  table th{ font-weight:700; padding-top:14px; color:var(--navy); }
}



.mobile-section-nav,
.mobile-rail-indicator,
.back-to-top { display: none; }
.br-mobile-space { display: none; }
@media (max-width: 640px) {
  :root { --mobile-gutter: 20px; }
  html { scroll-padding-top: 118px; }
  body { overflow-x: hidden; }
  section[id] { scroll-margin-top: 118px; }
  header.site-header .header-inner {
    min-height: 64px;
    padding: 10px 16px;
    gap: 10px;
  }
  header.site-header .logo-img { height: 25px; max-width: 132px; }
  .header-cta { gap: 6px; }
  .header-cta > .btn-primary,
  .header-cta > .btn-ghost,
  .header-cta > .btn-outline { display: none !important; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 6px 8px; font-size: 10px; }
  .nav-toggle { width: 40px; height: 40px; }
  .mobile-nav { padding-top: 78px; }
  .mobile-section-nav {
    display: block;
    position: sticky;
    top: 64px;
    z-index: 60;
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .mobile-section-nav-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 9px var(--mobile-gutter);
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-section-nav-inner::-webkit-scrollbar { display: none; }
  .mobile-section-nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
  }
  .container { padding: 0 var(--mobile-gutter); }
  section.block,
  section.block.tight { padding: 52px 0; }
  .section-head { margin-bottom: 30px; }
  .section-head.center { text-align: left; }
  .section-eyebrow { margin-bottom: 12px; font-size: 10px; gap: 8px; letter-spacing: .18em; }
  .section-title { font-size: 25px; line-height: 1.45; margin-bottom: 14px; }
  .section-lead { font-size: 14px; line-height: 1.8; }
  .group-block { padding: 52px 0; }
  .group-title { font-size: 25px; margin-bottom: 14px; }
  .group-body { font-size: 14px; line-height: 1.8; margin-bottom: 28px; }
  .group-logos { gap: 22px; padding-top: 26px; }
  .ai-section { padding: 58px 0; }
  .cta-section { padding: 54px 0; }
  footer.site-footer { padding: 52px 0 24px; }
  section.hero { padding: 104px 0 44px; }
  .hero-inner { gap: 28px; }
  .hero-eyebrow { margin-bottom: 18px; font-size: 11px; }
  .hero-title { font-size: 30px; line-height: 1.35; margin-bottom: 20px; }
  .hero-title .br-pc { display: block; }
  html[lang="en"] .br-mobile-space { display: inline; }
  .hero-title .br-mobile-space { display: none !important; }
  .hero-lead { font-size: 14px; line-height: 1.85; margin-bottom: 24px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-actions .btn {
    justify-content: center;
    padding: 11px 8px;
    font-size: 11.5px;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
  }
  .hero-visual { aspect-ratio: 16 / 10; min-height: 0; }
  .hero-scroll { display: none; }
  .about-grid,
  .ai-grid,
  .people-grid,
  .news-grid { gap: 28px; }
  .about-visual { aspect-ratio: 16 / 9; }
  .about-visual-label { left: 16px; bottom: 16px; padding: 12px 16px; }
  .about-body h2 { font-size: 26px; line-height: 1.5; margin-bottom: 20px; }
  .about-body p { font-size: 14px; line-height: 1.85; margin-bottom: 12px; }
  .about-signature { margin-top: 24px; padding-top: 20px; }
  .numbers-grid,
  .strengths-grid,
  .strengths-grid.strengths-grid-4,
  .values-grid,
  .projects-grid,
  .services-grid,
  .management-grid,
  .access-routes {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0 14px;
    scrollbar-width: thin;
  }
  .numbers-grid > *,
  .strengths-grid > *,
  .values-grid > *,
  .projects-grid > *,
  .services-grid > *,
  .management-grid > *,
  .access-routes > * {
    flex: 0 0 min(82vw, 310px);
    width: min(82vw, 310px);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .management-grid > * {
    flex-basis: min(72vw, 270px);
    width: min(72vw, 270px);
  }
  .mobile-rail-indicator {
    display: block;
    min-height: 16px;
    margin: -14px 0 7px;
    color: var(--text-sub);
    font: 600 10.5px/1.2 'Inter', sans-serif;
    letter-spacing: .12em;
    text-align: right;
  }
  .bg-navy .mobile-rail-indicator { color: rgba(255,255,255,.62); }
  .numbers-grid { border: 0; }
  .number-card {
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 4px;
  }
  .number-card .num-value { font-size: 40px; }
  .number-card .num-eyebrow { margin-bottom: 14px; }
  .strength-card,
  .strengths-grid.strengths-grid-4 .strength-card { padding: 30px 24px; }
  .strength-title { font-size: 20px; margin-bottom: 14px; }
  .strength-icon { margin-bottom: 20px; }
  .roots-network { display: none; }
  .value-card { padding: 26px 22px; }
  .value-word { font-size: 84px; margin-bottom: 18px; }
  .value-jp { font-size: 23px; }
  .values-vision { padding: 32px 20px 38px; }
  .values-vision-title { font-size: 28px; }
  .project-body { padding: 24px 20px; }
  .project-title { min-height: 0; font-size: 17px; margin-bottom: 12px; }
  .project-desc { margin-bottom: 16px; }
  .services-grid { background: transparent; border: 0; }
  .service-item { padding: 28px 22px 46px; border: 1px solid var(--line); }
  .ai-body h2 { font-size: 27px; line-height: 1.45; margin-bottom: 20px; }
  .ai-body p { font-size: 14px; line-height: 1.85; margin-bottom: 12px; }
  .ai-points { margin-top: 20px; }
  .ai-points li { padding: 10px 0; font-size: 13px; }
  .ai-visual { aspect-ratio: 16 / 9; }
  .ai-visual-inner .big { font-size: 74px; }
  .ai-visual-inner .small { font-size: 11px; }
  .people-visual { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .people-cell,
  .people-cell.tall { grid-row: auto; aspect-ratio: 3 / 4; margin-top: 0; }
  .people-cell-label { left: 7px; bottom: 7px; font-size: 8px; letter-spacing: .08em; }
  .management-card { text-align: left; }
  .management-photo { margin-bottom: 14px; }
  .management-body { padding: 0 4px; }
  .management-position { min-height: 0; margin-bottom: 8px; }
  .management-name { font-size: 18px; padding-top: 10px; }
  .company-grid { gap: 24px; }
  .company-visual { padding: 34px 24px; }
  .company-visual-title { font-size: 25px; }
  .company-visual-lead { margin-bottom: 26px; }
  .company-visual-slogan { padding-top: 22px; }
  .company-table,
  .company-table tbody { display: block; width: 100%; }
  .company-table tr {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--line);
  }
  .company-table th,
  .company-table td {
    display: block !important;
    width: auto !important;
    border: 0 !important;
    padding: 14px 0 !important;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .company-table th { font-size: 11px; }
  .company-table td { font-size: 13px; }
  .company-business { margin-top: 24px; padding: 22px 20px; }
  .company-business ul { grid-template-columns: 1fr; gap: 7px; }
  .access-topbar { gap: 24px; padding: 26px 22px; margin-bottom: 30px; }
  .access-address-name { font-size: 18px; }
  .access-map-btn { width: 100%; justify-content: center; }
  .access-mapthumb { aspect-ratio: 16 / 8; }
  .route-card { padding: 28px 22px 24px; }
  .route-header { margin-bottom: 14px; }
  .route-summary { margin-bottom: 14px; }
  .route-steps li { padding: 10px 0 10px 36px; }
  #news .news-grid { gap: 28px; }
  .news-more { margin-top: 22px; }
  .news-more .btn { width: 100%; justify-content: center; }
  .news-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "date category arrow"
      "title title title";
    column-gap: 12px;
    row-gap: 8px;
    padding: 18px 0;
    align-items: center;
  }
  .news-item:hover { padding-left: 0; }
  .news-date { grid-area: date; white-space: nowrap; font-size: 12px; }
  .news-cat {
    grid-area: category;
    justify-self: start;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    padding: 4px 10px;
    font-size: 10px;
  }
  .news-title {
    grid-area: title;
    display: block;
    min-width: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
    writing-mode: horizontal-tb;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .news-arrow { grid-area: arrow; justify-self: end; }
  .cta-box { padding: 34px 24px; }
  .cta-box h3 { font-size: 23px; margin-bottom: 14px; }
  .cta-box p { margin-bottom: 22px; }
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 30px 20px; padding-bottom: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col h4 { margin-bottom: 14px; }
  .footer-col li { margin-bottom: 8px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; padding-top: 24px; }
  .footer-bottom .links { flex-wrap: wrap; gap: 12px 20px; }
  .back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(0,46,93,.92);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0,27,58,.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s var(--ease);
    z-index: 80;
  }
  .back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 370px) {
  header.site-header .logo-img { max-width: 116px; }
  .lang-btn { padding-inline: 7px; }
  .hero-title { font-size: 28px; }
  .hero-actions { grid-template-columns: 1fr; }
  .numbers-grid > *,
  .strengths-grid > *,
  .values-grid > *,
  .projects-grid > *,
  .services-grid > *,
  .access-routes > * { flex-basis: 84vw; width: 84vw; }
}
@media (prefers-reduced-motion: reduce) {
  .numbers-grid,
  .strengths-grid,
  .values-grid,
  .projects-grid,
  .services-grid,
  .management-grid,
  .access-routes { scroll-behavior: auto; scroll-snap-type: none; }
  .back-to-top { transition: none; }
}



html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html, body { max-width: 100%; }
@media (min-width: 1241px) {
  nav.global-nav { display: block !important; }
  nav.global-nav ul { gap: 20px; }
  nav.global-nav a { font-size: 13px; }
  .nav-toggle { display: none !important; }
  .mobile-nav,
  .nav-overlay { display: none !important; }
}
@media (min-width: 641px) and (max-width: 1240px) {
  html { scroll-padding-top: 78px; }
  section[id] { scroll-margin-top: 78px; }
  header.site-header .header-inner {
    min-height: 72px;
    padding: 12px 24px;
    gap: 14px;
  }
  header.site-header .logo-img {
    height: 32px;
    max-width: 188px;
  }
  nav.global-nav { display: none !important; }
  .nav-toggle { display: flex !important; }
  .mobile-nav,
  .nav-overlay { display: block !important; }
  .header-cta > .btn-ghost { display: none !important; }
  .header-cta > .btn-primary {
    display: inline-flex;
    padding: 10px 16px;
  }
}
@media (min-width: 901px) and (max-width: 1240px) {
  .mobile-nav {
    width: min(42vw, 380px);
    padding: 90px 30px 40px;
  }
  .mobile-nav a {
    padding: 13px 8px;
    font-size: 15px;
  }
}
@media (min-width: 901px) and (max-width: 1199px) {
  section.hero { padding: 150px 0 92px; }
  section.block { padding: 96px 0; }
  section.block.tight { padding: 84px 0; }
  .section-head { margin-bottom: 52px; }
  .hero-title { font-size: 48px; }
  .hero-lead { font-size: 16px; line-height: 1.95; }
  html[lang="en"] .hero-title { font-size: 44px; }
  .section-title { font-size: 35px; }
  .hero-inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr) !important;
    gap: 48px !important;
  }
  .about-grid,
  .ai-grid,
  .people-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 48px !important;
  }
  .news-grid {
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr) !important;
    gap: 48px !important;
  }
  .company-grid {
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr) !important;
    gap: 44px !important;
  }
  .access-topbar {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr) !important;
    gap: 36px !important;
  }
  .numbers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .number-card:nth-child(2n) {
    border-right: 1px solid rgba(255,255,255,.15);
  }
  .number-card:nth-child(3n),
  .number-card:last-child { border-right: none; }
  .strengths-grid,
  .strengths-grid.strengths-grid-4,
  .projects-grid,
  .services-grid,
  .management-grid,
  .access-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px;
  }
  .value-card { padding: 30px 24px; }
  .value-word { font-size: 96px; }
  .roots-network { display: none; }
  .cta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .footer-top { grid-template-columns: 1.25fr 1fr !important; }
}
@media (min-width: 1600px) {
  .container { padding-left: 48px; padding-right: 48px; }
  header.site-header .header-inner { padding-left: 48px; padding-right: 48px; }
  nav.global-nav ul { gap: 26px; }
  nav.global-nav a { font-size: 14px; }
  .hero-title { font-size: 64px; }
  html[lang="en"] .hero-title { font-size: 56px; }
  .hero-lead { font-size: 18px; }
  .section-title { font-size: 42px; }
  .section-lead { font-size: 17px; }
}
@media (min-width: 1800px) {
  :root { --max: 1520px; }
}



:root { --site-header-height: 72px; }
header.site-header .logo-wordmark {
  height: auto !important;
  max-width: none !important;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--navy);
}
@media (max-width: 640px) {
  header.site-header .logo-wordmark { font-size: 20px; }
}
@media (max-width: 370px) {
  header.site-header .logo-wordmark { font-size: 18px; }
}
section.hero.hero-video-section {
  position: relative;
  width: 100%;
  height: calc(92svh - var(--site-header-height));
  min-height: 640px;
  margin-top: var(--site-header-height);
  padding: 0 !important;
  overflow: hidden;
  isolation: isolate;
  background: #0b0d10 url('../images/site/hero-poster.webp') center center / cover no-repeat;
  color: #fff;
}
.hero-video-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: transparent;
}
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.005);
  transition: opacity .55s var(--ease);
}
.hero-video.is-ready { opacity: 1; }
.hero-video-section.is-poster-only .hero-video { display: none; }
.hero-video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1vh;
  padding-bottom: 4vh;
}
.hero-video-copy {
  width: min(920px, 68vw);
  position: relative;
  color: #fff;
}
.hero-video-section .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 24px -12px;
  padding: 8px 12px 8px 12px;
  color: #fff;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  text-shadow: 0 1px 3px rgba(0,0,0,.92);
  opacity: 0;
  animation: heroCopyIn .75s .25s var(--ease) forwards;
}
.hero-video-section .hero-eyebrow::before { background: var(--gold); }
.hero-video-section .hero-title {
  color: #fff;
  font-size: clamp(50px, 4vw, 62px);
  line-height: 1.28;
  letter-spacing: .012em;
  margin-bottom: 26px;
  text-shadow:
    0 2px 2px rgba(0,0,0,.92),
    0 6px 18px rgba(0,0,0,.72),
    0 16px 42px rgba(0,0,0,.42);
  -webkit-text-stroke: .45px rgba(0,0,0,.62);
  paint-order: stroke fill;
  opacity: 0;
  animation: heroCopyIn .85s .45s var(--ease) forwards;
}
.hero-video-section .hero-title .accent { color: #fff; }
.hero-video-section .hero-title .gold-line {
  color: #fff;
  background: none;
  box-shadow: inset 0 -.22em rgba(232,163,61,.60);
}
.hero-video-section .hero-lead {
  display: block;
  width: fit-content;
  max-width: 620px;
  margin: 0 0 0 -16px;
  padding: 12px 16px 13px 14px;
  color: #fff;
  background: rgba(0,0,0,.34);
  border-left: 2px solid var(--gold);
  box-shadow: 0 10px 32px rgba(0,0,0,.16);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  text-shadow: 0 1px 4px rgba(0,0,0,.95);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 450;
  opacity: 0;
  animation: heroCopyIn .85s .7s var(--ease) forwards;
}
@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-video-control {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - var(--max)) / 2 + 40px));
  bottom: 28px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: rgba(0,0,0,.46);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.hero-video-control[hidden] { display: none !important; }
.hero-video-control:hover {
  background: rgba(0,0,0,.72);
  border-color: #fff;
  transform: translateY(-2px);
}
.hero-video-control:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.hero-video-control-icon {
  font: 700 14px/1 'Inter', sans-serif;
  letter-spacing: -2px;
  transform: translateX(-1px);
  text-shadow: 0 1px 3px rgba(0,0,0,.8);
}
.hero-video-control.is-paused .hero-video-control-icon {
  font-size: 15px;
  letter-spacing: 0;
  transform: translateX(1px);
}
.hero-scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font: 600 9px/1 'Inter', sans-serif;
  letter-spacing: .32em;
  text-shadow: 0 1px 4px rgba(0,0,0,.95);
}
.hero-scroll-cue i {
  width: 2px;
  height: 28px;
  background: var(--gold);
  box-shadow: 0 1px 4px rgba(0,0,0,.55);
  animation: heroScrollPulse 1.8s ease-in-out infinite;
}
@keyframes heroScrollPulse {
  0%, 100% { opacity: .45; transform: scaleY(.65); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}
.hero-action-strip {
  position: relative;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0,27,58,.06);
}
.hero-action-inner {
  min-height: 156px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.hero-action-message {
  max-width: 660px;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: .035em;
}
.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-action-buttons .btn { min-height: 50px; justify-content: center; }
html[lang="en"] .hero-video-section .hero-title {
  font-size: clamp(46px, 3.65vw, 58px);
  line-height: 1.18;
  letter-spacing: -.02em;
}
html[lang="en"] .hero-video-section .hero-lead { max-width: 660px; line-height: 1.8; }
html[lang="en"] .hero-action-message { max-width: 700px; }
@media (max-width: 1240px) {
  section.hero.hero-video-section { min-height: 600px; }
  .hero-video-copy { width: min(850px, 72vw); }
  .hero-video-section .hero-title { font-size: clamp(44px, 4.7vw, 56px); }
  .hero-video-control { right: 24px; }
  .hero-action-inner { gap: 32px; }
  .hero-action-message { font-size: 18px; }
}
@media (max-width: 900px) {
  .hero-action-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
    padding-top: 30px;
    padding-bottom: 32px;
  }
  .hero-action-buttons { justify-content: flex-start; }
}
@media (max-width: 640px) {
  :root { --site-header-height: 64px; }
  section.hero.hero-video-section {
    height: calc(100svh - var(--site-header-height));
    min-height: 540px;
    max-height: 780px;
    margin-top: var(--site-header-height);
    background-image: url('../images/site/hero-poster-mobile-optimized.webp');
    background-position: center 44%;
  }
  .hero-video { object-position: center 44%; }
  .hero-video-content {
    align-items: flex-end;
    padding-top: 28px;
    padding-bottom: max(78px, calc(68px + env(safe-area-inset-bottom)));
  }
  .hero-video-copy {
    width: 100%;
    max-width: 100%;
  }
  .hero-video-section .hero-eyebrow {
    margin: 0 0 15px -8px;
    padding: 7px 9px;
    font-size: 10px;
    letter-spacing: .16em;
    background: rgba(0,0,0,.34);
  }
  .hero-video-section .hero-title > .i18n,
  .hero-video-section .hero-title > .accent {
    display: inline-block;
    white-space: nowrap;
  }
  .hero-video-section .hero-title,
  html[lang="en"] .hero-video-section .hero-title {
    width: calc(100% + 16px);
    margin-left: -8px;
    font-size: clamp(22px, 6.7vw, 26px);
    line-height: 1.24;
    margin-bottom: 18px;
    letter-spacing: -.035em;
    text-shadow:
      0 2px 2px rgba(0,0,0,.95),
      0 5px 16px rgba(0,0,0,.80),
      0 12px 32px rgba(0,0,0,.50);
    -webkit-text-stroke: .4px rgba(0,0,0,.68);
  }
  html[lang="en"] .hero-video-section .hero-title { line-height: 1.15; }
  .hero-video-section .hero-lead,
  html[lang="en"] .hero-video-section .hero-lead {
    width: auto;
    max-width: calc(100% - 8px);
    margin-left: -8px;
    padding: 10px 11px 11px 10px;
    font-size: 13.2px;
    line-height: 1.78;
    background: rgba(0,0,0,.36);
  }
  .hero-video-control {
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }
  .hero-scroll-cue {
    left: 24px;
    bottom: max(17px, env(safe-area-inset-bottom));
    transform: none;
    align-items: flex-start;
  }
  .hero-scroll-cue i { height: 20px; margin-left: 4px; }
  .hero-action-inner { min-height: 0; gap: 22px; padding-top: 28px; padding-bottom: 32px; }
  .hero-action-message { font-size: 16px; line-height: 1.75; }
  .hero-action-buttons { width: 100%; flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-action-buttons .btn { width: 100%; min-height: 48px; }
  .mobile-section-nav { transition: opacity .25s var(--ease), transform .25s var(--ease); }
}
@media (max-width: 370px) {
  .hero-video-section .hero-title,
  html[lang="en"] .hero-video-section .hero-title { font-size: 22px; }
  .hero-video-section .hero-lead,
  html[lang="en"] .hero-video-section .hero-lead { font-size: 12.5px; }
}
@media (max-width: 640px) and (max-height: 700px) {
  section.hero.hero-video-section {
    height: calc(100svh - var(--site-header-height));
    min-height: 480px;
  }
  .hero-video-content { padding-top: 20px; padding-bottom: 62px; }
  .hero-video-section .hero-eyebrow { margin-bottom: 9px; }
  .hero-video-section .hero-title,
  html[lang="en"] .hero-video-section .hero-title {
    font-size: clamp(21px, 6.5vw, 25px);
    line-height: 1.18;
    margin-bottom: 12px;
  }
  .hero-video-section .hero-lead,
  html[lang="en"] .hero-video-section .hero-lead {
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 12px;
    line-height: 1.55;
  }
}
@media (orientation: landscape) and (max-height: 560px) {
  section.hero.hero-video-section {
    height: calc(100svh - var(--site-header-height));
    min-height: 300px;
    max-height: none;
  }
  .hero-video-content {
    align-items: center;
    padding-top: 16px;
    padding-bottom: 32px;
  }
  .hero-video-copy { width: min(680px, 78vw); }
  .hero-video-section .hero-eyebrow { margin-bottom: 8px; padding-top: 5px; padding-bottom: 5px; }
  .hero-video-section .hero-title,
  html[lang="en"] .hero-video-section .hero-title {
    font-size: clamp(29px, 5.2vw, 42px);
    line-height: 1.12;
    margin-bottom: 9px;
  }
  .hero-video-section .hero-lead,
  html[lang="en"] .hero-video-section .hero-lead {
    max-width: 620px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 11.5px;
    line-height: 1.45;
  }
  .hero-video-control { right: 16px; bottom: 12px; width: 44px; height: 44px; }
  .hero-scroll-cue { display: none; }
}
@media (prefers-reduced-motion: reduce), (prefers-reduced-data: reduce) {
  .hero-video { display: none; }
  .hero-video-section .hero-eyebrow,
  .hero-video-section .hero-title,
  .hero-video-section .hero-lead { opacity: 1; animation: none; transform: none; }
  .hero-scroll-cue i { animation: none; }
  .hero-video-control { display: none; }
}



/* ===== Photo-frame placeholder (写真差し込み用の枠) ===== */
.management-photo.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #EEF1F6 0%, #E2E7EF 100%);
  border: 1px dashed rgba(0,46,93,.22);
  position: relative;
}
.management-photo.is-placeholder::after {
  content: 'PHOTO';
  font: 700 11px/1 'Inter', sans-serif;
  letter-spacing: .28em;
  color: rgba(0,46,93,.32);
}
.management-photo.is-placeholder svg {
  position: absolute;
  width: 42%;
  height: 42%;
  top: 22%;
  color: rgba(0,46,93,.16);
}
/* ===== Services: 5-column layout (5事業) ===== */
.services-grid.services-grid-5 {
  grid-template-columns: repeat(4, 1fr);
}
.service-item.is-coming { cursor: default; }
.service-item.is-coming:hover { background: #fff; color: inherit; }
.service-item.is-coming:hover .service-desc { color: var(--text-sub); }
.service-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(232,163,61,.14);
  color: #A66E1F;
  font: 700 10px/1 'Inter', sans-serif;
  letter-spacing: .16em;
  vertical-align: middle;
  white-space: nowrap;
}
.service-item.is-coming .service-title,
.service-item.is-coming .service-desc { opacity: .78; }
@media (min-width: 901px) and (max-width: 1199px) {
  .services-grid.services-grid-5 { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
@media (max-width: 1024px) {
  .services-grid.services-grid-5 { grid-template-columns: 1fr 1fr; }
}
/* ===== History / 沿革 timeline ===== */
.block.bg-history {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.history-timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 24px;
}
.history-timeline::before {
  content: '';
  position: absolute;
  left: 154px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(232,163,61,.25) 100%);
}
.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 18px 0;
  align-items: baseline;
}
.history-year {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  text-align: center;
  padding-right: 0;
}
.history-year small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: .12em;
  margin-top: 2px;
}
.history-year small.is-founded {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(232,163,61,.14);
  color: #A66E1F;
  font-size: 10.5px;
  letter-spacing: .1em;
  white-space: nowrap;
}
.history-body {
  position: relative;
  padding-left: 26px;
}
.history-body::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(232,163,61,.10);
}
.history-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 6px;
}
.history-desc {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-sub);
}
.history-note {
  max-width: 960px;
  margin: 40px auto 0;
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.8;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
@media (max-width: 640px) {
  .history-timeline::before { left: 7px; }
  .history-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0 14px 30px;
  }
  .history-year { text-align: left; font-size: 19px; }
  .history-year small { display: inline; margin-left: 8px; }
  .history-body { padding-left: 0; }
  .history-body::before { left: -30px; top: -26px; }
}



/* ===== Header collision guard =====
   Browser zoom reduces the CSS viewport width. Switch to the drawer before
   the brand lockup, global navigation and CTAs can compete for horizontal space. */
@media (min-width: 641px) and (max-width: 1500px) {
  html { scroll-padding-top: 78px; }
  section[id] { scroll-margin-top: 78px; }
  header.site-header .header-inner {
    min-height: 72px;
    padding: 12px 24px;
    gap: 14px;
  }
  header.site-header .logo-wordmark { font-size: 21px; }
  .group-brand { --tg-logo-w: clamp(142px, 11vw, 170px); }
  .brand-divider { margin: 0 14px; height: 24px; }
  nav.global-nav { display: none !important; }
  .nav-toggle { display: flex !important; }
  .mobile-nav,
  .nav-overlay { display: block !important; }
  .header-cta > .btn-ghost { display: none !important; }
  .header-cta > .btn-primary {
    display: inline-flex;
    padding: 10px 16px;
  }
}

@media (min-width: 901px) and (max-width: 1500px) {
  .mobile-nav {
    width: min(42vw, 380px);
    padding: 90px 30px 40px;
  }
  .mobile-nav a {
    padding: 13px 8px;
    font-size: 15px;
  }
}

@media (min-width: 1501px) {
  nav.global-nav { display: block !important; }
  .nav-toggle { display: none !important; }
  .mobile-nav,
  .nav-overlay { display: none !important; }
}

/* Compact full-header tier for medium-wide desktop / mild browser zoom. */
@media (min-width: 1501px) and (max-width: 1699px) {
  header.site-header .header-inner {
    padding: 14px 22px;
    gap: 12px;
  }
  header.site-header .logo-wordmark { font-size: 20px; }
  .group-brand { --tg-logo-w: 158px; }
  .brand-divider { margin: 0 12px; height: 24px; }
  nav.global-nav ul { gap: 14px; }
  nav.global-nav a { font-size: 12px; }
  .header-cta { gap: 6px; }
  .header-cta .btn { padding: 9px 12px; font-size: 12px; }
  .header-cta .btn-ghost { padding: 8px 8px; font-size: 11px; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 6px 8px; font-size: 10px; }
}



/* ===== Management roster / 経営陣のご紹介 ===== */
.block.bg-management-roster {
  background: linear-gradient(180deg, #F8FAFD 0%, #F3F6FA 100%);
  position: relative;
  overflow: hidden;
}
.management-roster-head {
  margin-bottom: 42px;
  max-width: 860px;
}
.management-roster-head .section-title {
  margin-bottom: 12px;
}
.management-roster-head .section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  background: var(--navy);
}
.management-roster-head .section-lead {
  max-width: 760px;
}
.management-role-group + .management-role-group {
  margin-top: 42px;
}
.management-role-title {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: .03em;
}
.management-role-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  background: #0068B7;
}
.management-roster-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 32px;
  padding: 26px 14px 0;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.management-person {
  min-width: 0;
  padding: 0 0 20px;
  text-align: center;
}
.management-person-photo {
  width: min(160px, 100%);
  aspect-ratio: 4 / 3;
  margin: 0 auto 14px;
  border: 1px solid #9DB0C4;
  border-radius: 10px 10px 3px 3px;
  background: linear-gradient(135deg, #F7F9FC 0%, #EEF2F7 100%);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.65);
  position: relative;
}

.management-person-photo {
  overflow: hidden;
}
.management-person-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
/* Portraits are pre-normalized to a common 4:3 composition based on the Ishihara portrait. */
.management-person-photo::after {
  content: '';
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -5px;
  height: 5px;
  border-radius: 2px;
  background: var(--navy-deep);
}
.management-person-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}
.management-person-role {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-sub);
}
.management-outside-note {
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-sub);
}
@media (max-width: 1180px) {
  .management-roster-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .management-roster-head { margin-bottom: 30px; }
  .management-role-group + .management-role-group { margin-top: 32px; }
  .management-role-title { font-size: 21px; }
  .management-roster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
    padding: 22px 14px 0;
    border-radius: 12px;
  }
  .management-person-name { font-size: 17px; }
  .management-person-role { font-size: 12px; }
}
@media (max-width: 420px) {
  .management-roster-grid { grid-template-columns: 1fr 1fr; }
  .management-person-photo { width: 100%; max-width: 140px; }
  .management-person-name { font-size: 15.5px; }
}



/* ===== PEOPLE & CULTURE: editorial photography ===== */
.people-visual-photo .people-cell {
  background: #E9EDF3;
  isolation: isolate;
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(0,46,93,.10);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.people-visual-photo .people-cell::before {
  z-index: 2;
  background: linear-gradient(180deg, transparent 50%, rgba(0,27,58,.56) 100%);
  opacity: 1;
  pointer-events: none;
}
.people-visual-photo .people-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform .7s var(--ease), filter .4s var(--ease);
  filter: saturate(.94) contrast(1.02);
  will-change: transform;
}
.people-visual-photo .people-cell-project .people-photo { object-position: 35% center; }
.people-visual-photo .people-cell-field .people-photo { object-position: 54% center; }
.people-visual-photo .people-cell-ai .people-photo {
  object-position: 50% 38%;
  transform-origin: 52% 40%;
  animation: peopleEmiMotion 8.5s cubic-bezier(.45,.05,.35,1) infinite alternate;
}
.people-visual-photo .people-cell-label {
  z-index: 3;
  color: #fff;
  background: rgba(0,27,58,.72);
  border-left: 2px solid var(--gold);
  padding: 7px 10px;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.people-visual-photo .people-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,46,93,.16);
}
.people-visual-photo .people-cell-project:hover .people-photo,
.people-visual-photo .people-cell-field:hover .people-photo { transform: scale(1.055); }
@keyframes peopleEmiMotion {
  0%   { transform: scale(1.035) translate3d(-1.3%, .4%, 0); }
  45%  { transform: scale(1.075) translate3d(.2%, -1.0%, 0); }
  100% { transform: scale(1.105) translate3d(1.6%, -.4%, 0); }
}
@media (max-width: 640px) {
  .people-visual-photo .people-cell-project .people-photo { object-position: 36% center; }
  .people-visual-photo .people-cell-field .people-photo { object-position: 54% center; }
  .people-visual-photo .people-cell-ai .people-photo { object-position: 50% 34%; }
  .people-visual-photo .people-cell-label {
    left: 8px;
    bottom: 8px;
    padding: 6px 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .people-visual-photo .people-cell-ai .people-photo { animation: none; transform: scale(1.03); }
  .people-visual-photo .people-photo,
  .people-visual-photo .people-cell { transition: none; }
}



/* Purpose message visual: preserve the supplied 3:2 composition without cropping text. */
.about-visual.about-purpose-visual {
  aspect-ratio: 3 / 2;
  background: #f6f3ec;
  overflow: hidden;
}
.about-visual.about-purpose-visual::before { display: none; }
.about-purpose-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* AI Specialist: candid photo, aligned with the other two editorial images. */
.people-visual-photo .people-cell-ai .people-photo {
  object-position: 74% center;
  transform: scale(1.015);
  transform-origin: 74% 50%;
  animation: none;
}
.people-visual-photo .people-cell-ai:hover .people-photo { transform: scale(1.055); }
@media (max-width: 640px) {
  .about-visual.about-purpose-visual { aspect-ratio: 3 / 2; }
  .people-visual-photo .people-cell-ai .people-photo { object-position: 76% center; }
}
@media (prefers-reduced-motion: reduce) {
  .people-visual-photo .people-cell-ai .people-photo { transform: scale(1.015); }
}



/* ===== Management roster v3: portrait cards / dense spacing / mobile horizontal rails ===== */
.management-role-group + .management-role-group {
  margin-top: 32px;
}
.management-role-title {
  margin-bottom: 12px;
}
.management-roster-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  row-gap: 16px;
  column-gap: 2px;
  padding: 18px 10px 8px;
  border-radius: 12px;
}
.management-person {
  padding: 0 0 10px;
}
.management-person-photo {
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 5;
  margin: 0 0 10px;
  border-radius: 8px 8px 3px 3px;
}
.management-person-photo img {
  object-position: center 32%;
}
.management-person-name {
  font-size: 18px;
  line-height: 1.35;
}
.management-person-role {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.5;
}

/* Tablet: keep the denser portrait treatment without oversized 2-column cards. */
@media (min-width: 761px) and (max-width: 1180px) {
  .management-roster-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 14px;
    column-gap: 2px;
    padding: 16px 10px 6px;
  }
}

/* Smartphone: each role category becomes an independent horizontal swipe rail. */
@media (max-width: 760px) {
  .management-roster-head {
    margin-bottom: 24px;
  }
  .management-role-group + .management-role-group {
    margin-top: 28px;
  }
  .management-role-title {
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: 20px;
  }
  .management-roster-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 2px !important;
    width: calc(100% + var(--mobile-gutter, 20px));
    max-width: none;
    margin-right: calc(var(--mobile-gutter, 20px) * -1);
    padding: 2px var(--mobile-gutter, 20px) 12px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0 var(--mobile-gutter, 20px);
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  .management-roster-grid::-webkit-scrollbar {
    display: none;
  }
  .management-person {
    flex: 0 0 min(50vw, 190px);
    width: min(50vw, 190px);
    min-width: 0;
    padding: 0 0 8px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    text-align: left;
  }
  .management-person-photo {
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 5;
    margin-bottom: 9px;
  }
  .management-person-name {
    font-size: 16px;
    line-height: 1.35;
  }
  .management-person-role {
    margin-top: 2px;
    font-size: 11.5px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .management-person {
    flex-basis: 52vw;
    width: 52vw;
  }
  .management-person-name {
    font-size: 15.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .management-roster-grid {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
}



/* ===== Management detail fixes: notes, role legibility, executive title stacking ===== */
.management-person-role {
  font-size: 14px;
  line-height: 1.55;
}
.management-person-role--stacked .management-role-line {
  display: block;
}
.management-person-role--stacked .management-role-line + .management-role-line {
  margin-top: 1px;
}

/* Legal notes sit inside the same framed block as the portraits. */
.management-role-body--noted {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.management-role-body--noted .management-roster-grid {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 18px 10px 6px;
}
.management-role-body--noted .management-outside-note {
  margin: 0 10px;
  padding: 10px 4px 13px;
  border-top: 1px solid rgba(157,176,196,.5);
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-sub);
}

@media (max-width: 760px) {
  .management-person-role {
    font-size: 13px;
    line-height: 1.5;
  }
  .management-role-body--noted {
    background: rgba(255,255,255,.76);
    border-radius: 10px;
  }
  .management-role-body--noted .management-roster-grid {
    width: 100%;
    margin-right: 0;
    padding: 10px 10px 10px;
    background: transparent;
    border: 0;
  }
  .management-role-body--noted .management-outside-note {
    margin: 0 10px;
    padding: 9px 2px 11px;
    border-top: 1px solid rgba(157,176,196,.5);
    font-size: 11.5px;
    line-height: 1.7;
  }
}



/* Use the whitespace already contained in each portrait image.
   Keep the portrait frame unchanged and add no artificial inner gutter. */
#management .management-roster-grid {
  column-gap: 4px;
}
#management .management-person-photo {
  box-sizing: border-box;
  padding: 0;
}
#management .management-person-photo img {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  object-fit: cover;
  object-position: center 32%;
}
@media (min-width: 761px) and (max-width: 1180px) {
  #management .management-roster-grid {
    column-gap: 4px;
  }
}
@media (max-width: 760px) {
  #management .management-roster-grid {
    gap: 4px !important;
  }
  #management .management-person-photo {
    padding: 0;
  }
}

/* ============ Section 10: Clients ============ */
.clients-section {
  background: #fff;
}
.clients-section .section-head {
  max-width: 820px;
  margin-bottom: 48px;
}
.clients-section .section-lead {
  max-width: 720px;
}
.clients-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0;
  border-top: 1px solid var(--line);
}
.clients-column {
  min-width: 0;
}
.client-item {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.65;
  letter-spacing: .01em;
  overflow-wrap: anywhere;
}
html[lang="en"] .client-item {
  font-size: 14px;
}
.clients-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
@media (max-width: 760px) {
  .clients-section .section-head { margin-bottom: 34px; }
  .clients-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .clients-column + .clients-column .client-item:first-child {
    border-top: 0;
  }
  .client-item {
    min-height: 54px;
    padding: 13px 0;
    font-size: 13.5px;
  }
  html[lang="en"] .client-item { font-size: 13px; }
}




/* Official NeoSphere logo supplied for the site header. */
header.site-header img.logo-official {
  background: transparent !important;
  height: 32px !important;
  width: auto !important;
  max-width: 166px !important;
  object-fit: contain;
  display: block !important;
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  header.site-header img.logo-official {
    height: 27px !important;
    max-width: 139px !important;
  }
}
@media (max-width: 370px) {
  header.site-header img.logo-official {
    height: 24px !important;
    max-width: 124px !important;
  }
}



.company-detail-cell { font-weight: 500; }
.company-related-name {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}
.company-related-meta { display: grid; gap: 2px; }
.company-related-meta > div { line-height: 1.8; }
.company-related-address-lines { margin-top: 2px; }
.company-related-address-lines > span { display: block; }
.company-detail-label {
  display: inline-block;
  min-width: 7.5em;
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
}
.company-detail-indent { margin-left: calc(7.5em + 8px); }
.company-detail-br { display: block; }
.company-external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,46,93,.28);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.company-external-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
@media (max-width: 640px) {
  .company-detail-label {
    display: block;
    min-width: 0;
    margin: 7px 0 0;
    font-size: 11px;
  }
  .company-detail-indent { margin-left: 0; }
  .company-detail-br { display: block; }
  .company-related-name { margin-bottom: 4px; }
}



.group-logo-img img.neosphere-group-logo-official {
  background: transparent !important;
  height: 36px;
  width: auto;
  max-width: 186px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .group-logo-img img.neosphere-group-logo-official { height: 30px; max-width: 155px; }
}



/* ===== Top menu responsive v2 =====
   Three explicit header modes prevent text/logo collisions:
   1) full desktop navigation, 2) compact drawer navigation, 3) mobile navigation. */
:root { --site-header-height: 72px; }

header.site-header {
  z-index: 200;
}
header.site-header .header-inner {
  width: 100%;
  max-width: var(--max);
  min-width: 0;
  flex-wrap: nowrap;
}
header.site-header .brand-lock {
  min-width: 0;
  flex: 0 1 auto;
}
header.site-header .logo,
header.site-header .group-brand,
header.site-header .header-cta,
header.site-header .lang-switch,
header.site-header .nav-toggle {
  flex-shrink: 0;
}
nav.global-nav {
  min-width: 0;
}
nav.global-nav ul {
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
nav.global-nav li { min-width: 0; }
nav.global-nav a {
  display: block;
  white-space: nowrap;
  line-height: 1.4;
}

/* Drawer always starts below the fixed header, so menu text never sits under logos. */
.mobile-nav {
  top: var(--site-header-height);
  bottom: 0;
  height: auto;
  padding: 14px 26px max(32px, env(safe-area-inset-bottom));
  z-index: 190;
}
.nav-overlay {
  top: var(--site-header-height);
  z-index: 180;
}
.mobile-nav a {
  overflow-wrap: normal;
  word-break: keep-all;
}

/* ---------- Full desktop menu ---------- */
@media (min-width: 1280px) {
  html { scroll-padding-top: calc(var(--site-header-height) + 12px); }
  section[id] { scroll-margin-top: calc(var(--site-header-height) + 12px); }
  header.site-header .header-inner {
    min-height: 72px;
    padding: 10px clamp(18px, 1.7vw, 32px);
    gap: clamp(10px, 1.0vw, 18px);
  }
  header.site-header img.logo-official {
    height: 29px !important;
    max-width: 151px !important;
  }
  .group-brand { --tg-logo-w: clamp(122px, 9.4vw, 150px); }
  .brand-divider { margin: 0 clamp(9px, .8vw, 14px); height: 23px; }

  nav.global-nav { display: block !important; flex: 1 1 auto; }
  nav.global-nav ul { gap: clamp(9px, .78vw, 16px); }
  nav.global-nav a { font-size: clamp(11px, .78vw, 12.5px); letter-spacing: .01em; }

  .nav-toggle { display: none !important; }
  .mobile-nav,
  .nav-overlay { display: none !important; }

  .header-cta { gap: 6px; }
  .header-cta .btn { padding: 9px 11px; font-size: 11.5px; }
  .header-cta .btn-ghost { padding: 8px 7px; font-size: 11px; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 6px 7px; font-size: 9.5px; }
}

/* Preserve the full navigation at normal 1366/1440-class desktop widths,
   but remove the least-important utility link before the nav can collide. */
@media (min-width: 1280px) and (max-width: 1399px) {
  .header-cta > .btn-ghost { display: none !important; }
  .group-brand { --tg-logo-w: 122px; }
  .brand-divider { margin-inline: 8px; }
  nav.global-nav ul { gap: 8px; }
  nav.global-nav a { font-size: 10.8px; }
  .header-cta .btn-primary { padding-inline: 10px; }
}

@media (min-width: 1400px) {
  .header-cta > .btn-ghost { display: inline-flex !important; }
}

/* ---------- Compact PC / tablet header ---------- */
@media (min-width: 641px) and (max-width: 1279px) {
  html { scroll-padding-top: calc(var(--site-header-height) + 12px); }
  section[id] { scroll-margin-top: calc(var(--site-header-height) + 12px); }
  header.site-header .header-inner {
    min-height: 72px;
    padding: 10px 20px;
    gap: 10px;
  }
  header.site-header img.logo-official {
    height: 29px !important;
    max-width: 151px !important;
  }
  .group-brand { --tg-logo-w: clamp(108px, 12vw, 140px); }
  .brand-divider { margin: 0 10px; height: 22px; }

  nav.global-nav { display: none !important; }
  .nav-toggle { display: flex !important; }
  .mobile-nav,
  .nav-overlay { display: block !important; }

  .header-cta { margin-left: auto; gap: 7px; }
  .header-cta > .btn-ghost { display: none !important; }
  .header-cta > .btn-primary { display: inline-flex !important; padding: 9px 12px; font-size: 11.5px; }
  .lang-btn { padding: 6px 8px; font-size: 10px; }
  .mobile-nav { width: min(390px, 46vw); }
}

@media (min-width: 641px) and (max-width: 820px) {
  .group-brand { --tg-logo-w: 102px; }
  .brand-divider { margin-inline: 8px; }
  .header-cta > .btn-primary { display: none !important; }
  .mobile-nav { width: min(390px, 68vw); }
}

/* ---------- Smartphone header ---------- */
@media (max-width: 640px) {
  :root { --site-header-height: 64px; }
  html { scroll-padding-top: calc(var(--site-header-height) + 54px); }
  section[id] { scroll-margin-top: calc(var(--site-header-height) + 54px); }
  header.site-header .header-inner {
    min-height: 64px;
    padding: 8px 14px;
    gap: 7px;
  }
  header.site-header .brand-lock {
    flex: 1 1 auto;
    overflow: hidden;
  }
  header.site-header img.logo-official {
    height: 24px !important;
    max-width: 124px !important;
  }
  .group-brand { --tg-logo-w: 88px; }
  .brand-divider { margin: 0 7px; height: 19px; }

  nav.global-nav { display: none !important; }
  .nav-toggle { display: flex !important; width: 38px; height: 38px; }
  .header-cta { margin-left: auto; gap: 5px; }
  .header-cta > .btn-primary,
  .header-cta > .btn-ghost,
  .header-cta > .btn-outline { display: none !important; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 6px 7px; font-size: 9.5px; }

  .mobile-nav,
  .nav-overlay { display: block !important; }
  .mobile-nav {
    width: min(88vw, 350px);
    padding: 10px 20px max(28px, env(safe-area-inset-bottom));
  }
  .mobile-nav a {
    padding: 13px 6px;
    font-size: 15px;
    line-height: 1.45;
    white-space: normal;
  }
  .mobile-section-nav {
    top: var(--site-header-height);
    z-index: 160;
  }
  .mobile-section-nav-inner { padding-top: 8px; padding-bottom: 8px; }

  section.hero.hero-video-section {
    margin-top: var(--site-header-height);
    height: calc(100svh - var(--site-header-height));
  }
}

/* On narrow phones, prioritise the NeoSphere mark and controls.
   The Taisei Group mark remains available elsewhere on the page/footer. */
@media (max-width: 430px) {
  .brand-divider,
  header.site-header .group-brand { display: none !important; }
  header.site-header .brand-lock { overflow: visible; }
  header.site-header img.logo-official {
    height: 25px !important;
    max-width: 130px !important;
  }
}

@media (max-width: 350px) {
  header.site-header .header-inner { padding-inline: 10px; gap: 5px; }
  header.site-header img.logo-official { max-width: 112px !important; height: 23px !important; }
  .lang-btn { padding-inline: 6px; font-size: 9px; }
  .nav-toggle { width: 36px; height: 36px; }
}



/* ===== Careers CTA priority =====
   Recruiting is a primary route in the header. On narrower layouts,
   Careers stays visible while Contact moves into the hamburger drawer. */
.header-cta .btn-careers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(232,163,61,.9);
  background: rgba(232,163,61,.10);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,46,93,.05);
}
.header-cta .btn-careers:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232,163,61,.22);
}
.header-cta .btn-careers:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.careers-label-short { display: none; }
.careers-arrow {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  transition: transform .2s var(--ease);
}
.btn-careers:hover .careers-arrow { transform: translateX(3px); }

/* Full desktop: both recruitment and contact are visible. */
@media (min-width: 1400px) {
  .header-cta > .btn-careers { display: inline-flex !important; }
  .header-cta > .btn-primary { display: inline-flex !important; }
}

/* 1280-class desktop: preserve the full top menu and prioritize recruitment. */
@media (min-width: 1280px) and (max-width: 1399px) {
  .header-cta > .btn-careers {
    display: inline-flex !important;
    padding: 8px 10px;
    font-size: 10.8px;
  }
  .header-cta > .btn-primary { display: none !important; }
}

/* Compact PC / tablet: recruitment remains outside the hamburger. */
@media (min-width: 641px) and (max-width: 1279px) {
  .header-cta > .btn-careers {
    display: inline-flex !important;
    padding: 9px 12px;
    font-size: 11px;
  }
  .header-cta > .btn-primary { display: none !important; }
}

/* Smartphone: use a short, unmistakable recruitment label. */
@media (max-width: 640px) {
  .header-cta > .btn-careers {
    display: inline-flex !important;
    min-height: 36px;
    padding: 7px 9px;
    gap: 5px;
    font-size: 10.5px;
    border-radius: 4px;
  }
  .careers-label-full { display: none; }
  .careers-label-short { display: inline; }
  .careers-arrow { font-size: 11px; }
}

/* Give the recruitment route enough room before controls compete for width. */
@media (max-width: 520px) {
  .brand-divider,
  header.site-header .group-brand { display: none !important; }
  header.site-header .brand-lock { overflow: visible; }
}

@media (max-width: 370px) {
  .header-cta > .btn-careers {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 10px;
  }
}

/* Recruitment is also visually distinct inside the drawer. */
.mobile-nav a.is-careers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(232,163,61,.72);
  border-radius: 4px;
  background: rgba(232,163,61,.10);
  color: var(--navy);
  font-weight: 700;
}
.mobile-nav a.is-careers:hover {
  background: rgba(232,163,61,.20);
  color: var(--navy-deep);
}
.mobile-nav-arrow { flex: 0 0 auto; }



/* ===== PEOPLE & CULTURE: supplied five-person collage ===== */
.people-culture-collage {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0;
  justify-self: start;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,46,93,.12);
}
.people-culture-collage-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1040 / 1330;
  object-fit: contain;
  background: #fff;
}
@media (max-width: 1024px) {
  .people-culture-collage {
    max-width: 660px;
    justify-self: center;
  }
}
@media (max-width: 640px) {
  .people-culture-collage {
    max-width: none;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,46,93,.10);
  }
}



/* Purpose content v2: long-form corporate statement */
#about .about-grid { align-items: start; }
#about .about-purpose-visual { position: sticky; top: 104px; }
#about .purpose-title {
  font-size: clamp(28px, 2.65vw, 38px);
  line-height: 1.58;
  letter-spacing: .015em;
  margin-bottom: 30px;
}
#about .about-body p {
  line-height: 2.05;
  margin-bottom: 22px;
}
#about .about-purpose-closing {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
}
@media (max-width: 1024px) {
  #about .about-purpose-visual { position: relative; top: auto; }
}
@media (max-width: 640px) {
  #about .purpose-title { font-size: 26px; line-height: 1.55; margin-bottom: 24px; }
  #about .about-body p { line-height: 1.95; margin-bottom: 18px; }
  #about .about-purpose-closing { margin-top: 24px; padding-top: 20px; font-size: 17px; }
}



/* OUR STRENGTHS: photo-led card layout */
#strengths .strengths-grid.strengths-grid-4 {
  align-items: stretch;
}
#strengths .strength-card,
#strengths .strengths-grid.strengths-grid-4 .strength-card {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  background: #fff;
  min-width: 0;
}
#strengths .strength-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1.44 / 1;
  min-height: 0;
  overflow: hidden;
  background: #eef1f5;
  border-bottom: 1px solid var(--line);
}
#strengths .strength-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
#strengths .strength-card:hover .strength-photo img {
  transform: scale(1.025);
}
#strengths .strength-card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 28px 28px 32px;
}
#strengths .strength-num {
  margin-bottom: 20px;
}
#strengths .strength-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
}
#strengths .strength-title-en {
  margin-bottom: 10px;
}
#strengths .strength-title {
  margin-bottom: 18px;
}
#strengths .strength-body {
  margin-top: auto;
}
@media (min-width: 1200px) {
  #strengths .strengths-grid.strengths-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
  #strengths .strength-card-content {
    padding: 26px 22px 30px;
  }
  #strengths .strength-title {
    font-size: 18px;
  }
  #strengths .strength-body {
    font-size: 13px;
    line-height: 1.9;
  }
}
@media (min-width: 901px) and (max-width: 1199px) {
  #strengths .strengths-grid.strengths-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
  #strengths .strength-photo { aspect-ratio: 16 / 9; }
}
@media (max-width: 900px) {
  #strengths .strength-card-content {
    padding: 24px 22px 28px;
  }
  #strengths .strength-photo {
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 640px) {
  #strengths .strength-card,
  #strengths .strengths-grid.strengths-grid-4 .strength-card {
    flex: 0 0 min(86vw, 330px) !important;
    width: min(86vw, 330px) !important;
  }
  #strengths .strength-photo {
    aspect-ratio: 16 / 10;
  }
  #strengths .strength-card-content {
    padding: 22px 20px 26px;
  }
  #strengths .strength-num { margin-bottom: 16px; }
  #strengths .strength-icon { width: 48px; height: 48px; margin-bottom: 18px; }
  #strengths .strength-title { font-size: 18px; }
}



#about .about-representative{display:flex;align-items:center;gap:16px;margin-top:22px;padding-top:4px;color:var(--navy);}
#about .about-representative-logo{width:58px;height:auto;display:block;flex:0 0 auto;object-fit:contain;}
#about .about-representative-text{font-size:16px;font-weight:600;letter-spacing:.06em;line-height:1.6;}
.group-taisei-logo{display:inline-flex;align-items:center;justify-content:center;line-height:0;text-decoration:none;}
.group-taisei-logo img{width:190px;max-width:100%;height:auto;display:block;}
.group-taisei-logo-ph{display:none;align-items:center;justify-content:center;min-width:170px;min-height:40px;font-size:15px;font-weight:700;letter-spacing:.08em;color:var(--navy);line-height:1.3;}
#access .access-route-selector{max-width:860px;margin:34px auto 22px;}
#access .access-route-selector-label{display:block;margin-bottom:9px;font-size:12px;font-weight:700;letter-spacing:.1em;color:var(--text-sub);}
#access .access-route-select-wrap{position:relative;}
#access .access-route-select{width:100%;appearance:none;-webkit-appearance:none;border:1px solid var(--line);border-radius:8px;background:#fff;color:var(--navy);padding:15px 48px 15px 16px;font:inherit;font-weight:600;cursor:pointer;box-shadow:0 5px 18px rgba(8,43,76,.05);}
#access .access-route-select:focus{outline:2px solid rgba(0,119,190,.22);outline-offset:2px;border-color:#5a91b8;}
#access .access-route-select-arrow{position:absolute;right:17px;top:50%;transform:translateY(-55%);pointer-events:none;color:var(--navy);font-size:20px;}
#access .access-routes.access-routes-selectable{display:block !important;overflow:visible !important;scroll-snap-type:none !important;padding-bottom:0 !important;}
#access .access-routes.access-routes-selectable > .route-card{width:100% !important;max-width:860px !important;margin:0 auto !important;flex:none !important;}
#access .route-card[hidden]{display:none !important;}
@media (max-width:640px){#about .about-representative{gap:12px;margin-top:18px;}#about .about-representative-logo{width:50px;}#about .about-representative-text{font-size:14px;}.group-taisei-logo img{width:150px;}#access .access-route-selector{margin:26px 0 18px;}}



/* EXECUTION: blueprint-review photo; keep the right-side NeoSphere helmet visible while preserving cover cropping. */
#strengths .strength-photo img.strength-photo-execution {
  object-position: right center;
}



/* ===== Management portraits: optical alignment and precise spacing =====
   - Supplied photographs are pre-normalized to a common 4:5 canvas.
   - Eye line, perceived head scale and top margin are optically balanced.
   - The horizontal interval between adjacent portraits is 16 px on desktop/tablet and 12 px on smartphones.
   - No generative retouching or facial deformation is applied. */
#management {
  --management-photo-gap-x: 16px;
  --management-photo-gap-y: 18px;
}

#management .management-roster-grid {
  align-items: start;
  column-gap: var(--management-photo-gap-x) !important;
  row-gap: var(--management-photo-gap-y) !important;
  padding-left: 0.5mm;
  padding-right: 0.5mm;
}

#management .management-role-body--noted .management-roster-grid {
  padding-left: 0.5mm;
  padding-right: 0.5mm;
}

#management .management-person {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(2.7em, auto) minmax(3.15em, auto);
  align-content: start;
  padding-left: 0;
  padding-right: 0;
}

#management .management-person-photo {
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
  background: #e9edf2;
}

#management .management-person-photo img.management-portrait-normalized {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  image-rendering: auto;
}

#management .management-person-name {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-wrap: balance;
}

#management .management-person-role {
  min-width: 0;
  text-wrap: balance;
}

@media (min-width: 761px) and (max-width: 1180px) {
  #management .management-roster-grid {
    column-gap: var(--management-photo-gap-x) !important;
  }
}

@media (max-width: 760px) {
  #management {
    --management-photo-gap-x: 12px;
  }

  #management .management-roster-grid {
    gap: var(--management-photo-gap-x) !important;
    padding-left: 0;
  }

  #management .management-role-body--noted .management-roster-grid {
    padding-left: 10px;
    padding-right: 10px;
  }

  #management .management-person {
    grid-template-rows: auto minmax(2.65em, auto) minmax(3.1em, auto);
  }

  #management .management-person-name {
    justify-content: flex-start;
  }
}
