:root {
  --navy: #071b34;
  --navy-2: #102f54;
  --blue: #1f5d8f;
  --gold: #c49a4a;
  --mint: #dff0ea;
  --rose: #f6e8e7;
  --ink: #142033;
  --muted: #637083;
  --line: #dfe5ec;
  --bg: #f7f9fb;
  --white: #fff;
  --shadow: 0 18px 42px rgba(7, 27, 52, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
  background: var(--white);
}

img,
iframe {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(223, 229, 236, .9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 6px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(7, 27, 52, .2);
}

.brand-logo {
  width: 60px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  font-size: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: #223149;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.site-nav .nav-contact {
  margin-left: 6px;
  color: var(--white);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 8px 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  background: var(--navy);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.15s ease, transform 7.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide:nth-child(7),
.hero-slide:nth-child(8) {
  object-position: center top;
}

.hero-slide:nth-child(5) {
  object-position: center 58%;
}

.hero-slide:nth-child(5).is-active {
  animation: hero-sign-pan 4.8s ease forwards;
}

@keyframes hero-sign-pan {
  from {
    object-position: center 52%;
  }

  to {
    object-position: center 82%;
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 52, .94) 0%, rgba(7, 27, 52, .82) 34%, rgba(7, 27, 52, .26) 72%),
    linear-gradient(180deg, rgba(7, 27, 52, .18), rgba(7, 27, 52, .48));
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(88px, 13vw, 160px) 0 96px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(34px, 5.2vw, 62px);
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.8vw, 19px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.4;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  box-shadow: 0 14px 30px rgba(7, 27, 52, .22);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
}

.button.light {
  color: var(--navy);
  background: var(--white);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1120px) / 2));
  background: var(--bg);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2,
.contact-cta h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.section-head.split,
.two-col,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.about-heading {
  max-width: 560px;
  font-size: clamp(25px, 3.6vw, 40px);
  line-height: 1.35;
}

.section-head.split {
  max-width: none;
}

.section-head.split p {
  margin: 0;
  color: var(--muted);
}

.section-head.split .eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
}

.business-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .96) 0 22%, rgba(223, 240, 234, .45) 22% 23%, transparent 23%),
    radial-gradient(circle at center, transparent 0 42%, rgba(31, 93, 143, .1) 42% 43%, transparent 43%),
    linear-gradient(135deg, #f7fbfd, #fff 48%, #f8f0f1);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(7, 27, 52, .07);
}

.business-orbit::before,
.business-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(31, 93, 143, .15);
  border-radius: 50%;
}

.business-orbit::before {
  width: min(72vw, 530px);
  height: min(72vw, 530px);
}

.business-orbit::after {
  width: min(52vw, 380px);
  height: min(52vw, 380px);
  border-color: rgba(196, 154, 74, .2);
}

.orbit-center {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  padding: 26px;
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 22px 42px rgba(7, 27, 52, .22);
}

.orbit-center span,
.orbit-center small {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, .72);
}

.orbit-center strong {
  display: block;
  font-size: 30px;
  line-height: 1.25;
}

.orbit-ring {
  position: absolute;
  inset: 0;
}

.business-icon {
  position: relative;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 168px;
  min-height: 146px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .96)),
    var(--business-bg, linear-gradient(135deg, #eef5fb, #fff));
  text-align: center;
  box-shadow: 0 12px 28px rgba(7, 27, 52, .1);
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(255px) rotate(calc(-1 * var(--angle)));
}

.business-icon::before {
  content: "";
  position: absolute;
  inset: auto -22px -28px auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--business-accent, rgba(31, 93, 143, .16));
}

.business-icon span,
.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--mint), var(--rose));
  font-weight: 900;
}

.business-icon strong,
.business-icon small {
  position: relative;
  display: block;
}

.business-icon strong {
  font-size: 14px;
}

.business-icon small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.card-grid,
.job-grid,
.feature-list,
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.business-card,
.job-grid article,
.feature-list article,
.values article,
.quiet-panel,
.contact-form,
.contact-side > * {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 27, 52, .06);
}

.business-card,
.job-grid article,
.feature-list article,
.values article,
.quiet-panel {
  padding: 24px;
}

.business-card {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  display: flex;
  min-height: 548px;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .93), rgba(255, 255, 255, .98)),
    var(--business-bg, linear-gradient(135deg, #eef5fb, #fff));
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 104px;
  background:
    radial-gradient(circle at 86% 20%, var(--business-accent, rgba(31, 93, 143, .18)), transparent 34%),
    linear-gradient(135deg, rgba(7, 27, 52, .08), transparent 62%);
  pointer-events: none;
}

.business-card > * {
  position: relative;
}

.business-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 154, 74, .46);
  box-shadow: 0 24px 54px rgba(7, 27, 52, .16);
}

.business-card:hover .card-visual img {
  transform: scale(1.045);
}

.card-visual {
  aspect-ratio: 16 / 7;
  height: auto;
  margin: 0 -24px 22px;
  border-bottom: 1px solid rgba(223, 229, 236, .85);
  background: var(--business-bg);
  overflow: hidden;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}

.business-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.theme-auto {
  --business-bg: linear-gradient(135deg, #dceaf6, #f9fbfd 58%, #e8edf2);
  --business-accent: rgba(31, 93, 143, .28);
}

.theme-insurance {
  --business-bg: linear-gradient(135deg, #edf4ff, #ffffff 58%, #e8f0f6);
  --business-accent: rgba(42, 111, 171, .24);
}

.theme-education {
  --business-bg: linear-gradient(135deg, #eef8ef, #ffffff 58%, #f5ebe7);
  --business-accent: rgba(105, 161, 116, .24);
}

.theme-programming {
  --business-bg: linear-gradient(135deg, #ecf3ff, #ffffff 58%, #e8f7f4);
  --business-accent: rgba(58, 118, 185, .24);
}

.theme-ec {
  --business-bg: linear-gradient(135deg, #fff0f2, #ffffff 58%, #f2edf8);
  --business-accent: rgba(196, 116, 151, .22);
}

.theme-talent {
  --business-bg: linear-gradient(135deg, #eef7f6, #ffffff 58%, #fff5de);
  --business-accent: rgba(29, 137, 129, .22);
}

.theme-realestate {
  --business-bg: linear-gradient(135deg, #f2efe7, #ffffff 58%, #e9f1ee);
  --business-accent: rgba(151, 126, 76, .22);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-top .card-icon {
  margin: 0;
}

.card-top p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.business-card h3,
.job-grid h3,
.feature-list h3,
.values h3 {
  margin-top: 16px;
  font-size: 20px;
}

.business-card h3 {
  min-height: 52px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.business-card h3 {
  font-size: clamp(18px, 1.65vw, 20px);
}

.business-card p,
.job-grid p,
.feature-list p,
.values p,
.quiet-panel p,
.content p {
  color: var(--muted);
}

.signature {
  margin-top: 24px;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.business-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: auto 0 22px;
  list-style: none;
}

.business-card li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #304157;
  background: #fbfcfd;
  font-size: 12px;
  font-weight: 700;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 2px;
}

.card-link-group {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.card-link-note {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.card-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(31, 93, 143, .22);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(255, 255, 255, .78);
  font-weight: 900;
  transition: background .24s ease, color .24s ease, border-color .24s ease;
}

.card-link:hover,
.text-link:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.card-link:not(.is-disabled)::after,
.text-link::after {
  content: "  >";
}

.card-link.is-disabled,
.business-icon.is-disabled {
  cursor: default;
}

.card-link.is-disabled {
  color: var(--muted);
}

.recruit-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), #183e67);
  color: var(--white);
  box-shadow: var(--shadow);
}

.recruit-strip p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}

.recruit-strip h3 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.45;
}

.home-feature-section {
  padding-top: clamp(64px, 9vw, 104px);
  padding-bottom: clamp(64px, 9vw, 104px);
}

.about-summary {
  align-items: center;
}

.page-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 116px) 0 clamp(48px, 6vw, 72px);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 6vw, 58px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.careers-hero {
  position: relative;
}

.message-photo {
  margin: 26px 0 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(223, 229, 236, .92);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 27, 52, .12);
}

.message-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.info-table {
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(223, 229, 236, .9);
  border-radius: 10px;
  background:
    radial-gradient(circle at 0 0, rgba(196, 154, 74, .12), transparent 28%),
    linear-gradient(135deg, rgba(247, 249, 251, .96), rgba(255, 255, 255, .9));
  box-shadow: 0 16px 38px rgba(7, 27, 52, .07);
}

.info-table div {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px;
  border-bottom: 1px solid rgba(223, 229, 236, .82);
  border-radius: 8px;
}

.info-table div:nth-child(odd) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(223, 240, 234, .34));
}

.info-table div:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 232, 231, .34));
}

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

.info-table dt {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 13px;
  font-weight: 900;
}

.info-table dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.profile-map-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 18px;
}

.profile-map-link strong {
  color: var(--blue);
  font-size: 13px;
  white-space: nowrap;
}

.profile-map-link:hover strong,
.profile-map-link:focus-visible strong {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.plain-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 19px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e5243b, #f26a2e, #4c9f38, #0a97d9, var(--gold));
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 18px 20px 18px 48px;
  border: 1px solid rgba(223, 229, 236, .9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .82)),
    linear-gradient(135deg, rgba(229, 36, 59, .12), rgba(31, 93, 143, .08));
  box-shadow: 0 12px 30px rgba(7, 27, 52, .06);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 22px;
  width: 21px;
  height: 21px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #e5243b;
  box-shadow: 0 6px 16px rgba(7, 27, 52, .16);
}

.timeline li:nth-child(2)::before,
.timeline li:nth-child(6)::before {
  background: #f26a2e;
}

.timeline li:nth-child(3)::before,
.timeline li:nth-child(7)::before {
  background: #4c9f38;
}

.timeline li:nth-child(4)::before,
.timeline li:nth-child(8)::before {
  background: #0a97d9;
}

.timeline li:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .84)),
    linear-gradient(135deg, rgba(76, 159, 56, .12), rgba(196, 154, 74, .1));
}

.timeline span,
.feature-list span {
  color: var(--navy);
  font-weight: 900;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 13px;
  line-height: 1.35;
}

.compact .business-card {
  box-shadow: none;
}

.philosophy-section {
  position: relative;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 72px);
  padding-inline: max(18px, calc((100% - 1120px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 154, 74, .16), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(31, 93, 143, .16), transparent 30%),
    linear-gradient(135deg, rgba(223, 240, 234, .68), rgba(246, 232, 231, .54) 48%, rgba(255, 249, 232, .58)),
    #fbfcfd;
  color: var(--ink);
}

.philosophy-section::before {
  content: "";
  position: absolute;
  inset: 28px max(18px, calc((100% - 1120px) / 2));
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 14px;
  pointer-events: none;
}

.philosophy-section > * {
  position: relative;
  z-index: 1;
}

.philosophy-section .eyebrow {
  color: var(--gold);
}

.philosophy-section h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.philosophy-section .values article {
  position: relative;
  overflow: hidden;
  border-color: rgba(223, 229, 236, .95);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78)),
    var(--white);
  box-shadow: 0 18px 40px rgba(7, 27, 52, .09);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.philosophy-section .values article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
}

.philosophy-section .values article::after {
  content: "01";
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(31, 93, 143, .14);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.philosophy-section .values article:nth-child(2)::before {
  background: linear-gradient(180deg, #7fb8aa, var(--gold));
}

.philosophy-section .values article:nth-child(2)::after {
  content: "02";
  color: rgba(127, 184, 170, .2);
}

.philosophy-section .values article:nth-child(3)::before {
  background: linear-gradient(180deg, #d9989a, var(--navy-2));
}

.philosophy-section .values article:nth-child(3)::after {
  content: "03";
  color: rgba(217, 152, 154, .22);
}

.philosophy-section .values article:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 154, 74, .38);
  box-shadow: 0 24px 52px rgba(7, 27, 52, .13);
}

.philosophy-section .values h3 {
  position: relative;
  padding-right: 70px;
  color: var(--navy);
}

.philosophy-section .values p {
  color: var(--muted);
}

.contact-cta {
  margin: 0 auto;
  padding: clamp(52px, 7vw, 78px) max(18px, calc((100% - 1120px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 52, .96), rgba(16, 47, 84, .94)),
    linear-gradient(90deg, var(--navy), var(--blue));
}

.contact-cta h2 {
  max-width: 820px;
  margin-bottom: 24px;
}

.site-footer {
  padding: 42px clamp(18px, 4vw, 56px) 24px;
  color: rgba(255, 255, 255, .84);
  background:
    linear-gradient(135deg, rgba(6, 21, 38, .98), rgba(7, 27, 52, .96)),
    #061526;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: 30px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-main strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
}

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

.site-footer nav {
  display: grid;
  gap: 10px;
  justify-items: end;
  font-size: 14px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, .78);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, 100%);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  background: #fbfcfd;
}

.form-status {
  min-height: 1.6em;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.contact-box {
  padding: 24px;
}

.contact-box h2 {
  font-size: 30px;
}

.contact-email {
  color: var(--blue);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.line-button {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-color: #14b64a;
  color: var(--white);
  background: #14b64a;
  font-weight: 900;
}

.map {
  overflow: hidden;
}

.map-link-panel {
  min-height: 300px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .98)),
    linear-gradient(135deg, #eaf3f8, #f6f0e4);
}

.map-link-panel h2 {
  font-size: 28px;
}

.map-link-panel p:not(.eyebrow) {
  color: var(--muted);
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

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

.sdgs-section .section-head.split .eyebrow {
  color: var(--gold);
}

.sdgs-section .section-head.split p:not(.eyebrow) {
  color: var(--ink);
}

.sdgs-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
}

.sdgs-badge {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 27, 52, .86), rgba(31, 93, 143, .72)),
    linear-gradient(135deg, #e5243b, #dda63a 18%, #4c9f38 36%, #0a97d9 54%, #fcc30b 72%, #a21942);
  box-shadow: var(--shadow);
}

.poster-badge {
  overflow: hidden;
  padding: 0;
  background: var(--white);
}

.poster-badge img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
}

.sdgs-badge strong {
  display: block;
  font-size: 48px;
  line-height: 1;
}

.sdgs-badge span {
  display: block;
  margin-top: 8px;
  font-weight: 900;
}

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

.sdgs-goals article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 27, 52, .06);
}

.sdgs-goals span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: #e5243b;
  font-weight: 900;
}

.sdgs-goals article:nth-child(2) span {
  background: #4c9f38;
}

.sdgs-goals article:nth-child(3) span {
  background: #0a97d9;
}

.sdgs-goals article:nth-child(4) span {
  background: #f26a2e;
}

.sdgs-goals h3 {
  margin-top: 14px;
  font-size: 18px;
}

.sdgs-goals p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .card-grid,
  .job-grid,
  .feature-list,
  .values {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-card {
    min-height: 520px;
  }

  .section-head.split,
  .two-col,
  .contact-layout,
  .philosophy-section {
    grid-template-columns: 1fr;
  }

  .about-heading {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 50px;
    height: 57px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a,
  .site-nav .nav-contact {
    margin: 0;
    padding: 12px;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(31px, 9vw, 43px);
  }

  .lead br {
    display: none;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(7, 27, 52, .92), rgba(7, 27, 52, .7), rgba(7, 27, 52, .35));
  }

  .hero-slide {
    object-position: 60% center;
  }

  .card-grid,
  .job-grid,
  .feature-list,
  .values {
    grid-template-columns: 1fr;
  }

  .card-grid {
    gap: 16px;
  }

  .business-orbit {
    min-height: auto;
    display: block;
    padding: 28px 16px 18px;
  }

  .business-orbit::before,
  .business-orbit::after {
    display: none;
  }

  .orbit-center {
    width: 180px;
    height: 180px;
    margin: 0 auto 22px;
  }

  .orbit-ring {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .business-icon {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: auto;
    text-align: left;
    transform: none;
  }

  .business-icon span {
    margin-left: 0;
  }

  .card-visual {
    aspect-ratio: 16 / 8;
  }

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

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

  .philosophy-section::before {
    inset: 18px;
    border-radius: 10px;
  }

  .philosophy-section .values h3 {
    padding-right: 48px;
  }

  .philosophy-section .values article::after {
    top: 16px;
    right: 16px;
    font-size: 36px;
  }

  .card-link {
    width: 100%;
  }

  .card-link-group {
    width: 100%;
  }

  .recruit-strip {
    display: grid;
  }

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

  .site-footer nav {
    justify-items: start;
  }

  .footer-bottom {
    display: grid;
  }

  .info-table div,
  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .timeline li {
    padding-left: 44px;
  }

  .timeline span {
    width: fit-content;
  }

  .sdgs-panel,
  .sdgs-goals {
    grid-template-columns: 1fr;
  }
}
