:root {
  --ink: #08111f;
  --text: #172235;
  --muted: #667386;
  --white: #ffffff;
  --paper: #f6f8fa;
  --line: #dce4ea;
  --cyan: #19b8d0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 96px;
  padding: 0 clamp(24px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(8, 17, 31, 0.1);
  backdrop-filter: blur(16px);
}

.brand-logo {
  display: block;
  width: clamp(150px, 18vw, 230px);
  height: auto;
}

.global-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 2.1vw, 30px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.global-nav a {
  position: relative;
  padding: 34px 0;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global-nav .nav-contact {
  min-width: 128px;
  padding: 12px 18px;
  text-align: center;
  border: 0 !important;
  box-shadow: none;
}

.global-nav .nav-contact::after {
  display: none;
}

.global-nav .nav-contact:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--white) 0%, var(--white) 64%, #f7f8fa 64%, #f7f8fa 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  right: clamp(24px, 5vw, 72px);
  bottom: 52px;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}

.hero-city {
  position: absolute;
  inset: 96px 0 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 32%, rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.1)),
    url("assets/bizcrew-future-life-bg-v2.png");
  background-position: center top, center top, center top;
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  opacity: 1;
  pointer-events: none;
  transform: translate3d(0, 10px, 0);
  animation: cityImageIn 980ms ease both;
}

.motion-line {
  position: absolute;
  z-index: 1;
  display: block;
  width: min(820px, 68vw);
  height: 2px;
  background: linear-gradient(90deg, rgba(25, 184, 208, 0), rgba(25, 184, 208, 0.86), rgba(8, 17, 31, 0.18), rgba(25, 184, 208, 0));
  box-shadow: 0 0 20px rgba(25, 184, 208, 0.16);
  opacity: 0.72;
  pointer-events: none;
  animation: signalRun 5.6s ease-in-out infinite;
}

.line-a {
  left: -18vw;
  top: 44%;
  transform: rotate(-7deg);
}

.line-b {
  right: -18vw;
  bottom: 24%;
  transform: rotate(6deg);
  animation-delay: 1.8s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100svh;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 148px 0 88px;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  position: relative;
  max-width: 980px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(46px, 6.8vw, 106px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: none;
  will-change: clip-path, transform, opacity;
  animation: titleIn 5s cubic-bezier(0.18, 0.86, 0.24, 1) both;
}

.hero-copy {
  min-width: 0;
  max-width: 990px;
}

.hero-lead {
  max-width: 820px;
  margin: 34px 0 0;
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.42;
  animation: fadeUp 720ms ease both 160ms;
}

.hero-lead span {
  display: inline;
}

.hero-description {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  animation: fadeUp 720ms ease both 260ms;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 184px;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: ">";
  margin-left: 28px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(8, 17, 31, 0.1);
}

.button-primary {
  color: var(--ink);
  border-color: var(--cyan);
  background: var(--cyan);
}

.button-ghost {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero-foot {
  display: none;
}

.statement,
.business,
.news,
.recruit,
.partner,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(96px, 11vw, 160px) 0;
  border-top: 1px solid var(--line);
}

.section-title {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.section-title h2,
.recruit-lead h2,
.partner-copy h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5.8vw, 86px);
  font-weight: 900;
  line-height: 1.05;
}

.section-title p:not(.section-label),
.statement-body p,
.news-list p,
.recruit-lead p,
.recruit-words p,
.partner-copy p {
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
}

.statement-body {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  margin-top: 54px;
}

.statement-body::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 12px;
  background: var(--cyan);
}

.statement-body p {
  margin: 0;
}

.statement {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(48px, 6vw, 82px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  background:
    linear-gradient(110deg, var(--white) 0%, #f7fbfd 42%, #eef8fb 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement::before {
  content: "FORWARD";
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  top: 50%;
  color: rgba(8, 17, 31, 0.025);
  font-size: clamp(58px, 10vw, 146px);
  font-weight: 900;
  line-height: 0.9;
  -webkit-text-stroke: 1.25px rgba(8, 17, 31, 0.16);
  text-stroke: 1.25px rgba(8, 17, 31, 0.16);
  transform: translateY(-50%);
  pointer-events: none;
}

.statement::after {
  content: "";
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  right: clamp(20px, 4vw, 60px);
  bottom: clamp(20px, 2.8vw, 34px);
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(25, 184, 208, 0), rgba(25, 184, 208, 0.95), rgba(255, 255, 255, 0.28), rgba(25, 184, 208, 0));
  box-shadow: 0 0 18px rgba(25, 184, 208, 0.16);
  pointer-events: none;
  animation: statementLineSlide 5.6s ease-in-out infinite;
}

.message-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--cyan);
  font-size: clamp(16px, 2vw, 25px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.message-title span {
  color: inherit;
}

.statement-marquee {
  position: absolute;
  top: clamp(72px, 8vw, 112px);
  left: 50%;
  z-index: 0;
  width: 100vw;
  color: rgba(8, 17, 31, 0.035);
  font-size: clamp(62px, 10vw, 142px);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
  animation: statementTextFlow 28s linear infinite;
}

.statement-marquee span {
  display: inline-block;
}

.statement-grid {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.statement-copy h2 {
  margin: clamp(18px, 2.4vw, 30px) 0 0;
  color: var(--ink);
  font-size: clamp(32px, 4.2vw, 62px);
  font-weight: 900;
  line-height: 1.16;
}

.statement-copy p:not(.section-label):not(.message-title) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
}

.message-sketch {
  position: absolute;
  z-index: 0;
  right: clamp(24px, 7vw, 116px);
  top: clamp(190px, 21vw, 286px);
  width: min(38vw, 520px);
  max-width: 46%;
  opacity: 0.28;
  pointer-events: none;
}

.statement-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.44 / 1;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.statement-visual::after {
  content: none;
  position: absolute;
  inset: 0;
  border: 1px solid rgba(25, 184, 208, 0.32);
  pointer-events: none;
}

.statement-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.company-board {
  position: absolute;
  inset: clamp(22px, 3vw, 42px);
}

.company-board::before {
  content: "BIZCREW";
  position: absolute;
  right: -18px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(78px, 11vw, 150px);
  font-weight: 900;
  line-height: 0.8;
  animation: companyGhostMove 9s ease-in-out infinite alternate;
}

.company-board-title {
  position: absolute;
  top: 0;
  left: 0;
}

.company-board-title span {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.company-board-title strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  line-height: 0.95;
}

.company-board-line {
  position: absolute;
  left: 10%;
  right: 4%;
  top: 58%;
  height: 3px;
  background: linear-gradient(90deg, rgba(25, 184, 208, 0), var(--cyan), rgba(255, 255, 255, 0.86));
  transform: rotate(-13deg);
  transform-origin: left center;
  animation: companyLineMove 4.8s ease-in-out infinite alternate;
}

.company-board-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(112px, 13vw, 148px);
  height: clamp(112px, 13vw, 148px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  animation: companyNodeFloat 5.8s ease-in-out infinite;
}

.company-board-node span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.company-board-node strong {
  color: var(--white);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1;
}

.company-board-node small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
}

.board-node-trust {
  left: 3%;
  bottom: 12%;
}

.board-node-action {
  left: 41%;
  top: 43%;
  border-color: rgba(25, 184, 208, 0.86);
  animation-delay: 0.7s;
}

.board-node-growth {
  right: 2%;
  top: 16%;
  background: rgba(25, 184, 208, 0.18);
  animation-delay: 1.15s;
}

.business {
  position: relative;
  width: 100%;
  padding-inline: clamp(20px, 4vw, 60px);
  background:
    linear-gradient(135deg, rgba(25, 184, 208, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, var(--white) 54%, #f6f9fb 100%);
  overflow: hidden;
}

.business::before {
  content: "FIELD";
  position: absolute;
  right: clamp(18px, 5vw, 86px);
  top: clamp(30px, 4vw, 58px);
  z-index: 0;
  color: transparent;
  font-size: clamp(84px, 13vw, 178px);
  font-weight: 900;
  line-height: 0.9;
  -webkit-text-stroke: 1px rgba(8, 17, 31, 0.055);
  text-stroke: 1px rgba(8, 17, 31, 0.055);
  pointer-events: none;
}

.business-marquee {
  position: absolute;
  z-index: 0;
  top: clamp(88px, 10vw, 140px);
  left: 50%;
  width: 100vw;
  color: rgba(8, 17, 31, 0.035);
  font-size: clamp(72px, 10vw, 146px);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.business-marquee span {
  display: inline-block;
  animation: businessTextFlow 34s linear infinite;
}

.business-marquee-bottom {
  top: auto;
  bottom: clamp(38px, 5.2vw, 78px);
  color: rgba(8, 17, 31, 0.032);
  font-size: clamp(56px, 8.4vw, 126px);
}

.business-marquee-bottom span {
  animation: businessTextFlowReverse 38s linear infinite;
}

.business-marquee-mobile {
  display: none;
}

.business-overview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: clamp(20px, 4vw, 48px);
}

.business-copy h2 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 3.9vw, 54px);
  font-weight: 900;
  line-height: 1.2;
}

.business-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
}

.business-copy .button {
  margin-top: 34px;
}

.business-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(25, 184, 208, 0.06), transparent 32%),
    var(--white);
  box-shadow: 0 28px 80px rgba(8, 17, 31, 0.06);
}

.field-card {
  position: relative;
  min-height: 292px;
  padding: clamp(24px, 3.2vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  transition: background 220ms ease, transform 220ms ease;
}

.field-card::after {
  content: "";
  position: absolute;
  left: clamp(24px, 3.2vw, 38px);
  right: clamp(24px, 3.2vw, 38px);
  bottom: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(25, 184, 208, 0));
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 260ms ease;
}

.field-card:hover {
  background: #fbfdff;
  transform: translateY(-3px);
}

.field-card:hover::after {
  transform: scaleX(1);
}

.field-number {
  display: inline-block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.field-icon {
  position: absolute;
  right: clamp(22px, 3vw, 36px);
  top: clamp(22px, 3vw, 34px);
  display: block;
  width: clamp(54px, 5.2vw, 72px);
  height: clamp(54px, 5.2vw, 72px);
  color: rgba(8, 17, 31, 0.76);
}

.field-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.field-icon path,
.field-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.field-en {
  margin: clamp(50px, 6vw, 78px) 0 0;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.field-card h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.18;
}

.field-card p:not(.field-en) {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.22vw, 16px);
  font-weight: 700;
  line-height: 1.8;
}

.business-orbit {
  position: relative;
  min-height: 620px;
}

.orbit-ring {
  position: absolute;
  inset: 58% auto auto 50%;
  border: 2px solid rgba(25, 184, 208, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-ring-one {
  width: min(560px, 88vw);
  height: min(560px, 88vw);
  animation: orbitPulse 6s ease-in-out infinite;
}

.orbit-ring-two {
  width: min(430px, 70vw);
  height: min(430px, 70vw);
  border-color: rgba(8, 17, 31, 0.06);
  border-width: 42px;
}

.orbit-center {
  position: absolute;
  inset: 58% auto auto 50%;
  width: min(330px, 44vw);
  height: min(330px, 44vw);
  padding: 0;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  background: var(--cyan);
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 70px rgba(25, 184, 208, 0.22);
}

.center-copy {
  position: absolute;
  left: 50%;
  top: 13%;
  width: min(350px, 112%);
  transform: translateX(-50%);
}

.center-copy span {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 4px;
  box-shadow: 0 5px 18px rgba(8, 17, 31, 0.08);
  font-size: clamp(13px, 1.55vw, 20px);
  font-weight: 900;
  line-height: 1.25;
}

.center-copy span:first-child {
  border-bottom: 3px solid var(--cyan);
}

.center-icons {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  gap: 16px;
  transform: translate(-50%, -50%);
}

.center-icons svg {
  width: clamp(48px, 6.2vw, 68px);
  height: clamp(48px, 6.2vw, 68px);
}

.center-icons path,
.center-icons circle {
  fill: none;
  stroke: var(--white);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.center-labels {
  position: absolute;
  left: 50%;
  bottom: 46px;
  display: grid;
  justify-items: center;
  gap: 5px;
  width: min(270px, 84%);
  transform: translateX(-50%);
}

.center-labels span {
  display: inline-block;
  padding: 4px 12px;
  color: var(--white);
  background: #1f5faa;
  border-radius: 4px;
  font-size: clamp(12px, 1.35vw, 18px);
  font-weight: 900;
  line-height: 1.25;
}

.orbit-node {
  position: absolute;
  display: block;
  width: 168px;
  height: 168px;
  padding: 18px;
  translate: -50% -50%;
  text-align: center;
  border: 2px solid rgba(25, 184, 208, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.08);
  animation: nodeFloat 5.8s ease-in-out infinite;
}

.orbit-node span {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.orbit-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 34px;
  height: 34px;
  color: var(--ink);
  opacity: 0.78;
  transform: translate(-50%, -50%);
}

.orbit-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbit-icon path,
.orbit-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.orbit-node strong {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 24px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.node-realestate {
  left: 10%;
  top: 48%;
}

.node-solar {
  left: 90%;
  top: 48%;
  right: auto;
  animation-delay: 0.5s;
}

.node-power {
  left: 18%;
  top: 90%;
  bottom: auto;
  animation-delay: 0.9s;
}

.node-network {
  left: 82%;
  top: 90%;
  right: auto;
  bottom: auto;
  animation-delay: 1.3s;
}

.news-list span,
.recruit-words span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.news-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.news-list article {
  position: relative;
  display: grid;
  grid-template-columns: 150px 130px 1fr;
  gap: clamp(16px, 3vw, 42px);
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.news-list article::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 42px;
  height: 2px;
  background: var(--cyan);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.news-list article:hover::after {
  opacity: 1;
  transform: translateX(0);
}

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

.news-list p {
  margin: 0;
}

.recruit {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(132deg, transparent 0 58%, rgba(25, 184, 208, 0.07) 58% 68%, transparent 68%),
    var(--white);
}

.recruit::before {
  content: "CREW IN ACTION";
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 0;
  color: rgba(8, 17, 31, 0.035);
  font-size: clamp(58px, 9vw, 128px);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
  pointer-events: none;
}

.recruit::after {
  content: "";
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  right: clamp(20px, 4vw, 60px);
  top: clamp(44px, 6vw, 82px);
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 184, 208, 0), rgba(25, 184, 208, 0.62), rgba(8, 17, 31, 0.08));
  pointer-events: none;
}

.recruit-lead {
  position: sticky;
  top: 130px;
  z-index: 1;
  align-self: start;
}

.recruit-lead h2 {
  margin-top: 18px;
}

.recruit-lead p {
  max-width: 540px;
  margin: 30px 0 0;
}

.recruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.recruit-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(25, 184, 208, 0.1);
  border: 1px solid rgba(25, 184, 208, 0.38);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.recruit-lead .button {
  margin-top: 34px;
}

.recruit-visual {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.12);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(8, 17, 31, 0.08);
}

.recruit-visual img {
  width: 100%;
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  animation: slowImageDrift 18s ease-in-out infinite alternate;
}

.recruit-words {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
}

.recruit-words article {
  position: relative;
  min-height: 220px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  overflow: hidden;
}

.recruit-words strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(44px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 0.92;
  animation: recruitWordMove 4.8s ease-in-out infinite;
}

.recruit-words article:nth-child(2) strong {
  animation-delay: 0.45s;
}

.recruit-words article:nth-child(3) strong {
  animation-delay: 0.9s;
}

.recruit-words p {
  max-width: 520px;
  margin: 24px 0 0;
}

.recruit-words article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(25, 184, 208, 0.42);
  transform: rotate(45deg);
  animation: sketchFloat 6.2s ease-in-out infinite;
}

.partner {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.partner-copy h2 {
  margin-top: 18px;
}

.partner-copy p {
  max-width: 560px;
  margin: 28px 0 0;
}

.partner-copy .button {
  margin-top: 34px;
}

.partner-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.partner-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  background: var(--cyan);
  pointer-events: none;
}

.partner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08)),
    linear-gradient(0deg, rgba(8,17,31,0.1), transparent 54%);
  pointer-events: none;
}

.partner-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.02);
  animation: slowImageDrift 18s ease-in-out infinite alternate;
}

.word-sketch {
  position: absolute;
  right: 6px;
  top: 32px;
  width: clamp(92px, 11vw, 160px);
  height: clamp(92px, 11vw, 160px);
  opacity: 0.2;
  pointer-events: none;
}

.word-sketch::before,
.word-sketch::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-8deg);
  animation: sketchFloat 5.2s ease-in-out infinite;
}

.word-sketch::after {
  inset: 28%;
  border-color: var(--cyan);
  border-radius: 0;
  transform: rotate(42deg);
  animation-delay: 0.4s;
}

.word-sketch-two::before {
  border-radius: 0;
}

.word-sketch-three::before {
  border-radius: 42% 58% 48% 52%;
}

.contact {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(78px, 10vw, 132px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(25, 184, 208, 0.18), transparent 34%),
    linear-gradient(180deg, #07101d 0%, #0b1a2b 100%);
}

.contact::before {
  content: "CONTACT";
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  bottom: clamp(14px, 2vw, 28px);
  color: transparent;
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  text-stroke: 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-copy p:not(.section-label) {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
}

.contact h2 {
  color: var(--white);
}

.contact-actions {
  display: grid;
  gap: 14px;
  justify-content: flex-end;
}

.contact-button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 28px;
  align-items: center;
  min-width: min(340px, 84vw);
  min-height: 72px;
  padding: 0 26px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--white);
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-button span {
  grid-column: 1 / -1;
  align-self: end;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-button::after {
  content: ">";
  color: var(--cyan);
  font-size: 18px;
}

.contact-button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 92px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 74px);
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(25, 184, 208, 0.14), transparent 34%),
    #061621;
}

.site-footer::before {
  content: "BIZCREW";
  position: absolute;
  right: -0.08em;
  bottom: -0.18em;
  color: transparent;
  font-size: clamp(88px, 16vw, 240px);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  text-stroke: 1px rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.footer-rule {
  width: min(1180px, 100%);
  height: 1px;
  margin: 0 auto clamp(58px, 8vw, 92px);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(52px, 8vw, 118px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: inline-block;
  width: clamp(190px, 26vw, 310px);
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer-name {
  margin: clamp(38px, 5vw, 58px) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2.1vw, 27px);
  font-weight: 900;
}

.footer-address,
.footer-contact-text {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 800;
  line-height: 1.85;
}

.footer-contact-text {
  margin-top: 28px;
  letter-spacing: 0.04em;
}

.footer-company small {
  display: block;
  margin-top: clamp(40px, 5vw, 62px);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.footer-menu {
  display: grid;
  align-content: start;
  gap: clamp(48px, 7vw, 84px);
}

.footer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.footer-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-action:hover {
  color: #061621;
  background: var(--white);
  transform: translateY(-3px);
}

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

.footer-nav a:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.footer-nav a:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.footer-nav a:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.footer-nav a:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}

.footer-nav a:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.footer-nav a:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 900;
}

.business-detail-page {
  padding: 150px clamp(20px, 5vw, 72px) clamp(82px, 10vw, 128px);
  background: var(--white);
}

.business-detail-hero,
.business-detail-list,
.business-detail-contact {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.business-detail-hero {
  position: relative;
  min-height: clamp(430px, 44vw, 560px);
  padding: clamp(72px, 10vw, 140px) clamp(24px, 5vw, 64px) clamp(56px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.56) 74%, rgba(255, 255, 255, 0.12) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.2)),
    url("assets/service-alliance.png") center / cover;
  border: 1px solid var(--line);
  overflow: hidden;
}

.business-detail-hero::after {
  content: "BUSINESS DETAIL";
  position: absolute;
  left: -0.08em;
  bottom: -0.18em;
  z-index: 0;
  color: rgba(8, 17, 31, 0.035);
  font-size: clamp(82px, 16vw, 220px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.business-detail-hero > * {
  position: relative;
  z-index: 1;
}

.business-detail-hero h1 {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1.1;
}

.business-detail-hero p:not(.section-label),
.business-detail-list p,
.business-detail-contact p {
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
}

.business-detail-hero p:not(.section-label) {
  max-width: 760px;
  margin: 34px 0 0;
}

.business-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.business-detail-list article {
  --detail-rotate: -7deg;
  --detail-delay: 0s;
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(32px, 4vw, 56px);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.business-detail-list article:nth-child(even) {
  --detail-rotate: 7deg;
  --detail-delay: 1.4s;
}

.business-detail-list article::before {
  content: "";
  position: absolute;
  left: -44%;
  top: 28%;
  z-index: 0;
  width: 74%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(18, 183, 214, 0.82), transparent);
  transform: translateX(-38%) rotate(var(--detail-rotate));
  animation: detailSignalRun 6.4s ease-in-out infinite;
  animation-delay: var(--detail-delay);
  pointer-events: none;
}

.business-detail-list article:nth-child(3)::before,
.business-detail-list article:nth-child(4)::before {
  top: 66%;
}

.business-detail-list article > * {
  position: relative;
  z-index: 1;
}

.business-detail-list span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.business-detail-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin: 26px 0 24px;
  color: var(--cyan);
  opacity: 0.95;
}

.business-detail-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-detail-list h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.25;
}

.business-detail-list p {
  margin: 28px 0 0;
}

.business-detail-contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding: clamp(64px, 9vw, 120px) 0 0;
  border-top: 1px solid var(--line);
}

.business-detail-contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.08;
}

.business-detail-contact p {
  max-width: 720px;
  margin: 28px 0 0;
}

.business-detail-contact .button {
  margin-top: 34px;
}

.business-detail-contact-visual {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: clamp(300px, 34vw, 430px);
  margin: 0;
  background: #eef5f8;
}

.business-detail-contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(0deg, rgba(8, 17, 31, 0.16), transparent 46%);
  pointer-events: none;
}

.business-detail-contact-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

@keyframes titleIn {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-42px);
  }
  42% {
    opacity: 1;
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes detailSignalRun {
  0%,
  100% {
    opacity: 0.14;
    transform: translateX(-38%) rotate(var(--detail-rotate));
  }
  48% {
    opacity: 0.74;
    transform: translateX(168%) rotate(var(--detail-rotate));
  }
}

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

@keyframes signalRun {
  0%, 100% {
    opacity: 0;
    translate: -42px 0;
  }
  38%, 72% {
    opacity: 0.82;
  }
  100% {
    translate: 72px 0;
  }
}

@keyframes sketchFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  50% {
    transform: translate3d(-8px, 7px, 0) rotate(5deg);
  }
}

@keyframes slowImageDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-12px, 6px, 0);
  }
}

@keyframes cityImageIn {
  from {
    opacity: 0;
    transform: translate3d(20px, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes businessTextFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes businessTextFlowReverse {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes statementTextFlow {
  from {
    transform: translateX(-45%);
  }
  to {
    transform: translateX(-55%);
  }
}

@keyframes statementLineSlide {
  0%, 100% {
    opacity: 0.16;
    transform: translateX(-4%);
  }
  36%, 72% {
    opacity: 0.72;
  }
  100% {
    transform: translateX(4%);
  }
}

@keyframes companyLineMove {
  from {
    opacity: 0.72;
    transform: rotate(-13deg) scaleX(0.86);
  }
  to {
    opacity: 1;
    transform: rotate(-13deg) scaleX(1.05);
  }
}

@keyframes companyNodeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -9px, 0);
  }
}

@keyframes companyGhostMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-18px, 8px, 0);
  }
}

@keyframes orbitPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.92;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.025);
    opacity: 0.58;
  }
}

@keyframes nodeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes recruitWordMove {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, 0, 0);
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .section-title,
  .statement-body,
  .statement-grid,
  .recruit,
  .partner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: center;
    padding-top: 140px;
  }

  .hero-city {
    inset: 112px 0 0;
    background-size: cover, cover, cover;
    opacity: 1;
  }

  .motion-line {
    display: block;
    width: min(620px, 86vw);
    opacity: 0.78;
  }

  .line-a {
    left: -22vw;
    top: 43%;
  }

  .line-b {
    right: -22vw;
    bottom: 25%;
  }

  .business {
    padding-inline: 18px;
  }

  .business::before {
    right: 34px;
    top: 76px;
    color: rgba(8, 17, 31, 0.025);
    font-size: clamp(58px, 10vw, 146px);
    -webkit-text-stroke: 1.25px rgba(8, 17, 31, 0.16);
    text-stroke: 1.25px rgba(8, 17, 31, 0.16);
  }

  .business-overview {
    width: min(1080px, 100%);
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.12fr);
    gap: clamp(22px, 3.4vw, 42px);
  }

  .business-copy,
  .business-fields,
  .field-card {
    min-width: 0;
  }

  .business-copy p {
    max-width: 94%;
    margin-top: 20px;
    font-size: clamp(13px, 1.45vw, 15px);
    line-height: 1.58;
  }

  .business-copy p:nth-of-type(2) {
    max-width: 96%;
    font-size: clamp(13px, 1.48vw, 14.5px);
    line-height: 1.6;
  }

  .business-copy p:nth-of-type(3) {
    max-width: 96%;
    margin-top: 16px;
    font-size: clamp(13px, 1.45vw, 14.5px);
    line-height: 1.55;
    white-space: normal;
  }

  .business-copy .button {
    margin-top: 24px;
    min-width: 0;
    width: min(280px, 90%);
  }

  .field-card {
    padding: clamp(18px, 2.4vw, 28px);
  }

  .field-icon {
    right: clamp(16px, 2.2vw, 24px);
    width: clamp(44px, 5vw, 58px);
    height: clamp(44px, 5vw, 58px);
  }

  .field-card h3 {
    font-size: clamp(20px, 2.7vw, 28px);
    line-height: 1.16;
  }

  .field-card p:not(.field-en) {
    max-width: 94%;
    font-size: clamp(12px, 1.55vw, 14px);
    line-height: 1.75;
  }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 22px 0;
  }

  .recruit-lead {
    position: relative;
    top: auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-actions {
    justify-content: flex-start;
  }

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

  .footer-inner {
    gap: 48px;
  }

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

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

  .footer-company small {
    white-space: normal;
  }

  .partner-visual {
    min-height: 360px;
  }

  .partner-visual img {
    min-height: 360px;
  }

  .statement {
    background:
      linear-gradient(110deg, var(--white) 0%, #f7fbfd 42%, #eef8fb 100%);
  }

  .statement::before {
    mask-image: none;
  }

  .message-sketch {
    right: -24px;
    top: auto;
    bottom: 28px;
    width: 440px;
    max-width: 62%;
    opacity: 0.34;
  }

}

@media (max-width: 760px) {
  .statement,
  .business,
  .recruit,
  .contact {
    padding-block: clamp(72px, 14vw, 104px);
  }

  .business-overview {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 38px;
  }

  .business > .business-marquee:not(.business-marquee-bottom) {
    display: none;
  }

  .business::before {
    right: 46px;
    top: 78px;
    font-size: clamp(48px, 15.5vw, 68px);
    color: rgba(8, 17, 31, 0.025);
    -webkit-text-stroke: 1.25px rgba(8, 17, 31, 0.16);
    text-stroke: 1.25px rgba(8, 17, 31, 0.16);
  }

  .business-marquee-bottom {
    bottom: 8px;
  }

  .business-marquee-mobile {
    position: relative;
    display: block;
    top: auto;
    left: 50%;
    width: 100vw;
    margin: -8px 0 -4px;
    color: rgba(8, 17, 31, 0.035);
    font-size: clamp(44px, 14vw, 64px);
    line-height: 0.9;
    transform: translateX(-50%);
  }

  .business-fields {
    grid-template-columns: 1fr;
  }

  .field-card {
    min-height: 230px;
  }

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

  .footer-rule {
    margin-bottom: 42px;
  }

  .footer-actions {
    gap: 14px;
  }

  .footer-action {
    min-height: 66px;
    font-size: 12px;
  }

  .business-detail-list {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .business-detail-list article {
    min-height: 0;
    border-right: 0;
  }

  .business-detail-contact {
    grid-template-columns: 1fr;
  }

  .business-detail-contact-visual {
    width: 100%;
    min-height: 260px;
  }

  .business-orbit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  .orbit-ring,
  .orbit-center {
    display: none;
  }

  .orbit-node {
    position: relative;
    display: grid;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 92px;
    translate: 0 0;
    grid-template-columns: 42px 48px 1fr;
    justify-items: start;
    align-items: center;
    border-radius: 0;
    text-align: left;
    animation: none;
  }

  .orbit-icon {
    position: static;
    grid-column: 2;
    grid-row: 1;
    width: 30px;
    height: 30px;
    transform: none;
  }

  .orbit-node strong {
    position: static;
    grid-column: 3;
  }

  .orbit-node span {
    position: static;
  }

  .orbit-node strong br {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 104px;
    padding: 14px 18px 12px;
  }

  .brand-logo {
    width: 152px;
  }

  .global-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    overflow-x: visible;
    gap: 10px 16px;
    width: 100%;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: normal;
  }

  .global-nav::-webkit-scrollbar {
    display: none;
  }

  .global-nav a {
    padding: 0 0 8px;
    font-size: 12px;
  }

  .global-nav .nav-contact {
    min-width: 0;
    padding: 0 0 8px;
    border: 0 !important;
    box-shadow: none;
  }

  .global-nav a::after {
    bottom: 0;
  }

  .business-detail-page {
    padding-top: 122px;
  }

  .business-detail-hero {
    min-height: 420px;
    padding-top: 42px;
    background-position: center, center, 62% center;
  }

  .business-detail-hero h1,
  .business-detail-list h2,
  .business-detail-contact h2 {
    overflow-wrap: anywhere;
  }

  .business-detail-hero h1 {
    max-width: 100%;
    font-size: clamp(26px, 6.8vw, 30px);
    line-height: 1.24;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .hero::before,
  .hero-foot {
    display: none;
  }

  .motion-line {
    display: block;
    width: min(520px, 92vw);
    height: 2px;
    opacity: 0.64;
  }

  .line-a {
    left: -28vw;
    top: 42%;
  }

  .line-b {
    right: -28vw;
    bottom: 26%;
  }

  .hero {
    min-height: 88svh;
    background: var(--white);
  }

  .hero-city {
    inset: 104px 0 0;
    background-position: center top, center top, 56% top;
    background-size: cover, cover, cover;
    opacity: 1;
  }

  .hero-inner {
    min-height: 88svh;
    padding: 138px 18px 58px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.7vw, 38px);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .hero-lead {
    max-width: 100%;
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-lead span {
    display: block;
  }

  .hero-description {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

  .business-copy h2,
  .recruit-lead h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .business-copy h2 {
    font-size: clamp(24px, 6.8vw, 29px);
    line-height: 1.28;
    word-break: keep-all;
  }

  .business-copy p,
  .recruit-lead p,
  .field-card p:not(.field-en),
  .recruit-words p {
    line-height: 1.75;
  }

  .word-sketch {
    opacity: 0.14;
  }

  .statement-copy h2 {
    font-size: clamp(27px, 7vw, 34px);
  }

  .statement::before {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 34px;
    font-size: clamp(48px, 15.5vw, 68px);
    transform: translateX(-50%);
  }

  .recruit::before {
    left: 50%;
    right: auto;
    bottom: 20px;
    font-size: clamp(36px, 9.4vw, 44px);
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .statement-visual img {
    aspect-ratio: 16 / 9;
  }

  .partner-visual,
  .partner-visual img {
    min-height: 300px;
  }

  .site-footer {
    padding: 46px 18px 42px;
  }

  .footer-inner {
    gap: 38px;
  }

  .footer-brand {
    width: 210px;
  }

  .footer-name {
    margin-top: 32px;
  }

  .footer-address,
  .footer-contact-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 18px;
  }

  .footer-nav a {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
/* Shared header logo */
body .site-header > .brand {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 7px !important;
  flex: 0 0 auto !important;
  text-decoration: none !important;
  color: var(--ink, #07111f) !important;
  line-height: 1 !important;
}

body .site-header > .brand .brand-text {
  display: block !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(42px, 4.2vw, 60px) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  color: currentColor !important;
}

body .site-header > .brand .brand-lines {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  height: 4px !important;
  margin-left: 3px !important;
}

body .site-header > .brand .brand-lines span {
  display: block !important;
  height: 4px !important;
}

body .site-header > .brand .brand-lines span:first-child {
  width: 82px !important;
  background: var(--cyan, #00b8cf) !important;
}

body .site-header > .brand .brand-lines span:last-child {
  width: 28px !important;
  background: currentColor !important;
}

@media (max-width: 760px) {
  body .site-header > .brand .brand-text {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  body .site-header > .brand .brand-lines span:first-child {
    width: 64px !important;
  }

  body .site-header > .brand .brand-lines span:last-child {
    width: 22px !important;
  }
}
