: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;
}

*,
*::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("https://mediabeats.co.jp/wp-content/uploads/2023/06/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("https://mediabeats.co.jp/wp-content/uploads/2023/06/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("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1600&q=80")
      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("/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;
  }
}
