:root {
  --bg: #f6f8fb;
  --panel: #ffffff;
  --panel-light: #f9fafc;
  --text: #172033;
  --muted: #5c6678;
  --line: #dde3ec;
  --red: #d7372f;
  --red-dark: #a92924;
  --blue: #17365d;
  --gold: #b67b2b;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 18px 48px rgba(23, 32, 51, 0.08);
  --shadow-strong: 0 24px 70px rgba(23, 32, 51, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "YuGothic",
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(23, 32, 51, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  color: var(--blue);
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #34445f;
  font-size: 11px;
  font-weight: 800;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--red);
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 42px;
  padding: 0 6px;
  color: #273956;
  border-radius: 0;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  opacity: 0;
  background: var(--red);
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  color: currentColor;
}

.nav-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-link:hover,
.nav-link.is-active,
.has-mega:hover > .nav-link,
.has-mega:focus-within > .nav-link {
  color: var(--red);
  background: #fff3f2;
}

.nav-link:hover::before,
.nav-link.is-active::before,
.has-mega:hover > .nav-link::before,
.has-mega:focus-within > .nav-link::before {
  opacity: 1;
  transform: scaleX(1);
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.mega-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 1px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.has-mega:hover .mega-trigger::after,
.has-mega:focus-within .mega-trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
  position: fixed;
  top: 67px;
  left: 0;
  z-index: 45;
  width: 100%;
  padding: 28px 0 34px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(221, 227, 236, 0.82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(23, 32, 51, 0.12);
  backdrop-filter: blur(18px);
  transform: translateY(-12px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.mega-inner-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mega-card {
  position: relative;
  min-height: 142px;
  padding: 22px 18px 20px;
  overflow: hidden;
  background:
    linear-gradient(150deg, #ffffff 0%, #f8fbff 100%),
    radial-gradient(circle at top right, rgba(215, 55, 47, 0.06), transparent 36%);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.05);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.mega-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(215, 55, 47, 0));
}

.mega-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 55, 47, 0.28);
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.1);
}

.mega-card span {
  display: inline-grid;
  min-width: 34px;
  height: 26px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--red);
  background: #fff3f2;
  border: 1px solid rgba(215, 55, 47, 0.16);
  font-size: 11px;
  font-weight: 900;
}

.mega-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.35;
}

.mega-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.nav-toggle {
  display: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.62s ease, visibility 0.62s ease;
}

.site-loader.is-hidden {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.loader-panel {
  display: grid;
  justify-items: center;
  gap: 30px;
  width: min(76vw, 360px);
  text-align: center;
}

.loader-logo {
  display: block;
  width: min(38vw, 160px);
  height: auto;
  object-fit: contain;
  animation: loaderLogoIn 1.4s ease-in-out both;
}

.loader-progress {
  display: grid;
  gap: 12px;
  width: min(100%, 280px);
}

.loader-percent {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.loader-line {
  position: relative;
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(23, 54, 93, 0.12);
}

.loader-line span {
  display: block;
  width: var(--loader-progress, 0%);
  height: 100%;
  background: var(--red);
  transition: width 0.12s linear;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 96px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 160px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(215, 55, 47, 0.22), transparent 28%),
    linear-gradient(135deg, #020306 0%, #080b10 56%, #10151d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6vw, 82px);
}

.page-title {
  display: grid;
  gap: 10px;
  line-height: 0.96;
}

.title-en {
  display: block;
  color: inherit;
  font-size: clamp(54px, 9vw, 132px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.title-ja {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.page-lead {
  max-width: 780px;
  color: #edf2f7;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("images/hero-asmodeus.png") center / cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 14, 24, 0.95) 0%, rgba(8, 14, 24, 0.72) 45%, rgba(8, 14, 24, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 14, 24, 0.05) 0%, rgba(8, 14, 24, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  color: var(--white);
}

.hero-content .eyebrow,
.hero-content h1,
.hero-lead,
.hero-actions,
.page-hero .eyebrow,
.page-hero h1,
.page-lead,
.business-hero-copy .eyebrow,
.business-hero-copy h1,
.business-hero-copy > p,
.business-hero-metrics {
  animation: heroFadeUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content h1,
.page-hero h1,
.business-hero-copy h1 {
  animation-delay: 0.08s;
}

.hero-lead,
.page-lead,
.business-hero-copy > p {
  animation-delay: 0.22s;
}

.hero-actions,
.business-hero-metrics {
  animation-delay: 0.36s;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #ff7068;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7.4vw, 96px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  color: #edf2f7;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(215, 55, 47, 0.18);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.btn-card {
  min-height: 40px;
  margin-top: 10px;
  padding: 8px 14px;
  color: var(--red);
  background: #fff5f4;
  border-color: rgba(215, 55, 47, 0.24);
  font-size: 14px;
}

.btn-card:hover {
  color: var(--white);
  background: var(--red);
}

.hero-status {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: #edf2f7;
  font-size: 13px;
}

.hero-status span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(12, 20, 34, 0.45);
}

.section,
.section-band {
  padding: 108px 0;
}

.section {
  background: var(--bg);
}

.section-band {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-copy h2,
.section-heading h2,
.philosophy h2 {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.philosophy p {
  color: var(--muted);
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.intro-text {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.company-table {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.company-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt {
  color: var(--red);
  font-weight: 800;
}

.company-table dd {
  margin: 0;
  color: var(--text);
}

.company-logo-panel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.06);
}

.company-logo-panel img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.company-logo-panel span {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0;
}

.company-table a {
  color: var(--blue);
  font-weight: 800;
}

.company-table a:hover {
  color: var(--red);
}

.company-business-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-business-list li {
  color: var(--text);
}

.company-business-list li::before {
  content: "・";
  color: var(--red);
  font-weight: 900;
}

.logistics-scope {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.logistics-scope div {
  position: relative;
  display: block;
  min-height: 160px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.98)),
    radial-gradient(circle at top right, rgba(215, 55, 47, 0.08), transparent 38%);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.07);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.logistics-scope div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(215, 55, 47, 0));
}

.logistics-scope div:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 55, 47, 0.28);
  box-shadow: var(--shadow-strong);
}

.scope-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid rgba(23, 54, 93, 0.12);
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.05);
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.scope-icon svg {
  width: 26px;
  height: 26px;
}

.logistics-scope div:hover .scope-icon,
.logistics-scope div.is-open .scope-icon {
  color: var(--red);
  background: #fff3f2;
  border-color: rgba(215, 55, 47, 0.24);
  transform: translateY(-3px);
}

.logistics-scope dt {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 10px;
  padding: 4px 10px;
  color: var(--red);
  background: #fff2f1;
  border: 1px solid rgba(215, 55, 47, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.logistics-scope dd {
  color: var(--muted);
  font-size: 15px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.content-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.content-panel h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 24px;
}

.content-panel p,
.content-list li {
  color: var(--muted);
}

.content-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.simple-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, #ffffff, #f8fbff),
    radial-gradient(circle at top right, rgba(182, 123, 43, 0.08), transparent 42%);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.simple-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), rgba(215, 55, 47, 0.18));
}

.simple-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 55, 47, 0.32);
  box-shadow: var(--shadow-strong);
}

.simple-card h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 22px;
}

.simple-card p {
  color: var(--muted);
  font-size: 15px;
}

.cta-band {
  padding: 70px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cta-inner h2 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: clamp(28px, 4vw, 46px);
}

.cta-inner p {
  margin: 0;
  color: var(--muted);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.number-card {
  position: relative;
  min-height: 170px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, #ffffff, #f4f7fb),
    radial-gradient(circle at top right, rgba(215, 55, 47, 0.08), transparent 40%);
  box-shadow: var(--shadow);
}

.number-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(215, 55, 47, 0));
}

.number-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 54, 93, 0.1);
  background: rgba(23, 54, 93, 0.035);
}

.number-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.number-card-text strong {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
}

.number-card p {
  margin: 0;
  color: var(--muted);
}

.platform-section {
  padding-top: 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.platform-grid span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  color: var(--blue);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.06);
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.platform-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 55, 47, 0.36);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.business-card {
  position: relative;
  min-height: 285px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #ffffff 0%, #f7faff 100%),
    radial-gradient(circle at top right, rgba(215, 55, 47, 0.08), transparent 40%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.business-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(215, 55, 47, 0));
}

.business-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  border-top: 2px solid rgba(215, 55, 47, 0.45);
  border-right: 2px solid rgba(215, 55, 47, 0.45);
}

.business-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(215, 55, 47, 0.45);
  background: var(--panel-light);
  box-shadow: var(--shadow-strong);
}

.business-card:hover .card-number,
.capability-card:hover .capability-number {
  transform: translateY(-2px);
}

.card-number {
  display: inline-grid;
  min-width: 42px;
  height: 34px;
  place-items: center;
  margin-bottom: 34px;
  padding: 0 10px;
  color: var(--red);
  background: #fff2f1;
  border: 1px solid rgba(215, 55, 47, 0.16);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.business-card p strong {
  color: var(--blue);
}

.business-card h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.35;
}

.business-card p {
  color: var(--muted);
  font-size: 15px;
}

.product-showcase {
  gap: 26px;
}

.product-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  background:
    linear-gradient(155deg, #ffffff 0%, #f6f9fd 58%, #eef3f9 100%),
    radial-gradient(circle at 78% 18%, rgba(215, 55, 47, 0.09), transparent 36%);
}

.product-card h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.8vw, 34px);
}

.product-card p {
  max-width: 92%;
}

.product-card .btn-card::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.22s ease;
}

.product-card:hover .btn-card::after {
  transform: translateX(6px);
}

.business-tabs {
  display: flex;
  gap: 10px;
  margin: -10px 0 28px;
  padding: 8px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
}

.business-tabs a {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--muted);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.business-tabs a:hover,
.business-tabs a.is-active {
  color: var(--red);
  background: #fff3f2;
  border-color: rgba(215, 55, 47, 0.18);
}

.product-detail-grid {
  align-items: stretch;
}

.product-detail-card {
  min-height: 420px;
  background:
    linear-gradient(145deg, #ffffff, #f8fbff),
    radial-gradient(circle at top right, rgba(23, 54, 93, 0.06), transparent 40%);
}

.dark-section {
  background: #eef3f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logistics-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.logistics-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, #ffffff, #f8fbff),
    radial-gradient(circle at top right, rgba(23, 54, 93, 0.08), transparent 44%);
  box-shadow: var(--shadow);
}

.logistics-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), rgba(215, 55, 47, 0.1));
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.partner-list span {
  position: relative;
  padding: 16px;
  color: var(--blue);
  background: linear-gradient(145deg, #ffffff, #f5f8fc);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.05);
  font-weight: 800;
}

.partner-list span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--red);
  vertical-align: middle;
}

.logistics-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.logistics-points div {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.04);
}

.logistics-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
}

.logistics-points p {
  margin: 0;
  color: var(--muted);
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  position: relative;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.flow-step {
  position: relative;
  min-height: 150px;
  padding: 28px 20px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.flow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 55, 47, 0.28);
  box-shadow: var(--shadow-strong);
}

.flow-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(215, 55, 47, 0.24);
  font-size: 14px;
  font-weight: 800;
}

.flow-step::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 62px;
  right: -28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(215, 55, 47, 0.45), rgba(215, 55, 47, 0));
}

.accordion-section .business-card,
.accordion-section .simple-card,
.accordion-section .logistics-points > div,
.accordion-section .logistics-scope > div {
  cursor: pointer;
}

.accordion-section .business-card::after,
.accordion-section .simple-card::after,
.accordion-section .logistics-points > div::after,
.accordion-section .logistics-scope > div::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--red);
  background: #fff3f2;
  border: 1px solid rgba(215, 55, 47, 0.18);
  font-weight: 900;
  transition: transform 0.28s ease, background 0.22s ease, color 0.22s ease;
}

.accordion-section .business-card.is-open::after,
.accordion-section .simple-card.is-open::after,
.accordion-section .logistics-points > div.is-open::after,
.accordion-section .logistics-scope > div.is-open::after {
  content: "−";
  color: var(--white);
  background: var(--red);
  transform: rotate(180deg);
}

.accordion-section .business-card p,
.accordion-section .simple-card p,
.accordion-section .logistics-points > div p,
.accordion-section .logistics-scope > div dd {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.36s ease, opacity 0.28s ease, margin 0.24s ease;
}

.accordion-section .business-card.is-open p,
.accordion-section .simple-card.is-open p,
.accordion-section .logistics-points > div.is-open p,
.accordion-section .logistics-scope > div.is-open dd {
  max-height: 420px;
  margin-top: 10px;
  opacity: 1;
}

.accordion-section .logistics-scope > div dd {
  display: block;
}

.flow-step:last-child::after {
  display: none;
}

.flow-step strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.philosophy {
  padding: 126px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.philosophy-content {
  max-width: 780px;
}

.philosophy-words {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.philosophy-words span {
  min-height: 88px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--line);
  background: #f7f9fc;
  font-size: 20px;
  font-weight: 800;
}

.philosophy-words span:first-child {
  grid-column: 1 / -1;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-direct p {
  margin: 0;
  color: var(--text);
}

.contact-direct p:first-of-type {
  color: var(--red);
  font-weight: 800;
}

.contact-direct p span {
  display: inline-block;
  min-width: 86px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.contact-direct a {
  color: var(--text);
  font-weight: 800;
}

.contact-direct a:hover {
  color: var(--red);
}

.contact-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-logo-row img {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.contact-logo-row strong {
  color: var(--blue);
  font-size: 16px;
}

.access-section {
  background: #ffffff;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: stretch;
}

.access-info,
.map-card {
  background:
    linear-gradient(150deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.access-info {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.access-info h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 26px;
}

.access-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.line-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--red);
  background: #fff3f2;
  border: 1px solid rgba(215, 55, 47, 0.16);
}

.line-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 14px;
}

.access-item p {
  margin: 0;
  color: var(--muted);
}

.access-item a {
  color: var(--text);
  font-weight: 800;
}

.access-item a:hover {
  color: var(--red);
}

.map-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.map-frame {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f2f6fb;
}

.map-link {
  width: fit-content;
  justify-self: end;
  align-self: flex-end;
}

.google-map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(215, 55, 47, 0.65);
  box-shadow: 0 0 0 3px rgba(215, 55, 47, 0.08);
}

input:disabled,
select:disabled,
textarea:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
}

.site-footer {
  padding: 72px 0 28px;
  color: rgba(255, 255, 255, 0.62);
  background: #020306;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.footer-inner strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}

.footer-brand {
  display: grid;
  gap: 10px;
  max-width: 300px;
}

.footer-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.footer-brand span,
.footer-brand a,
.footer-contact span,
.footer-contact a,
.footer-column a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.footer-address {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46) !important;
  font-size: 12px !important;
  line-height: 1.75 !important;
}

.footer-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.36) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
}

.footer-brand a,
.footer-contact a {
  width: fit-content;
}

.footer-brand-entry {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-entry h2 {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-brand-entry strong {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.footer-brand-entry span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-brand-entry .footer-brand-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 4px;
  color: #ff817a;
  font-size: 12px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 46px;
}

.footer-column,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.footer-brand a:hover,
.footer-contact a:hover,
.footer-column a:hover {
  color: var(--white);
  filter: brightness(1.16);
}

.footer-column a:hover {
  color: #ff817a;
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 18px 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 227, 236, 0.94);
  box-shadow: 0 18px 60px rgba(23, 32, 51, 0.16);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.cookie-banner a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner button {
  min-width: 84px;
  padding: 10px 18px;
  color: var(--white);
  font-weight: 800;
  background: var(--red);
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cookie-banner button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.solution-hero {
  padding-bottom: 118px;
}

.recruit-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(215, 55, 47, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(12, 20, 34, 0.96), rgba(23, 54, 93, 0.76)),
    url("images/hero-asmodeus.png") center / cover no-repeat;
}

.recruit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.recruit-visual {
  min-height: 330px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.recruit-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.recruit-visual rect,
.recruit-visual path,
.recruit-visual circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recruit-visual .recruit-line {
  stroke: rgba(215, 55, 47, 0.86);
  stroke-dasharray: 8 10;
}

.recruit-visual .recruit-dot {
  fill: var(--red);
  stroke: var(--white);
}

.recruit-data-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 55, 47, 0.08), transparent 42%),
    var(--panel);
}

.word-number {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.recruit-mission-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.recruit-card,
.value-card {
  min-height: 230px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.9)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(23, 32, 51, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.recruit-card:hover,
.value-card:hover {
  border-color: rgba(215, 55, 47, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.recruit-card h3,
.value-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 22px;
}

.recruit-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
}

.value-card .solution-icon {
  margin-bottom: 18px;
}

.workstyle-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.recruit-flow {
  grid-template-columns: repeat(4, 1fr);
}

.recruit-job-grid .business-card {
  min-height: 240px;
}

.card-number-word {
  min-width: 48px;
  width: auto;
  padding: 0 12px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.14em;
  background: #fff1ef;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 112px;
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.policy-summary h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 26px;
}

.policy-summary p {
  margin: 0;
  color: var(--muted);
}

.policy-list {
  display: grid;
  gap: 14px;
}

.policy-list article {
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.policy-list h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 20px;
}

.policy-list p {
  margin: 0;
  color: var(--muted);
}

.policy-list p + p {
  margin-top: 12px;
}

.policy-list a {
  color: var(--red);
  font-weight: 800;
}

.story-hero {
  min-height: 100svh;
  align-items: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(215, 55, 47, 0.22), transparent 30%),
    linear-gradient(135deg, #020306 0%, #080b10 58%, #10151d 100%);
}

.story-hero-inner {
  max-width: 1120px;
}

.story-page-label {
  display: grid;
  gap: 8px;
  margin: 0 0 46px;
}

.story-page-label span {
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(52px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.story-page-label small {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.story-headline {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 0 28px;
  color: var(--white);
  line-height: 0.95;
}

.story-headline span,
.story-headline strong {
  display: block;
}

.story-headline span {
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(42px, 7vw, 102px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.story-headline strong {
  color: var(--white);
  font-size: clamp(54px, 9vw, 136px);
  font-weight: 900;
  letter-spacing: 0.005em;
}

.story-section {
  position: relative;
  padding: clamp(86px, 12vw, 156px) 0;
  background: #ffffff;
}

.story-section + .story-section {
  border-top: 1px solid rgba(221, 227, 236, 0.62);
}

.story-narrow {
  max-width: 880px;
}

.story-label {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-section h2 {
  max-width: 900px;
  margin: 0 0 30px;
  color: #111722;
  font-size: clamp(38px, 5.4vw, 82px);
  line-height: 1.06;
  letter-spacing: 0;
}

.story-section p {
  max-width: 780px;
  margin: 0;
  color: #3b4658;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 2;
}

.story-section p + p {
  margin-top: 22px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.story-split-reverse .story-grid {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.9fr);
}

.story-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 20%, rgba(215, 55, 47, 0.11), transparent 30%),
    linear-gradient(145deg, #f9fbfd, #ffffff);
  border: 1px solid rgba(221, 227, 236, 0.8);
}

.story-visual svg {
  width: min(100%, 520px);
  height: auto;
}

.story-visual rect,
.story-visual path,
.story-visual circle {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-visual .story-red-line {
  stroke: var(--red);
  stroke-dasharray: 9 10;
}

.story-visual .story-red-dot {
  fill: var(--red);
  stroke: #ffffff;
}

.story-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 28%, rgba(215, 55, 47, 0.18), transparent 28%),
    linear-gradient(135deg, #020306, #0d121a 70%);
}

.story-dark h2,
.story-dark p {
  color: var(--white);
}

.story-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.story-manifesto {
  background: #f6f8fb;
}

.story-manifesto blockquote {
  margin: 0 0 34px;
  color: #111722;
  font-size: clamp(42px, 7vw, 104px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.story-manifesto blockquote span {
  display: block;
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.story-timeline div {
  min-height: 250px;
  padding: 34px 28px 0;
  border-right: 1px solid var(--line);
}

.story-timeline div:last-child {
  border-right: 0;
}

.story-timeline span {
  display: block;
  margin-bottom: 52px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.story-timeline strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 22px;
}

.story-timeline p {
  font-size: 15px;
  line-height: 1.8;
}

.story-final {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 251, 0.98)),
    radial-gradient(circle at 78% 28%, rgba(215, 55, 47, 0.12), transparent 32%);
}

.story-final .btn {
  margin-top: 34px;
}

.story-quote {
  padding: 44px;
  color: var(--white);
  background: #111722;
}

.story-quote span {
  display: block;
  color: var(--red);
  font-size: 74px;
  line-height: 0.8;
}

.story-quote p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.35;
}

.story-hero-lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.9;
}

.recruit-photo-story {
  padding: clamp(44px, 7vw, 86px) 0;
  background: #ffffff;
}

.recruit-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.recruit-scene {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  overflow: hidden;
  padding: 26px;
  color: var(--white);
  background: #111722;
}

.recruit-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.scene-office::before {
  background:
    linear-gradient(135deg, rgba(2, 3, 6, 0.2), rgba(2, 3, 6, 0.82)),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.38), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, #17365d, #0b111a);
}

.scene-logistics::before {
  background:
    linear-gradient(135deg, rgba(2, 3, 6, 0.18), rgba(2, 3, 6, 0.82)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 42px),
    repeating-linear-gradient(90deg, rgba(215, 55, 47, 0.22) 0 2px, transparent 2px 58px),
    linear-gradient(135deg, #202734, #0b111a);
}

.scene-meeting::before {
  background:
    linear-gradient(135deg, rgba(2, 3, 6, 0.16), rgba(2, 3, 6, 0.78)),
    radial-gradient(circle at 70% 20%, rgba(215, 55, 47, 0.42), transparent 22%),
    linear-gradient(135deg, #f3f6fa, #172033);
}

.scene-icon,
.benefit-card .scene-icon,
.work-style-board .scene-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--red);
  background: #fff1ef;
  border: 1px solid rgba(215, 55, 47, 0.18);
}

.scene-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recruit-scene .scene-icon,
.recruit-scene figcaption {
  position: relative;
  z-index: 1;
}

.recruit-scene figcaption {
  margin-left: 16px;
  font-size: 22px;
  font-weight: 900;
}

.recruit-work-visual text {
  fill: var(--blue);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.recruit-trait-grid,
.work-style-board,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.work-style-board {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-grid {
  grid-template-columns: repeat(5, 1fr);
}

.recruit-trait,
.work-style-board article,
.benefit-card {
  min-height: 240px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(23, 32, 51, 0.05);
}

.recruit-trait span {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.recruit-trait h3,
.benefit-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 21px;
}

.recruit-trait p,
.work-style-board p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.work-style-board article {
  display: grid;
  gap: 18px;
}

.work-style-board strong {
  color: var(--blue);
  font-size: 22px;
}

.career-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.career-path div {
  position: relative;
  min-height: 220px;
  padding: 34px 22px 0 0;
}

.career-path div::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 7px #fff1ef;
}

.career-path span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.15;
}

.career-path p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.position-list {
  display: grid;
  gap: 18px;
  margin-top: 56px;
}

.position-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 34px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.position-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.position-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 26px;
  margin: 0;
}

.position-card dt {
  margin-bottom: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.position-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.recruit-entry {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 28%, rgba(215, 55, 47, 0.22), transparent 30%),
    linear-gradient(135deg, #020306, #10151d 72%);
}

.recruit-entry h2,
.recruit-entry p {
  color: var(--white);
}

.recruit-entry p {
  color: rgba(255, 255, 255, 0.68);
}

.news-section {
  background: #ffffff;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.news-year {
  position: sticky;
  top: 116px;
  padding-top: 10px;
}

.news-year span {
  display: block;
  color: var(--blue);
  font-size: clamp(58px, 8vw, 108px);
  font-weight: 900;
  line-height: 0.9;
}

.news-year p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-list {
  display: grid;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.news-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px 130px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(23, 32, 51, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-card::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 42px;
  width: 13px;
  height: 13px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 7px #fff1ef;
}

.news-card:hover {
  border-color: rgba(215, 55, 47, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.news-card time {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.news-category {
  justify-self: start;
  padding: 7px 12px;
  color: var(--blue);
  background: #eef4fa;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.24;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.news-card a {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.history-story {
  background: #ffffff;
}

.history-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.history-intro h2 {
  margin: 0 0 24px;
  color: #111722;
  font-size: clamp(38px, 5.5vw, 82px);
  line-height: 1.06;
}

.history-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 2;
}

.history-map {
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 76% 18%, rgba(215, 55, 47, 0.12), transparent 28%),
    linear-gradient(145deg, #f9fbfd, #ffffff);
  border: 1px solid var(--line);
}

.history-map svg {
  width: min(100%, 420px);
}

.history-map path,
.history-map circle {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.history-map circle {
  fill: var(--red);
  stroke: #ffffff;
}

.history-timeline-section {
  padding: clamp(72px, 11vw, 140px) 0;
  background: #f6f8fb;
}

.history-timeline {
  display: grid;
  gap: 22px;
}

.history-item {
  display: grid;
  grid-template-columns: 120px 70px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.history-year {
  color: var(--red);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.history-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--blue);
  background: #eef4fa;
  border: 1px solid rgba(23, 54, 93, 0.12);
}

.history-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.history-item h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(24px, 3vw, 36px);
}

.history-item p {
  margin: 0 0 10px;
  color: var(--muted);
}

.history-item strong {
  display: inline-block;
  margin: 6px 0 14px;
  color: #111722;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.growth-section {
  background: #ffffff;
}

.growth-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}

.growth-number {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 34px;
  color: var(--red);
}

.growth-number span {
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.88;
}

.growth-number small {
  color: var(--blue);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
}

.growth-chart {
  padding: 34px;
  background: linear-gradient(145deg, #f9fbfd, #ffffff);
  border: 1px solid var(--line);
}

.growth-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.growth-chart .chart-grid {
  fill: none;
  stroke: rgba(23, 54, 93, 0.12);
  stroke-width: 1;
}

.growth-chart .chart-line {
  fill: none;
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.growth-chart circle {
  fill: var(--blue);
  stroke: #ffffff;
  stroke-width: 4;
}

.growth-chart text {
  fill: var(--blue);
  font-size: 18px;
  font-weight: 900;
  text-anchor: middle;
}

.history-final {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(215, 55, 47, 0.22), transparent 30%),
    linear-gradient(135deg, #020306, #10151d 72%);
}

.history-final h2,
.history-final p {
  color: var(--white);
}

.history-final p {
  color: rgba(255, 255, 255, 0.7);
}

.solution-hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 6.2vw, 88px);
}

.solution-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.solution-overview {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.solution-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solution-stat {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(150deg, #ffffff 0%, #f7faff 64%, #eef3f9 100%),
    radial-gradient(circle at 82% 16%, rgba(215, 55, 47, 0.08), transparent 34%);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(23, 32, 51, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solution-stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(215, 55, 47, 0));
}

.solution-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 55, 47, 0.26);
  box-shadow: var(--shadow-strong);
}

.solution-stat strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
}

.solution-stat span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 5px 10px;
  color: var(--red);
  background: #fff3f2;
  border: 1px solid rgba(215, 55, 47, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.solution-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-stat-wide strong {
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.18;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.capability-card {
  position: relative;
  min-height: 100%;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(150deg, #ffffff 0%, #f8fbff 68%, #f1f5fa 100%),
    radial-gradient(circle at 88% 12%, rgba(182, 123, 43, 0.08), transparent 32%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(215, 55, 47, 0));
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 55, 47, 0.28);
  box-shadow: var(--shadow-strong);
}

.capability-number {
  display: inline-grid;
  min-width: 44px;
  height: 34px;
  place-items: center;
  margin-bottom: 28px;
  padding: 0 10px;
  color: var(--red);
  background: #fff3f2;
  border: 1px solid rgba(215, 55, 47, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.capability-card h3 {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.25;
}

.capability-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.capability-card dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(221, 227, 236, 0.82);
}

.capability-card dt {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.capability-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.operation-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.operation-step {
  position: relative;
  min-height: 250px;
  padding: 30px 22px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.operation-step:last-child {
  border-right: 0;
}

.operation-step::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -9px;
  z-index: 1;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: rotate(45deg);
}

.operation-step:last-child::after {
  display: none;
}

.operation-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.operation-step strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 18px;
}

.operation-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.network-map {
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(150deg, #ffffff, #f7faff),
    radial-gradient(circle at 80% 0%, rgba(215, 55, 47, 0.06), transparent 32%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.network-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.network-node {
  fill: #ffffff;
  stroke: #dce3ed;
  stroke-width: 2;
  filter: drop-shadow(0 12px 18px rgba(23, 32, 51, 0.08));
}

.network-core {
  fill: #17365d;
  stroke: #17365d;
  stroke-width: 2;
  filter: drop-shadow(0 16px 24px rgba(23, 54, 93, 0.2));
}

.network-line {
  fill: none;
  stroke: #d7372f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.network-title {
  fill: var(--blue);
  font-size: 24px;
  font-weight: 800;
}

.network-label {
  fill: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.network-title-white,
.network-label-white {
  fill: #ffffff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(150deg, #ffffff 0%, #f8fbff 72%, #f1f5fa 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), rgba(215, 55, 47, 0.12));
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 55, 47, 0.26);
  box-shadow: var(--shadow-strong);
}

.case-card span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 5px 10px;
  color: var(--red);
  background: #fff3f2;
  border: 1px solid rgba(215, 55, 47, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.case-card h3 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.34;
}

.case-card p {
  color: var(--muted);
  font-size: 14px;
}

.case-card strong {
  color: var(--blue);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.05);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item[open] {
  border-color: rgba(215, 55, 47, 0.24);
  box-shadow: var(--shadow);
}

.faq-item summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  color: var(--blue);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--red);
  background: #fff3f2;
  border: 1px solid rgba(215, 55, 47, 0.16);
  transform: translateY(-50%);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--white);
  background: var(--red);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.solution-cta {
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fbff 64%, #eef3f9 100%);
}

.business-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 24%, rgba(215, 55, 47, 0.24), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #020306 0%, #080b10 56%, #10151d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  min-height: 520px;
}

.business-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(54px, 9vw, 132px);
  line-height: 1.05;
}

.business-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 500;
}

.business-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.business-hero-metrics div {
  min-width: 118px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.business-hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.business-hero-metrics span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.business-visual {
  position: relative;
  min-height: 480px;
}

.visual-globe {
  position: absolute;
  top: 22px;
  right: 54px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.98), rgba(233, 241, 249, 0.84) 54%, rgba(207, 222, 237, 0.72)),
    linear-gradient(135deg, rgba(23, 54, 93, 0.15), rgba(215, 55, 47, 0.08));
  border: 1px solid rgba(23, 54, 93, 0.12);
  box-shadow: 0 30px 80px rgba(23, 32, 51, 0.12);
}

.visual-globe::before,
.visual-globe::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(23, 54, 93, 0.13);
}

.visual-globe::before {
  inset: 26px 70px;
}

.visual-globe::after {
  inset: 70px 26px;
}

.orbit {
  position: absolute;
  inset: 24px -30px;
  border: 1px solid rgba(215, 55, 47, 0.18);
  border-radius: 50%;
  transform: rotate(18deg);
}

.orbit-two {
  inset: 56px -18px;
  transform: rotate(-24deg);
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(215, 55, 47, 0.12);
}

.map-dot-jp {
  top: 132px;
  right: 78px;
}

.map-dot-cn {
  top: 126px;
  left: 92px;
}

.visual-laptop {
  position: absolute;
  left: 44px;
  top: 110px;
  width: 250px;
  height: 158px;
  background: linear-gradient(145deg, #17365d, #0d1a2d);
  border: 10px solid #233a5a;
  box-shadow: 0 26px 70px rgba(23, 32, 51, 0.22);
}

.visual-laptop::after {
  content: "";
  position: absolute;
  left: -34px;
  right: -34px;
  bottom: -26px;
  height: 24px;
  background: linear-gradient(180deg, #e7edf5, #cbd7e5);
  transform: perspective(180px) rotateX(36deg);
}

.screen-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 30px auto 0;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.visual-box {
  position: absolute;
  width: 74px;
  height: 58px;
  background: linear-gradient(145deg, #d8a35e, #b77a36);
  box-shadow: 0 18px 38px rgba(23, 32, 51, 0.14);
}

.visual-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0.35) 55%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}

.box-one {
  top: 212px;
  right: 274px;
}

.box-two {
  top: 260px;
  right: 212px;
  transform: scale(0.86);
}

.visual-truck {
  position: absolute;
  left: 190px;
  bottom: 70px;
  width: 228px;
  height: 82px;
  background: #ffffff;
  border: 1px solid rgba(23, 54, 93, 0.12);
  box-shadow: 0 24px 60px rgba(23, 32, 51, 0.14);
}

.visual-truck::before {
  content: "";
  position: absolute;
  right: -64px;
  bottom: 0;
  width: 72px;
  height: 62px;
  background: #e9eff6;
  clip-path: polygon(0 22%, 68% 22%, 100% 54%, 100% 100%, 0 100%);
}

.visual-truck::after,
.visual-truck span::before {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 30px;
  height: 30px;
  background: #17365d;
  border: 6px solid #eef4fa;
  border-radius: 50%;
}

.visual-truck::after {
  left: 34px;
}

.visual-truck span::before {
  right: -42px;
}

.visual-ship {
  position: absolute;
  right: 38px;
  bottom: 48px;
  width: 250px;
  height: 74px;
  background: linear-gradient(180deg, #2c4a70, #17365d);
  clip-path: polygon(0 22%, 78% 22%, 100% 0, 88% 76%, 13% 100%);
  box-shadow: 0 24px 60px rgba(23, 32, 51, 0.18);
}

.visual-ship::before {
  content: "";
  position: absolute;
  left: 44px;
  top: -28px;
  width: 132px;
  height: 40px;
  background:
    linear-gradient(90deg, var(--red) 0 30%, #c9d4e2 30% 64%, #d8a35e 64%);
}

.visual-card-red {
  position: absolute;
  right: 260px;
  bottom: 128px;
  padding: 13px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 42px rgba(215, 55, 47, 0.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.business-card-strip {
  padding: 0 0 86px;
  background: linear-gradient(180deg, #eef4fa 0%, #ffffff 100%);
}

.business-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.08);
}

.business-icon-card {
  position: relative;
  min-height: 255px;
  padding: 34px 22px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.business-icon-card:last-child {
  border-right: 0;
}

.business-icon-card:hover {
  z-index: 1;
  transform: translateY(-6px);
  background: linear-gradient(180deg, #ffffff, #f5f9fd);
  box-shadow: 0 22px 48px rgba(23, 32, 51, 0.12);
}

.business-card-no {
  position: absolute;
  top: 24px;
  left: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.business-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 18px auto 28px;
  color: var(--blue);
  border: 1px solid rgba(23, 54, 93, 0.22);
  background:
    linear-gradient(145deg, #ffffff, #f5f8fc),
    radial-gradient(circle at top right, rgba(215, 55, 47, 0.08), transparent 38%);
  font-weight: 900;
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.solution-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-icon-card:hover .business-icon {
  color: var(--red);
  background: #fff3f2;
  border-color: rgba(215, 55, 47, 0.28);
  transform: translateY(-5px);
}

.business-icon-card h2 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
}

.business-icon-card p {
  min-height: 52px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.business-icon-card a {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.business-icon-card a::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.22s ease;
}

.business-icon-card:hover a::after {
  transform: translateX(5px);
}

.section-heading-center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.why-panel-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 54, 93, 0.06), transparent 38%),
    #ffffff;
}

.why-metric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(23, 32, 51, 0.07);
}

.why-metric-card {
  min-height: 208px;
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.why-metric-card:last-child {
  border-right: 0;
}

.why-metric-card > span:not(.metric-icon) {
  display: inline-grid;
  min-width: 46px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--red);
  border: 1px solid rgba(215, 55, 47, 0.16);
  background: #fff3f2;
  font-size: 12px;
  font-weight: 900;
}

.metric-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--blue);
  background: #f7faff;
  border: 1px solid rgba(23, 54, 93, 0.12);
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.metric-icon svg {
  width: 27px;
  height: 27px;
}

.why-metric-card:hover .metric-icon {
  color: var(--red);
  background: #fff3f2;
  border-color: rgba(215, 55, 47, 0.24);
  transform: translateY(-4px);
}

.why-metric-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.1;
}

.why-metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.platform-matrix-section {
  background: #f4f7fb;
}

.platform-matrix {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(23, 32, 51, 0.07);
}

.platform-matrix span {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 14px 10px;
  color: var(--blue);
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.platform-logo-card {
  gap: 7px;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.platform-logo-card:hover {
  z-index: 1;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.1);
  transform: translateY(-4px);
}

.platform-logo-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
}

.platform-logo-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.platform-rakuten strong { color: #bf0000; }
.platform-qoo10 strong { color: #e6002d; }
.platform-yahoo strong { color: #d60000; }
.platform-mercari strong { color: #e5332a; }
.platform-amazon strong { color: #111827; }
.platform-tiktok strong { color: #111827; }
.platform-shein strong { color: #111827; letter-spacing: 0.08em; }
.platform-shopify strong { color: #5f8f2f; }
.platform-other strong { color: var(--blue); font-size: 14px; }

.platform-matrix span:last-child {
  border-right: 0;
}

.capability-detail-section {
  background: #ffffff;
}

.compact-capability-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compact-capability-grid .capability-card {
  padding: 28px;
}

.compact-capability-grid .capability-card h3 {
  font-size: 24px;
}

.compact-capability-grid .capability-card dl div {
  grid-template-columns: 1fr;
  gap: 5px;
}

.flow-diagram-section {
  background: #f4f7fb;
}

.visual-flow {
  box-shadow: 0 20px 58px rgba(23, 32, 51, 0.07);
}

.visual-flow .operation-step {
  min-height: 210px;
  text-align: center;
}

.visual-flow .operation-step span {
  margin-right: auto;
  margin-left: auto;
}

.flow-icon {
  display: grid !important;
  width: 58px !important;
  height: 58px !important;
  place-items: center !important;
  margin: 0 auto 20px !important;
  color: var(--blue) !important;
  background: #ffffff !important;
  border: 1px solid rgba(23, 54, 93, 0.14) !important;
  border-radius: 0 !important;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.06);
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.flow-icon svg {
  width: 29px;
  height: 29px;
}

.operation-step:hover .flow-icon {
  color: var(--red) !important;
  background: #fff3f2 !important;
  border-color: rgba(215, 55, 47, 0.24) !important;
  transform: translateY(-4px);
}

.logistics-visual-section {
  background:
    radial-gradient(circle at 22% 38%, rgba(23, 54, 93, 0.08), transparent 28%),
    #ffffff;
}

.logistics-visual-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.world-route,
.logistics-chain {
  min-height: 360px;
  padding: 28px;
  background: linear-gradient(150deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.world-route svg {
  display: block;
  width: 100%;
  height: auto;
}

.route-continent {
  fill: none;
  stroke: rgba(23, 54, 93, 0.12);
  stroke-width: 38;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-map-line {
  fill: none;
  stroke: rgba(23, 54, 93, 0.14);
  stroke-width: 5;
  stroke-linecap: round;
}

.route-map-dash {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-dasharray: 6 8;
}

.route-dot {
  fill: var(--red);
  stroke: #ffffff;
  stroke-width: 5;
}

.world-route text {
  fill: var(--blue);
  font-size: 16px;
  font-weight: 900;
}

.logistics-chain {
  display: grid;
  gap: 24px;
  align-content: center;
}

.chain-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
}

.chain-row span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.chain-row i {
  display: none;
}

.logistics-chain ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px;
  list-style: none;
  background: #fff6f5;
  border: 1px solid rgba(215, 55, 47, 0.13);
}

.logistics-chain li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.logistics-chain li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
}

.visual-case-grid .case-card {
  min-height: 330px;
}

.strengths-section {
  background: #ffffff;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.strength-card {
  min-height: 180px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(23, 32, 51, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.strength-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--red);
  background: #fff3f2;
  border: 1px solid rgba(215, 55, 47, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.strength-card h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 17px;
}

.strength-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.business-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  background: rgba(5, 7, 11, 0.24);
  backdrop-filter: blur(6px);
  transition: opacity 0.24s ease;
}

.business-guide-modal.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.business-guide-dialog {
  position: relative;
  width: min(100%, 460px);
  padding: 34px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 227, 236, 0.86);
  box-shadow: 0 30px 90px rgba(23, 32, 51, 0.22);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.24s ease;
}

.business-guide-modal.is-visible .business-guide-dialog {
  transform: translateY(0) scale(1);
}

.business-guide-dialog h2 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.business-guide-dialog p:not(.eyebrow) {
  color: var(--muted);
}

.business-guide-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  color: var(--blue);
  background: #f4f7fb;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.brand-link-modal {
  position: fixed;
  inset: 0;
  z-index: 86;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.brand-link-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.brand-link-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 240px) 1fr;
  gap: 34px;
  align-items: center;
  width: min(720px, calc(100vw - 48px));
  padding: 36px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.98));
  border: 1px solid rgba(216, 224, 234, 0.92);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(12, 24, 48, 0.18);
  pointer-events: auto;
  transform: translateY(18px) scale(0.985);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.brand-link-modal.is-visible .brand-link-dialog {
  transform: translateY(0) scale(1);
}

.brand-link-dialog::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), rgba(197, 34, 31, 0.16));
  border-radius: 18px 0 0 18px;
}

.brand-link-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  color: var(--blue);
  background: #f4f7fb;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.brand-link-close:hover {
  color: var(--red);
  background: #fff3f2;
  transform: rotate(90deg);
}

.brand-link-logo {
  display: grid;
  place-items: center;
  min-height: 168px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 224, 234, 0.72);
  border-radius: 14px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.brand-link-logo:hover {
  border-color: rgba(197, 34, 31, 0.28);
  transform: translateY(-3px);
}

.brand-link-logo img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 92px;
  object-fit: contain;
}

.brand-link-content {
  display: grid;
  gap: 12px;
  padding-right: 10px;
}

.brand-link-name {
  display: grid;
  width: fit-content;
  color: var(--blue);
}

.brand-link-name span {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand-link-name small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.brand-link-name:hover {
  color: var(--red);
}

.brand-link-type {
  width: fit-content;
  margin: 2px 0 0;
  padding: 6px 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  background: rgba(197, 34, 31, 0.08);
  border-radius: 999px;
}

.brand-link-content p:not(.eyebrow):not(.brand-link-type) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.brand-link-button {
  width: fit-content;
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1), transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.09);
  }
}

@keyframes pageHeroZoom {
  from {
    background-size: auto, 104%;
    background-position: center, center;
  }
  to {
    background-size: auto, 110%;
    background-position: center, center;
  }
}

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

@keyframes loaderLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  45% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg,
  .page-hero,
  .loader-logo {
    animation: none !important;
  }

  .business-card:hover,
  .business-icon-card:hover,
  .mega-card:hover,
  .simple-card:hover,
  .flow-step:hover,
  .operation-step:hover .flow-icon {
    transform: none !important;
  }

  .brand-link-dialog,
  .brand-link-logo,
  .brand-link-close {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    color: var(--blue);
    background: transparent;
    border: 1px solid var(--line);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
    color: var(--blue);
  }

  .nav-item {
    display: block;
    width: 100%;
  }

  .nav-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border-radius: 0;
  }

  .nav-link::before {
    left: 0;
    right: auto;
    top: 10px;
    bottom: 10px;
    width: 3px;
    height: auto;
    transform: scaleY(0.4);
  }

  .nav-link:hover::before,
  .nav-link.is-active::before,
  .has-mega:hover > .nav-link::before,
  .has-mega:focus-within > .nav-link::before {
    transform: scaleY(1);
  }

  .mega-trigger {
    display: flex;
    min-height: 46px;
  }

  .mega-trigger::after {
    display: block;
    margin-left: auto;
  }

  .mega-menu {
    display: none;
  }

  .nav-item.is-open > .mega-trigger {
    color: var(--red);
    background: #fff3f2;
  }

  .nav-item.is-open > .mega-trigger::after {
    transform: rotate(225deg) translateY(-1px);
  }

  .nav-item.is-open > .mega-menu {
    position: static;
    display: block;
    width: 100%;
    padding: 0 0 8px;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .nav-item.is-open .mega-inner,
  .nav-item.is-open .mega-inner-five {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    padding: 4px 0 8px 34px;
  }

  .nav-item.is-open .mega-card {
    min-height: auto;
    padding: 12px 14px;
    border-color: rgba(221, 227, 236, 0.82);
    box-shadow: none;
  }

  .nav-item.is-open .mega-card span {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .nav-item.is-open .mega-card strong {
    font-size: 13px;
  }

  .nav-item.is-open .mega-card p {
    font-size: 11px;
  }

  .about-grid,
  .intro-grid,
  .content-grid,
  .logistics-grid,
  .philosophy-grid,
  .contact-grid,
  .access-grid,
  .business-hero-grid,
  .logistics-visual-grid,
  .recruit-hero-grid,
  .workstyle-grid,
  .policy-layout,
  .story-grid,
  .story-split-reverse .story-grid,
  .recruit-photo-grid,
  .position-card,
  .news-layout,
  .history-story-grid,
  .growth-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .business-grid,
  .numbers-grid,
  .platform-grid,
  .simple-grid,
  .logistics-scope,
  .solution-stat-grid,
  .case-grid,
  .business-icon-grid,
  .why-metric-grid,
  .platform-matrix,
  .compact-capability-grid,
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-icon-card:nth-child(2n),
  .why-metric-card:nth-child(2n),
  .platform-matrix span:nth-child(2n) {
    border-right: 0;
  }

  .business-visual {
    min-height: 430px;
  }

  .platform-matrix span:last-child {
    grid-column: 1 / -1;
  }

  .capability-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .operation-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .operation-step {
    border-bottom: 1px solid var(--line);
  }

  .operation-step:nth-child(3n) {
    border-right: 0;
  }

  .operation-step::after {
    display: none;
  }

  .logistics-points {
    grid-template-columns: 1fr;
  }

  .flow-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-step {
    border-bottom: 1px solid var(--line);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .recruit-mission-grid,
  .value-grid,
  .recruit-flow,
  .story-timeline {
    grid-template-columns: 1fr;
  }

  .recruit-trait-grid,
  .work-style-board,
  .benefit-grid,
  .career-path,
  .position-card dl {
    grid-template-columns: 1fr;
  }

  .career-path {
    border-top: 0;
    border-left: 1px solid var(--line);
    margin-left: 8px;
  }

  .career-path div {
    min-height: auto;
    padding: 0 0 34px 28px;
  }

  .career-path div::before {
    top: 4px;
    left: -7px;
  }

  .news-year,
  .policy-summary {
    position: static;
  }

  .news-list {
    padding-left: 20px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .news-card a {
    justify-self: start;
  }

  .history-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .growth-chart {
    padding: 18px;
  }

  .story-timeline div {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-timeline div:last-child {
    border-bottom: 0;
  }

  .story-timeline span {
    margin-bottom: 18px;
  }

  .policy-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 14px;
  }

  .loader-panel {
    gap: 24px;
    width: min(82vw, 300px);
  }

  .loader-logo {
    width: min(46vw, 132px);
  }

  .brand-text {
    font-size: 14px;
  }

  .hero {
    min-height: 94svh;
    padding-top: 126px;
  }

  .page-hero {
    min-height: 430px;
    padding: 122px 0 66px;
  }

  .title-en {
    font-size: clamp(40px, 13vw, 58px);
  }

  .title-ja {
    font-size: 15px;
  }

  .recruit-visual {
    min-height: auto;
    padding: 18px;
  }

  .story-hero {
    min-height: 92svh;
  }

  .story-headline span {
    font-size: clamp(36px, 11vw, 52px);
  }

  .story-headline strong {
    font-size: clamp(44px, 13vw, 64px);
  }

  .story-section {
    padding: 76px 0;
  }

  .story-section h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .story-section p {
    font-size: 16px;
    line-height: 1.9;
  }

  .story-visual {
    min-height: 260px;
  }

  .story-manifesto blockquote {
    font-size: clamp(38px, 11vw, 58px);
  }

  .story-quote {
    padding: 30px;
  }

  .recruit-card,
  .value-card,
  .policy-summary,
  .policy-list article {
    padding: 24px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .cookie-banner button {
    width: 100%;
  }

  .brand-link-modal {
    align-items: center;
    padding: 16px;
  }

  .brand-link-dialog {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100vw - 32px);
    padding: 30px 22px 24px;
    border-radius: 16px;
  }

  .brand-link-dialog::before {
    width: 3px;
    border-radius: 16px 0 0 16px;
  }

  .brand-link-close {
    top: 10px;
    right: 10px;
  }

  .brand-link-logo {
    min-height: 132px;
    padding: 22px 18px;
  }

  .brand-link-logo img {
    max-width: 230px;
    max-height: 76px;
  }

  .brand-link-content {
    padding-right: 0;
  }

  .brand-link-button {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-status {
    left: 14px;
    right: 14px;
    justify-content: flex-start;
    bottom: 18px;
  }

  .section,
  .section-band,
  .philosophy {
    padding: 72px 0;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .business-grid,
  .numbers-grid,
  .platform-grid,
  .simple-grid,
  .logistics-scope,
  .solution-stat-grid,
  .capability-grid,
  .operation-flow,
  .case-grid,
  .business-icon-grid,
  .why-metric-grid,
  .platform-matrix,
  .compact-capability-grid,
  .strength-grid,
  .partner-list,
  .logistics-points,
  .flow-line,
  .philosophy-words,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .access-info {
    padding: 24px;
  }

  .map-card {
    padding: 16px;
    gap: 18px;
  }

  .map-frame {
    height: 300px;
  }

  .map-link {
    width: 100%;
    justify-self: stretch;
    align-self: stretch;
  }

  .business-card,
  .simple-card,
  .solution-stat,
  .case-card {
    min-height: auto;
  }

  .solution-hero h1 {
    font-size: clamp(36px, 10vw, 54px);
  }

  .business-hero {
    padding: 112px 0 48px;
  }

  .business-hero-grid {
    min-height: auto;
  }

  .business-hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .business-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .business-hero-metrics {
    gap: 12px;
  }

  .business-hero-metrics div {
    min-width: 0;
    flex: 1 1 90px;
    padding-left: 12px;
  }

  .business-hero-metrics strong {
    font-size: 28px;
  }

  .business-visual {
    min-height: 360px;
    transform: scale(0.84);
    transform-origin: top center;
    margin-bottom: -54px;
  }

  .visual-laptop {
    left: 4px;
    top: 88px;
  }

  .visual-globe {
    right: -8px;
    top: 10px;
  }

  .visual-truck {
    left: 74px;
    bottom: 66px;
  }

  .visual-ship {
    right: -12px;
    bottom: 42px;
  }

  .visual-card-red {
    right: 120px;
    bottom: 118px;
  }

  .business-card-strip {
    padding-bottom: 64px;
  }

  .business-icon-grid,
  .why-metric-grid,
  .platform-matrix {
    overflow: visible;
  }

  .business-icon-card,
  .why-metric-card,
  .platform-matrix span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .business-icon-card:last-child,
  .why-metric-card:last-child,
  .platform-matrix span:last-child {
    border-bottom: 0;
  }

  .business-icon-card {
    min-height: auto;
  }

  .platform-matrix span:last-child {
    grid-column: auto;
  }

  .chain-row {
    grid-template-columns: 1fr;
  }

  .world-route,
  .logistics-chain {
    min-height: auto;
    padding: 18px;
  }

  .solution-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .capability-card {
    padding: 26px;
  }

  .capability-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .operation-step {
    min-height: auto;
    border-right: 0;
  }

  .network-map {
    overflow-x: auto;
    padding: 14px;
  }

  .network-map svg {
    min-width: 760px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faq-item summary {
    padding: 18px 56px 18px 18px;
  }

  .faq-item p {
    padding: 0 18px 20px;
  }

  .flow-step {
    min-height: 116px;
    border-right: 0;
  }

  .flow-step span {
    margin-bottom: 22px;
  }

  .flow-step::after {
    display: none;
  }

  .business-guide-dialog {
    padding: 28px;
  }
}
