:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --text: #111111;
  --text-soft: #4f4f4f;
  --line: rgba(17, 17, 17, 0.12);
  --orange: #f57e35;
  --shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

/* TOP staging v2 */
body.page-home-v2 {
  --home-ink: #111111;
  --home-paper: #ffffff;
  --home-soft: #f4f6f8;
  --home-muted: #656b72;
  --home-line: rgba(17, 17, 17, 0.12);
  --home-blue: #0d6fc2;
  --home-orange: #f57e35;
  --home-dark: #07101a;
  background: var(--home-paper);
  color: var(--home-ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

body.page-home-v2 .home2-main {
  overflow: hidden;
}

.home2-container {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.home2-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.home2-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 76px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.home2-brand {
  display: inline-flex;
  align-items: center;
}

.home2-brand img,
.home2-footer-logo img {
  display: block;
  width: auto;
  height: 28px;
}

.home2-nav {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 4px;
}

.home2-nav a,
.home2-contact {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  color: var(--home-ink);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.home2-nav a span,
.home2-contact span {
  color: var(--home-muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.home2-nav a strong,
.home2-contact strong {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.home2-nav a:hover,
.home2-contact:hover {
  background: var(--home-soft);
}

.home2-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home2-contact {
  border: 1px solid var(--home-line);
}

.home2-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--home-line);
  background: var(--home-paper);
  color: var(--home-ink);
  cursor: pointer;
}

.home2-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.home2-menu-toggle span + span {
  margin-top: -12px;
}

.home2-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  height: min(720px, calc(100svh - 120px));
  color: #ffffff;
  background: var(--home-dark);
  overflow: hidden;
}

.home2-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.74) 28%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 16, 26, 0.2) 0%, rgba(7, 16, 26, 0.78) 100%),
    url("/assets/images/top/hero-digital-city.png") center center / cover no-repeat;
  transform: scale(1.01);
}

.home2-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1280px, calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  padding: 56px 0 72px;
}

.home2-eyebrow,
.home2-section-label {
  margin: 0;
  color: var(--home-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home2-hero-title {
  max-width: 920px;
  margin: 26px 0 0;
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.12;
}

.home2-hero-title > span {
  display: block;
  white-space: nowrap;
}

.home2-mobile-line,
.home2-lead-piece,
.home2-guide-piece {
  display: inline;
}

.home2-hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.home2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--home-line);
  background: var(--home-paper);
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home2-button:hover {
  transform: translateY(-2px);
}

.home2-button-light {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--home-ink);
}

.home2-button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #ffffff;
}

.home2-button-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.home2-button-dark {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #ffffff;
}

.home2-section {
  padding: 82px 0;
}

.home2-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.home2-section-title {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(28px, 3.1vw, 42px);
  font-weight: 900;
  line-height: 1.35;
}

.home2-guide-title {
  white-space: nowrap;
}

.home2-guide {
  background: #ffffff;
}

.home2-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}

.home2-route-card {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  color: var(--home-ink);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.home2-route-card span {
  display: block;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home2-route-card strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
  font-weight: 900;
}

.home2-route-card p {
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.home2-route-card:hover {
  background: var(--home-ink);
  color: #ffffff;
}

.home2-route-card:hover span,
.home2-route-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.home2-about {
  background: var(--home-soft);
}

.home2-about-grid,
.home2-recruit-grid,
.home2-outlook-grid,
.home2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.home2-copy p {
  margin: 22px 0 0;
  color: var(--home-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.95;
}

.home2-copy .home2-section-title {
  margin-top: 14px;
}

.home2-about-visual,
.home2-recruit-visual {
  margin: 0;
  overflow: hidden;
  background: var(--home-dark);
}

.home2-about-visual {
  aspect-ratio: 16 / 10;
  box-shadow: 24px 24px 0 rgba(245, 126, 53, 0.14);
}

.home2-about-visual img,
.home2-recruit-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home2-services {
  background: #ffffff;
}

.home2-services-head {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.66fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.home2-services-head p:last-child {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.home2-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home2-service-card {
  position: relative;
  min-height: 178px;
  padding: 22px;
  overflow: hidden;
  background: var(--home-dark);
  color: #ffffff;
}

.home2-service-card::before,
.home2-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.home2-service-card::before {
  background: var(--service-bg) center / cover no-repeat;
  transform: scale(1.02);
}

.home2-service-card::after {
  background:
    linear-gradient(180deg, rgba(4, 9, 15, 0.22) 0%, rgba(4, 9, 15, 0.78) 100%),
    linear-gradient(90deg, rgba(4, 9, 15, 0.66) 0%, rgba(4, 9, 15, 0.2) 100%);
}

.home2-service-card-circular {
  --service-bg: url("/assets/images/top/service-backgrounds/service-circular-commerce.png");
}

.home2-service-card-data {
  --service-bg: url("/assets/images/top/service-backgrounds/service-data-analytics.png");
}

.home2-service-card-marketing {
  --service-bg: url("/assets/images/top/service-backgrounds/service-digital-marketing.png");
}

.home2-service-card-product {
  --service-bg: url("/assets/images/top/service-backgrounds/service-product-creation.png");
}

.home2-service-card-investment {
  --service-bg: url("/assets/images/top/service-backgrounds/service-venture-investment.png");
}

.home2-service-card-security {
  --service-bg: url("/assets/images/top/service-backgrounds/service-cyber-security.png");
}

.home2-service-card span,
.home2-service-card h3,
.home2-service-card p {
  position: relative;
  z-index: 1;
}

.home2-service-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.home2-service-card h3 {
  margin: 54px 0 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
}

.home2-service-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

.home2-center-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.home2-outlook {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.72) 100%),
    url("/assets/images/top/additional-visuals/additional-light-tech-texture.png") center / cover no-repeat;
}

.home2-outlook-card {
  padding: 42px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.home2-outlook-card .home2-section-title {
  margin-top: 14px;
}

.home2-outlook-card p:last-child {
  margin: 22px 0 0;
  color: var(--home-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

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

.home2-pillar-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.home2-pillar-list span {
  color: var(--home-orange);
  font-size: 14px;
  font-weight: 900;
}

.home2-pillar-list strong {
  display: block;
  color: var(--home-ink);
  font-size: 20px;
  font-weight: 900;
}

.home2-pillar-list p {
  grid-column: 2;
  margin: -6px 0 0;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.home2-recruit {
  background: var(--home-soft);
}

.home2-recruit-visual {
  aspect-ratio: 4 / 5;
}

.home2-link-list {
  display: grid;
  gap: 1px;
  margin: 30px 0 24px;
  background: rgba(17, 17, 17, 0.12);
}

.home2-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.home2-link-list a::after {
  content: "→";
  color: var(--home-orange);
}

.home2-news {
  background: #ffffff;
}

.home2-news-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.home2-news-head .home2-section-title {
  margin-top: 12px;
}

.home2-text-link {
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--home-orange);
}

.home2-news-list {
  border-top: 1px solid var(--home-ink);
}

.home2-news-list a {
  display: grid;
  grid-template-columns: 130px 108px 1fr;
  gap: 26px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-ink);
  text-decoration: none;
}

.home2-news-list time {
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 900;
}

.home2-news-list span {
  justify-self: start;
  padding: 4px 12px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 900;
}

.home2-news-list strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}

.home2-contact-cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 82% 44%, rgba(245, 126, 53, 0.24), transparent 46%),
    linear-gradient(135deg, #07101a 0%, #101821 56%, #14273b 100%);
  color: #ffffff;
}

.home2-contact-grid {
  grid-template-columns: 1.25fr auto;
}

.home2-contact-cta .home2-section-label {
  color: var(--home-orange);
}

.home2-contact-cta h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.42;
}

.home2-footer {
  padding: 58px 0 28px;
  background: #0b0b0c;
  color: rgba(255, 255, 255, 0.62);
}

.home2-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home2-footer p {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.home2-footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.home2-footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.home2-footer-nav a:hover {
  color: #ffffff;
}

.home2-footer-bottom {
  padding-top: 24px;
}

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

@media (min-width: 1101px) and (max-height: 820px) {
  .home2-section {
    padding: 64px 0;
  }

  .home2-service-card {
    min-height: 158px;
    padding: 18px;
  }

  .home2-service-card h3 {
    margin-top: 42px;
    font-size: 17px;
  }

  .home2-service-card p {
    font-size: 11.5px;
  }
}

@media (max-width: 1100px) {
  .home2-header-inner {
    gap: 18px;
  }

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

  .home2-hero-title {
    font-size: clamp(40px, 6vw, 60px);
  }

  .home2-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home2-about-grid,
  .home2-recruit-grid,
  .home2-outlook-grid,
  .home2-contact-grid {
    grid-template-columns: 1fr;
  }

  .home2-services-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home2-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home2-contact-grid {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .home2-container,
  .home2-header-inner,
  .home2-hero-inner {
    width: min(100% - 40px, 1180px);
  }

  .home2-header-inner {
    min-height: 68px;
  }

  .home2-nav,
  .home2-contact {
    display: none;
  }

  .home2-menu-toggle {
    display: grid;
  }

  .home2-header.nav-open .home2-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--home-line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .home2-header.nav-open .home2-nav a {
    min-height: 58px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .home2-header.nav-open .home2-menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .home2-header.nav-open .home2-menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .home2-hero {
    height: auto;
    min-height: 610px;
  }

  .home2-hero-bg {
    background-position: 62% center;
  }

  .home2-hero-title > span {
    white-space: normal;
  }

  .home2-hero-lead {
    font-size: 15px;
  }

  .home2-section {
    padding: 62px 0;
  }

  .home2-guide-title {
    white-space: normal;
  }

  .home2-about-visual {
    box-shadow: 14px 14px 0 rgba(245, 126, 53, 0.14);
  }

  .home2-news-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .home2-news-list span {
    justify-self: start;
  }

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

@media (max-width: 560px) {
  .home2-container,
  .home2-header-inner,
  .home2-hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .home2-brand img,
  .home2-footer-logo img {
    height: 24px;
  }

  .home2-hero {
    min-height: 570px;
  }

  .home2-hero-inner {
    padding: 54px 0 62px;
  }

  .home2-hero-title {
    font-size: 34px;
  }

  .home2-actions,
  .home2-button {
    width: 100%;
  }

  .home2-button {
    min-height: 50px;
  }

  .home2-route-grid,
  .home2-service-grid {
    grid-template-columns: 1fr;
  }

  .home2-route-card {
    min-height: 152px;
    padding: 22px;
  }

  .home2-service-card {
    min-height: 230px;
  }

  .home2-outlook-card {
    padding: 28px 22px;
  }

  .home2-pillar-list div {
    grid-template-columns: 1fr;
  }

  .home2-pillar-list p {
    grid-column: 1;
    margin-top: 0;
  }
}

/* TOP redesign v1 */
body.page-home {
  --mb-black: #111111;
  --mb-text: #4f4f4f;
  --mb-muted: #727272;
  --mb-line: #e1e1e1;
  --mb-white: #ffffff;
  --mb-soft-gray: #f7f7f7;
  --mb-orange: #f57e35;
  --mb-orange-dark: #b64b10;
  --mb-orange-faint: #fff8f2;
  --mb-blue-deep: #0d6fc2;
  --motion-base: 280ms;
  --motion-slow: 520ms;
  --motion-ease: cubic-bezier(0.2, 0, 0, 1);
  --motion-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 52%, #f7f7f7 100%);
}

body.page-home main.top-main {
  width: 100%;
  margin: 0;
}

.top-main {
  color: var(--mb-black);
}

.top-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: 66px max(24px, calc((100vw - 1180px) / 2)) 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(47, 147, 246, 0.12), transparent 360px),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  border-bottom: 1px solid var(--mb-line);
}

.top-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.top-kicker {
  margin: 0 0 14px;
  color: var(--mb-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-hero h1,
.top-section h2 {
  margin: 0;
  color: var(--mb-black);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.top-hero-lead {
  margin: 22px 0 0;
  color: var(--mb-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
}

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

.top-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--mb-black);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--mb-black);
  background: var(--mb-white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  transition:
    transform var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) var(--motion-ease),
    background var(--motion-base) var(--motion-ease);
}

.top-button:hover {
  transform: translateY(-2px);
}

.top-button:focus-visible {
  outline: 3px solid var(--mb-blue-deep);
  outline-offset: 3px;
}

.top-button-primary {
  color: var(--mb-white);
  background: var(--mb-black);
}

.top-hero-visual {
  position: relative;
  z-index: 1;
  margin: 0 -8vw 0 -4vw;
  min-height: 560px;
}

.top-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center right;
  filter: drop-shadow(0 28px 48px rgba(17, 17, 17, 0.08));
}

.top-section {
  padding: 86px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.top-section-head {
  max-width: 760px;
}

.top-section-head p,
.top-copy-block p,
.top-service-card p,
.top-recruit-main p,
.top-contact p {
  color: var(--mb-text);
}

.top-section h2 {
  font-size: 42px;
  line-height: 1.28;
}

.top-section-head > p:last-child {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.9;
}

.top-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--mb-line);
  background: var(--mb-line);
}

.top-route-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--mb-white);
  transition:
    transform var(--motion-base) var(--motion-ease),
    background var(--motion-base) var(--motion-ease);
}

.top-route-card:hover {
  transform: translateY(-4px);
}

.top-route-card-feature {
  background: var(--mb-orange-faint);
}

.top-route-card span,
.top-route-card strong,
.top-service-card span,
.top-news-list time,
.top-news-list span {
  color: var(--mb-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.top-route-card h3,
.top-service-card h3 {
  margin: 12px 0 10px;
  color: var(--mb-black);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.top-route-card p,
.top-route-card strong,
.top-service-card p {
  margin: 0;
}

.top-route-card strong {
  display: block;
  width: fit-content;
  margin-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.22);
  padding-top: 10px;
  color: var(--mb-black);
}

.top-about {
  background: var(--mb-white);
}

.top-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: start;
}

.top-copy-block {
  border-left: 4px solid var(--mb-orange);
  padding-left: 24px;
}

.top-large-copy {
  margin-bottom: 18px;
  color: var(--mb-black) !important;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
}

.top-services {
  background: var(--mb-soft-gray);
}

.top-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--mb-line);
  background: var(--mb-line);
}

.top-service-card {
  min-height: 245px;
  padding: 24px;
  background: var(--mb-white);
}

.top-service-card span {
  display: block;
  margin-bottom: 30px;
}

.top-growth {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 40px;
  align-items: center;
  background: var(--mb-white);
}

.top-growth-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  min-height: 330px;
  border: 1px solid var(--mb-line);
  border-radius: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(47, 147, 246, 0.12), transparent 280px),
    linear-gradient(180deg, #ffffff, #f5f7fa);
}

.top-growth-panel span {
  display: block;
  min-height: 24px;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, #2f93f6, #0d6fc2);
  transform-origin: bottom;
  animation: topChartGrow var(--motion-slow) var(--motion-emphasis) both;
}

.top-growth-panel span:nth-child(2),
.top-growth-panel span:nth-child(5) {
  background: linear-gradient(180deg, #f57e35, #b64b10);
}

.top-growth-panel span:nth-child(2) {
  animation-delay: 80ms;
}

.top-growth-panel span:nth-child(3) {
  animation-delay: 140ms;
}

.top-growth-panel span:nth-child(4) {
  animation-delay: 200ms;
}

.top-growth-panel span:nth-child(5) {
  animation-delay: 260ms;
}

.top-recruit {
  background: var(--mb-soft-gray);
}

.top-recruit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.top-recruit-main {
  display: grid;
  align-content: center;
  justify-items: start;
  border: 1px solid var(--mb-line);
  border-radius: 18px;
  padding: 34px;
  background: var(--mb-white);
}

.top-recruit-main h2 {
  font-size: 34px;
}

.top-recruit-main p {
  margin-top: 18px;
}

.top-link-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--mb-line);
  background: var(--mb-line);
}

.top-link-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 20px;
  background: var(--mb-white);
}

.top-link-list span {
  color: var(--mb-black);
  font-size: 17px;
  font-weight: 900;
}

.top-link-list small {
  color: var(--mb-muted);
  font-size: 12px;
  font-weight: 800;
}

.top-news {
  background: var(--mb-white);
}

.top-news-list {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--mb-line);
}

.top-news-list a {
  display: grid;
  grid-template-columns: 140px 120px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--mb-line);
  padding: 22px 0;
}

.top-news-list span {
  width: fit-content;
  border: 1px solid var(--mb-line);
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--mb-soft-gray);
}

.top-news-list strong {
  color: var(--mb-black);
  font-size: 17px;
  font-weight: 900;
}

.top-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(245, 126, 53, 0.08), rgba(47, 147, 246, 0.06)),
    var(--mb-white);
}

.top-contact h2 {
  max-width: 820px;
}

.top-contact p {
  max-width: 760px;
  margin-top: 16px;
}

@keyframes topChartGrow {
  from {
    opacity: 0;
    transform: scaleY(0.08);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1100px) {
  .top-hero,
  .top-growth,
  .top-recruit-layout,
  .top-split,
  .top-contact {
    grid-template-columns: 1fr;
  }

  .top-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .top-hero-visual {
    margin: 0;
    min-height: auto;
  }

  .top-hero-visual img {
    min-height: 420px;
    border-radius: 18px;
    object-position: center;
  }

  .top-route-grid,
  .top-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.page-home main.top-main {
    width: 100%;
  }

  .top-hero {
    min-height: calc(100svh - 77px);
    padding: 32px 18px 28px;
  }

  .top-hero h1 {
    font-size: 40px;
  }

  .top-hero-lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .top-actions {
    gap: 10px;
  }

  .top-button {
    width: 100%;
    min-width: 0;
  }

  .top-hero-visual img {
    min-height: 260px;
  }

  .top-section {
    padding: 62px 18px;
  }

  .top-section h2 {
    font-size: 32px;
  }

  .top-route-grid,
  .top-service-grid {
    grid-template-columns: 1fr;
  }

  .top-route-card,
  .top-service-card {
    min-height: auto;
  }

  .top-copy-block {
    padding-left: 18px;
  }

  .top-large-copy {
    font-size: 23px;
  }

  .top-growth-panel {
    min-height: 220px;
    padding: 18px;
  }

  .top-recruit-main {
    padding: 24px;
  }

  .top-link-list a,
  .top-news-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .top-link-list small {
    overflow-wrap: anywhere;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html.nav-open body {
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top right, rgba(245, 126, 53, 0.08), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #fcfcfc 48%, #f7f7f7 100%);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

html.is-loading body {
  overflow: hidden;
}

body.page-home::before,
body.page-home::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body.page-home::before {
  top: 96px;
  right: -140px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 126, 53, 0.12), rgba(245, 126, 53, 0));
  filter: blur(6px);
}

body.page-home::after {
  display: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(248, 248, 248, 0.995)),
    radial-gradient(circle at top right, rgba(245, 126, 53, 0.18), transparent 22rem);
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

html:not(.is-loading) .site-loader {
  opacity: 0;
  visibility: hidden;
}

.site-loader__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.site-loader__stage {
  position: relative;
  width: 112px;
  height: 112px;
}

.site-loader__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  aspect-ratio: 640 / 708;
  transform: translate(-50%, -50%);
  background: url("/assets/images/icon.png") center / contain no-repeat;
  opacity: 0;
  animation:
    loaderMarkReveal 0.7s ease 0.12s forwards,
    loaderMarkFloat 2.4s ease-in-out 0.9s infinite;
}

.site-loader__progress {
  position: relative;
  width: 260px;
  height: 10px;
}

.site-loader__progress-track,
.site-loader__progress-bar {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.site-loader__progress-track {
  background: rgba(17, 17, 17, 0.1);
}

.site-loader__progress-bar {
  width: 0;
  background: linear-gradient(90deg, rgba(245, 126, 53, 0.78), rgba(245, 126, 53, 1));
  box-shadow: 0 4px 14px rgba(245, 126, 53, 0.22);
  animation: loaderProgress 1.35s cubic-bezier(0.55, 0, 0.2, 1) infinite;
}

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

p {
  margin: 0;
}

figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 28px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.nav-toggle,
.nav-item-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header .brand-lockup {
  width: 224px;
  height: 42px;
  flex: 0 0 auto;
  background: url("/assets/images/logo2x.png") left center / contain no-repeat;
}

.site-header .brand-lockup > * {
  opacity: 0;
  pointer-events: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: #111111;
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-name {
  font-size: 15px;
  font-weight: 900;
}

.brand-sub {
  margin-top: 2px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav > a,
.nav-item > a {
  position: relative;
  padding-bottom: 4px;
  line-height: 1;
}

.site-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-current::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after,
.nav-item.is-current > a::after,
.nav-item > a.is-current::after {
  transform: scaleX(1);
}

.nav-item {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  padding-left: 14px;
}

.nav-item > a::before {
  content: "⌄";
  position: absolute;
  left: 0;
  top: 0.48em;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  min-width: 240px;
  padding: 14px;
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-dropdown a {
  padding: 6px 0;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-current {
  color: var(--text);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

main,
.site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.hero,
.page-hero,
.section {
  padding: 84px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 84px);
}

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px max(24px, calc((100vw - 1240px) / 2 + 40px));
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    url("/assets/external/photo-1511818966892-d7d671e672a2_auto_format_fit_crop_w_1600_q_80.jpg")
      center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.08);
  will-change: background-position, background-size;
  animation: heroPan 11s ease-in-out infinite alternate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: transparent;
  z-index: -1;
  animation: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  z-index: -1;
  animation: heroFrameDrift 8s ease-in-out infinite alternate;
}

.home-hero .hero-copy {
  position: relative;
}

.home-hero .hero-copy::before,
.home-hero .hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.home-hero .hero-copy::before {
  display: none;
}

.home-hero .hero-copy::after {
  bottom: -52px;
  left: -38px;
  width: 280px;
  height: 92px;
  border-top: 1.5px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  transform: rotate(8deg);
  opacity: 0.8;
  animation: waveFlowB 8s linear infinite;
}

.hero-copy {
  max-width: 760px;
  animation: heroCopyIn 0.9s ease 0.95s both;
}

@keyframes loaderSpinA {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderSpinB {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg) scale(0.98);
  }
}

@keyframes loaderOrbitA {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(min(30vw, 190px)) scale(0.72);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) translateX(min(30vw, 190px)) scale(1.05);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(min(30vw, 190px)) scale(0.72);
  }
}

@keyframes loaderOrbitB {
  0% {
    transform: translate(-50%, -50%) rotate(40deg) translateX(min(21vw, 132px)) scale(0.85);
  }

  50% {
    transform: translate(-50%, -50%) rotate(220deg) translateX(min(21vw, 132px)) scale(1.08);
  }

  100% {
    transform: translate(-50%, -50%) rotate(400deg) translateX(min(21vw, 132px)) scale(0.85);
  }
}

@keyframes loaderOrbitC {
  0% {
    transform: translate(-50%, -50%) rotate(-30deg) translateX(min(15vw, 96px)) scale(0.8);
  }

  50% {
    transform: translate(-50%, -50%) rotate(150deg) translateX(min(15vw, 96px)) scale(1.1);
  }

  100% {
    transform: translate(-50%, -50%) rotate(330deg) translateX(min(15vw, 96px)) scale(0.8);
  }
}

@keyframes loaderMarkReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
  }

  100% {
    opacity: 0.94;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes loaderMarkFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -53%) scale(1.02);
  }
}

@keyframes loaderProgress {
  0% {
    width: 0;
    left: 0;
  }

  55% {
    width: 62%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes heroPan {
  0% {
    background-position:
      center center,
      46% 52%;
    background-size:
      auto,
      102%;
  }

  100% {
    background-position:
      center center,
      62% 40%;
    background-size:
      auto,
      118%;
  }
}

@keyframes heroPanMobile {
  0% {
    background-position:
      center center,
      44% 10%;
    background-size:
      auto,
      112%;
  }

  100% {
    background-position:
      center center,
      56% 36%;
    background-size:
      auto,
      136%;
  }
}

@keyframes heroGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-88px, -44px, 0) scale(1.18);
  }
}

@keyframes waveFlowA {
  0% {
    transform: rotate(-12deg) translate3d(-72px, 0, 0);
  }

  100% {
    transform: rotate(-12deg) translate3d(96px, 0, 0);
  }
}

@keyframes waveFlowB {
  0% {
    transform: rotate(8deg) translate3d(-96px, 0, 0);
  }

  100% {
    transform: rotate(8deg) translate3d(84px, 0, 0);
  }
}

@keyframes heroFrameDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.58;
  }

  100% {
    transform: translate3d(10px, -8px, 0);
    opacity: 0.92;
  }
}

@keyframes heroCopyIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow,
.section-kicker,
.panel-label,
.card-index,
.meta-label,
.news-date {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-head h2,
.section-cta h2,
.split h2,
.hero-panel h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.page-hero h1,
.section-head h2,
.section-cta h2,
.split h2,
.hero-panel h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.lead,
.section-summary,
.hero-panel p,
.card p,
.split p,
.table-card td,
.news-item p:last-child,
.form-note,
.info-list li,
.quote-card blockquote,
.prose p {
  color: var(--text-soft);
}

.lead {
  margin-top: 24px;
  max-width: 44rem;
  font-size: 16px;
}

.lead-mobile {
  display: none;
}

.hero-actions,
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  color: #d36d2a;
  background: #ffffff;
  border-color: rgba(245, 126, 53, 0.58);
  box-shadow:
    0 6px 16px rgba(17, 17, 17, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.button-light {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(245, 126, 53, 0.34);
}

.button-dark:hover {
  color: #c55f1e;
  background: rgba(255, 249, 244, 1);
  border-color: rgba(245, 126, 53, 0.78);
}

.hero-panel-group,
.cards,
.stats-grid,
.subnav-grid,
.news-list,
.office-grid,
.contact-grid,
.interview-grid,
.media-grid,
.visual-strip {
  display: grid;
  gap: 18px;
}

.hero-panel-group {
  align-content: start;
}

.hero-panel,
.card,
.table-card,
.form-card,
.quote-card,
.news-item,
.image-placeholder,
.media-card {
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual.hero-visual-wide {
  min-height: 500px;
}

.hero-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.82) 100%);
}

.hero-visual figcaption p:last-child {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.message-card-meta .meta-label {
  display: inline-block;
  margin-bottom: 6px;
}

.message-card-meta h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.28;
}

.message-card-meta p:last-child {
  margin-top: 10px;
}

.message-unified-card {
  padding: 32px;
}

.message-unified-layout {
  gap: 36px;
  align-items: start;
}

.message-unified-card .media-card {
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 22px;
}

.message-unified-card .media-card img {
  border-radius: 18px;
}

.message-body {
  position: relative;
  padding-top: 8px;
}

.message-body::before {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 20px;
  background: rgba(245, 126, 53, 0.72);
  border-radius: 999px;
}

.hero-panel.dark,
.section-dark {
  color: #ffffff;
  background: linear-gradient(135deg, #111111, #1b1b1b);
}

.hero-panel.dark p,
.section-dark .section-summary,
.dark-card p {
  color: #ffffff;
}

.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.section-head {
  max-width: 880px;
}

.section-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.section-cta .button {
  flex-shrink: 0;
}

.section-cta > div {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.section-return {
  padding-top: 24px;
  padding-bottom: 24px;
}

.return-link-wrap {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.return-link {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.return-link:hover {
  color: var(--text);
  text-decoration-thickness: 2px;
}

.section-head h2,
.split h2,
.page-hero h1,
.section-cta h2 {
  position: relative;
}

.section-head h2::after,
.split h2::after,
.page-hero h1::after,
.section-cta h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 18px;
  background: var(--orange);
  border-radius: 999px;
}

.page-recruit .page-hero .eyebrow {
  color: var(--orange);
}

.page-recruit .page-hero h1::after {
  width: 96px;
  height: 2px;
  background: var(--orange);
}

.section-about-neutral .section-kicker {
  color: var(--orange);
}

.section-about-neutral .card-index {
  color: rgba(17, 17, 17, 0.5);
}

.section-about-neutral .section-head h2::after {
  background: var(--orange);
}

.section-about-neutral .card {
  border-top-color: rgba(17, 17, 17, 0.16);
}

.section-head > * + .card,
.section-head > * + .prose,
.section-head > * + .section-summary {
  margin-top: 22px;
}

.section-summary {
  margin-top: 16px;
}

.cards {
  margin-top: 28px;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.visual-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.card,
.dark-card {
  padding: 24px;
}

.dark-card {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.card h3,
.news-item h3,
.stats-card h3,
.table-card h3,
.quote-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.dark-card h3 {
  color: #ffffff;
}

.card p,
.news-item p:last-child {
  margin-top: 12px;
}

.card-plain {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote-card-plain {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cards-service {
  gap: 22px;
}

.visual-strip-plain .media-card {
  border-top: 1px solid var(--line);
}

.service-card {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
}

.news-list-featured {
  gap: 20px;
}

.news-item-featured {
  padding: 22px 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.96));
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.04);
}

.news-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.news-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 126, 53, 0.28);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
}

.news-item-featured .news-date {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 126, 53, 0.1);
  color: #b95b20;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.section-alt {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

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

.split-emphasis {
  align-items: center;
}

.split-media {
  align-items: stretch;
}

.text-link {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.subnav-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  gap: 16px;
}

.page-recruit .section-head {
  max-width: 1040px;
}

.page-number .section-head {
  max-width: 980px;
}

.subnav-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.subnav-stack-item {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.subnav-stack-item:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.subnav-stack-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
}

.subnav-stack-copy {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.subnav-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(280px, 100%);
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 126, 53, 0.38);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  color: #c35b1d;
  box-shadow:
    0 8px 18px rgba(17, 17, 17, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.subnav-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 248, 242, 1);
  color: #a84b14;
  box-shadow:
    0 10px 20px rgba(17, 17, 17, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.subnav-cta-arrow {
  font-size: 16px;
  line-height: 1;
}

.recruit-hero-visual {
  margin-top: 28px;
}

.page-home .recruit-hero-visual {
  border-top: 1px solid var(--line);
}

.recruit-hero-visual img {
  max-height: 340px;
}

.page-occupation .occupation-card {
  padding: 28px 28px 30px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 249, 249, 0.96));
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.04);
}

.page-occupation .page-hero + .section {
  padding-top: 28px;
}

.page-occupation .cards {
  margin-top: 20px;
}

.page-occupation .occupation-card h3 {
  position: relative;
  padding-bottom: 14px;
}

.page-occupation .occupation-card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 14px;
  background: rgba(245, 126, 53, 0.72);
  border-radius: 999px;
}

.news-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.news-item {
  padding: 22px;
}

.news-item h3 {
  margin-top: 10px;
  font-size: 20px;
}

.news-item img {
  width: calc(100% + 44px);
  height: 200px;
  margin: -22px -22px 18px;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
  display: block;
}

.news-list-plain {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}

.news-list-plain .news-item {
  padding: 26px 0;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-list-plain .news-item:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.news-list-plain .news-item h3 {
  margin: 6px 0 6px;
  font-size: 24px;
}

.news-list-plain .news-item a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.site-footer {
  padding: 48px 0 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 16px;
  align-content: start;
}

.footer-nav-group {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-nav-title {
  margin: 0;
}

.footer-nav-title a {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.footer-nav-links {
  display: grid;
  gap: 10px;
}

.footer-nav-links a {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.footer-nav-links a:hover,
.footer-nav-title a:hover {
  color: var(--orange);
}

.page-hero {
  padding-bottom: 36px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: var(--text-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span {
  color: var(--text);
}

.breadcrumb-sep {
  color: rgba(17, 17, 17, 0.34);
}

.breadcrumb-inline {
  margin-top: 18px;
  margin-bottom: -8px;
}

.table-card,
.form-card,
.quote-card {
  padding: 28px;
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.table-card th,
.table-card td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  text-align: left;
  vertical-align: top;
}

.table-card th {
  width: 180px;
  font-size: 14px;
}

.table-card td {
  font-size: 15px;
}

.meta-grid,
.stats-grid,
.office-grid,
.contact-grid,
.interview-grid,
.interview-detail-grid {
  margin-top: 28px;
}

.meta-grid,
.stats-grid,
.interview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.interview-detail-grid {
  display: grid;
  gap: 24px;
}

.office-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.office-sections {
  display: grid;
  gap: 48px;
  margin-top: 28px;
}

.page-office .media-card {
  border-top: 1px solid var(--line);
}

.page-office .page-hero {
  padding-bottom: 18px;
}

.page-office .page-hero + .section {
  padding-top: 12px;
}

.page-office .table-card {
  border-top: 1px solid var(--line);
}

.page-company .page-hero {
  padding-bottom: 20px;
}

.office-section {
  scroll-margin-top: 120px;
}

.office-section .split {
  align-items: center;
}

.office-section .split .prose {
  order: 2;
}

.office-section .split .media-card {
  order: 1;
}

.office-section.reverse .split {
  grid-template-columns: 1.1fr 0.9fr;
}

.office-section.reverse .split .prose {
  order: 1;
}

.office-section.reverse .split .media-card {
  order: 2;
}

.native-ratio img {
  min-height: 0;
  height: auto;
  object-fit: contain;
  background: #f4f4f4;
}

@media (min-width: 761px) {
  .page-office .office-section .split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
  }

  .page-office .office-section .split .prose {
    order: 2;
  }

  .page-office .office-section .split .media-card {
    order: 1;
  }

  .page-office .office-section.reverse .split {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-office .office-section.reverse .split .prose {
    order: 1;
  }

  .page-office .office-section.reverse .split .media-card {
    order: 2;
  }
}

.native-ratio.tight img,
.native-ratio.tall img {
  min-height: 0;
}

.number-layout,
.number-bars {
  display: grid;
  gap: 24px;
}

.number-layout {
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 28px;
}

.number-bars {
  margin-top: 28px;
}

.stats-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.stats-card.featured {
  padding: 32px;
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.media-card figcaption {
  padding: 18px 20px 20px;
}

.media-card figcaption h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
}

.media-card figcaption p {
  margin-top: 10px;
  color: var(--text-soft);
}

.media-card.tight img {
  min-height: 200px;
}

.media-card.tall img {
  min-height: 360px;
}

.stats-value {
  margin-top: 10px;
  color: var(--orange);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.stats-note {
  margin-top: 12px;
  color: var(--text-soft);
}

.bar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.bar-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.bar-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.bar-track {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffb27d);
}

.number-facts {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.fact-item {
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.fact-item h3 {
  margin: 0;
  font-size: 18px;
}

.fact-item p {
  margin-top: 10px;
  color: var(--text-soft);
}

.form-card form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.form-alert {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  font-size: 15px;
}

.form-alert p {
  margin: 0;
}

.form-alert-success {
  color: #215b34;
  background: rgba(72, 181, 109, 0.08);
  border-color: rgba(72, 181, 109, 0.18);
}

.form-alert-error {
  color: #8d2c21;
  background: rgba(214, 54, 55, 0.08);
  border-color: rgba(214, 54, 55, 0.18);
}

.form-error-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-size: 14px;
  font-weight: 700;
}

.required-mark {
  color: #d63637;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 14px;
  background: #ffffff;
  font: inherit;
}

.form-row textarea {
  min-height: 180px;
  resize: vertical;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.info-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.image-placeholder {
  min-height: 260px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(245, 126, 53, 0.1), rgba(17, 17, 17, 0.02)),
    #ffffff;
}

.image-placeholder .meta-label {
  display: inline-block;
  margin-bottom: 12px;
}

.quote-card blockquote {
  margin: 18px 0 0;
  font-size: 16px;
}

.interview-card-link {
  display: block;
}

.interview-summary-card img {
  aspect-ratio: 16 / 9;
  min-height: 0;
  object-fit: contain;
  padding: 24px 24px 8px;
  background: linear-gradient(180deg, rgba(250, 247, 243, 0.95), rgba(255, 255, 255, 0.98));
}

.interview-detail-visual img {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.number-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.number-card {
  padding: 28px;
}

.number-card h3 {
  margin-top: 8px;
}

.number-gender {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
}

.number-gender-donut {
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 44%, transparent 45% 100%),
    conic-gradient(#eb79a7 0 55%, #3d61b8 55% 100%);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.04),
    0 16px 32px rgba(17, 17, 17, 0.08);
}

  .number-gender-legend {
    display: grid;
    gap: 18px;
  }

.number-gender-item {
  display: grid;
  gap: 6px;
}

.number-gender-label {
  font-size: 14px;
  font-weight: 800;
}

.number-gender-item strong,
.benefit-panel strong {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 900;
  line-height: 0.95;
}

.number-gender-item strong span,
.benefit-panel strong span,
.number-highlight span {
  font-size: 0.58em;
}

.number-gender-item-female {
  color: #eb79a7;
}

.number-gender-item-male {
  color: #3d61b8;
}

.number-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.84);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.number-highlight {
  margin-top: 18px;
  color: var(--orange);
  font-size: clamp(62px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.92;
}

.holiday-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.holiday-chip {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(245, 126, 53, 0.08);
  color: #5a514a;
  font-size: 14px;
  font-weight: 700;
}

.holiday-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.benefit-split {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.benefit-panel {
  padding: 18px 20px 20px;
  border-radius: 18px;
}

.benefit-panel-office {
  background: rgba(223, 67, 67, 0.1);
  color: #d94343;
}

.benefit-panel-lunch {
  background: rgba(46, 133, 176, 0.12);
  color: #2e85b0;
}

.benefit-label {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.interview-card-link .media-card figcaption {
  display: grid;
  gap: 10px;
}

.interview-role {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.interview-summary {
  color: var(--text-soft);
}

.interview-jump {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.interview-detail {
  scroll-margin-top: 120px;
}

.interview-detail .split {
  align-items: start;
}

.interview-detail .quote-card {
  background: #ffffff;
}

.interview-qa {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.interview-qa-item {
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.interview-qa-item h4 {
  margin: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interview-qa-item p {
  margin-top: 10px;
  color: var(--text-soft);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  display: inline-block;
  padding: 7px 12px 6px;
  border: 1px solid rgba(245, 126, 53, 0.28);
  border-radius: 8px;
  background: rgba(245, 126, 53, 0.06);
  color: #7d3308;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-links {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.service-link-item {
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.service-link-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-link-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.service-link-item p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
}

.service-link-item a {
  display: inline-block;
  margin-top: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.service-link-item a:hover {
  color: #b64b10;
  text-decoration-thickness: 2px;
}

.service-inline-link {
  margin-top: 12px;
}

.service-inline-link a {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.service-inline-link a:hover {
  color: #b64b10;
  text-decoration-thickness: 2px;
}

.page-service .media-card.native-ratio {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.96));
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.page-service .page-hero {
  position: relative;
  overflow: visible;
  padding: 76px 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-service .page-hero .section-summary {
  max-width: 860px;
  color: rgba(17, 17, 17, 0.78);
}

.page-service .page-hero + .section {
  padding-top: 8px;
  padding-bottom: 40px;
}

.page-service .page-hero + .section + .section {
  padding-top: 28px;
}

.page-service .cards {
  gap: 24px;
}

.page-service .media-card.native-ratio img {
  max-height: 360px;
}

.page-service .cards > .card {
  position: static;
  padding: 30px 30px 30px 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 249, 249, 0.96));
  box-shadow:
    0 18px 34px rgba(17, 17, 17, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page-service .cards > .card h3 {
  position: static;
  padding-bottom: 0;
}

.page-service .cards > .card > p {
  color: rgba(17, 17, 17, 0.78);
}

.page-service .service-links {
  gap: 12px;
  margin-top: 22px;
}

.page-service .service-link-item {
  padding: 16px 18px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 22px rgba(17, 17, 17, 0.03);
}

.page-service .service-link-item:first-child {
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.page-service .section-alt {
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.page-service .section-cta {
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.prose {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

@media (max-width: 1100px) {
  .hero,
  .split,
  .cards-2,
  .cards-3,
  .number-grid-2,
  .news-list,
  .meta-grid,
  .stats-grid,
  .number-layout,
  .office-grid,
  .contact-grid,
  .interview-grid,
  .subnav-grid,
  .media-grid,
  .visual-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .home-hero {
    padding: 56px 24px;
  }

  .number-gender {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    background: #ffffff;
  }

  body {
    padding-top: 77px;
  }

  body::before,
  body::after,
  body.page-home::before,
  body.page-home::after {
    display: none !important;
  }

  .page-hero,
  .section-alt,
  .site-footer {
    background: #ffffff;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 18px;
  }

  .site-header .brand-lockup {
    width: 180px;
    height: 34px;
    margin-right: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  }

  .nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: grid;
    align-content: start;
    gap: 0;
    min-height: 100dvh;
    padding: 88px 28px 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 0;
    border-radius: 0;
    box-shadow: 0 30px 80px rgba(17, 17, 17, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a,
  .nav-item {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .nav-item {
    display: block;
  }

  .site-nav > a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
  }

  .nav-item > a {
    display: block;
    width: 100%;
    padding: 13px 0 10px 0;
    font-size: 15px;
  }

  .nav-item > a::before {
    display: none;
  }

  .nav-item-toggle {
    display: none !important;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 10px 18px;
    margin-top: 0;
    display: grid;
    gap: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-dropdown a {
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.5;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    transform: none;
  }

  body.page-home main,
  body.page-home .site-footer {
    width: min(100% - 24px, 1240px);
  }

  body.page-home main {
    width: 100%;
  }

  body.page-home .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  main,
  .site-footer {
    width: min(100% - 24px, 1240px);
  }

  .hero,
  .page-hero,
  .section {
    padding: 72px 0;
  }

  .section-return {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .page-hero {
    padding-top: 56px;
    padding-bottom: 18px;
    background: transparent;
  }

  .page-hero + .section {
    padding-top: 24px;
  }

  .home-hero {
    min-height: calc(100svh - 76px);
    width: 100%;
    display: flex;
    align-items: center;
    padding: 36px 20px 42px;
    margin-left: 0;
    margin-right: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(244, 246, 248, 0.56) 34%, rgba(255, 255, 255, 0.76) 100%),
      url("/assets/images/mobile-hero-vertical-user.png") center top / cover no-repeat;
    animation: heroPanMobile 12s ease-in-out infinite alternate;
  }

  .home-hero::after {
    display: none;
  }

  .home-hero .hero-copy {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }

  .home-hero .hero-copy::after {
    left: -10px;
    bottom: -32px;
    width: 220px;
    height: 72px;
    opacity: 0.24;
  }

  .hero h1 {
    font-size: clamp(26px, 9vw, 40px);
    line-height: 1.18;
    letter-spacing: 0;
  }

  .page-hero h1,
  .section-head h2,
  .split h2,
  .section-cta h2 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.22;
    letter-spacing: 0;
  }

  .page-recruit .section-head h2 {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.28;
  }

  .page-recruit .section-summary,
  .page-recruit .card-plain p,
  .page-recruit .subnav-stack-copy {
    font-size: 14px;
    line-height: 1.9;
  }

  .page-recruit .section + .section {
    padding-top: 28px;
  }

  .page-recruit main > .section:last-of-type {
    padding-bottom: 8px;
  }

  body.page-recruit .site-footer {
    padding-top: 20px;
  }

  body.page-recruit .footer-grid {
    padding-top: 16px;
  }

  .page-service .breadcrumb-inline {
    margin-top: -18px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .page-service .breadcrumb-inline .section-summary {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-head h2::after,
  .split h2::after,
  .page-hero h1::after,
  .section-cta h2::after {
    width: 62px;
    height: 3px;
    margin-top: 14px;
  }

  .lead {
    margin-top: 24px;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.85;
  }

  .lead-desktop {
    display: block;
  }

  .lead-mobile {
    display: none;
  }

  .section-summary,
  .prose p,
  .card p,
  .split p,
  .table-card td,
  .news-item p:last-child,
  .form-note {
    font-size: 14px;
    line-height: 1.85;
  }

  .breadcrumb {
    margin-top: 12px;
  }

  .section-head > * + .card,
  .section-head > * + .prose,
  .section-head > * + .section-summary {
    margin-top: 18px;
  }

  .cards,
  .stats-grid,
  .office-grid,
  .contact-grid,
  .interview-grid,
  .media-grid,
  .visual-strip,
  .number-layout,
  .number-bars,
  .office-sections {
    gap: 20px;
    margin-top: 28px;
  }

  .office-section .split {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .office-section .split .prose,
  .office-section .split .media-card,
  .office-section.reverse .split .prose,
  .office-section.reverse .split .media-card {
    order: initial;
  }

  .office-section.reverse .split {
    display: flex;
    flex-direction: column;
  }

  .hero-panel,
  .card,
  .table-card,
  .form-card,
  .quote-card,
  .news-item,
  .media-card,
  .service-card,
  .occupation-card,
  .stats-card {
    padding: 20px;
    border-radius: 18px;
  }

  .card h3,
  .news-item h3,
  .stats-card h3,
  .table-card h3,
  .quote-card h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  .card-plain,
  .quote-card-plain {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-message .media-card {
    overflow: hidden;
  }

  .message-unified-card {
    padding: 20px;
  }

  .message-unified-layout {
    gap: 24px;
  }

  .page-message .message-card-meta {
    position: static;
    padding: 18px 0 2px;
    color: var(--text);
    background: transparent;
  }

  .page-message .message-body {
    padding-top: 0;
  }

  .page-message .message-body::before {
    width: 44px;
    margin-bottom: 16px;
  }

  .page-message .message-card-meta h3 {
    font-size: 18px;
    line-height: 1.42;
  }

  .page-message .message-card-meta p:last-child {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.8;
  }

  .table-card table {
    margin-top: 14px;
  }

  .table-card th,
  .table-card td {
    display: block;
    width: auto;
    padding: 10px 0;
    font-size: 14px;
  }

  .table-card th {
    padding-bottom: 0;
    border-bottom: 0;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .media-card img {
    min-height: 180px;
  }

  .media-card.tight img {
    min-height: 160px;
  }

  .media-card.tall img {
    min-height: 220px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-visual.hero-visual-wide {
    min-height: 240px;
  }

  .hero-visual figcaption {
    padding: 18px;
  }

  .number-card {
    padding: 22px;
  }

  .number-gender {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .number-gender-donut {
    width: 140px;
  }

  .number-gender-legend {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
  }

  .number-gender-item {
    justify-items: center;
    text-align: center;
  }

  .number-highlight {
    font-size: 44px;
  }

  .benefit-split {
    grid-template-columns: 1fr;
  }

  .holiday-chip-grid {
    gap: 8px;
  }

  .interview-summary-card img {
    padding: 16px 16px 0;
  }

  .news-item img {
    width: calc(100% + 40px);
    height: 180px;
    margin: -20px -20px 16px;
  }

  .section-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .subnav-cta,
  .button {
    width: 100%;
  }

  .site-footer {
    padding: 40px 0 56px;
  }

  .site-footer {
    background: #ffffff;
  }

  .footer-grid {
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

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

  .footer-nav-group {
    gap: 10px;
  }

  .footer-nav-title a {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .footer-nav-links {
    gap: 8px;
    padding-left: 0;
  }

  .footer-nav-links a {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
    color: rgba(17, 17, 17, 0.72);
  }

  .button {
    width: 100%;
  }

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

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav-group {
    gap: 12px;
  }

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

/* TOP staging v2 final overrides after legacy shared layout */
body.page-home-v2 {
  background: var(--home-paper);
}

body.page-home-v2::before,
body.page-home-v2::after {
  display: none;
}

body.page-home-v2 .home2-main,
body.page-home-v2 .home2-footer {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.page-home-v2 .home2-section {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 860px) {
  body.page-home-v2 .home2-hero-title,
  body.page-home-v2 .home2-hero-lead,
  body.page-home-v2 .home2-guide-title {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  body.page-home-v2 .home2-hero-title > span {
    display: block;
    width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  body.page-home-v2 .home2-mobile-line {
    display: block;
  }

  body.page-home-v2 .home2-lead-piece {
    display: block;
  }

  body.page-home-v2 .home2-guide-piece {
    display: inline-block;
  }
}

@media (max-width: 760px) {
  body.page-home-v2 {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  body.page-home-v2 .home2-hero-title,
  body.page-home-v2 .home2-hero-lead,
  body.page-home-v2 .home2-guide-title {
    width: min(362px, calc(100vw - 28px));
    max-width: min(362px, calc(100vw - 28px));
  }
}
