/* ============================================
   HACOLOGI — Global Stylesheet
   ヒーロー: 既存ブランドのレインボー表現
   その他: 企業サイト準拠のミニマル設計
   ============================================ */

:root {
  --red:    #FF3366;
  --orange: #FF9900;
  --yellow: #FFD600;
  --green:  #33CC33;
  --cyan:   #00CED1;
  --blue:   #3399FF;
  --purple: #9933FF;
  --pink:   #FF66B2;

  --ink:        #0a0a0a;
  --ink-2:      #222;
  --text:       #141414;
  --text-sub:   #6a6a6a;
  --text-mute:  #9a9a9a;
  --line:       #e6e6e6;
  --line-soft:  #f0f0f0;
  --bg:         #ffffff;
  --bg-alt:     #f6f6f4;
  --bg-dark:    #0a0a0a;

  --header-h: 80px;
  --ease:  cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,.84,.44,1);

  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-en: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 1.9;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* ============ Loading Screen ============ */
.loading-screen {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .45s ease, visibility 0s linear .45s;
  overflow: hidden;
  opacity: 1; visibility: visible;
}
@supports (height: 100dvh) {
  .loading-screen { height: 100dvh; }
}
.loading-screen.loaded {
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .45s ease, visibility 0s linear .45s;
}

/* Lock page scroll & hide hero animation layers while loading is up.
   Prevents the loading screen and hero canvas from "mixing" during fade. */
html.is-loading,
html.is-loading body {
  overflow: hidden !important;
  height: 100%;
  touch-action: none;
}
html.is-loading #heroCanvas,
html.is-loading .hero-road,
html.is-loading .hero-speed-lines {
  opacity: 0 !important;
  visibility: hidden !important;
}
#heroCanvas, .hero-road, .hero-speed-lines {
  transition: opacity .35s ease;
}
.loading-inner {
  position: relative; text-align: center;
  width: min(440px, 88vw);
  padding-bottom: 40px;
}
.loading-logo {
  display: block; font-size: 18px; font-weight: 700; letter-spacing: .3em;
  margin-bottom: 44px; color: var(--ink);
}

/* Truck stage */
.loading-truck-stage {
  position: relative; height: 110px; margin-bottom: 32px;
  overflow: hidden;
}

/* Speed streaks behind truck */
.loading-streaks {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.loading-streaks span {
  position: absolute; height: 2px; border-radius: 1px; opacity: .6;
  animation: loadStreak 1.1s linear infinite;
}
.loading-streaks span:nth-child(1){ width: 46px; top: 22%; background: var(--red);    animation-delay: 0s;}
.loading-streaks span:nth-child(2){ width: 60px; top: 32%; background: var(--orange); animation-delay: .18s;}
.loading-streaks span:nth-child(3){ width: 36px; top: 42%; background: var(--yellow); animation-delay: .06s;}
.loading-streaks span:nth-child(4){ width: 54px; top: 52%; background: var(--green);  animation-delay: .3s;}
.loading-streaks span:nth-child(5){ width: 40px; top: 18%; background: var(--cyan);   animation-delay: .42s;}
.loading-streaks span:nth-child(6){ width: 50px; top: 58%; background: var(--blue);   animation-delay: .12s;}
.loading-streaks span:nth-child(7){ width: 30px; top: 28%; background: var(--purple); animation-delay: .25s;}
.loading-streaks span:nth-child(8){ width: 58px; top: 48%; background: var(--pink);   animation-delay: .38s;}
.loading-streaks span:nth-child(9){ width: 34px; top: 38%; background: var(--green);  animation-delay: .5s;}
.loading-streaks span:nth-child(10){ width: 44px; top: 62%; background: var(--red);   animation-delay: .2s;}
@keyframes loadStreak {
  0%   { transform: translateX(-80px); opacity: 0; }
  20%  { opacity: .7; }
  100% { transform: translateX(520px); opacity: 0; }
}

/* Truck itself — slight up/down bounce */
.loading-truck {
  position: absolute; left: 50%; top: 10px;
  transform: translateX(-50%);
  width: 160px; height: 80px;
  animation: truckBounce .35s ease-in-out infinite alternate;
}
.loading-truck svg { width: 100%; height: 100%; display: block; overflow: visible; }
@keyframes truckBounce {
  from { transform: translate(-50%, 0); }
  to   { transform: translate(-50%, -3px); }
}

/* Wheels spin */
.loading-truck .wheel {
  transform-origin: center;
  transform-box: fill-box;
  animation: wheelSpin .45s linear infinite;
}
@keyframes wheelSpin { to { transform: rotate(-360deg); } }

/* Road + dashed lines flowing */
.loading-road {
  position: absolute; left: -10%; right: -10%; bottom: 0;
  height: 6px;
  background: var(--ink);
}
.loading-road-lines {
  position: absolute; left: -10%; right: -10%; bottom: 14px;
  height: 2px; overflow: hidden;
}
.loading-road-lines::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(90deg, var(--ink) 50%, transparent 50%);
  background-size: 30px 2px;
  animation: roadDash .4s linear infinite;
}
@keyframes roadDash { to { background-position: -60px 0; } }

/* Exhaust puffs */
.loading-puff {
  position: absolute; left: calc(50% - 110px); bottom: 30px;
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(10,10,10,.18);
  animation: puff 1s ease-out infinite;
}
.loading-puff:nth-child(2){ animation-delay: .33s; }
.loading-puff:nth-child(3){ animation-delay: .66s; }
@keyframes puff {
  0%   { transform: translate(0, 0) scale(.4); opacity: .6; }
  100% { transform: translate(-30px, -18px) scale(1.4); opacity: 0; }
}

/* Progress bar */
.loading-bar {
  position: relative; height: 2px; background: #eee; overflow: hidden;
  margin-top: 8px;
}
.loading-bar-fill {
  position: absolute; inset: 0; width: 0;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
  animation: loadBar 2s var(--ease-out) forwards;
}
@keyframes loadBar { to { width: 100%; } }
.loading-caption {
  display: block; margin-top: 14px;
  font-family: var(--font-en); font-size: 11px; font-weight: 500;
  letter-spacing: .4em; color: var(--text-sub); text-transform: uppercase;
}

/* ============ Header ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.header.scrolled,
.header-solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.header-inner {
  max-width: 1440px; margin: 0 auto; height: 100%;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-size: 18px; font-weight: 700; letter-spacing: .04em; color: var(--ink); }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a {
  position: relative; font-size: 14px; font-weight: 500; letter-spacing: .08em; color: var(--ink);
  padding: 6px 0; transition: color .3s var(--ease);
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .4s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.nav-active::after { width: 100%; }
.nav-contact {
  padding: 10px 24px !important;
  background: var(--ink); color: #fff !important;
  border-radius: 100px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-contact::after { display: none !important; }
.nav-contact:hover { background: #333; transform: translateY(-1px); }

.hamburger { display: none; width: 32px; height: 24px; position: relative; cursor: pointer; z-index: 950; }
.hamburger span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease);
}
.hamburger span:nth-child(1){ top: 4px; }
.hamburger span:nth-child(2){ top: 11px; }
.hamburger span:nth-child(3){ top: 18px; }

/* ============ Hero (保持) ============ */
.hero {
  position: relative; min-height: 100vh;
  padding: calc(var(--header-h) + 20px) 40px 80px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #fff;
}
#heroCanvas { position: absolute; inset: 0; z-index: 0; }
.hero-road { position: absolute; left: 0; right: 0; bottom: 60px; height: 80px; z-index: 1; pointer-events: none; }
.road-lines { position: relative; height: 100%; opacity: .3; }
.road-lines span { position: absolute; bottom: 0; width: 60px; height: 3px; background: var(--ink); animation: roadFlow 3s linear infinite; }
.road-lines span:nth-child(1){ left: 0%; }
.road-lines span:nth-child(2){ left: 10%; animation-delay: .3s; }
.road-lines span:nth-child(3){ left: 20%; animation-delay: .6s; }
.road-lines span:nth-child(4){ left: 30%; animation-delay: .9s; }
.road-lines span:nth-child(5){ left: 40%; animation-delay: 1.2s; }
.road-lines span:nth-child(6){ left: 50%; animation-delay: 1.5s; }
.road-lines span:nth-child(7){ left: 60%; animation-delay: 1.8s; }
.road-lines span:nth-child(8){ left: 70%; animation-delay: 2.1s; }
.road-lines span:nth-child(9){ left: 80%; animation-delay: 2.4s; }
.road-lines span:nth-child(10){ left: 90%; animation-delay: 2.7s; }
@keyframes roadFlow { 0%{transform: translateX(0) scaleX(1); opacity:.1;} 50%{opacity:.35;} 100%{transform: translateX(-100px) scaleX(.6); opacity: 0;} }

.hero-speed-lines { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.speed-line { position: absolute; height: 2px; opacity: .35; animation: speedLine 3s linear infinite; }
.speed-line.sl1 { width: 200px; top: 15%; background: var(--red); animation-duration: 3s; }
.speed-line.sl2 { width: 300px; top: 25%; background: var(--orange); animation-duration: 2.5s; animation-delay: .5s; }
.speed-line.sl3 { width: 150px; top: 40%; background: var(--green); animation-duration: 3.5s; animation-delay: 1s; }
.speed-line.sl4 { width: 250px; top: 55%; background: var(--blue); animation-duration: 2.8s; animation-delay: .3s; }
.speed-line.sl5 { width: 180px; top: 70%; background: var(--purple); animation-duration: 3.2s; animation-delay: .8s; }
.speed-line.sl6 { width: 220px; top: 82%; background: var(--yellow); animation-duration: 2.6s; animation-delay: 1.5s; }
.speed-line.sl7 { width: 160px; top: 35%; background: var(--cyan); animation-duration: 4s; animation-delay: 2s; }
.speed-line.sl8 { width: 280px; top: 65%; background: var(--pink); animation-duration: 3s; animation-delay: .7s; }
@keyframes speedLine {
  0% { transform: translateX(-320px); opacity: 0; }
  20% { opacity: .8; }
  100% { transform: translateX(calc(100vw + 320px)); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 1100px; }
.hero-company-name { font-size: 13px; font-weight: 500; letter-spacing: .5em; color: var(--ink); margin-bottom: 36px; }
.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900; letter-spacing: -.01em; line-height: 1.2;
  color: var(--ink); margin-bottom: 36px;
}
.title-line { display: block; }
.hero-desc { font-size: clamp(15px, 1.6vw, 18px); line-height: 2; color: var(--text-sub); font-weight: 400; }

/* Slide animations */
.slide-in { opacity: 0; transform: translateY(24px); animation: slideIn 1s var(--ease-out) forwards; animation-delay: var(--delay, 0s); }
@keyframes slideIn { to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal */
.flow-in { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease-out), transform 1s var(--ease-out); transition-delay: var(--delay, 0s); }
.flow-in.visible { opacity: 1; transform: translateY(0); }

/* subpage 背景レインボーは削除（ミニマルに） */
.rainbow-streaks { display: none; }

/* ============ Global Section ============ */
.section { padding: clamp(96px, 14vw, 180px) 40px; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-inner { max-width: 1280px; margin: 0 auto; }

/* Shared title pattern (used by .section-header + .section-title + .section-num) */
.section-header { margin-bottom: clamp(56px, 8vw, 96px); }
.section-num {
  display: inline-block; font-family: var(--font-en); font-size: 13px; font-weight: 500;
  letter-spacing: .45em; color: var(--ink); margin-bottom: 24px; text-transform: uppercase;
}
.section-num::before {
  content: ''; display: inline-block; width: 16px; height: 1px;
  background: var(--ink); vertical-align: middle; margin-right: 14px;
}
.section-title { margin-bottom: 0; }
.section-title .title-ja {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight: 700; letter-spacing: .02em; line-height: 1.3; color: var(--ink);
  display: block;
}
.section-line { display: none; }

/* ============ Top page — tagline lead ============ */
.tagline-section {
  padding: clamp(140px, 18vw, 240px) 40px clamp(100px, 14vw, 180px);
  background: #fff; text-align: center; position: relative;
}
.tagline-section .tag-en {
  display: inline-block; font-family: var(--font-en);
  font-size: 13px; font-weight: 500;
  letter-spacing: .6em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 44px;
}
.tagline-section .tag-ja {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.7; letter-spacing: .04em;
  color: var(--ink);
}
.tagline-section .tag-ja .accent {
  background: linear-gradient(90deg, var(--red), var(--orange), var(--green), var(--blue), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tagline-section .tag-sub {
  margin-top: 36px;
  font-size: clamp(15px, 1.2vw, 17px); color: var(--text-sub); line-height: 2.2;
}

/* ============ 4-feature stack blocks ============ */
.feature-stack { padding: clamp(60px, 10vw, 140px) 40px; background: #fff; }
.feature-stack-inner { max-width: 1400px; margin: 0 auto; }
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  padding: clamp(60px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.feature-block:last-child { border-bottom: 1px solid var(--line); }
.feature-block.reverse .feature-visual { order: 2; }
.feature-block.reverse .feature-body { order: 1; }
.feature-visual { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.feature-visual .fv-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.2s var(--ease-out);
}
.feature-block:hover .fv-inner { transform: scale(1.05); }
.feature-visual .fv-inner svg { width: 44%; height: auto; opacity: .85; }
.feature-visual .fv-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.05) 0%, rgba(10,10,10,.22) 100%);
  pointer-events: none; z-index: 1;
}
.feature-visual .fv-num { z-index: 2; color: #fff; mix-blend-mode: difference; }
.feature-visual .fv-num {
  position: absolute; left: 28px; top: 28px;
  font-family: var(--font-en); font-size: 13px; font-weight: 500;
  letter-spacing: .3em; color: var(--ink); z-index: 2;
}
.feature-body .fb-en {
  display: inline-block; font-family: var(--font-en); font-size: 12px; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 22px;
  padding-left: 24px; position: relative;
}
.feature-body .fb-en::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 14px; height: 1px; background: var(--ink);
}
.feature-body h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700; line-height: 1.5; letter-spacing: .02em;
  margin-bottom: 32px; color: var(--ink);
}
.feature-body p { font-size: 15px; line-height: 2.1; color: var(--text-sub); margin-bottom: 40px; max-width: 520px; }
.feature-link {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 18px 36px 18px 32px;
  border: 1px solid var(--ink);
  font-family: var(--font-en); font-size: 12px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink);
  transition: color .4s var(--ease);
  position: relative; overflow: hidden;
  z-index: 0;
}
.feature-link::before {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform .5s var(--ease-out); z-index: -1;
}
.feature-link:hover { color: #fff; }
.feature-link:hover::before { transform: translateX(0); }
.feature-link .arrow { display: inline-block; transition: transform .4s var(--ease); }
.feature-link:hover .arrow { transform: translateX(4px); }

/* ============ Marquee strip ============ */
.marquee-strip { padding: 28px 0; background: var(--ink); color: #fff; overflow: hidden; }
.marquee-track {
  display: flex; gap: 80px; white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-track span {
  font-family: var(--font-en); font-size: 14px; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase;
}
.marquee-track .dot {
  letter-spacing: 0;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--green), var(--blue), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Strength section ============ */
.strength-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.strength-item {
  padding: 56px 44px;
  border-left: 1px solid var(--line);
  position: relative;
  transition: background .4s var(--ease);
}
.strength-item:last-child { border-right: 1px solid var(--line); }
.strength-item:hover { background: #fff; }
.strength-num-big {
  font-family: var(--font-en); font-size: 14px; font-weight: 500;
  letter-spacing: .3em; color: var(--ink);
  margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line);
  display: block;
}
.strength-content h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem); font-weight: 700; line-height: 1.6;
  margin-bottom: 20px; color: var(--ink);
}
.strength-content p { font-size: 14.5px; line-height: 2.1; color: var(--text-sub); }
.strength-line-deco { display: none; }

/* ============ Quick card grid ============ */
.quick-cards { padding: clamp(60px, 9vw, 100px) 40px; background: #fff; }
.quick-cards-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.qcard {
  position: relative; padding: 44px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
  transition: background .4s var(--ease);
  overflow: hidden;
}
.qcard:last-child { border-right: none; }
.qcard:hover { background: var(--bg-alt); }
.qcard-bg, .qcard-streak { display: none; }
.qcard-icon { width: 56px; height: 56px; color: var(--ink); transition: transform .5s var(--ease-out); }
.qcard-icon svg { width: 100%; height: 100%; }
.qcard:hover .qcard-icon { transform: translateY(-4px); }
.qcard-text h3 { font-size: 18px; font-weight: 700; letter-spacing: .04em; margin-bottom: 10px; color: var(--ink); }
.qcard-text p { font-size: 13px; line-height: 1.8; color: var(--text-sub); }
.qcard-arrow {
  position: absolute; right: 24px; bottom: 24px;
  font-family: var(--font-en); font-size: 18px; color: var(--ink);
  transition: transform .4s var(--ease);
}
.qcard:hover .qcard-arrow { transform: translate(4px, -4px); }

/* ============ CTA three pills ============ */
.cta-three {
  padding: 80px 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1280px; margin: 0 auto;
}
.cta-pill {
  position: relative; padding: 26px 32px;
  background: #fff; border: 1px solid var(--ink);
  font-size: 15px; font-weight: 500; letter-spacing: .04em;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  transition: color .4s var(--ease), transform .4s var(--ease);
  overflow: hidden;
}
.cta-pill::before {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform .55s var(--ease-out); z-index: 0;
}
.cta-pill span { position: relative; z-index: 1; }
.cta-pill::after {
  content: '→';
  position: relative; z-index: 1; font-family: var(--font-en);
  transition: transform .4s var(--ease);
}
.cta-pill:hover { color: #fff; }
.cta-pill:hover::before { transform: translateX(0); }
.cta-pill:hover::after { transform: translateX(6px); }

/* ============ Bottom CTA / recruit-banner (共通) ============ */
.recruit-banner {
  padding: clamp(100px,14vw,180px) 40px;
  background: var(--bg-dark); color: #fff;
  text-align: center; position: relative; overflow: hidden;
}
.recruit-banner-streaks { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.recruit-banner-streaks span { position: absolute; height: 1px; opacity: .3; animation: bannerStreak 8s linear infinite; }
.recruit-banner-streaks span:nth-child(1){ width: 240px; top: 15%; left: -240px; background: var(--red); animation-delay: 0s;}
.recruit-banner-streaks span:nth-child(2){ width: 180px; top: 35%; left: -180px; background: var(--orange); animation-delay: 1s; animation-duration: 10s;}
.recruit-banner-streaks span:nth-child(3){ width: 300px; top: 60%; left: -300px; background: var(--green); animation-delay: 2s; animation-duration: 9s;}
.recruit-banner-streaks span:nth-child(4){ width: 220px; top: 80%; left: -220px; background: var(--blue); animation-delay: 3s;}
.recruit-banner-streaks span:nth-child(5){ width: 150px; top: 25%; left: -150px; background: var(--purple); animation-delay: 4s; animation-duration: 11s;}
.recruit-banner-streaks span:nth-child(6){ width: 260px; top: 50%; left: -260px; background: var(--yellow); animation-delay: 1.5s;}
@keyframes bannerStreak { to { transform: translateX(calc(100vw + 300px)); } }
.recruit-banner-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.recruit-banner-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: #fff;
  margin-bottom: 28px; letter-spacing: .02em; line-height: 1.4;
}
.recruit-banner-content p {
  font-size: 15px; line-height: 2; color: rgba(255,255,255,.7); margin-bottom: 48px;
}
.btn-rainbow {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 22px 44px;
  background: #fff; color: var(--ink);
  font-family: var(--font-en); font-size: 13px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  transition: background .4s var(--ease), color .4s var(--ease);
  border: 1px solid #fff;
}
.btn-rainbow:hover { background: transparent; color: #fff; }
.btn-large { padding: 24px 56px; font-size: 14px; }

/* ============ About split ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.about-image-box { position: relative; aspect-ratio: 1/1; background: var(--bg-alt); overflow: hidden; }
.about-image-box::before { display: none; }
.about-image-box .image-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.image-placeholder svg { width: 50%; height: auto; opacity: .9; }
.about-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.5; letter-spacing: .02em;
  margin-bottom: 32px; color: var(--ink);
}
.about-text p { font-size: 15px; line-height: 2.2; color: var(--text-sub); margin-bottom: 22px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 20px;
  padding: 18px 32px; border: 1px solid var(--ink);
  font-family: var(--font-en); font-size: 12px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ============ Biz section (service on top page) ============ */
.biz-section { padding: clamp(96px,14vw,180px) 40px; background: var(--bg); }
.biz-header { text-align: center; margin-bottom: clamp(56px,8vw,96px); }
.biz-title-ja { display: block; font-size: clamp(2.2rem,4.6vw,3.8rem); font-weight: 700; color: var(--ink); letter-spacing: .02em; margin-bottom: 14px; }
.biz-title-en { display: block; font-family: var(--font-en); font-size: 13px; font-weight: 500; letter-spacing: .5em; color: var(--text-sub); text-transform: uppercase; }
.biz-block {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  padding: clamp(48px,8vw,96px) 0;
  border-top: 1px solid var(--line);
}
.biz-block:last-child { border-bottom: 1px solid var(--line); }
.biz-block:nth-child(odd) .biz-photo { order: 1; }
.biz-block:nth-child(odd) .biz-content { order: 2; }
.biz-block:nth-child(even) .biz-photo { order: 2; }
.biz-block:nth-child(even) .biz-content { order: 1; }
.biz-photo-inner { position: relative; aspect-ratio: 4/3; background: var(--bg-alt); overflow: hidden; }
.biz-photo-inner::before { display: none; }
.biz-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.2s var(--ease-out);
}
.biz-block:hover .biz-photo-placeholder { transform: scale(1.05); }
.biz-photo-placeholder svg { width: 45%; height: auto; }
.biz-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.biz-photo-inner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.03) 0%, rgba(10,10,10,.18) 100%);
  pointer-events: none; z-index: 1;
}
.biz-num {
  font-family: var(--font-en); font-size: 13px; font-weight: 500;
  letter-spacing: .3em; color: var(--ink); margin-bottom: 20px;
  padding-left: 28px; position: relative;
}
.biz-num::before { content: ''; position: absolute; left: 0; top: 50%; width: 16px; height: 1px; background: var(--ink); }
.biz-content h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 700; line-height: 1.5; letter-spacing: .02em;
  margin-bottom: 28px; color: var(--ink);
}
.biz-content p { font-size: 15px; line-height: 2.1; color: var(--text-sub); margin-bottom: 36px; }
.biz-btn {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 32px; border: 1px solid var(--ink);
  font-family: var(--font-en); font-size: 12px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.biz-btn:hover { background: var(--ink); color: #fff; }
.biz-btn-icon { font-size: 10px; }
.biz-sub-link { margin-top: 22px; }
.biz-sub-link a {
  font-size: 13px; color: var(--text-sub);
  border-bottom: 1px solid var(--line); padding-bottom: 3px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.biz-sub-link a:hover { color: var(--ink); border-color: var(--ink); }

/* ============ Page Hero (subpages) ============ */
.page-hero {
  padding: calc(var(--header-h) + 80px) 40px 120px;
  background: var(--bg-alt);
  position: relative; overflow: hidden;
}
.page-hero-streaks { position: absolute; inset: 0; pointer-events: none; opacity: .55; }
.page-hero-streaks span { position: absolute; height: 2px; animation: pageHeroStreak 7s linear infinite; }
.page-hero-streaks span:nth-child(1){ width: 200px; top: 30%; left:-220px; background: var(--red); animation-delay: 0s;}
.page-hero-streaks span:nth-child(2){ width: 150px; top: 45%; left:-170px; background: var(--blue); animation-delay: .7s;}
.page-hero-streaks span:nth-child(3){ width: 250px; top: 60%; left:-270px; background: var(--green); animation-delay: 1.4s;}
.page-hero-streaks span:nth-child(4){ width: 180px; top: 75%; left:-200px; background: var(--orange); animation-delay: 2.1s;}
.page-hero-streaks span:nth-child(5){ width: 130px; top: 20%; left:-150px; background: var(--purple); animation-delay: 2.8s;}
@keyframes pageHeroStreak { to { transform: translateX(calc(100vw + 320px)); } }
.page-hero-content { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero-en {
  display: block; font-family: var(--font-en);
  font-size: 13px; font-weight: 500; letter-spacing: .5em;
  color: var(--ink); margin-bottom: 20px; text-transform: uppercase;
}
.page-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: .02em;
  color: var(--ink); line-height: 1.2;
}

/* ============ Company Table ============ */
.company-table-wrap { max-width: 1000px; margin: 0 auto; }
.company-table { border-top: 1px solid var(--line); }
.company-table tr { border-bottom: 1px solid var(--line); transition: background .3s var(--ease); }
.company-table tr:hover { background: var(--bg-alt); }
.company-table th {
  width: 220px; padding: 28px 24px 28px 0;
  font-size: 14px; font-weight: 600; letter-spacing: .06em;
  color: var(--ink); text-align: left; vertical-align: top;
}
.company-table th::before { display: none; }
.company-table td { padding: 28px 0; font-size: 15px; color: var(--text-sub); line-height: 2; vertical-align: top; }

/* ============ History Timeline ============ */
.history-timeline { max-width: 900px; margin: 0 auto; }
.timeline-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:first-child { border-top: 1px solid var(--line); }
.tl-year {
  font-family: var(--font-en); font-size: 18px; font-weight: 700;
  letter-spacing: .05em; color: var(--ink);
}
.tl-content h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.tl-content p { font-size: 14.5px; line-height: 2; color: var(--text-sub); }

/* ============ Access ============ */
.access-content {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.access-map { aspect-ratio: 4/3; background: var(--bg-alt); overflow: hidden; position: relative; }
.access-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--text-mute);
}
.map-placeholder svg { width: 36%; height: auto; }
.map-placeholder p { font-size: 13px; letter-spacing: .05em; }
.access-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: var(--ink); }
.access-table tr { border-bottom: 1px solid var(--line); }
.access-table tr:first-child { border-top: 1px solid var(--line); }
.access-table th {
  width: 110px; padding: 20px 16px 20px 0;
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  color: var(--ink); text-align: left; vertical-align: top;
}
.access-table td { padding: 20px 0; font-size: 14.5px; color: var(--text-sub); line-height: 1.9; vertical-align: top; }

/* ============ Contact ============ */
.contact-intro { text-align: center; margin-bottom: 56px; max-width: 780px; margin-left: auto; margin-right: auto; }
.contact-intro p { font-size: 15px; line-height: 2.2; color: var(--text-sub); }
.contact-phone {
  text-align: center; padding: 56px 40px;
  background: var(--bg-alt); margin-bottom: 56px;
}
.contact-phone span { display: inline-flex; align-items: baseline; gap: 20px; margin-bottom: 14px; }
.phone-label {
  font-family: var(--font-en); font-size: 14px; font-weight: 600;
  letter-spacing: .3em; color: var(--ink);
  padding: 6px 14px; border: 1px solid var(--ink);
}
.phone-number {
  font-family: var(--font-en); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: .02em; color: var(--ink);
}
.contact-phone p { font-size: 13px; color: var(--text-sub); letter-spacing: .04em; }
.contact-btn-wrap { text-align: center; }

/* ============ Contact Form ============ */
.contact-form { max-width: 780px; margin: 60px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-group { margin-bottom: 32px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; letter-spacing: .06em;
  margin-bottom: 10px; color: var(--ink);
}
.required {
  display: inline-block; font-size: 10px; font-weight: 600;
  padding: 3px 10px; margin-left: 8px;
  background: var(--red); color: #fff; letter-spacing: .1em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 160px; }
.form-privacy { margin-top: 24px; margin-bottom: 48px; }
.form-privacy label {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--text-sub); cursor: pointer;
  font-weight: 400; letter-spacing: 0;
}
.form-privacy input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--ink);
  margin-top: 3px; flex-shrink: 0;
}
.form-submit { text-align: center; }
.form-submit button {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 24px 64px;
  background: var(--ink); color: #fff;
  font-family: var(--font-en); font-size: 14px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background .4s var(--ease), color .4s var(--ease);
  cursor: pointer;
}
.form-submit button:hover { background: transparent; color: var(--ink); }

/* ============ Greeting layout ============ */
.greeting-layout {
  display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.greeting-photo { position: sticky; top: 120px; }
.greeting-photo-frame { aspect-ratio: 3/4; background: var(--bg-alt); overflow: hidden; }
.greeting-photo-placeholder {
  position: relative; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--text-mute);
}
.greeting-photo-placeholder::before { display: none; }
.greeting-photo-placeholder svg { width: 50%; height: auto; }
.greeting-photo-placeholder span { font-size: 12px; letter-spacing: .1em; }
.greeting-name-card {
  margin-top: 28px; padding: 24px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.gnc-title { font-size: 13px; color: var(--text-sub); letter-spacing: .04em; }
.gnc-position { font-size: 13px; color: var(--text-sub); letter-spacing: .04em; }
.gnc-name { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: .08em; margin-top: 4px; }

.greeting-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.5; letter-spacing: .03em;
  color: var(--ink); margin-bottom: 48px;
  padding-bottom: 36px; border-bottom: 1px solid var(--line);
}
.greeting-body p { font-size: 15px; line-height: 2.3; color: var(--text); margin-bottom: 24px; }
.greeting-sign {
  margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line);
  text-align: right; display: flex; flex-direction: column; gap: 4px;
}
.gs-company { font-size: 13px; color: var(--text-sub); letter-spacing: .04em; }
.gs-position { font-size: 13px; color: var(--text-sub); letter-spacing: .04em; }
.gs-name { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: .1em; margin-top: 4px; }

/* Philosophy */
.philosophy-content { max-width: 1100px; margin: 0 auto; }
.philosophy-main { text-align: center; margin-bottom: 80px; }
.philosophy-main h3 {
  font-size: clamp(1.8rem, 3.6vw, 3rem); font-weight: 700; line-height: 1.5; letter-spacing: .03em;
  color: var(--ink); margin-bottom: 32px;
}
.philosophy-main p { font-size: 15px; line-height: 2.2; color: var(--text-sub); }
.philosophy-items {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.philosophy-item { padding: 48px 40px; border-left: 1px solid var(--line); }
.philosophy-item:last-child { border-right: 1px solid var(--line); }
.pi-label {
  display: inline-block; font-family: var(--font-en); font-size: 12px; font-weight: 500;
  letter-spacing: .3em; color: var(--ink);
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--ink);
  text-transform: uppercase;
}
.philosophy-item p { font-size: 14.5px; line-height: 2.1; color: var(--text-sub); }

/* ============ Service page details ============ */
.service-page-intro { text-align: center; max-width: 860px; margin: 0 auto; }
.service-page-intro h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 700; line-height: 1.6; letter-spacing: .03em;
  color: var(--ink); margin-bottom: 28px;
}
.service-page-intro p { font-size: 15px; line-height: 2.2; color: var(--text-sub); }
.service-detail { max-width: 1200px; margin: 0 auto; }
.service-detail-header {
  display: flex; align-items: flex-end; gap: 32px;
  padding-bottom: 32px; margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.sd-num {
  font-family: var(--font-en); font-size: clamp(44px, 6vw, 80px);
  font-weight: 900; letter-spacing: -.02em;
  color: var(--ink); line-height: 1;
}
.sd-title h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 700; letter-spacing: .02em;
  color: var(--ink); margin-bottom: 10px;
}
.sd-tag {
  display: inline-block; font-family: var(--font-en); font-size: 11px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid var(--ink); color: var(--ink);
}
.service-detail-body { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.service-detail-reverse .sd-visual { order: 2; }
.service-detail-reverse .sd-content { order: 1; }
.sd-visual { aspect-ratio: 1/1; background: var(--bg-alt); overflow: hidden; position: relative; }
.sd-image-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--ink); opacity: .85;
  transition: transform 1.2s var(--ease-out);
}
.service-detail:hover .sd-image-placeholder { transform: scale(1.04); }
.sd-image-placeholder svg { width: 55%; height: auto; }
.sd-image-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 1; }
.sd-content > p { font-size: 15px; line-height: 2.2; color: var(--text); margin-bottom: 32px; }
.sd-features { display: flex; flex-direction: column; gap: 0; }
.sd-features li { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.sd-features li:first-child { border-top: 1px solid var(--line); }
.sdf-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff;
  font-size: 12px; margin-top: 2px;
}
.sd-features li strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: .02em; }
.sd-features li p { font-size: 14px; line-height: 1.9; color: var(--text-sub); margin: 0; }

/* ============ Flow steps ============ */
.flow-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.flow-step {
  padding: 48px 32px;
  border-left: 1px solid var(--line);
  position: relative;
}
.flow-step:last-child { border-right: 1px solid var(--line); }
.fs-num {
  font-family: var(--font-en); font-size: 12px; font-weight: 500;
  letter-spacing: .3em; color: var(--ink);
  margin-bottom: 20px; text-transform: uppercase;
}
.flow-step h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 14px; letter-spacing: .02em; }
.flow-step p { font-size: 13.5px; line-height: 1.9; color: var(--text-sub); }
.flow-arrow { display: none; }

/* ============ Recruit ============ */
.recruit-intro { text-align: center; margin-bottom: 80px; max-width: 900px; margin-left: auto; margin-right: auto; }
.recruit-intro h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: .03em; color: var(--ink);
  margin-bottom: 24px;
}
.recruit-intro p { font-size: 15px; line-height: 2.2; color: var(--text-sub); }
.recruit-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-bottom: 100px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.recruit-highlight {
  padding: 48px 32px;
  border-left: 1px solid var(--line);
  text-align: center;
  transition: background .4s var(--ease);
}
.recruit-highlight:last-child { border-right: 1px solid var(--line); }
.recruit-highlight:hover { background: var(--bg-alt); }
.rh-icon { width: 60px; height: 60px; margin: 0 auto 24px; color: var(--ink); }
.rh-icon svg { width: 100%; height: 100%; }
.recruit-highlight h4 { font-size: 18px; font-weight: 700; margin-bottom: 14px; color: var(--ink); letter-spacing: .02em; }
.recruit-highlight p { font-size: 13.5px; line-height: 1.9; color: var(--text-sub); }

.recruit-table-wrap { max-width: 1000px; margin: 0 auto; }
.table-heading {
  font-size: 22px; font-weight: 700; letter-spacing: .04em;
  color: var(--ink); margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 2px solid var(--ink);
}
.recruit-table { border-top: 1px solid var(--line); }
.recruit-table tr { border-bottom: 1px solid var(--line); transition: background .3s var(--ease); }
.recruit-table tr:hover { background: var(--bg-alt); }
.recruit-table th {
  width: 180px; padding: 24px 24px 24px 0;
  font-size: 14px; font-weight: 600; letter-spacing: .06em;
  color: var(--ink); text-align: left; vertical-align: top;
}
.recruit-table td { padding: 24px 0; font-size: 14.5px; color: var(--text-sub); line-height: 2; vertical-align: top; }

/* ============ Privacy ============ */
.privacy-content { max-width: 900px; margin: 0 auto; }
.privacy-intro p {
  font-size: 15px; line-height: 2.2; color: var(--text);
  margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.privacy-section { margin-bottom: 48px; }
.privacy-section h3 { font-size: 18px; font-weight: 700; letter-spacing: .04em; color: var(--ink); margin-bottom: 16px; }
.privacy-section p { font-size: 14.5px; line-height: 2.1; color: var(--text-sub); margin-bottom: 16px; }
.privacy-section ul { padding-left: 20px; margin-top: 12px; }
.privacy-section ul li { font-size: 14.5px; line-height: 2.1; color: var(--text-sub); list-style: disc; margin-bottom: 6px; }
.privacy-contact { padding: 24px; background: var(--bg-alt); margin-top: 16px; }
.privacy-contact p { font-size: 14px; line-height: 1.9; color: var(--text-sub); margin: 0; }
.privacy-date { text-align: right; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-mute); }

/* ============ Footer ============ */
.footer { background: var(--bg-dark); color: #fff; padding: 100px 40px 40px; position: relative; }
.footer-rainbow-line {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 20%, var(--yellow) 35%, var(--green) 50%, var(--cyan) 65%, var(--blue) 80%, var(--purple) 100%);
  background-size: 200% 100%;
  animation: footerLine 6s linear infinite;
}
@keyframes footerLine { to { background-position: -200% 0; } }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 60px;
  padding-bottom: 60px;
}
.footer-brand .footer-logo { margin-bottom: 24px; }
.footer-brand .logo-text { color: #fff; font-size: 20px; font-weight: 700; letter-spacing: .08em; }
.footer-brand p { font-size: 13px; line-height: 2; color: rgba(255,255,255,.5); }
.footer-nav h4, .footer-info h4 {
  font-family: var(--font-en); font-size: 12px; font-weight: 600;
  letter-spacing: .4em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 24px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 14px; }
.footer-nav li a {
  font-size: 14px; color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
  position: relative;
}
.footer-nav li a:hover { color: #fff; padding-left: 12px; }
.footer-nav li a::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 0; height: 1px; background: #fff;
  transition: width .3s var(--ease);
}
.footer-nav li a:hover::before { width: 8px; }
.footer-info p { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.5); }
.footer-bottom { padding-top: 36px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p {
  font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .06em;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p a { color: rgba(255,255,255,.5); transition: color .3s var(--ease); }
.footer-bottom p a:hover { color: #fff; }

/* ============ Mobile Menu ============ */
.mobile-fs-menu {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg-dark); color: #fff;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
  overflow-y: auto;
}
.mobile-fs-menu.active { opacity: 1; visibility: visible; }
.mfs-close {
  position: absolute; top: 28px; right: 32px;
  width: 40px; height: 40px; cursor: pointer;
}
.mfs-close span {
  position: absolute; left: 0; top: 50%; width: 100%; height: 1px;
  background: #fff; transform-origin: center;
}
.mfs-close span:nth-child(1){ transform: rotate(45deg); }
.mfs-close span:nth-child(2){ transform: rotate(-45deg); }
.mfs-inner {
  min-height: 100%;
  padding: 120px 40px 40px;
  display: flex; flex-direction: column; gap: 48px;
  max-width: 1000px; margin: 0 auto;
}
.mfs-grid { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,.15); }
.mfs-item {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: padding-left .4s var(--ease), color .3s var(--ease);
}
.mfs-item:hover { padding-left: 20px; color: var(--yellow); }
.mfs-num { font-family: var(--font-en); font-size: 12px; letter-spacing: .3em; color: rgba(255,255,255,.5); }
.mfs-label { font-size: 24px; font-weight: 700; letter-spacing: .04em; }
.mfs-links { display: flex; flex-direction: column; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.mfs-links a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .3s var(--ease); }
.mfs-links a:hover { color: #fff; }
.mfs-bottom { margin-top: auto; padding-top: 32px; }
.mfs-bottom a { font-family: var(--font-en); font-size: 12px; letter-spacing: .3em; color: rgba(255,255,255,.4); text-transform: uppercase; }
.mfs-bottom a:hover { color: #fff; }

@media (min-width: 769px) { .mobile-fs-menu { display: none !important; } }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .header-inner { padding: 0 28px; }
  .nav-menu { gap: 28px; }
  .section { padding: 96px 28px; }
  .biz-block, .feature-block { gap: 48px; }
  .about-grid { gap: 48px; }
  .greeting-layout { grid-template-columns: 280px 1fr; gap: 48px; }
  .access-content { gap: 40px; }
}

@media (max-width: 900px) {
  .quick-cards-inner { grid-template-columns: repeat(2, 1fr); border-right: none; }
  .qcard { border-right: none !important; }
  .qcard:nth-child(odd) { border-right: 1px solid var(--line) !important; }
  .qcard:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cta-three { grid-template-columns: 1fr; }
  .flow-steps, .recruit-highlights, .philosophy-items { grid-template-columns: 1fr; }
  .flow-step, .recruit-highlight, .philosophy-item { border-left: 0 !important; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .philosophy-item:last-child, .flow-step:last-child, .recruit-highlight:last-child { border-bottom: 0; }
  .strength-list { grid-template-columns: 1fr; }
  .strength-item { border-left: 0; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .strength-item:last-child { border-bottom: 0; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: block; }
  .header-inner { padding: 0 20px; }
  .section { padding: 72px 20px; }
  .hero { padding: calc(var(--header-h) + 16px) 20px 60px; min-height: 88vh; }
  .hero-road { bottom: 40px; height: 60px; }
  .page-hero { padding: calc(var(--header-h) + 48px) 20px 72px; }
  .tagline-section { padding: 88px 20px 64px; }
  .tagline-section .tag-en { margin-bottom: 28px; letter-spacing: .4em; font-size: 11px; }
  .tagline-section .tag-ja { line-height: 1.8; letter-spacing: .02em; }
  .tagline-section .tag-sub { margin-top: 28px; }
  .feature-stack { padding: 40px 20px; }
  .feature-block { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
  .feature-block.reverse .feature-visual,
  .feature-block.reverse .feature-body { order: 0; }
  .feature-body h3 { margin-bottom: 24px; line-height: 1.55; }
  .feature-body p { margin-bottom: 28px; }
  .feature-visual .fv-num { left: 18px; top: 18px; font-size: 11px; letter-spacing: .25em; }
  .feature-link { padding: 16px 28px 16px 24px; font-size: 11px; letter-spacing: .25em; gap: 12px; }
  .biz-block { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
  .biz-block:nth-child(odd) .biz-photo,
  .biz-block:nth-child(even) .biz-photo { order: 0; }
  .biz-block:nth-child(odd) .biz-content,
  .biz-block:nth-child(even) .biz-content { order: 0; }
  .biz-section { padding: 72px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .greeting-layout { grid-template-columns: 1fr; gap: 40px; }
  .greeting-photo { position: static; }
  .greeting-photo-frame { aspect-ratio: 4/3; max-width: 320px; margin: 0 auto; }
  .access-content { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-body { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-reverse .sd-visual, .service-detail-reverse .sd-content { order: 0; }
  .service-detail-header { flex-direction: column; align-items: flex-start; gap: 16px; padding-bottom: 24px; margin-bottom: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer { padding: 72px 20px 32px; }
  .footer-bottom p { flex-direction: column; align-items: flex-start; gap: 8px; }
  .company-table th, .recruit-table th { width: 120px; font-size: 13px; padding: 18px 14px 18px 0; }
  .company-table td, .recruit-table td { padding: 18px 0; font-size: 13.5px; }
  .timeline-item { grid-template-columns: 90px 1fr; gap: 20px; padding: 28px 0; }
  .tl-year { font-size: 16px; }
  .recruit-banner { padding: 80px 20px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.6rem); letter-spacing: 0; }
  .hero-desc { font-size: 14px; line-height: 1.9; }
  .hero-company-name { margin-bottom: 28px; }
  .section-title .title-ja, .biz-title-ja { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .section-num, .sec-head .en { font-size: 11px; letter-spacing: .35em; }
  .contact-phone { padding: 40px 24px; }
  .contact-phone span { flex-direction: column; gap: 12px; align-items: center; }
  .marquee-track { gap: 40px; }
  .marquee-track span { font-size: 12px; letter-spacing: .3em; }
  .marquee-strip { padding: 20px 0; }
  .strength-item { padding: 40px 24px; }
  .philosophy-item { padding: 40px 24px; }
  .recruit-highlight { padding: 40px 24px; }
  .cta-three { padding: 48px 20px; gap: 14px; }
  .cta-pill { padding: 22px 24px; font-size: 14px; }
  .recruit-banner-content h2 { line-height: 1.5; }
  .access-info h3 { font-size: 20px; }
  .greeting-headline { margin-bottom: 32px; padding-bottom: 24px; }
  .greeting-body p { font-size: 14.5px; line-height: 2.1; }
  .greeting-sign { margin-top: 36px; padding-top: 28px; }
  .sd-features li { padding: 16px 0; gap: 14px; }
  .sdf-icon { width: 24px; height: 24px; font-size: 11px; }
  .loading-inner { width: min(320px, 86vw); }
  .loading-truck { width: 140px; height: 70px; }
  .loading-truck-stage { height: 100px; }
  .loading-logo { font-size: 15px; letter-spacing: .22em; margin-bottom: 36px; }
  .loading-caption { letter-spacing: .3em; font-size: 10px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .logo-text { font-size: 14px; letter-spacing: .02em; }
  .header { height: 68px; }
  :root { --header-h: 68px; }
  .hero-company-name { font-size: 11px; letter-spacing: .3em; margin-bottom: 22px; }
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); line-height: 1.25; margin-bottom: 26px; }
  .hero-desc { font-size: 13px; line-height: 1.9; }
  .section { padding: 56px 18px; }
  .tagline-section { padding: 72px 18px 52px; }
  .tagline-section .tag-ja { font-size: clamp(1.4rem, 5.5vw, 2rem); line-height: 1.75; }
  .tagline-section .tag-sub { font-size: 13px; line-height: 2; }
  .feature-stack { padding: 24px 18px; }
  .feature-block { padding: 44px 0; gap: 24px; }
  .feature-body .fb-en { font-size: 10px; letter-spacing: .3em; padding-left: 20px; margin-bottom: 16px; }
  .feature-body h3 { font-size: clamp(1.3rem, 5.5vw, 1.7rem); margin-bottom: 20px; line-height: 1.55; }
  .feature-body p { font-size: 14px; line-height: 2; margin-bottom: 24px; }
  .feature-link { padding: 14px 22px; font-size: 10px; gap: 10px; }
  .biz-section { padding: 56px 18px; }
  .biz-block { padding: 44px 0; gap: 24px; }
  .biz-header { margin-bottom: 40px; }
  .biz-num { font-size: 11px; letter-spacing: .25em; margin-bottom: 14px; padding-left: 22px; }
  .biz-content h3 { font-size: clamp(1.3rem, 5.5vw, 1.7rem); margin-bottom: 20px; line-height: 1.55; }
  .biz-content p { font-size: 14px; line-height: 2; margin-bottom: 24px; }
  .biz-btn { padding: 14px 24px; font-size: 11px; letter-spacing: .25em; }
  .qcard { padding: 32px 22px; }
  .qcard-text h3 { font-size: 16px; }
  .qcard-text p { font-size: 12.5px; }
  .cta-three { padding: 40px 16px; }
  .cta-pill { padding: 20px 20px; font-size: 13.5px; }
  .strength-item { padding: 32px 20px; }
  .strength-content h3 { font-size: 1.1rem; line-height: 1.55; margin-bottom: 16px; }
  .strength-content p { font-size: 13.5px; }
  .philosophy-item { padding: 32px 20px; }
  .philosophy-main { margin-bottom: 48px; }
  .philosophy-main h3 { font-size: clamp(1.4rem, 5.5vw, 2rem); line-height: 1.6; }
  .recruit-highlight { padding: 32px 20px; }
  .recruit-intro { margin-bottom: 56px; }
  .recruit-intro h3 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); line-height: 1.55; }
  .recruit-banner { padding: 64px 18px; }
  .recruit-banner-content h2 { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.5; margin-bottom: 20px; }
  .recruit-banner-content p { font-size: 13.5px; line-height: 2; margin-bottom: 36px; }
  .btn-rainbow { padding: 18px 28px; font-size: 11px; letter-spacing: .25em; gap: 12px; }
  .btn-outline { padding: 16px 26px; font-size: 11px; letter-spacing: .25em; }
  .btn-large { padding: 20px 32px; font-size: 12px; }
  .form-submit button { padding: 18px 28px; width: 100%; justify-content: center; font-size: 12px; letter-spacing: .25em; }
  .page-hero { padding: calc(var(--header-h) + 32px) 18px 56px; }
  .page-hero-en { font-size: 11px; letter-spacing: .35em; margin-bottom: 14px; }
  .page-hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .section-header, .sec-head { margin-bottom: 40px; }
  .section-title .title-ja, .biz-title-ja { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .greeting-headline { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.55; }
  .greeting-body p { font-size: 14px; }
  .gs-name, .gnc-name { font-size: 19px; }
  .company-table th, .recruit-table th { width: 100px; font-size: 12px; padding: 16px 10px 16px 0; letter-spacing: .04em; }
  .company-table td, .recruit-table td { padding: 16px 0; font-size: 13px; line-height: 1.9; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 16px; padding: 24px 0; }
  .tl-year { font-size: 14px; }
  .tl-content h4 { font-size: 16px; margin-bottom: 8px; }
  .tl-content p { font-size: 13px; line-height: 1.9; }
  .access-table th { width: 90px; font-size: 12px; padding: 16px 10px 16px 0; }
  .access-table td { padding: 16px 0; font-size: 13px; }
  .contact-intro p { font-size: 14px; line-height: 2; }
  .contact-phone { padding: 32px 20px; }
  .phone-number { font-size: clamp(24px, 8vw, 36px); }
  .form-group label { font-size: 12px; letter-spacing: .04em; }
  .form-group input, .form-group select, .form-group textarea { font-size: 14px; padding: 14px 16px; }
  .form-group { margin-bottom: 24px; }
  .footer { padding: 56px 18px 28px; }
  .footer-brand .logo-text { font-size: 17px; letter-spacing: .06em; }
  .footer-brand p { font-size: 12.5px; }
  .footer-nav h4, .footer-info h4 { font-size: 11px; letter-spacing: .35em; margin-bottom: 18px; }
  .footer-nav li a { font-size: 13px; }
  .footer-info p { font-size: 12px; }
  .footer-bottom p { font-size: 11px; }
  .sd-num { font-size: clamp(36px, 10vw, 56px); }
  .sd-title h3 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); line-height: 1.55; }
  .sd-content > p { font-size: 14px; line-height: 2; margin-bottom: 24px; }
  .sd-features li strong { font-size: 14px; }
  .sd-features li p { font-size: 13px; line-height: 1.85; }
  .fs-num { font-size: 11px; letter-spacing: .25em; }
  .flow-step { padding: 36px 24px; }
  .flow-step h4 { font-size: 16px; }
  .flow-step p { font-size: 13px; }
  .privacy-section h3 { font-size: 16px; }
  .privacy-section p, .privacy-section ul li { font-size: 13.5px; line-height: 2; }
  .rh-icon { width: 52px; height: 52px; margin-bottom: 20px; }
  .table-heading { font-size: 18px; padding-bottom: 12px; margin-bottom: 20px; }
  .loading-inner { width: min(300px, 90vw); }
  .loading-truck { width: 130px; height: 65px; }
  .loading-truck-stage { height: 94px; margin-bottom: 24px; }
  .loading-logo { font-size: 13.5px; letter-spacing: .2em; margin-bottom: 30px; }
  .mfs-close { top: 22px; right: 22px; }
  .mfs-inner { padding: 96px 24px 32px; gap: 36px; }
  .mfs-label { font-size: 20px; }
  .marquee-track { gap: 32px; }
  .marquee-track span { font-size: 11px; letter-spacing: .25em; }
}

@media (max-width: 360px) {
  .header-inner { padding: 0 14px; }
  .logo-text { font-size: 12.5px; }
  .hero { padding: calc(var(--header-h) + 10px) 16px 48px; }
  .hero-title { font-size: clamp(1.8rem, 10vw, 2.4rem); }
  .section { padding: 48px 16px; }
  .tagline-section { padding: 56px 16px 44px; }
  .feature-stack { padding: 20px 16px; }
  .biz-section { padding: 48px 16px; }
  .cta-three { padding: 32px 14px; }
  .recruit-banner { padding: 56px 16px; }
  .footer { padding: 48px 16px 24px; }
  .company-table th, .recruit-table th { width: 88px; font-size: 11.5px; padding-right: 8px; }
  .company-table td, .recruit-table td { font-size: 12.5px; }
  .access-table th { width: 72px; font-size: 11.5px; }
  .loading-truck { width: 110px; height: 55px; }
}

/* ============================================
   Responsive & Performance Enhancements
   ============================================ */

/* iOS / smooth touch scroll & overscroll */
html {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html, body { overscroll-behavior-y: none; }
body { -webkit-overflow-scrolling: touch; }

/* Tap targets minimum 44x44 on touch devices */
@media (hover: none) and (pointer: coarse) {
  .nav-menu a, .footer-nav li a, .mfs-item, .cta-pill, .feature-link,
  .biz-btn, .btn-rainbow, .btn-outline, .form-submit button { min-height: 44px; }
  /* Disable pure hover-only effects on touch devices */
  .feature-block:hover .fv-inner,
  .biz-block:hover .biz-photo-placeholder,
  .service-detail:hover .sd-image-placeholder { transform: none; }
}

/* iOS 100vh fix for hero — use dvh where supported */
@supports (height: 100dvh) {
  .hero { min-height: 100dvh; }
  @media (max-width: 768px) { .hero { min-height: 88dvh; } }
}

/* Mobile menu: lock background scroll without iOS rubber-band issues */
body.menu-open {
  position: fixed;
  left: 0; right: 0;
  width: 100%;
  overflow: hidden;
}
.mobile-fs-menu { overscroll-behavior: contain; }

/* Mobile: disable expensive layered animations (canvas already covers it) */
@media (max-width: 768px) {
  .hero-speed-lines { display: none; }
  .hero-road { display: none; }
  .recruit-banner-streaks { display: none; }
  .page-hero-streaks { opacity: .35; }
  .page-hero-streaks span:nth-child(n+4) { display: none; }
  .footer-rainbow-line { animation: none; background-position: 0 0; }
}

/* Off-screen rendering optimization for large stacked sections */
.feature-stack, .biz-section, .recruit-banner,
.history-timeline, .strength-list, .access-content {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* Prevent horizontal jitter on small screens */
@media (max-width: 768px) {
  .marquee-track { will-change: transform; }
  iframe { max-width: 100%; }
  table { table-layout: fixed; word-break: break-word; }
  .company-table td a, .access-table td a { word-break: break-all; }
}

/* Prevent iOS auto-zoom on focus (inputs/selects/textareas need ≥16px) */
.form-group input,
.form-group select,
.form-group textarea { font-size: 16px; }
@media (min-width: 769px) {
  .form-group input, .form-group select, .form-group textarea { font-size: 15px; }
}

/* Reduced motion: kill non-essential animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .loading-screen { display: none !important; }
  .marquee-track,
  .road-lines span,
  .speed-line,
  .recruit-banner-streaks span,
  .page-hero-streaks span,
  .footer-rainbow-line,
  .loading-streaks span,
  .loading-truck,
  .loading-truck .wheel,
  .loading-puff,
  .loading-road-lines::before,
  .loading-bar-fill { animation: none !important; }
  html { scroll-behavior: auto !important; }
}

/* Greeting layout cleanup: with photo removed, name card should not stretch */
@media (min-width: 769px) {
  .greeting-photo { position: sticky; top: 120px; }
  .greeting-name-card { margin-top: 0; }
}
@media (max-width: 768px) {
  .greeting-name-card { margin-top: 0; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* Mobile: timeline year wrap & spacing */
@media (max-width: 480px) {
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .tl-year { font-size: 13px; letter-spacing: .15em; color: var(--text-sub); }
}

/* Mobile: footer column gap reduction */
@media (max-width: 480px) {
  .footer-inner { gap: 32px; }
}

/* Smooth horizontal scroll within marquee on mobile */
.marquee-strip { contain: paint; }

/* Lazy iframe / map: prevent layout shift */
.access-map { aspect-ratio: 4/3; }
.access-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Image content-aware loading */
img { max-width: 100%; height: auto; }
img[loading="lazy"] { background: var(--bg-alt); }

/* Compact hamburger tap target */
.hamburger { padding: 10px; box-sizing: content-box; margin-right: -10px; }
.hamburger span { left: 10px; right: 10px; }

/* ============================================
   World-class Japanese Line Breaking
   - BudouX wraps phrase chunks in inline-block spans
   - keep-all prevents mid-CJK breaks even before BudouX loads
   - line-break: strict applies JIS 行頭/行末禁則 rules
   - text-wrap: pretty improves orphan/widow handling
   ============================================ */
.hero-desc, .tag-ja, .tag-sub,
.section-title .title-ja, .biz-title-ja, .page-hero-title,
.feature-body h3, .feature-body p,
.biz-content h3, .biz-content p,
.greeting-headline, .greeting-body p,
.philosophy-main h3, .philosophy-main p, .philosophy-item p,
.strength-content h3, .strength-content p,
.recruit-banner-content h2, .recruit-banner-content p,
.recruit-intro h3, .recruit-intro p,
.recruit-highlight h4, .recruit-highlight p,
.contact-intro p,
.tl-content h4, .tl-content p,
.service-page-intro h2, .service-page-intro p,
.sd-title h3, .sd-content > p,
.sd-features li strong, .sd-features li p,
.flow-step h4, .flow-step p,
.privacy-section p, .privacy-section ul li,
.about-text h3, .about-text p,
.access-info h3, .table-heading {
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

/* BudouX inserts inline-block spans; ensure they render correctly */
.hero-desc > span,
.tag-ja > span,
.tag-sub > span,
.feature-body p > span,
.biz-content p > span,
.greeting-body p > span,
.philosophy-main p > span,
.philosophy-item p > span,
.strength-content p > span,
.recruit-banner-content p > span,
.recruit-intro p > span,
.recruit-highlight p > span,
.contact-intro p > span,
.tl-content p > span,
.service-page-intro p > span,
.sd-content > p > span,
.flow-step p > span,
.privacy-section p > span {
  display: inline-block;
}

/* Headings: tighten orphan handling on small screens */
@media (max-width: 768px) {
  .hero-title, .page-hero-title,
  .section-title .title-ja, .biz-title-ja,
  .greeting-headline, .feature-body h3, .biz-content h3,
  .philosophy-main h3, .recruit-intro h3, .recruit-banner-content h2 {
    text-wrap: balance;
  }
}

