/* ============================================================
   新卒採用LP (CommerceX) — static HTML+CSS conversion
   Stage method: everything absolutely positioned in a 1440x7352 stage.
   ============================================================ */

:root {
  --c-black: #000;
  --c-white: #fff;
  --c-yellow: #faeb30;
  --c-watermark: rgba(255, 255, 255, 0.2);

  --font-avenir: 'Montserrat', sans-serif;   /* Avenir:Black -> 900 */
  --font-avenir-real: 'Avenir', 'Avenir Next', 'Montserrat', sans-serif; /* real Avenir Black (900) where installed */
  --font-mobo: 'Zen Kaku Gothic New', sans-serif; /* MOBO:Regular -> 900 */
  --font-noto: 'Noto Sans JP', sans-serif;
  --font-jost: 'Jost', sans-serif;
  --font-din: 'Oswald', sans-serif;          /* DIN Alternate:Bold -> 600 */
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body { margin: 0; background: #000; }
p { margin: 0; }
img { display: block; }

/* ---------- stage ---------- */
.stage {
  position: relative;
  width: 1440px;
  height: 7112px; /* base; JS recomputes to include FAQ CTA + copyright */
  margin: 0 auto;
  background: #000;
  overflow: hidden;
  transform-origin: top left;
}

section { display: contents; } /* logical grouping only; keeps absolute layout intact */

/* ---------- generic helpers ---------- */
.fill {
  position: absolute;
  inset: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.fill-block {
  position: absolute;
  inset: 0;
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}
/* mask source svg kept as a visible <img> layered under the photo */
.mask-src {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
}

.lh15 { line-height: 1.5; }
.lh13 { line-height: 1.3; }
.lh16 { line-height: 1.6; }
.lh17 { line-height: 1.7; }
.lh2  { line-height: 2; }
.lh-normal { line-height: normal; }
.mb0  { margin-bottom: 0; }

.rot-90     { transform: rotate(90deg); }
.rot-neg90  { transform: rotate(-90deg); }
.rot-neg076 { transform: rotate(-0.76deg); }
.rot-615    { transform: rotate(6.15deg); }

/* vertical stacked title (grid of single chars) */
.vert-title {
  position: absolute;
  font-family: var(--font-mobo);
  font-weight: 900;
  line-height: 0;
  font-style: normal;
  color: var(--c-white);
  font-size: 70px;
  letter-spacing: 2.1px;
}
.vert-cell {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
}

/* =====================================================================
   HERO / KV
   ===================================================================== */
.kv-bg   { position: absolute; height: 863px;    left: -126px;  top: -15px; width: 1700px; }
.kv-img2 { position: absolute; height: 416px;    left: 73px;    top: 178px; width: 291px; }
.kv-img3 { position: absolute; height: 398px;    left: 1076px;  top: 226px; width: 284px; }
.kv-img1 { position: absolute; height: 612px;    left: 471px;   top: 115px; width: 428.025px; }
.kv-text2{ position: absolute; height: 289.62px; left: 797.96px;top: 159px; width: 472.044px; }
.kv-text1{ position: absolute; height: 535.189px;left: 214px;   top: 159px; width: 305px; }

/* KV rotating photo carousel: each of the 3 photos takes a turn in the centre
   (in colour, in focus); the other two sit at the sides in monochrome + blur. */
.kv-slideshow { overflow: hidden; }
.kv-side .kv-slide { filter: grayscale(1) blur(2px); }
.kv-center .kv-slide { filter: none; }
.kv-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
  opacity: 0; animation: kvCrossfade 13.5s linear infinite;
  transform-origin: center;
}
.kv-slide:nth-child(1) { animation-delay: 0s; }
.kv-slide:nth-child(2) { animation-delay: 4.5s; }
.kv-slide:nth-child(3) { animation-delay: 9s; }
/* crossfade + slow zoom (Ken Burns): photos overlap so there is no dark gap */
@keyframes kvCrossfade {
  0%   { opacity: 0; transform: scale(1.04); }
  5%   { opacity: 1; }
  33%  { opacity: 1; }
  40%  { opacity: 0; transform: scale(1.13); }
  100% { opacity: 0; transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .kv-slide { animation: none; opacity: 0; }
  .kv-slide:nth-child(1) { opacity: 1; }
}

.kv-url {
  position: absolute; left: auto; right: 219px; top: 92px;
  font-family: var(--font-noto); font-weight: 500; font-style: normal;
  line-height: normal; font-size: 12px; color: var(--c-white);
  letter-spacing: 0.36px; white-space: nowrap;
}
.kv-sitename {
  position: absolute; left: calc(50% - 576.5px); top: 492px;
  transform: translateX(-50%);
  font-family: var(--font-noto); font-weight: 500; font-style: normal;
  line-height: 15px; font-size: 12px; color: var(--c-white);
  text-align: center; letter-spacing: 0.72px; width: 9px;
  word-break: break-word;
}

.kv-maketitle {
  position: absolute; left: 137px; top: 772px; width: 233px;
  display: flex; flex-direction: column; align-items: flex-start;
  font-style: normal; color: var(--c-white); word-break: break-word;
}
.kv-maketitle-en {
  font-family: var(--font-avenir-real); font-weight: 900;
  line-height: 32.933px; font-size: 26.346px;
  text-align: justify; text-align-last: justify;
  letter-spacing: normal; width: 100%;
}
.kv-maketitle-sub {
  font-family: var(--font-noto); font-weight: 500;
  line-height: normal; font-size: 9px; letter-spacing: 0.27px; width: 100%;
}
.kv-nctc {
  position: absolute; left: 1066px; top: 770px; width: 191px;
  font-family: var(--font-noto); font-weight: 500; font-style: normal;
  line-height: normal; font-size: 9px; color: var(--c-white);
  letter-spacing: 0.27px; word-break: break-word;
}

.kv-btn {
  position: absolute; left: 968px; top: 502px;
  width: 243px; height: 243px;
  background: var(--c-yellow);
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 74px 32px 63px 27px;
  border-radius: 121.5px;
}
.kv-btn-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 17px; width: 184px; flex-shrink: 0;
}
.kv-btn-textwrap {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  line-height: normal; font-style: normal; text-align: center;
  width: 100%; word-break: break-word;
}
.kv-btn-entry {
  font-family: var(--font-avenir-real); font-weight: 900;
  font-size: 34.97px; color: var(--c-black); letter-spacing: 1.0491px; width: 100%;
}
.kv-btn-sub {
  font-family: var(--font-noto); font-weight: 600;
  color: #010101; font-size: 13px; letter-spacing: 0.39px; width: 100%;
}
.kv-btn-arrow { position: relative; width: 10.5px; height: 15.85px; }

/* =====================================================================
   HEADER
   ===================================================================== */
.header {
  position: absolute; left: 174px; top: 29px;
  display: flex; align-items: center; gap: 132px;
}
.header-logo {
  position: relative; width: 238px; height: 59px; overflow: hidden; flex-shrink: 0;
}
.header-logo-group {
  position: absolute; inset: 84.48% 11.46% 6.39% 35.11%;
}
.header-right { position: relative; display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-menu {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-noto); font-weight: 500; font-style: normal;
  line-height: normal; font-size: 12px; color: var(--c-white);
  letter-spacing: 0.36px; white-space: nowrap; word-break: break-word;
  position: relative; flex-shrink: 0;
}
.header-menu p { position: relative; flex-shrink: 0; }
.header-btns { display: flex; align-items: center; gap: 21px; position: relative; flex-shrink: 0; }
.header-btn-intern {
  position: relative; flex-shrink: 0;
  background: rgba(255,255,255,0.3);
  width: 166px; height: 39px;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 9px 12px 12px 18px;
}
.header-btn-intern-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 136px; position: relative; flex-shrink: 0;
}
.header-btn-entry {
  position: relative; flex-shrink: 0;
  background: var(--c-yellow);
  width: 150px; height: 39px;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 9px 12px 12px 18px;
}
.header-btn-entry-inner {
  display: flex; align-items: center; gap: 60px;
  width: 100%; position: relative; flex-shrink: 0;
}
.header-btn-label {
  font-family: var(--font-noto); font-weight: 500; font-style: normal;
  line-height: normal; font-size: 12px; color: var(--c-white);
  letter-spacing: 0.36px; white-space: nowrap; flex-shrink: 0; position: relative;
}
.header-btn-label-dark {
  font-family: var(--font-noto); font-weight: 500; font-style: normal;
  line-height: normal; font-size: 12px; color: var(--c-black);
  letter-spacing: 0.36px; white-space: nowrap; flex-shrink: 0; position: relative;
}
.header-btn-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 14px; height: 9.274px; position: relative; flex-shrink: 0;
}
.header-btn-arrow-img { position: relative; width: 9.274px; height: 14px; }

/* =====================================================================
   STRATEGY
   ===================================================================== */
.strategy-contents {
  position: absolute; left: 160px; top: 977px;
  display: flex; align-items: center; line-height: 0;
}
.strategy-left {
  position: relative; flex-shrink: 0; margin-right: -20px;
  display: inline-grid; place-items: start;
}
.strategy-left-inner {
  display: flex; flex-direction: column; align-items: flex-start; gap: 62px;
  width: 723px; font-style: normal; position: relative; word-break: break-word;
}
.strategy-heading {
  display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
  width: 100%; flex-shrink: 0; position: relative;
}
.strategy-en {
  font-family: var(--font-avenir-real); font-weight: 900;
  line-height: 1.5; font-size: 18.461px; color: var(--c-yellow);
  letter-spacing: 0.5538px; width: 100%; flex-shrink: 0; position: relative;
}
.strategy-title {
  font-family: var(--font-mobo); font-weight: 900;
  line-height: 0; font-size: 82.523px; color: var(--c-white);
  letter-spacing: -2.4757px; width: 100%; flex-shrink: 0; position: relative;
}
.strategy-body {
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
  color: var(--c-white); width: 493px; flex-shrink: 0; position: relative;
}
.strategy-lead {
  font-family: var(--font-mobo); font-weight: 900;
  height: 44px; line-height: 1.85; font-size: 20px;
  letter-spacing: 1px; width: 100%; flex-shrink: 0; position: relative;
}
.strategy-desc {
  font-family: var(--font-noto); font-weight: 300;
  height: 153px; line-height: 0; font-size: 14px; width: 100%;
  flex-shrink: 0; position: relative; white-space: pre-wrap;
}

.strategy-right {
  display: flex; flex-direction: column; align-items: flex-start; gap: 36px;
  width: 465px; position: relative; flex-shrink: 0;
}
.strategy-row {
  display: flex; align-items: center; gap: 17px; width: 100%;
  position: relative; flex-shrink: 0;
}
.strategy-stat {
  position: relative; flex-shrink: 0; display: inline-grid; place-items: start;
}
.strategy-stat-ellipse {
  grid-area: 1 / 1; width: 224px; height: 223px; position: relative;
}
.strategy-stat-body {
  grid-area: 1 / 1; width: 224px; height: 223px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; font-style: normal; color: var(--c-white);
  text-align: center; position: relative;
}
.strategy-stat-body-a, .strategy-stat-body-b,
.strategy-stat-body-c, .strategy-stat-body-d { margin: 0; }

.strategy-stat-label,
.strategy-stat-label-left,
.strategy-stat-label-bold {
  font-family: var(--font-noto); font-weight: 700;
  line-height: 1.4; font-size: 15px; letter-spacing: 0.6px;
  text-align: center; white-space: nowrap; margin: 0; width: auto;
  position: relative;
}
.strategy-stat-numwrap {
  display: flex; align-items: baseline; justify-content: center; gap: 3px;
  line-height: 1; margin: 0; position: relative;
}
.strategy-stat-unit {
  order: 2; font-family: var(--font-noto); font-weight: 700;
  line-height: 1; margin: 0; width: auto; position: relative;
}
.strategy-unit-a, .strategy-unit-b, .strategy-unit-d { font-size: 32px; letter-spacing: 1.6px; }
.strategy-unit-c { font-size: 30px; letter-spacing: 1.5px; }

.strategy-stat-num {
  order: 1; font-family: var(--font-din); font-weight: 600;
  line-height: 1; margin: 0; width: auto; white-space: nowrap; position: relative;
}
.strategy-num-a, .strategy-num-b, .strategy-num-d { font-size: 75px; letter-spacing: normal; }
.strategy-num-c { font-size: 70px; letter-spacing: normal; }

/* =====================================================================
   BUSINESS
   ===================================================================== */
.business-bg { position: absolute; left: 0; top: 1550px; width: 1440px; height: 950px; overflow: hidden; }
.business-bg-mask { position: absolute; inset: 0; }
.business-watermark {
  position: absolute; left: 150.56px; top: 1655.34px;
  font-family: var(--font-avenir-real); font-weight: 900; font-style: normal;
  line-height: 1.5; font-size: 160px; color: var(--c-watermark);
  white-space: nowrap; word-break: break-word;
}

.business-title {
  position: absolute; left: 154px; top: 1787px;
  display: flex; align-items: flex-start; gap: 5px;
}
.business-title-en-wrap,
.reason-title-en-wrap,
.faq-title-en-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.business-title-en-wrap { width: 20px; height: 102px; }
.business-title-en,
.reason-title-en,
.faq-title-en {
  font-family: var(--font-avenir-real); font-weight: 900; font-style: normal;
  line-height: 1.5; font-size: 13px; color: var(--c-yellow);
  letter-spacing: 1.56px; white-space: pre; position: relative;
  word-break: break-word;
}
/* vertical title in BUSINESS uses relative grid container size */
.business-title .vert-title { position: relative; white-space: nowrap; }

.biz-carousel {
  position: absolute; left: 274px; top: 1806px;
  width: 1166px; height: 436px; overflow: hidden;
}
.biz-track {
  display: flex; gap: 68px; height: 100%;
  transition: transform 0.7s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.biz-card {
  flex-shrink: 0; width: 912px; height: 436px;
  background: var(--c-white); overflow: hidden;
  display: flex; align-items: center; gap: 39px;
  padding-left: 33px; box-sizing: border-box;
}
.biz-col {
  display: flex; flex-direction: column; align-items: flex-start; gap: 28px;
  width: 392px; flex-shrink: 0;
}
.biz-textblock {
  display: flex; flex-direction: column; align-items: flex-start; gap: 13px;
  width: 100%; color: var(--c-black); font-style: normal; word-break: break-word;
}
.biz-titleblock {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1.5; width: 100%;
}
.biz-en {
  font-family: var(--font-avenir-real); font-weight: 900;
  margin-bottom: -5px; font-size: 8.84px; letter-spacing: 3.5359px;
  width: 100%; white-space: nowrap;
}
.biz-jp {
  font-family: var(--font-mobo); font-weight: 900;
  font-size: 58px; letter-spacing: -3.48px; width: 100%; white-space: nowrap;
}
.biz-desc {
  width: 100%;
  font-family: var(--font-noto); font-weight: 500; line-height: 1.9; font-size: 14px;
  color: #010101;
}
.biz-tags {
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: 12px; row-gap: 12px; width: 100%;
}
.biz-tag {
  border: 1px solid #6b6b6b;
  display: flex; align-items: center; justify-content: center;
  padding: 9px 8px; min-height: 37px; box-sizing: border-box;
}
.biz-tag-text {
  font-family: var(--font-noto); font-weight: 500; font-style: normal;
  line-height: 1.5; font-size: 13px; color: #414141;
  letter-spacing: 0.65px; white-space: nowrap;
}
.biz-photo { flex: 1 1 auto; align-self: stretch; overflow: hidden; }
.biz-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.biz-photo img.biz-photo-product { object-position: 8% center; } /* shift right so the person sits nearer center */

.biz-scrollbar {
  position: absolute; left: 1091px; top: 2269px;
  width: 96px; height: 3px; background: #d9d9d9; overflow: hidden;
}
.biz-scrollbar-fill {
  width: 32px; height: 3px; background: var(--c-yellow);
  transition: transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

/* =====================================================================
   WORKS (image gallery)
   ===================================================================== */
.works {
  position: absolute; left: 0; top: 2531px;
  width: 1440px; height: 322px; overflow: hidden; line-height: 0;
}
.works-track {
  display: flex; gap: 50px; width: max-content;
  animation: works-marquee 55s linear infinite;
  will-change: transform;
}
.works:hover .works-track { animation-play-state: paused; }
.works-tile {
  flex-shrink: 0; width: 429px; height: 322px; overflow: hidden;
  border-radius: 10px;
}
.works-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* one set = 4 tiles (4*429) + 4 gaps (4*50) = 1916px -> seamless loop */
@keyframes works-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-1916px); }
}

/* =====================================================================
   CAREER
   ===================================================================== */
.career {
  position: absolute; left: 0; top: 2955px;
  width: 1440px; height: 1088px;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 54px 154px;
}
.career-bg { position: absolute; left: 0; top: 0; }
.career-bg-mask {
  position: absolute; left: -7px; top: -47px;
  width: 1747.509px; height: 1165.148px; overflow: hidden;
}
.career-bg-img { opacity: 0.38; }

.career-contents {
  display: flex; flex-direction: column; align-items: flex-start; gap: 27px;
  width: 1130.43px; position: relative; flex-shrink: 0;
}
.career-title {
  display: flex; flex-direction: column; align-items: flex-start;
  width: 664.43px; font-style: normal; position: relative; flex-shrink: 0;
  word-break: break-word;
}
.career-watermark {
  font-family: var(--font-avenir-real); font-weight: 900;
  line-height: 1.5; margin-bottom: -126px; font-size: 160px;
  color: var(--c-watermark); width: 100%; flex-shrink: 0; position: relative;
  white-space: nowrap;
}
.career-title-inner {
  display: flex; flex-direction: column; align-items: flex-start;
  width: 100%; position: relative; flex-shrink: 0;
}
.career-en {
  font-family: var(--font-avenir-real); font-weight: 900;
  line-height: 1.5; font-size: 18.461px; color: var(--c-yellow);
  letter-spacing: 0.5538px; width: 100%; flex-shrink: 0; position: relative;
}
.career-jp {
  font-family: var(--font-mobo); font-weight: 900;
  line-height: 1.3; font-size: 75.446px; color: var(--c-white);
  letter-spacing: -2.2634px; width: 100%; flex-shrink: 0; position: relative;
}
.career-card {
  background: rgba(0,0,0,0.6);
  border: 0.868px solid var(--c-white);
  display: flex; flex-direction: column; align-items: flex-start;
  height: 643px; padding: 67px 90px 67px 80px;
  border-radius: 17.366px; width: 100%; position: relative; flex-shrink: 0;
}
.career-card-inner { display: flex; align-items: center; position: relative; flex-shrink: 0; }
.career-card-text {
  display: flex; flex-direction: column; align-items: flex-start; gap: 43px;
  margin-right: -20px; color: var(--c-white); font-style: normal;
  width: 591px; position: relative; flex-shrink: 0; word-break: break-word;
}
.career-card-headline {
  font-family: var(--font-mobo); font-weight: 900;
  line-height: 0; min-width: 100%; font-size: 57.695px;
  position: relative; flex-shrink: 0;
}
.career-card-profile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 21px;
  width: 522.336px; position: relative; flex-shrink: 0;
}
.career-card-name {
  display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
  line-height: normal; width: 181.48px; position: relative; flex-shrink: 0;
}
.career-card-role {
  font-family: var(--font-noto); font-weight: 600;
  font-size: 12.157px; letter-spacing: 0.4863px; width: 100%;
  position: relative; flex-shrink: 0;
}
.career-card-person {
  font-family: var(--font-noto); font-weight: 700;
  font-size: 22px; letter-spacing: 2.64px; width: 100%;
  position: relative; flex-shrink: 0;
}
.career-card-desc {
  font-family: var(--font-noto); font-weight: 300;
  height: 94.647px; line-height: 0; min-width: 100%; font-size: 14px;
  position: relative; flex-shrink: 0;
}
.career-card-imgwrap {
  display: flex; align-items: center; justify-content: center;
  width: 388.196px; height: 509.004px; position: relative; flex-shrink: 0;
}
.career-card-img { position: relative; width: 339.238px; height: 475.411px; }

/* =====================================================================
   REASON
   ===================================================================== */
.reason-watermark-wrap {
  position: absolute; left: 149px; top: 4112.31px;
  width: 682.137px; height: 249.024px;
  display: flex; align-items: center; justify-content: center;
}
.reason-watermark,
.faq-watermark {
  font-family: var(--font-avenir-real); font-weight: 900; font-style: normal;
  line-height: 1.5; font-size: 160px; color: var(--c-watermark);
  white-space: nowrap; word-break: break-word; position: relative;
}
.reason {
  position: absolute; left: 160px; top: 4251px;
  display: flex; align-items: flex-start; gap: 120px;
}
.reason-title {
  display: flex; align-items: flex-start; gap: 11px;
  position: relative; flex-shrink: 0;
}
.reason-title-en-wrap { width: 20px; height: 90px; }
.reason-vert { position: relative; white-space: nowrap; }

.reason-list {
  display: flex; flex-direction: column; align-items: flex-start; gap: 44px;
  line-height: 0; width: 943px; position: relative; flex-shrink: 0;
}
.reason-item {
  display: inline-grid; place-items: start; position: relative; flex-shrink: 0;
}
.reason-item-box {
  grid-area: 1 / 1; margin-left: 56px; margin-top: 0;
  width: 887px; height: 175px; border-radius: 10px;
  border: 1px solid var(--c-white); position: relative;
}
.reason-item-box-fill { background: var(--c-black); }
.reason-item-row {
  grid-area: 1 / 1; margin-left: 0; margin-top: 32px;
  display: flex; align-items: center; gap: 25px; position: relative;
}
.reason-num {
  background: var(--c-black); border: 1px solid var(--c-white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 27px 28px 19px; border-radius: 56px;
  width: 112px; height: 112px; position: relative; flex-shrink: 0;
}
.reason-num-text {
  font-family: var(--font-avenir-real); font-weight: 900; font-style: normal;
  line-height: normal; font-size: 48.473px; color: var(--c-yellow);
  letter-spacing: -1.4542px; white-space: nowrap; position: relative; flex-shrink: 0;
}
.reason-item-text {
  display: flex; flex-direction: column; align-items: flex-start; gap: 13px;
  font-style: normal; color: var(--c-white); width: 774px;
  position: relative; flex-shrink: 0; word-break: break-word;
}
.reason-item-title {
  font-family: var(--font-mobo); font-weight: 900;
  line-height: normal; font-size: 42px; width: 100%;
  position: relative; flex-shrink: 0;
}
.reason-title-01 { letter-spacing: -1.26px; }
.reason-title-03 { letter-spacing: 1.26px; }
.reason-item-desc {
  font-family: var(--font-noto); font-weight: 400;
  height: 47px; line-height: 0; font-size: 15px;
  letter-spacing: -0.45px; width: 100%; position: relative; flex-shrink: 0;
}
.reason-item-desc-single { line-height: 1.6; }

/* =====================================================================
   RECRUIT
   ===================================================================== */
.recruit-bg {
  position: absolute; left: -17px; top: 4986px;
  width: 1486.625px; height: 2400.252px;
}
.recruit {
  position: absolute; left: 155.57px; top: 5050.99px;
  width: 1120.431px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 28px;
}
.recruit-title {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  height: 240px; padding: 8px 3px; width: 676px;
  font-style: normal; position: relative; flex-shrink: 0; word-break: break-word;
}
.recruit-watermark {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-avenir); font-weight: 900;
  line-height: 1.5; font-size: 160px; color: var(--c-watermark);
  white-space: nowrap;
}
.recruit-title-inner {
  display: flex; flex-direction: column; align-items: flex-start;
  width: 295px; position: relative; flex-shrink: 0;
}
.recruit-en {
  font-family: var(--font-avenir); font-weight: 900;
  line-height: 1.5; font-size: 18.461px; color: var(--c-yellow);
  letter-spacing: 0.5538px; width: 100%; white-space: pre-wrap;
  position: relative; flex-shrink: 0;
}
.recruit-jp {
  font-family: var(--font-mobo); font-weight: 900;
  line-height: 1.3; font-size: 75.446px; color: var(--c-white);
  letter-spacing: -2.2634px; width: 100%; position: relative; flex-shrink: 0;
}
.recruit-inner {
  background: var(--c-white);
  display: flex; flex-direction: column; align-items: flex-start;
  height: 1012px; padding: 86px 98px 85px 99px;
  border-radius: 10px; width: 100%; position: relative; flex-shrink: 0;
}
.recruit-table {
  display: flex; flex-direction: column; align-items: flex-start;
  overflow: hidden; width: 920px; position: relative; flex-shrink: 0;
}
.recruit-hr {
  background: #e6e4df; height: 1px; width: 900px; position: relative; flex-shrink: 0;
}
.recruit-row {
  display: flex; gap: 36px; align-items: flex-start;
  overflow: hidden; padding: 16px 0; width: 100%;
  position: relative; flex-shrink: 0; word-break: break-word;
}
.recruit-k {
  display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
  height: 21px; overflow: hidden; width: 220px; white-space: nowrap;
  line-height: normal; font-weight: 500; color: #111110;
  position: relative; flex-shrink: 0;
}
.recruit-k-simple {
  height: 21px; overflow: hidden; width: 220px; gap: 0;
}
.recruit-k-single {
  display: flex; flex-direction: column; justify-content: center;
  font-family: var(--font-jost); font-weight: 500; line-height: 0;
  font-style: normal; height: 16px; color: #111110; font-size: 13px;
  text-align: center; letter-spacing: 2.08px; width: 58px;
  position: relative; flex-shrink: 0; word-break: break-word;
}
.recruit-k-jost {
  font-family: var(--font-jost); font-weight: 500;
  font-size: 13px; letter-spacing: 2.08px; position: relative; flex-shrink: 0;
}
.recruit-k-jost-292 { color: #292929; }
.recruit-k-jost-414 { color: #414141; }
.recruit-k-noto {
  font-family: var(--font-noto); font-weight: 500;
  font-size: 14px; letter-spacing: 0.56px; color: #111110;
  position: relative; flex-shrink: 0;
}
.recruit-v {
  flex: 1 0 0; min-width: 1px;
  font-family: var(--font-noto); font-weight: 400;
  line-height: 2; font-size: 15px; color: var(--c-black); position: relative;
}
.recruit-v-multi {
  flex: 1 0 0; min-width: 1px;
  font-family: var(--font-noto); font-weight: 400;
  line-height: 0; font-size: 15px; color: var(--c-black); position: relative;
}

/* =====================================================================
   FAQ
   ===================================================================== */
/* CTA button (shared inner text/arrow styles) */
.cta-entry-text {
  font-family: var(--font-noto); font-weight: 600; font-size: 18px;
  letter-spacing: 1px; color: #000;
}
.cta-entry-arrow {
  position: absolute; right: 34px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: #000; line-height: 1;
}
/* second CTA — in-flow inside FAQ contents (below the questions) */
.cta-entry-faq {
  position: relative; align-self: center;
  width: 420px; height: 66px; margin: 12px 0;
  background: var(--c-yellow, #faeb30);
  display: flex; align-items: center; justify-content: center;
  padding: 0 34px; box-sizing: border-box;
  text-decoration: none;
  transition: filter .2s ease, transform .2s ease;
}
.cta-entry-faq:hover { filter: brightness(0.92); transform: scale(1.02); }

.faq-watermark-wrap {
  position: absolute; left: 146px; top: 6439.5px;
  width: 344.167px; height: 244.521px;
  display: flex; align-items: center; justify-content: center;
}
.faq-title {
  position: absolute; left: 157px; top: 6563.69px;
  display: flex; align-items: flex-start; gap: 1px;
}
.faq-title-en-wrap { width: 20px; height: 58px; }
.faq-vert { position: relative; }
.faq-vert-last { width: 9px; }

.faq-contents {
  position: absolute; left: calc(50% + 40px); top: 6586px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: flex-start; gap: 32px;
  width: 926px;
}
.faq-card {
  background: var(--c-black); border: 1px solid var(--c-white);
  border-radius: 10px; width: 100%; position: relative; flex-shrink: 0;
  overflow: hidden;
}
.faq-card-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; padding: 28px 41px 28px 55px; box-sizing: border-box;
  cursor: pointer; list-style: none;
}
.faq-card-inner::-webkit-details-marker { display: none; }
.faq-answer {
  padding: 0 55px 29px 108px; box-sizing: border-box;
}
.faq-answer p {
  font-family: var(--font-noto); font-weight: 400;
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.85);
}
.faq-card-q {
  display: flex; align-items: center; gap: 17px; position: relative; flex-shrink: 0;
}
.faq-q-badge {
  background: var(--c-white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6px 11px; border-radius: 18px;
  width: 36px; height: 36px; position: relative; flex-shrink: 0;
}
.faq-q-badge-text {
  font-family: var(--font-noto); font-weight: 700; font-style: normal;
  line-height: normal; font-size: 16px; color: var(--c-black);
  text-align: center; white-space: nowrap; position: relative; flex-shrink: 0;
  word-break: break-word;
}
.faq-q-text {
  font-family: var(--font-noto); font-weight: 600; font-style: normal;
  line-height: normal; font-size: 18px; color: var(--c-white);
  text-align: center; letter-spacing: 0.54px; white-space: nowrap;
  position: relative; flex-shrink: 0; word-break: break-word;
}
.faq-plus {
  font-family: var(--font-noto); font-weight: 600; font-style: normal;
  line-height: normal; font-size: 18px; color: rgba(255,255,255,0.9);
  text-align: center; letter-spacing: 0.54px; white-space: nowrap;
  position: relative; flex-shrink: 0; word-break: break-word;
  transition: transform 0.3s ease;
}
.faq-card[open] .faq-plus { transform: rotate(45deg); }
.faq-copyright {
  width: 100%; text-align: center; margin-top: 8px;
  font-family: var(--font-noto); font-weight: 400; font-size: 13px;
  color: rgba(255,255,255,0.5); letter-spacing: 0.5px;
}

/* ---- interactive hover states (PC) ---- */
.header-menu p { cursor: pointer; transition: color 0.25s ease; }
.header-menu p:hover { color: var(--c-yellow); }
.header-btn-intern, .header-btn-entry, .kv-btn {
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, filter 0.25s ease;
}
.header-btn-intern:hover { background: rgba(255, 255, 255, 0.5); }
.header-btn-entry:hover { filter: brightness(0.9); }
.kv-btn:hover { filter: brightness(0.94); transform: scale(1.02); }
