:root {
  --bg: #f7f7f5;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #6b6b6b;
  --line: #deded8;
  --accent: #d83a36;
  --accent-soft: #f4d2cf;
  --accent-pale: #fff5f4;
  --shadow: 0 20px 70px rgba(30, 28, 24, .08);
  --max: 1280px;
  --font-heading: "A1 Mincho", "A1明朝", "A1 Mincho Std", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", system-ui, sans-serif;
  --font-latin: "Inter", "Noto Sans JP", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.site-shell { width: min(100%, 1680px); margin: 0 auto; background: var(--paper); border-inline: 1px solid var(--line); }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; padding: 0 clamp(28px, 5vw, 76px);
  background: rgba(255,255,255,.86); backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.04); }
.brand { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--font-latin); font-weight: 700; line-height: 1; }
.brand span { font-size: clamp(28px, 2.6vw, 42px); letter-spacing: 0; }
.brand small { font-size: 17px; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: clamp(28px, 3vw, 54px); font-family: var(--font-latin); font-size: 13px; font-weight: 600; }
.site-nav a { position: relative; padding: 10px 0; }
.site-nav a::after, .text-link::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 1px; background: currentColor; transform: scaleX(.32); transform-origin: left; transition: transform .25s ease; }
.site-nav a:hover::after, .text-link:hover::after { transform: scaleX(1); }
.nav-contact { color: var(--accent); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: none; padding: 11px 7px; }
.menu-button span { display: block; height: 2px; margin: 6px 0; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.menu-button.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.section-grid { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(420px, 1.2fr); gap: clamp(44px, 7vw, 120px); padding: clamp(72px, 8vw, 130px) clamp(28px, 5vw, 76px); border-bottom: 1px solid var(--line); }
.hero { min-height: calc(100vh - 84px); align-items: center; padding-top: clamp(40px, 6vw, 80px); }
.hero-copy { position: relative; }
.vertical { position: absolute; left: 0; bottom: -130px; writing-mode: vertical-rl; color: #9b9b95; letter-spacing: .08em; }
h1, h2, h3, p { margin: 0; }
h1 { font-family: var(--font-heading); font-weight: 400; font-size: clamp(38px, 4.6vw, 72px); line-height: 1.55; }
h2 { font-family: var(--font-heading); font-weight: 400; font-size: clamp(24px, 2.15vw, 36px); line-height: 1.38; margin-bottom: 15px; }
h3 { font-size: 15px; line-height: 1.5; }
.lead { margin-top: 32px; color: #2e2e2e; font-size: clamp(15px, 1.3vw, 18px); line-height: 2; }
.eyebrow { margin-bottom: 24px; font-family: var(--font-latin); color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.text-link { position: relative; display: inline-flex; gap: 22px; margin-top: 42px; padding-bottom: 13px; color: var(--accent); font-size: 14px; font-weight: 700; }
.hero-visual { max-width: min(620px, 47vw); justify-self: center; transform-style: preserve-3d; transition: transform .2s ease; }
.hero-visual img { width: 100%; filter: saturate(.92) contrast(1.04); mix-blend-mode: multiply; }
.stats { display: grid; grid-template-columns: repeat(6, 1fr); border-bottom: 1px solid var(--line); }
.stat-card { min-height: 150px; padding: 28px 16px 24px; border-right: 1px solid var(--line); display: grid; grid-template-columns: 58px minmax(0, 1fr); grid-template-rows: auto auto auto; column-gap: 13px; row-gap: 3px; align-content: center; }
.stat-card:last-child { border-right: 0; }
.stat-card strong { grid-column: 2; grid-row: 1; align-self: end; font-family: var(--font-latin); font-size: clamp(14px, 1vw, 17px); line-height: 1.05; white-space: nowrap; letter-spacing: 0; }
.stat-card small { grid-column: 2; grid-row: 2; align-self: start; color: var(--muted); font-size: 9px; line-height: 1.15; font-weight: 600; white-space: nowrap; }
.stat-card p { grid-column: 1 / -1; grid-row: 3; margin-top: 12px; color: #4f4f4b; font-size: 10px; line-height: 1.45; white-space: normal; text-align: center; min-height: 2.9em; }

.icon-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
  flex: 0 0 auto;
}
.icon-img-large {
  width: 74px;
  height: 74px;
}
.stat-card .icon-img { grid-column: 1; grid-row: 1 / 3; align-self: center; justify-self: center; width: 48px; height: 48px; }
.service-card .icon-img {
  width: 86px;
  height: 86px;
}
.industry .icon-img {
  width: 74px;
  height: 62px;
}

.line-icon { --s: 36px; display: inline-block; width: var(--s); height: var(--s); border: 1.5px solid #bdbdb6; border-radius: 4px; position: relative; }
.line-icon::before, .line-icon::after { content: ""; position: absolute; inset: 9px; border: 1.5px solid var(--accent); border-radius: 3px; }
.line-icon.repair::before { transform: rotate(45deg); border-width: 0 2px 2px 0; width: 14px; height: 14px; inset: 9px 0 0 11px; }
.line-icon.globe { border-radius: 50%; } .line-icon.globe::before { border-radius: 50%; inset: 7px; } .line-icon.globe::after { width: 1px; inset: 4px auto 4px 50%; background: var(--accent); border: 0; }
.line-icon.shield { clip-path: polygon(50% 0, 88% 18%, 78% 78%, 50% 100%, 22% 78%, 12% 18%); }
.line-icon.building::before { inset: 7px 11px; border-radius: 0; }
.line-icon.pse { transform: rotate(45deg); } .line-icon.pse::before { display: none; }
.line-icon.phone::before { inset: 5px 11px; border-radius: 5px; }
.line-icon.cloud::before { border-radius: 50%; inset: 12px 6px 8px; }
.line-icon.case::before { inset: 9px 7px; border-radius: 0; }
.line-icon.tools::before { transform: rotate(45deg); }
.line-icon.crane::before, .line-icon.car::before, .line-icon.truck::before, .line-icon.fork::before, .line-icon.tel::before, .line-icon.mail::before { inset: 10px; }
.business.section-grid { grid-template-columns: minmax(210px, .42fr) minmax(820px, 1.58fr); }
.service-list, .strength-list { display: grid; grid-template-columns: repeat(5, minmax(140px, 1fr)); align-items: stretch; }
.service-card, .strength-card { min-height: 200px; padding: 12px 20px 18px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.service-card span { margin-bottom: 26px; font-size: 14px; font-weight: 700; }
.service-card .line-icon { --s: 46px; }
.service-card p { font-size: 12px; color: var(--muted); }
.service-card small, .strength-card p, .section-heading p { color: #555550; font-size: 13px; line-height: 1.9; }
.strength { padding: clamp(72px, 8vw, 120px) clamp(28px, 5vw, 76px); border-bottom: 1px solid var(--line); }
.strength .section-heading { margin-bottom: 58px; }
.strength-card { align-items: center; text-align: center; }
.strength-card i { width: 58px; height: 58px; display: grid; place-items: center; color: var(--accent); border: 1px solid #bdbdb6; border-radius: 50%; font-style: normal; font-weight: 700; }
.badge-dot { background: radial-gradient(circle at 45% 45%, var(--accent) 0 28%, transparent 29%), conic-gradient(from 120deg, transparent 0 20%, var(--accent) 20% 72%, transparent 72%); border: 0 !important; }
.badge-pse { transform: rotate(45deg); border-radius: 0 !important; } .badge-pse::first-line { transform: rotate(-45deg); }
.feature, .corporate, .global, .company { align-items: center; }
.feature-image, .global-visual { position: relative; }
.feature-image img { width: 100%; border-radius: 3px; box-shadow: var(--shadow); }
.industry-list { display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; }
.industry { min-height: 120px; display: grid; place-items: center; gap: 12px; text-align: center; border-left: 1px solid var(--line); color: #34342f; font-size: 14px; }
.global-visual { min-height: 360px; display: grid; align-items: center; }
.global-visual > img { width: min(640px, 100%); justify-self: end; filter: saturate(.9) contrast(1.02); opacity: .9; mix-blend-mode: multiply; }
.annual-box { position: absolute; left: 0; top: 38%; z-index: 2; background: transparent; backdrop-filter: none; padding: 0; border: 0; }
.annual-box small { display: block; margin-bottom: 10px; color: var(--muted); }
.annual-box strong { font-family: var(--font-latin); color: var(--accent); font-size: clamp(42px, 5vw, 82px); font-style: italic; font-weight: 400; }
.annual-box em { margin-left: 8px; font-size: 18px; color: var(--ink); font-style: normal; }
.language-list { display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0 0; padding: 0; list-style: none; }
.language-list li { display: grid; justify-items: center; gap: 5px; padding: 0; border: 0; border-radius: 0; font-size: 11px; background: transparent; }
.flag-icon { width: 34px; height: 34px; object-fit: contain; display: block; }
.company.section-grid { grid-template-columns: minmax(150px, .28fr) minmax(840px, 1.72fr); align-items: start; }
.company-body { display: grid; grid-template-columns: 1.32fr .9fr; gap: 26px; align-items: stretch; }
table { width: 100%; border-collapse: collapse; font-size: 12px; line-height: 1.65; }
th, td { padding: 10px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { width: 108px; color: var(--muted); font-weight: 600; }
td a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.company-body img { width: 100%; height: 100%; min-height: 420px; aspect-ratio: auto; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow); }
.contact { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: center; padding: 60px clamp(28px, 5vw, 76px); border-bottom: 1px solid var(--line); }
.contact-info { display: flex; gap: 38px; flex-wrap: wrap; }
.contact-info a { display: grid; grid-template-columns: 48px 1fr; gap: 4px 14px; align-items: center; }
.contact-icon { grid-row: span 2; width: 44px; height: 44px; object-fit: contain; mix-blend-mode: multiply; }
.contact-info strong { font-size: 18px; }
.contact-info small { color: var(--muted); }
.contact-cta { padding: 28px; border: 1px solid var(--line); border-radius: 4px; }
.contact-cta p { margin-bottom: 18px; color: var(--muted); font-size: 13px; text-align: center; }
.button { display: flex; align-items: center; justify-content: center; gap: 18px; width: 100%; padding: 18px 24px; background: var(--accent); color: white; border-radius: 3px; font-weight: 700; text-align: center; transition: transform .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(216,58,54,.25); }
.site-footer { min-height: 110px; padding: 30px clamp(28px, 5vw, 76px); display: flex; align-items: center; gap: 40px; position: relative; }
.site-footer .brand span { font-size: 28px; }
.site-footer nav { font-family: var(--font-latin); display: flex; gap: 28px; color: var(--muted); font-size: 12px; }
.site-footer p { margin-left: auto; color: var(--muted); font-size: 12px; }
.to-top { position: absolute; right: clamp(28px, 5vw, 76px); top: -32px; width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 11px; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 1180px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat-card:nth-child(3n) { border-right: 0; }
  .stat-card:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .service-list, .strength-list { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
}

@media (max-width: 1040px) and (min-width: 761px) {
  .business.section-grid, .company.section-grid { grid-template-columns: 1fr; }
  .company-body { grid-template-columns: 1.05fr .95fr; }
}

@media (max-width: 760px) {
  .site-shell { border-inline: 0; }
  .site-header { min-height: 72px; padding: 0 24px; }
  .brand span { font-size: 27px; }
  .brand small { font-size: 13px; }
  .menu-button { display: block; }
  .site-nav { position: fixed; inset: 72px 0 auto 0; display: grid; gap: 0; padding: 10px 24px 24px; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .section-grid { grid-template-columns: 1fr; gap: 34px; padding: 52px 24px; }
  .business.section-grid, .company.section-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  h1 { font-size: 34px; line-height: 1.62; }
  h2 { font-size: 22px; }
  .lead { margin-top: 22px; font-size: 14px; }
  .vertical { position: static; writing-mode: vertical-rl; height: 86px; margin-top: 22px; }
  .hero-visual { max-width: min(440px, 100%); margin: -10px auto 0; }
  .stats { grid-template-columns: 1fr; }

  .stat-card, .stat-card:nth-child(n) {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    row-gap: 4px;
    align-content: center;
    min-height: 132px;
    padding: 24px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat-card .icon-img {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: center;
    width: 58px;
    height: 58px;
  }
  .stat-card strong {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 21px;
    line-height: 1.12;
    white-space: nowrap;
  }
  .stat-card small {
    grid-column: 2;
    grid-row: 2;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .stat-card p {
    grid-column: 2;
    grid-row: 3;
    margin-top: 7px;
    min-height: 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
    white-space: normal;
  }
  .business .service-card {
    gap: 10px;
    padding: 28px 0;
  }
  .business .service-card span {
    margin-bottom: 8px;
    font-size: 13px;
  }
  .business .service-card .icon-img {
    width: 92px;
    height: 92px;
  }
  .business .service-card h3 {
    font-size: 18px;
    line-height: 1.25;
  }
  .business .service-card p {
    font-size: 14px;
    line-height: 1.45;
  }
  .business .service-card small {
    font-size: 13px;
    line-height: 1.75;
  }

  .stat-card, .stat-card:nth-child(n) {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    min-height: 118px;
    padding: 22px 24px;
  }
  .stat-card .icon-img {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: center;
    width: 58px;
    height: 58px;
  }
  .stat-card strong { font-size: 21px; line-height: 1.12; }
  .stat-card small { font-size: 11px; line-height: 1.2; }
  .stat-card p {
    font-size: 13px;
    line-height: 1.3;
    margin-top: 7px;
    white-space: nowrap;
    text-align: left;
    min-height: 0;
  }
  .business .service-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: 18px;
    row-gap: 5px;
    align-items: center;
    padding: 24px 0;
  }
  .business .service-card span {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 12px;
    line-height: 1;
  }
  .business .service-card .icon-img {
    grid-column: 1;
    grid-row: 1 / 5;
    align-self: center;
    width: 76px;
    height: 76px;
  }
  .business .service-card h3 {
    grid-column: 2;
    grid-row: 2;
    font-size: 19px;
    line-height: 1.18;
  }
  .business .service-card p {
    grid-column: 2;
    grid-row: 3;
    font-size: 16px;
    line-height: 1.35;
    color: var(--ink);
  }
  .business .service-card small {
    grid-column: 2;
    grid-row: 4;
    font-size: 13px;
    line-height: 1.6;
  }
  .global .language-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 10px;
    justify-items: center;
  }
  .global .language-list li:nth-child(n+5) { transform: translateX(50%); }
  .flag-icon { width: 40px; height: 40px; }

  .mobile-accordion { position: relative; padding-top: 44px; }

  .mobile-accordion { padding-top: 34px; padding-bottom: 34px; }
  .mobile-accordion .section-heading { display: grid; grid-template-columns: 1fr 32px; align-items: center; padding-right: 0; }
  .mobile-accordion .section-heading::after { right: 24px; top: 50%; transform: translateY(-50%); line-height: 1; }
  .mobile-accordion .section-heading .eyebrow,
  .mobile-accordion .section-heading h2,
  .mobile-accordion .section-heading p,
  .mobile-accordion .section-heading .text-link { grid-column: 1; }
  .mobile-accordion .section-heading p:not(.eyebrow),
  .mobile-accordion .section-heading .text-link { display: none; }
  .business.section-grid, .strength, .corporate.section-grid, .global.section-grid, .company.section-grid { border-bottom: 1px solid var(--line); }
  .business.section-grid, .corporate.section-grid, .global.section-grid, .company.section-grid { gap: 0; }
  .business .section-heading h2,
  .strength .section-heading h2,
  .corporate .section-heading h2,
  .global .section-heading h2,
  .company .section-heading h2 { font-size: 22px; line-height: 1.55; }
  .business .service-list,
  .strength .strength-list,
  .corporate .industry-list,
  .global .global-visual,
  .company .company-body { margin-top: 28px; }
  .feature.dark-on-mobile { position: relative; min-height: 250px; padding: 40px 24px; background: #080807; overflow: hidden; }
  .feature.dark-on-mobile::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.32)), url("../img/rogic.webp") center / cover no-repeat; opacity: .98; }
  .feature.dark-on-mobile .section-heading { position: relative; z-index: 1; }
  .feature.dark-on-mobile .feature-image { display: none; }
  .feature.dark-on-mobile h2 { color: white; }
  .feature.dark-on-mobile .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.78); }
  .feature.dark-on-mobile .text-link { color: white; }
  .global .language-list { justify-content: flex-start; }
  .company-body img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }

  .mobile-accordion .section-heading { padding-right: 42px; cursor: pointer; }
  .mobile-accordion .section-heading::after { content: "+"; position: absolute; right: 24px; top: 48px; font-size: 28px; font-weight: 300; }
  .mobile-accordion.is-open .section-heading::after { content: "−"; }
  .mobile-accordion [data-accordion-panel] { display: none; }
  .mobile-accordion.is-open [data-accordion-panel] { display: grid; }
  .service-list, .strength-list, .industry-list { grid-template-columns: 1fr; }
  .service-card, .strength-card, .industry { border-left: 0; border-top: 1px solid var(--line); min-height: auto; padding: 24px 0; }
  .strength { padding: 44px 24px; }
  .strength .section-heading { margin-bottom: 0; }
  .dark-on-mobile { background: #080807; color: white; }
  .dark-on-mobile .section-heading p, .dark-on-mobile .text-link { color: white; }
  .dark-on-mobile .eyebrow { color: var(--accent); }
  .feature-image { margin-inline: -24px; }
  .feature-image img { border-radius: 0; }
  .annual-box { position: relative; left: auto; top: auto; margin-bottom: 14px; background: white; padding: 22px 24px; border: 1px solid var(--line); }
  .language-list { gap: 8px; }
  .company-body { grid-template-columns: 1fr; }
  th { width: 92px; }

  .stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stat-card, .stat-card:nth-child(n) { border-bottom: 0; }

  .stat-card p br { display: none; }
  .global .language-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
    margin-inline: auto;
    gap: 18px 26px;
  }
  .global .language-list li:nth-child(n+5) { transform: none; }
  .global .language-list li { width: 100%; }

  .global .language-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 390px;
    margin-inline: auto;
    gap: 16px 10px;
    justify-items: center;
  }
  .global .language-list li:nth-child(n+5) { transform: none; }
  .global .language-list li:nth-child(n+6) { transform: translateX(50%); }
  .corporate .industry-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 10px;
    align-items: start;
    justify-items: center;
  }
  .corporate .industry {
    border-top: 0;
    padding: 8px 0;
    min-height: auto;
    width: 100%;
  }
  .corporate .industry:nth-child(n+4) { transform: translateX(50%); }
  .corporate .industry .icon-img {
    width: 64px;
    height: 56px;
  }

  .corporate.mobile-accordion [data-accordion-panel] { display: none; }
  .corporate.mobile-accordion.is-open [data-accordion-panel] { display: grid; }
  .corporate .industry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
    justify-items: center;
  }
  .corporate .industry,
  .corporate .industry:nth-child(n+4) {
    transform: none;
  }
  .corporate .industry:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .corporate .industry .icon-img {
    width: 68px;
    height: 60px;
  }
  .vertical { display: none; }
  .contact { grid-template-columns: 1fr; padding: 44px 24px; }
  .contact-info { display: grid; gap: 20px; }
  .contact-cta { padding: 24px; }
  .site-footer { display: grid; gap: 18px; padding: 36px 24px 72px; }
  .site-footer nav { flex-wrap: wrap; }
  .site-footer p { margin-left: 0; }
  .to-top { right: 24px; top: auto; bottom: 24px; }
}

.section-heading .eyebrow, .eyebrow { color: var(--accent); }
.nowrap { white-space: nowrap; }

@media (min-width: 761px) {
  .corporate .section-heading p { max-width: 430px; }
  .global.section-grid { grid-template-columns: minmax(260px, .58fr) minmax(720px, 1.42fr); padding-top: 58px; padding-bottom: 52px; align-items: center; }
  .global .section-heading p { max-width: 380px; }
  .global .text-link { margin-top: 30px; }
  .global-visual { min-height: 300px; display: grid; grid-template-columns: 178px minmax(0, 1fr); grid-template-rows: 226px auto; column-gap: 8px; row-gap: 4px; align-items: center; align-content: center; }
  .global-visual > img { grid-column: 2; grid-row: 1; width: min(620px, 100%); align-self: center; justify-self: end; }
  .annual-box { grid-column: 1; grid-row: 1; position: static; align-self: center; justify-self: start; }
  .annual-box small { margin-bottom: 8px; }
  .annual-box strong { font-size: clamp(44px, 4.8vw, 70px); line-height: .95; }
  .annual-box em { font-size: 16px; }
  .annual-box p { margin-top: 8px; font-size: 12px; }
  .global .language-list { grid-column: 1 / -1; grid-row: 2; margin-top: 0; justify-content: flex-end; align-items: start; gap: 12px; }
}

.service-card h3 { font-size: 13px; line-height: 1.2; white-space: nowrap; letter-spacing: 0; }

.two-line-heading span { display: block; white-space: nowrap; }

.external-link::before {
  content: "";
  order: 2;
  width: 12px;
  height: 12px;
  margin-left: -12px;
  align-self: center;
  background: currentColor;
  opacity: .72;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M10 1h5v5h-2V4.41l-6.3 6.3-1.4-1.42 6.29-6.29H10V1ZM2 3h5v2H4v8h8v-3h2v5H2V3Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M10 1h5v5h-2V4.41l-6.3 6.3-1.4-1.42 6.29-6.29H10V1ZM2 3h5v2H4v8h8v-3h2v5H2V3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.external-link span { order: 3; }

.strength-card h3 { min-height: 3em; display: flex; align-items: center; justify-content: center; text-align: center; }
.strength-card p { min-height: 2.9em; display: flex; align-items: flex-start; justify-content: center; text-align: center; }
.strength-card .icon-img-large { margin-bottom: 2px; }

.sp-table-break { display: none; }
@media (max-width: 760px) { .sp-table-break { display: block; height: 2px; } }

.business .service-card > .icon-img { align-self: center; }
@media (min-width: 761px) {
  .business .service-card { align-items: center; text-align: center; }
  .business .service-card span, .business .service-card h3, .business .service-card p, .business .service-card small { align-self: center; text-align: center; }
}

.pc-table-space { display: inline; }
.table-external-link::after { content: "↗"; display: inline-block; margin-left: 4px; font-size: .86em; line-height: 1; }
@media (max-width: 760px) { .pc-table-space { display: none; } .table-external-link::after { margin-left: 3px; } }


.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.contact-modal.is-open { display: flex; }
.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 18, .58);
  backdrop-filter: blur(8px);
}
.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: clamp(28px, 4vw, 46px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
}
.contact-modal__dialog h2 { margin-bottom: 24px; }
.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #333;
  font-size: 13px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.contact-form__full,
.contact-form__note,
.contact-form .button { grid-column: 1 / -1; }
.contact-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
button.button { border: 0; cursor: pointer; font: inherit; }
body.modal-open { overflow: hidden; }
@media (max-width: 760px) {
  .contact-modal { padding: 16px; }
  .contact-modal__dialog { max-height: 88vh; padding: 28px 20px; }
  .contact-form { grid-template-columns: 1fr; }
}

.no-js .reveal { opacity: 1; transform: none; }


.contact-form__honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.contact-form__status { grid-column: 1 / -1; margin: 0; font-size: 13px; line-height: 1.7; text-align: center; }
.contact-form__status.is-success { color: #137a3a; }
.contact-form__status.is-error { color: var(--accent); }
.contact-form .button { justify-self: center; max-width: 360px; }
.contact-cta .button { margin-inline: auto; }

/* --- WCAG 2.2 accessibility --- */
html { scroll-padding-top: 96px; }
[id] { scroll-margin-top: 96px; }
.skip-link { position: absolute; left: 12px; top: -64px; z-index: 100; padding: 10px 18px; background: var(--ink); color: #fff; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; transition: top .2s ease; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
.contact-form label { position: relative; }
.contact-form .req { display: inline-block; margin-left: .5em; padding: 1px 8px; border-radius: 999px; background: var(--accent); color: #fff; font-size: .66em; font-weight: 700; vertical-align: middle; letter-spacing: .05em; }
@media (prefers-reduced-motion: reduce) { .skip-link { transition: none; } }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; margin: 6px 0 0; }
.footer-legal a { font-size: 12px; color: inherit; opacity: .72; text-decoration: none; }
.footer-legal a:hover, .footer-legal a:focus-visible { opacity: 1; text-decoration: underline; }

/* --- legal / privacy article page --- */
.legal-page { max-width: 860px; margin: 0 auto; padding: clamp(96px, 12vw, 140px) clamp(24px, 5vw, 40px) clamp(64px, 8vw, 96px); }
.legal-page h1 { font-size: clamp(26px, 4vw, 38px); margin: 0 0 8px; letter-spacing: .02em; }
.legal-page .legal-lead { color: var(--muted, #6b6b66); margin: 0 0 40px; line-height: 1.9; }
.legal-page h2 { font-size: clamp(17px, 2.4vw, 20px); margin: 40px 0 12px; padding-left: 14px; border-left: 4px solid var(--accent); }
.legal-page p, .legal-page li { line-height: 1.95; }
.legal-page ul, .legal-page ol { padding-left: 1.4em; margin: 8px 0; }
.legal-page dl { display: grid; grid-template-columns: max-content 1fr; gap: 6px 20px; margin: 8px 0; }
.legal-page dt { font-weight: 700; }
.legal-page .legal-meta { margin-top: 48px; color: var(--muted, #6b6b66); font-size: 13px; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; margin-top: 40px; text-decoration: none; color: var(--accent); font-weight: 700; }
@media (max-width: 560px) { .legal-page dl { grid-template-columns: 1fr; gap: 2px 0; } .legal-page dd { margin: 0 0 10px; } }
