/* ============================================================
   AOKI ANIMATION — Corporate Site
   Monochrome (black x white) / teal #1AA095 micro accent
   Fonts: Barlow (DIN alt) / Barlow Condensed / Jost (Europa alt) / Noto Sans JP
   ============================================================ */

:root {
  --bg: #000000;
  --ink: #ffffff;
  --mut: rgba(255, 255, 255, 0.55);
  --mut2: rgba(255, 255, 255, 0.48);
  --line: rgba(255, 255, 255, 0.28);
  --line2: rgba(255, 255, 255, 0.6);
  --teal: #1aa095;
  --fd: "Barlow", "Noto Sans JP", sans-serif;
  --fc: "Barlow Condensed", "Noto Sans JP", sans-serif;
  --fe: "Jost", "Noto Sans JP", sans-serif;
  --fj: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --sec-pad: 280px;
  --sec-pad-s: 120px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease2: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fj);
  font-size: 16px;
  line-height: 1.9;
  overflow-x: clip;
  word-break: normal;
  line-break: strict;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--teal); color: #000; }

/* scrollbar — anchor-faithful */
::-webkit-scrollbar { width: 6px; height: 6px; background: #383838; }
::-webkit-scrollbar-thumb { background: var(--teal); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: #fff; color: #000; padding: 8px 16px; font-size: 13px;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

.pc-only { display: block; }
.sp-only { display: none; }

/* ---------- text reveal system ---------- */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .rv.is-in { opacity: 1; transform: translateY(0); }
.js .rv.d1 { transition-delay: 0.1s; }
.js .rv.d2 { transition-delay: 0.2s; }
.js .rv.d3 { transition-delay: 0.3s; }
.ani { display: block; overflow: hidden; }
.ani > span { display: block; }
.js .ani > span { transform: translateY(112%); transition: transform 0.9s var(--ease); }
.js .is-in .ani > span, .js .ani.is-in > span { transform: translateY(0); }

/* ---------- section shell ---------- */
.sec { position: relative; padding-top: var(--sec-pad); }
.sec--tight { padding-top: var(--sec-pad-s); }
.sec__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.sec__bg img { width: 100%; height: 100%; object-fit: cover; }
.sec__bg::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.74); }
.sec > .inner { position: relative; z-index: 1; }

.sec-title {
  display: table; position: relative; margin: 0 auto 85px; height: 44px;
  line-height: 44px; font-family: var(--fd); font-weight: 600;
  font-size: 24px; letter-spacing: 0.05em;
}
.sec-title::before {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 3px;
  background: #fff; transition: width 0.3s ease-in-out;
}
.js .sec-title.is-in::before { transition-delay: 0.6s; width: 100%; }
.no-js .sec-title::before, html:not(.js) .sec-title::before { width: 100%; }

.inner-900 { width: min(900px, calc(100% - 48px)); margin: 0 auto; }
.inner-1100 { width: min(1100px, calc(100% - 48px)); margin: 0 auto; }

/* section view-all link (ARCHIVE / MORE) */
.sec-more {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--fd); font-weight: 600; font-size: 14px; letter-spacing: 0.18em;
}
.sec-more::after {
  content: ""; width: 46px; height: 1px; background: #fff; display: block;
  transform-origin: left center; transition: transform 0.4s var(--ease2);
}
.sec-more:hover::after { transform: scaleX(1.5); }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: 113px; display: flex; align-items: center;
  padding: 0 46px;
  transition: background 0.4s ease;
}
.header.is-solid { background: rgba(0, 0, 0, 0.86); }
.logo-type {
  display: inline-block; font-family: var(--fc); font-weight: 700; font-style: italic;
  font-size: 34px; letter-spacing: 0.01em; line-height: 1; color: #fff; white-space: nowrap;
}
.logo-type small {
  display: block; font-family: var(--fe); font-style: normal; font-weight: 500;
  font-size: 9px; letter-spacing: 0.62em; margin-top: 3px; color: var(--mut);
}
.gnav { margin-left: auto; display: flex; align-items: center; }
.gnav__list { display: flex; align-items: center; }
.gnav__list li { position: relative; }
.gnav__list li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 14px; background: var(--line2);
}
.gnav__link {
  position: relative; display: block; padding: 8px 22px;
  font-family: var(--fd); font-weight: 600; font-size: 13px; letter-spacing: 0.12em;
  transition: color 0.3s ease;
}
.gnav__link::after {
  content: ""; position: absolute; left: 22px; right: 22px; bottom: 2px; height: 1px;
  background: #fff; transform: scaleX(0); transform-origin: right center;
  transition: transform 0.35s var(--ease2);
}
.gnav__link:hover::after, .gnav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left center; }
.gnav__link[aria-current="page"] { color: var(--mut); }
.lang { display: flex; margin-left: 26px; border: 1px solid #fff; font-family: var(--fd); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; }
.lang span { display: block; padding: 4px 12px; }
.lang span.is-on { background: #fff; color: #000; }
/* non-active side is display-only (not a control) */
.lang span:not(.is-on) { cursor: default; opacity: 0.55; }

/* hamburger (SP) */
.hamburger { display: none; position: relative; z-index: 120; width: 46px; height: 46px; }
.hamburger span {
  position: absolute; left: 11px; width: 24px; height: 2px; background: #fff;
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 30px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 110; background: rgba(0, 0, 0, 0.96);
  display: flex; flex-direction: column; justify-content: center; padding: 0 12vw;
  opacity: 0; visibility: hidden; transition: opacity 0.45s ease, visibility 0.45s ease;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer a {
  font-family: var(--fc); font-weight: 600; font-size: 40px; letter-spacing: 0.06em;
  padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; align-items: baseline; gap: 16px;
}
.drawer a small { font-family: var(--fj); font-size: 12px; color: var(--mut); letter-spacing: 0.1em; }

/* ---------- fixed side UI ---------- */
.side-sns {
  position: fixed; right: 26px; top: 40%; z-index: 80;
  display: flex; flex-direction: column; gap: 26px;
}
.side-sns a { opacity: 0.9; transition: opacity 0.3s ease; }
.side-sns a:hover { opacity: 0.5; }
.side-sns svg { width: 20px; height: 20px; fill: #fff; display: block; }

.seekbar { position: fixed; right: 0; top: 0; z-index: 80; width: 4px; height: 100vh; pointer-events: none; }
.seekbar i {
  position: absolute; top: 0; right: 0; width: 4px; height: var(--seek, 0%);
  background: var(--teal); display: block;
}
.seekbar::after {
  content: ""; position: absolute; right: 0; top: var(--seek, 0%); width: 10px; height: 10px;
  border-radius: 50%; background: var(--teal); transform: translateY(-50%);
}

.fix-bnr {
  position: fixed; right: 26px; bottom: 26px; z-index: 80;
  display: flex; align-items: center; gap: 14px; background: #000;
  border: 1px solid rgba(255, 255, 255, 0.7); padding: 14px 20px;
  transition: background 0.3s ease;
}
.fix-bnr:hover { background: #1a1a1b; }
.fix-bnr__big { font-family: var(--fc); font-weight: 700; font-size: 30px; line-height: 1; }
.fix-bnr__big sub { font-size: 11px; font-family: var(--fe); vertical-align: baseline; }
.fix-bnr__txt { font-size: 11px; line-height: 1.6; border-left: 1px solid rgba(255, 255, 255, 0.5); padding-left: 14px; font-weight: 500; }
.fix-bnr__arrow { position: absolute; top: 4px; right: 4px; width: 7px; height: 7px; border-top: 1px solid #fff; border-right: 1px solid #fff; }

/* ---------- hero ---------- */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 560px; overflow: hidden; }
.hero__movie { position: absolute; inset: 0; z-index: 0; }
.hero__movie video, .hero__movie img { width: 100%; height: 100%; object-fit: cover; }
.hero__movie::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.36) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.42) 100%); }
/* hero title lockup — Hallmark-informed: roman display, left bias, single teal accent */
.hero__title { position: absolute; left: 46px; top: 44%; transform: translateY(-50%); z-index: 2; }
.hero__title-kicker {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--fj); font-weight: 700; font-size: 14px;
  letter-spacing: 0.32em; color: rgba(255, 255, 255, 0.88);
}
.hero__title-kicker::before { content: ""; width: 34px; height: 2px; background: var(--teal); flex: 0 0 auto; }
.hero__title-main {
  margin-top: 20px; font-family: var(--fc); font-weight: 700; text-transform: uppercase;
  font-size: clamp(62px, 8.6vw, 124px); line-height: 0.98; letter-spacing: 0.02em;
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.45);
}
.hero__title-line { display: block; }
.hero__title-line:nth-child(2) { margin-left: 0.9ch; }
.hero__title-line:nth-child(2) .ani > span { transition-delay: 0.14s; }
.hero__title-meta {
  margin-top: 26px; font-size: 13px; font-weight: 500; letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.82);
}
.hero__title-meta .ani > span { transition-delay: 0.3s; }
.hero__info { position: absolute; left: 46px; bottom: 46px; z-index: 2; }
.hero__info-num { font-family: var(--fe); font-size: 11px; letter-spacing: 0.3em; color: var(--mut); }
.hero__info-title { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; margin-top: 2px; }
.hero__info-status { font-family: var(--fe); font-weight: 600; font-size: 10px; letter-spacing: 0.34em; margin-top: 4px; color: var(--ink); }
.hero__list { margin-top: 18px; }
.hero__list li { font-family: var(--fe); font-size: 12px; letter-spacing: 0.14em; line-height: 2; color: var(--mut2); transition: color 0.4s ease; }
.hero__list li.is-on { color: #fff; }
.hero__list li span { display: inline-block; width: 30px; }
.hero__bnr {
  position: absolute; right: 46px; top: 140px; z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.75); padding: 12px 18px;
  font-family: var(--fc); font-weight: 600; font-size: 15px; letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.45); transition: background 0.3s ease;
}
.hero__bnr:hover { background: rgba(0, 0, 0, 0.85); }
.hero__bnr small { display: block; font-family: var(--fj); font-weight: 400; font-size: 10px; letter-spacing: 0.06em; color: var(--mut); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 18px; z-index: 2; width: 70px; height: 45px;
  margin-left: -35px; text-align: center;
}
.hero__scroll a {
  display: block; height: 45px; padding-bottom: 27px; line-height: 18px;
  font-family: var(--fe); font-size: 10px; letter-spacing: 0.25em; padding-left: 0.25em;
}
.hero__scroll-line { overflow: hidden; position: absolute; left: 50%; bottom: 0; width: 2px; height: 22px; }
.hero__scroll-line:first-of-type { transform-origin: right bottom; transform: rotate(-45deg); }
.hero__scroll-line:last-of-type { transform-origin: left bottom; transform: rotate(45deg); }
.hero__scroll-line::before {
  content: ""; display: block; width: 100%; height: 100%; background: #fff;
  animation: progressAnim 2s cubic-bezier(0.02, 0.88, 0.58, 1) 0s infinite;
}
@keyframes progressAnim {
  0% { transform: translateY(-100%); }
  42% { transform: translateY(0); }
  70% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- NEW WORKS slider ---------- */
.lineup { overflow: hidden; }
.lineup__in { transition: transform 1.5s var(--ease); }
.js .lineup__in { transform: translateX(-30%); }
.js .lineup__in.is-in { transform: translateX(0); }
.lineup__rail-wrap { position: relative; width: 88%; margin: 0 auto; }
.lineup__rail {
  display: flex; gap: 26px; overflow-x: auto; scrollbar-width: none;
  -ms-overflow-style: none; cursor: grab; padding-right: 10vw;
}
.lineup__rail::-webkit-scrollbar { display: none; }
.lineup__rail.is-drag { cursor: grabbing; scroll-behavior: auto; }
.lineup__item { flex: 0 0 236px; }
.lineup__link { display: block; overflow: hidden; position: relative; }
.lineup__link img { width: 100%; height: auto; }
/* hover: white 1px line runs around (anchor-faithful) */
.lineup__link::before, .lineup__link::after,
.lineup__imgwrap::before, .lineup__imgwrap::after { content: ""; position: absolute; background: #fff; z-index: 2; }
.lineup__link::before { top: 0; right: -101%; width: 100%; height: 1px; transition: right 0.5s var(--ease2); }
.lineup__link:hover::before, .lineup__link:focus-visible::before { right: 0; }
.lineup__link::after { top: -101%; left: 0; width: 1px; height: 100%; transition: top 0.5s var(--ease2); }
.lineup__link:hover::after, .lineup__link:focus-visible::after { top: 0; }
.lineup__imgwrap::before { bottom: 0; left: -101%; width: 100%; height: 1px; transition: left 0.5s var(--ease2); }
.lineup__link:hover .lineup__imgwrap::before, .lineup__link:focus-visible .lineup__imgwrap::before { left: 0; }
.lineup__imgwrap::after { bottom: -101%; right: 0; width: 1px; height: 100%; transition: bottom 0.5s var(--ease2); }
.lineup__link:hover .lineup__imgwrap::after, .lineup__link:focus-visible .lineup__imgwrap::after { bottom: 0; }
.lineup__cap { display: flex; gap: 12px; margin-top: 16px; align-items: flex-start; }
.lineup__cap .num { font-family: var(--fe); font-size: 10px; letter-spacing: 0.22em; color: var(--teal); line-height: 2; flex: 0 0 auto; }
.lineup__cap .jp { display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; line-height: 1.5; }
.lineup__cap small { display: block; font-family: var(--fe); font-weight: 500; font-size: 10px; letter-spacing: 0.18em; color: var(--mut); margin-top: 4px; text-transform: uppercase; }
.lineup__link:hover + .lineup__cap .jp { color: rgba(255, 255, 255, 0.7); }
.lineup__tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; width: 100%; height: 100%; min-height: 354px;
  border: 1px solid var(--line); text-align: center;
  font-family: var(--fc); font-weight: 600; font-size: 26px; letter-spacing: 0.2em;
  transition: background 0.3s ease;
}
.lineup__tile:hover { background: #101011; }
.lineup__tile small { font-family: var(--fj); font-size: 11px; font-weight: 400; letter-spacing: 0.08em; color: var(--mut); }
.slider-btn {
  position: absolute; top: 50%; z-index: 5; width: 52px; height: 52px; margin-top: -26px;
}
.slider-btn::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 18px;
  border-top: 1px solid #fff; margin: -9px 0 0 -9px;
  transition: opacity 0.3s ease;
}
.slider-btn--prev { left: -60px; }
.slider-btn--prev::before { border-left: 1px solid #fff; transform: rotate(-45deg); }
.slider-btn--next { right: -60px; }
.slider-btn--next::before { border-right: 1px solid #fff; transform: rotate(45deg); }
.slider-btn:hover::before { opacity: 0.5; }

/* ---------- LINK banners ---------- */
.linksec__row { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; }
.link-bnr {
  display: flex; flex-direction: column; justify-content: center; min-width: 300px;
  height: 88px; padding: 0 28px; border: 1px solid var(--line2);
  font-family: var(--fc); font-weight: 600; font-size: 20px; letter-spacing: 0.12em;
  transition: background 0.3s ease;
}
.link-bnr:hover { background: #101011; }
.link-bnr small { font-family: var(--fj); font-weight: 400; font-size: 10px; letter-spacing: 0.08em; color: var(--mut); }

/* ---------- NEWS ---------- */
.news-head { display: flex; justify-content: flex-end; margin-bottom: 8px; }
.news-list { border-top: 1px solid var(--line); }
.news-row { border-bottom: 1px solid var(--line); }
.news-row__in { display: flex; align-items: baseline; gap: 26px; padding: 38px 8px; transition: opacity 0.3s ease; }
a.news-row__in:hover { opacity: 0.55; }
.news-row__cat {
  flex: 0 0 auto; font-family: var(--fd); font-weight: 500; font-size: 11px;
  letter-spacing: 0.1em; background: #000; border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 3px 12px; line-height: 1.6;
}
.news-row__date { flex: 0 0 auto; font-family: var(--fe); font-size: 13px; letter-spacing: 0.1em; color: var(--mut); }
.news-row__title { font-size: 15px; font-weight: 500; letter-spacing: 0.04em; }

/* news filter tabs (news page) */
.news-tabs { display: flex; gap: 14px; justify-content: center; margin-bottom: 64px; flex-wrap: wrap; }
.news-tabs button {
  font-family: var(--fj); font-size: 13px; letter-spacing: 0.1em; padding: 6px 20px;
  border: 1px solid var(--line2); color: var(--mut); transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.news-tabs button.is-on, .news-tabs button:hover { background: #fff; color: #000; border-color: #fff; }

/* ---------- GOODS ---------- */
.goods-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 72px 44px;
  width: min(1240px, calc(100% - 92px)); margin: 0 auto;
}
.goods-item { position: relative; }
.goods-item::before {
  content: "+"; position: absolute; top: -46px; left: -26px;
  font-family: var(--fe); font-weight: 300; font-size: 20px; color: rgba(255, 255, 255, 0.8);
}
.goods-item__cat { font-family: var(--fe); font-size: 10px; letter-spacing: 0.22em; color: var(--mut); }
.goods-item__visual { position: relative; margin-top: 6px; padding-top: 40px; }
.goods-item__word {
  position: absolute; top: -16px; left: -6px; z-index: 0;
  font-family: var(--fc); font-weight: 700; font-size: 46px; line-height: 1;
  letter-spacing: 0.03em; color: transparent; white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}
@supports not (-webkit-text-stroke: 1px white) {
  .goods-item__word { color: rgba(255, 255, 255, 0.14); }
}
/* word: masked fade-in (staggered) + endless slow drift + hover glow */
.js .goods-item__word { opacity: 0; transition: opacity 0.9s var(--ease), -webkit-text-stroke-color 0.4s ease; animation: wordDrift 9s ease-in-out infinite alternate; }
.js .goods-grid.is-in .goods-item__word { opacity: 1; }
.js .goods-grid.is-in .goods-item:nth-child(5n+2) .goods-item__word { transition-delay: 0.12s; }
.js .goods-grid.is-in .goods-item:nth-child(5n+3) .goods-item__word { transition-delay: 0.24s; }
.js .goods-grid.is-in .goods-item:nth-child(5n+4) .goods-item__word { transition-delay: 0.36s; }
.js .goods-grid.is-in .goods-item:nth-child(5n) .goods-item__word { transition-delay: 0.48s; }
.goods-item:nth-child(2n) .goods-item__word { animation-duration: 13s; animation-direction: alternate-reverse; }
.goods-item:nth-child(3n) .goods-item__word { animation-duration: 10s; }
.goods-item:hover .goods-item__word { -webkit-text-stroke-color: #ffffff; }
@keyframes wordDrift {
  from { transform: translateX(0); }
  to { transform: translateX(14px); }
}
.goods-item__img {
  position: relative; z-index: 1; width: 86%; margin-left: auto; overflow: hidden;
  -webkit-mask-image: radial-gradient(135% 135% at 50% 52%, #000 58%, rgba(0, 0, 0, 0) 97%);
  mask-image: radial-gradient(135% 135% at 50% 52%, #000 58%, rgba(0, 0, 0, 0) 97%);
}
.goods-item__img img { width: 100%; height: auto; transition: transform 0.6s var(--ease); }
.goods-item:hover .goods-item__img img { transform: scale(1.05); }
.goods-item__label { margin-top: 14px; font-family: var(--fe); font-size: 10px; letter-spacing: 0.22em; color: var(--mut); }
.goods-item__title { font-size: 12.5px; font-weight: 500; line-height: 1.7; margin-top: 2px; min-height: 3.4em; }
.goods-item__bar { display: block; width: 64px; height: 2px; background: #fff; margin-top: 10px; }
.goods-shop {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  min-height: 220px; color: var(--mut); font-family: var(--fd); font-weight: 600;
  font-size: 17px; letter-spacing: 0.28em; text-align: center; transition: color 0.3s ease;
}
.goods-shop:hover { color: #fff; }
.goods-shop svg { width: 30px; height: 30px; fill: currentColor; }

/* ---------- YOUTUBE ---------- */
.yt-rail-wrap { position: relative; width: 88%; margin: 0 auto; }
.yt-rail { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; cursor: grab; }
.yt-rail::-webkit-scrollbar { display: none; }
.yt-item { flex: 0 0 32.5%; position: relative; padding: 0; }
.yt-item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.yt-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.25); transition: background 0.3s ease;
}
.yt-item:hover::after { background: rgba(0, 0, 0, 0); }
.yt-item__play {
  position: absolute; top: 50%; left: 50%; z-index: 2; width: 0; height: 0;
  border-left: 22px solid rgba(255, 255, 255, 0.92); border-top: 13px solid transparent;
  border-bottom: 13px solid transparent; transform: translate(-50%, -50%);
}
.yt-item__cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2; font-size: 11px;
  font-weight: 500; letter-spacing: 0.06em; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8); color: #fff;
}
.yt-sub { display: flex; align-items: center; gap: 22px; width: 88%; margin: 64px auto 0; }
.yt-sub__badge {
  display: inline-flex; align-items: stretch; font-family: var(--fd); font-weight: 600; font-size: 14px;
}
.yt-sub__badge b { display: inline-flex; align-items: center; gap: 8px; background: #f00; color: #fff; padding: 7px 14px; font-weight: 600; }
.yt-sub__badge b svg { width: 18px; height: 18px; fill: #fff; }
.yt-sub__badge span { display: inline-flex; align-items: center; background: #f1f1f1; color: #333; padding: 7px 12px; }
.yt-sub__line { width: 34px; height: 1px; background: #fff; }
.yt-sub__txt { font-family: var(--fe); font-weight: 500; font-size: 13px; letter-spacing: 0.22em; }

/* ---------- modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 5vh 4vw;
}
.modal.is-open { display: flex; }
.modal__bg { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.88); }
.modal__box { position: relative; z-index: 1; width: min(960px, 100%); max-height: 90vh; overflow: auto; background: #0a0a0b; border: 1px solid #2a2a2b; }
.modal__box video { width: 100%; height: auto; }
.modal__body { padding: 22px 26px 30px; }
.modal__title { font-size: 15px; font-weight: 700; letter-spacing: 0.04em; }
.modal__meta { font-family: var(--fe); font-size: 11px; letter-spacing: 0.16em; color: var(--mut); margin-top: 4px; }
.modal__close {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 44px; height: 44px; background: rgba(0, 0, 0, 0.6);
}
.modal__close::before, .modal__close::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 22px; height: 1px; background: #fff;
}
.modal__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- footer ---------- */
.footer { position: relative; padding: var(--sec-pad) 46px 40px; overflow: hidden; }
.footer > * { position: relative; z-index: 1; }
.footer__bg { position: absolute; inset: 0; z-index: 0 !important; pointer-events: none; }
.footer__bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.footer__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.55) 78%, #000 100%); }
.footer__logo { display: block; width: min(760px, 86%); }
.footer__logo .logo-type { font-size: clamp(64px, 9.6vw, 128px); }
.footer__logo .logo-type small { font-size: clamp(10px, 1.4vw, 16px); letter-spacing: 0.94em; margin-top: 10px; }
.footer__nav { display: flex; align-items: center; flex-wrap: wrap; margin-top: 56px; }
.footer__nav li { position: relative; }
.footer__nav li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 13px; background: var(--line2); }
.footer__nav li:first-child::before { display: none; }
.footer__nav a { display: block; padding: 6px 20px; font-family: var(--fd); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; transition: opacity 0.3s ease; }
.footer__nav a:hover { opacity: 0.5; }
.footer__nav li:first-child a { padding-left: 0; }
.footer__sns { display: flex; gap: 20px; margin-left: 26px; }
.footer__sns svg { width: 19px; height: 19px; fill: #fff; }
.footer__sns a:hover { opacity: 0.5; }
.footer__shop {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 54px;
  border: 1px solid #4a4a4b; color: #8a8a8b; padding: 26px 48px;
  font-family: var(--fd); font-weight: 600; font-size: 17px; letter-spacing: 0.28em;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer__shop:hover { color: #fff; border-color: #fff; }
.footer__shop svg { width: 22px; height: 22px; fill: currentColor; }
.footer__info { margin-top: 60px; font-size: 11.5px; line-height: 2.1; color: var(--mut); }
.footer__copy { margin-top: 46px; font-family: var(--fe); font-size: 11px; letter-spacing: 0.1em; color: var(--mut); }
.footer__corner::before, .footer__corner::after {
  content: ""; position: absolute; bottom: 28px; width: 40px; height: 1px; background: rgba(255, 255, 255, 0.6);
}
.footer__corner::before { left: -8px; transform: rotate(-45deg); }
.footer__corner::after { right: -8px; transform: rotate(45deg); }
.pagetop {
  position: absolute; right: 40px; bottom: 120px;
  font-family: var(--fe); font-size: 10px; letter-spacing: 0.3em;
  writing-mode: vertical-rl; padding-top: 46px;
}
.pagetop::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 38px; background: #fff; }
.pagetop:hover { opacity: 0.5; }

/* ---------- subpage shell ---------- */
.page-main { padding-top: 220px; }

/* works catalog */
.wcat-group { position: relative; padding: 110px 0; }
.wcat-group__head { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: 40px 60px; align-items: start; width: min(1240px, calc(100% - 92px)); margin: 0 auto; }
.wcat-group__era {
  position: relative; font-family: var(--fc); font-weight: 700; font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.05; letter-spacing: 0.03em; text-transform: uppercase;
}
.wcat-group__era::before { content: ""; position: absolute; left: -160px; top: 54%; width: 120px; height: 2px; background: #fff; }
.wcat-group__list { margin-top: 26px; }
.wcat-group__list li { display: flex; gap: 18px; align-items: baseline; font-size: 13.5px; letter-spacing: 0.05em; line-height: 2.3; color: var(--mut2); }
.wcat-group__list li .num { font-family: var(--fe); font-size: 11px; letter-spacing: 0.2em; }
.wcat-group__list li a { color: inherit; transition: color 0.3s ease; }
.wcat-group__list li a:hover { color: #fff; }
.wcat-group__works { display: grid; grid-template-columns: repeat(2, minmax(0, 236px)); gap: 44px; justify-content: start; }
.wcat-card { display: block; position: relative; }
.wcat-card__img { overflow: hidden; }
.wcat-card__img img { width: 100%; transition: transform 0.6s var(--ease); }
.wcat-card:hover .wcat-card__img img { transform: scale(1.04); }
.wcat-card__meta { margin-top: 12px; }
.wcat-card__cat { font-family: var(--fe); font-size: 10px; letter-spacing: 0.24em; color: var(--mut); }
.wcat-card__title { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; margin-top: 2px; }
.wcat-card__sub { font-family: var(--fe); font-size: 11px; letter-spacing: 0.1em; color: var(--mut); }
.wcat-card__info { font-size: 11px; color: var(--mut); margin-top: 4px; letter-spacing: 0.03em; }
.year-nav { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 70; text-align: center; }
.year-nav li { margin: 7px 0; }
.year-nav a {
  display: inline-block; min-width: 30px; padding: 3px 4px; font-family: var(--fe);
  font-size: 12px; letter-spacing: 0.06em; color: #8a8a8b; border: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.year-nav li.is-on a, .year-nav a:hover { color: #fff; border-color: #fff; }

/* work detail */
.wd-hero { position: relative; height: 62vh; min-height: 420px; overflow: hidden; display: flex; align-items: flex-end; }
.wd-hero__bg { position: absolute; inset: 0; }
.wd-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.wd-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.12) 45%, #000 100%); }
.wd-hero__inner { position: relative; z-index: 1; width: min(1100px, calc(100% - 48px)); margin: 0 auto; padding-bottom: 40px; }
.wd-hero__cat { font-family: var(--fe); font-size: 11px; letter-spacing: 0.3em; color: rgba(255, 255, 255, 0.8); }
.wd-hero__title { font-size: clamp(30px, 4.6vw, 54px); font-weight: 700; letter-spacing: 0.04em; line-height: 1.3; margin-top: 6px; }
.wd-hero__en { font-family: var(--fc); font-weight: 600; font-size: clamp(15px, 1.9vw, 21px); letter-spacing: 0.16em; color: var(--mut); margin-top: 6px; text-transform: uppercase; }
.wd-label { display: inline-block; font-size: 15px; font-weight: 700; letter-spacing: 0.1em; border: 1px solid #fff; padding: 4px 18px; margin-bottom: 28px; }
.wd-table { width: 100%; border-collapse: collapse; }
.wd-table th, .wd-table td { text-align: left; font-weight: 400; font-size: 14px; padding: 15px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.wd-table th { width: 8.5em; color: var(--mut); letter-spacing: 0.08em; }
.wd-cols { display: grid; grid-template-columns: 340px 1fr; gap: 72px; }
.wd-story p { margin-bottom: 1.4em; font-size: 14.5px; }
.staff-row { display: flex; flex-wrap: wrap; gap: 14px; }
.staff-box { border: 1px solid var(--line); padding: 14px 26px; text-align: center; min-width: 168px; }
.staff-box__role { font-family: var(--fe); font-size: 10px; letter-spacing: 0.22em; color: var(--mut); }
.staff-box__name { font-size: 14.5px; font-weight: 700; letter-spacing: 0.08em; margin-top: 4px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 28px; }
.gallery-item { position: relative; }
.gallery-item::before { content: "+"; position: absolute; top: -26px; left: -17px; font-family: var(--fe); font-weight: 300; font-size: 18px; color: rgba(255,255,255,0.7); z-index: 1; }
.gallery-item .im { overflow: hidden; display: block; }
.gallery-item img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.wd-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 110px; border-top: 1px solid var(--line); padding-top: 34px; }
.wd-nav a { font-family: var(--fd); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; transition: opacity 0.3s ease; }
.wd-nav a:hover { opacity: 0.5; }

/* ---------- company / about ---------- */
.vision { text-align: center; }
.vision__label { font-family: var(--fc); font-weight: 600; font-size: 16px; letter-spacing: 0.3em; }
.vision__catch { font-size: clamp(24px, 3.4vw, 38px); font-weight: 700; letter-spacing: 0.1em; line-height: 1.8; margin-top: 26px; }
.vision__text { max-width: 640px; margin: 36px auto 0; font-size: 14.5px; text-align: left; }
.studio-block { padding-left: 96px; }
.side-label {
  position: absolute; left: 0; top: 0; writing-mode: vertical-rl;
  font-family: var(--fc); font-weight: 600; font-size: 14px; letter-spacing: 0.34em;
  color: var(--ink); text-transform: uppercase;
}
.studio-block { position: relative; padding-top: 90px; }
.studio-block__name { font-family: var(--fc); font-weight: 700; font-size: clamp(46px, 6.4vw, 86px); letter-spacing: 0.04em; line-height: 1; text-transform: uppercase; }
.dept-tabs { display: flex; flex-wrap: wrap; gap: 8px 34px; margin-top: 34px; }
.dept-tabs li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: #7c7c7d; }
.dept-tabs li.is-on { color: #fff; }
/* non-active tabs are display-only (not controls) */
.dept-tabs li:not(.is-on) { cursor: default; opacity: 0.6; }
.dept-tabs svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.dept { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 64px; }
.dept__jp { display: inline-block; font-size: 16px; font-weight: 700; letter-spacing: 0.14em; border: 1px solid #fff; padding: 4px 20px; margin-bottom: 26px; }
.dept__text p { font-size: 14px; margin-bottom: 1.3em; }
.dept__img img { width: 100%; aspect-ratio: 41 / 24; object-fit: cover; }
.dept__img figcaption { font-family: var(--fe); font-size: 10px; letter-spacing: 0.2em; color: var(--mut2); margin-top: 10px; }
.prf-list { border-top: 1px solid var(--line); }
.prf-list > div { display: grid; grid-template-columns: 12em 1fr; gap: 20px; padding: 22px 8px; border-bottom: 1px solid var(--line); font-size: 14px; }
.prf-list dt { color: var(--mut); letter-spacing: 0.1em; }
.history { border-top: 1px solid var(--line); }
.history li { display: grid; grid-template-columns: 7em 1fr; gap: 26px; padding: 18px 8px; border-bottom: 1px solid var(--line); font-size: 14px; align-items: baseline; }
.history li span { font-family: var(--fc); font-weight: 600; font-size: 22px; letter-spacing: 0.08em; line-height: 1.4; }

/* ---------- service (division style) ---------- */
.division { position: relative; padding-top: 90px; }
.division__num { font-family: var(--fe); font-size: 12px; letter-spacing: 0.3em; color: var(--mut); }
.division__en { font-family: var(--fc); font-weight: 700; font-size: clamp(38px, 5vw, 64px); letter-spacing: 0.04em; line-height: 1.05; text-transform: uppercase; margin-top: 4px; }
.flowline { border-top: 1px solid var(--line); }
.flowline li { display: grid; grid-template-columns: 64px 10em 1fr; gap: 22px; align-items: baseline; padding: 24px 8px; border-bottom: 1px solid var(--line); }
.flowline .n { font-family: var(--fc); font-weight: 600; font-size: 30px; color: var(--mut2); }
.flowline .t { font-size: 15px; font-weight: 700; letter-spacing: 0.1em; }
.flowline .d { font-size: 13px; color: var(--mut); }

/* ---------- recruit ---------- */
.rec-lead { text-align: center; }
.rec-lead__catch { font-size: clamp(24px, 3.4vw, 38px); font-weight: 700; letter-spacing: 0.1em; line-height: 1.8; }
.rec-lead__sub { font-size: 14px; color: var(--mut); margin-top: 14px; letter-spacing: 0.08em; }
.rec-layout { display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: start; }
.rec-menu { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 140px; }
.rec-menu a, .rec-menu span {
  display: flex; align-items: center; justify-content: center; min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.75); font-size: 14.5px; font-weight: 700;
  letter-spacing: 0.14em; text-align: center; transition: background 0.3s ease, color 0.3s ease;
}
.rec-menu .is-on { background: #6e6e6f; border-color: #6e6e6f; }
.rec-menu a:hover { background: #fff; color: #000; }
.job { border-bottom: 1px solid var(--line); }
.job:first-of-type { border-top: 1px solid var(--line); }
.job__head { display: flex; align-items: center; gap: 22px; width: 100%; padding: 30px 8px; text-align: left; }
.job__toggle { position: relative; flex: 0 0 34px; height: 34px; border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 50%; }
.job__toggle::before, .job__toggle::after { content: ""; position: absolute; top: 50%; left: 50%; background: #fff; transition: transform 0.4s var(--ease); }
.job__toggle::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.job__toggle::after { width: 1px; height: 12px; transform: translate(-50%, -50%); }
.job__head[aria-expanded="true"] .job__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.job__title { font-size: 16.5px; font-weight: 700; letter-spacing: 0.06em; }
.job__meta { font-size: 12px; color: var(--mut); letter-spacing: 0.04em; margin-top: 3px; }
.job__body { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows 0.6s var(--ease); }
.job__head[aria-expanded="true"] + .job__body { grid-template-rows: 1fr; }
.job__body-in { padding: 4px 8px 34px 64px; min-height: 0; overflow: hidden; }
.job__body p { font-size: 13.5px; margin-bottom: 1em; color: rgba(255, 255, 255, 0.85); }
.benefit-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.benefit-list li { background: #000; padding: 30px 22px; font-size: 13.5px; font-weight: 500; letter-spacing: 0.06em; }
.benefit-list li small { display: block; font-family: var(--fe); font-size: 9.5px; letter-spacing: 0.24em; color: var(--mut); margin-bottom: 8px; }

/* ---------- contact ---------- */
.contact-note { text-align: center; font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.contact-grid { display: grid; grid-template-columns: 1fr 300px; gap: 72px; align-items: start; margin-top: 80px; }
.form-group { margin-bottom: 30px; }
.form-group > label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 10px; }
.form-group .req { color: var(--teal); font-size: 11px; margin-left: 8px; }
.form-group .opt { color: var(--mut); font-size: 11px; margin-left: 8px; font-weight: 400; }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%; background: #0d0d0e; border: 1px solid #333; color: #fff;
  font: inherit; font-size: 14px; padding: 13px 16px; border-radius: 0;
  transition: border-color 0.3s ease;
}
input:focus, textarea:focus { border-color: #fff; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; cursor: pointer; }
.radio-row input { accent-color: var(--teal); }
.form-error { color: #ff6b6b; font-size: 12px; margin-top: 6px; min-height: 1em; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.btn-solid {
  display: inline-block; background: #fff; color: #000; font-family: var(--fd);
  font-weight: 600; font-size: 14px; letter-spacing: 0.22em; padding: 18px 54px;
  border: 1px solid #fff; transition: background 0.3s ease, color 0.3s ease; cursor: pointer;
}
.btn-solid:hover { background: #000; color: #fff; }
.btn-ghost {
  display: inline-block; background: none; color: #fff; font-family: var(--fd);
  font-weight: 600; font-size: 14px; letter-spacing: 0.22em; padding: 18px 44px;
  border: 1px solid rgba(255, 255, 255, 0.75); transition: background 0.3s ease, color 0.3s ease; cursor: pointer;
}
.btn-ghost:hover { background: #fff; color: #000; }
.confirm-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.confirm-table th, .confirm-table td { text-align: left; font-size: 14px; padding: 14px 8px; border-bottom: 1px solid var(--line); font-weight: 400; }
.confirm-table th { width: 11em; color: var(--mut); }
.confirm-step, .form-success { display: none; }
.form.is-confirm .input-step { display: none; }
.form.is-confirm .confirm-step { display: block; }
.form-success__icon { width: 64px; height: 64px; border: 1px solid var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 26px; margin: 0 auto 24px; }
.form-success { text-align: center; padding: 40px 0; }
.form-success__title { font-size: 18px; font-weight: 700; letter-spacing: 0.1em; }
.form-success__text { font-size: 13.5px; color: var(--mut); margin-top: 12px; }
.aside-block { border: 1px solid var(--line); padding: 26px 26px 30px; margin-bottom: 18px; }
.aside-block h3 { font-family: var(--fe); font-size: 11px; letter-spacing: 0.3em; color: var(--mut); font-weight: 500; margin-bottom: 10px; }
.aside-block p { font-size: 13.5px; line-height: 2; }

/* breadcrumb (kept for a11y/SEO, subdued) */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--fe); font-size: 10.5px; letter-spacing: 0.14em; color: #8a8a8b; margin: 26px 0 0; }
.breadcrumb a { color: #9a9a9b; }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
  .slider-btn--prev { left: -18px; }
  .slider-btn--next { right: -18px; }
  .goods-grid { grid-template-columns: repeat(3, 1fr); }
  .year-nav { display: none; }
  .wcat-group__head { grid-template-columns: 1fr; }
  .wcat-group__era::before { display: none; }
  .wcat-group__works { grid-template-columns: repeat(auto-fill, minmax(200px, 236px)); }
}

@media (max-width: 1023px) {
  :root { --sec-pad: 190px; }
  .gnav__list, .lang { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .side-sns { display: none; }
  .header { height: 72px; padding: 0 22px; }
  .logo-type { font-size: 26px; }
  .wd-cols, .contact-grid, .rec-layout, .dept { grid-template-columns: 1fr; gap: 44px; }
  .rec-menu { position: static; }
  .side-label { position: static; writing-mode: horizontal-tb; display: block; margin-bottom: 30px; letter-spacing: 0.3em; }
  .studio-block { padding-left: 0; }
  .footer { padding-left: 22px; padding-right: 22px; }
}

@media (max-width: 767px) {
  :root { --sec-pad: 140px; }
  body { font-size: 15px; }
  .pc-only { display: none; }
  .sp-only { display: block; }
  .sec-title { font-size: 20px; margin-bottom: 52px; }
  .hero__info { left: 22px; bottom: 74px; }
  .hero__title { left: 22px; right: 22px; top: 40%; }
  .hero__title-kicker { font-size: 11px; letter-spacing: 0.24em; }
  .hero__title-main { font-size: clamp(46px, 13.5vw, 64px); margin-top: 14px; }
  .hero__title-meta { font-size: 11px; margin-top: 18px; }
  .hero__bnr { right: 22px; top: 92px; padding: 10px 14px; font-size: 13px; }
  .hero__list { display: none; }
  .lineup__rail-wrap { width: calc(100% - 44px); }
  .lineup__item { flex: 0 0 182px; }
  .lineup__tile { min-height: 273px; font-size: 20px; }
  .lineup__cap { gap: 8px; margin-top: 10px; }
  .lineup__cap .jp { font-size: 11.5px; }
  .lineup__cap small { font-size: 9px; letter-spacing: 0.14em; }
  .slider-btn { display: none; }
  .news-row__in { flex-wrap: wrap; gap: 10px 14px; padding: 26px 4px; }
  .news-row__title { width: 100%; font-size: 14px; }
  .goods-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 28px; width: calc(100% - 48px); }
  .goods-item__word { font-size: 32px; top: -10px; }
  .goods-item__visual { padding-top: 28px; }
  .yt-rail-wrap { width: calc(100% - 44px); }
  .yt-item { flex: 0 0 78%; }
  .yt-sub { width: calc(100% - 44px); flex-wrap: wrap; gap: 14px; }
  .fix-bnr { right: 14px; bottom: 14px; padding: 10px 14px; gap: 10px; }
  .fix-bnr__big { font-size: 22px; }
  .fix-bnr__txt { font-size: 9.5px; padding-left: 10px; }
  .footer__nav { flex-direction: column; align-items: flex-start; }
  .footer__nav li::before { display: none; }
  .footer__nav a { padding: 7px 0; }
  .footer__sns { margin-left: 0; margin-top: 18px; }
  .footer__shop { width: 100%; justify-content: center; padding: 22px 10px; font-size: 14px; }
  .pagetop { right: 18px; bottom: 190px; }
  .page-main { padding-top: 150px; }
  .wd-hero { height: 52vh; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .benefit-list { grid-template-columns: 1fr 1fr; }
  .flowline li { grid-template-columns: 44px 1fr; }
  .flowline .d { grid-column: 2; }
  .history li { grid-template-columns: 5em 1fr; }
  .prf-list > div { grid-template-columns: 1fr; gap: 4px; }
  .wcat-group { padding: 70px 0; }
  .wcat-group__works { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .wd-nav { flex-wrap: wrap; gap: 14px; }
}

/* ============================================================
   Reduced motion — stop all animation/transition, show reveals instantly
   ============================================================ */
/* Motion policy: reduced-motion is intentionally NOT gated.
   Rationale: faithful anchor reproduction + avoiding "no animation" false-bug
   reports from client machines with OS-level animation-off (flow rule §1-3).
   Decision locked 2026-07-30. Do not re-add an RM guard here. */

/* ---------- plus-alpha sections (Hallmark-guided additions) ---------- */
/* recruit band (top page) */
.rec-band__catch { font-size: clamp(26px, 3.6vw, 44px); font-weight: 700; letter-spacing: 0.1em; line-height: 1.7; }

/* facts (about) */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts li { border-left: 1px solid var(--line); padding: 6px 30px 10px; }
.facts li:first-child { border-left: 0; padding-left: 0; }
.facts__num { display: block; font-family: var(--fc); font-weight: 700; font-size: clamp(46px, 5.8vw, 78px); line-height: 1; letter-spacing: 0.02em; }
.facts__num small { font-size: 0.36em; font-weight: 600; margin-left: 6px; letter-spacing: 0.08em; }
.facts__label { display: block; margin-top: 14px; font-size: 12px; color: var(--mut); letter-spacing: 0.12em; }

/* voice (recruit) */
.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.voice { position: relative; border: 1px solid var(--line); padding: 46px 36px 36px; }
.voice::before {
  content: "\201C"; position: absolute; top: -10px; left: 20px;
  font-family: var(--fc); font-weight: 700; font-size: 92px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}
.voice__text { font-size: 15px; font-weight: 500; line-height: 2.1; }
.voice__meta { margin-top: 24px; font-family: var(--fe); font-size: 11px; letter-spacing: 0.2em; color: var(--mut); text-transform: uppercase; }
.voice__meta b { color: var(--ink); font-family: var(--fj); font-weight: 700; font-size: 13.5px; letter-spacing: 0.08em; margin-right: 14px; }

@media (max-width: 767px) {
  .facts { grid-template-columns: 1fr 1fr; gap: 34px 0; }
  .facts li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .facts li { padding-right: 12px; }
  .voice-grid { grid-template-columns: 1fr; }
}

/* ---------- subpage ambient background (anchor-style fixed art layer) ---------- */
.page-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.page-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1);
  animation: pageBgFade 36s ease-in-out infinite;
}
.page-bg img:nth-child(2) { animation-delay: -18s; }
.page-bg::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.66); }
@keyframes pageBgFade {
  0% { opacity: 0; transform: scale(1); }
  8% { opacity: 1; }
  50% { opacity: 1; }
  58% { opacity: 0; transform: scale(1.07); }
  100% { opacity: 0; transform: scale(1.07); }
}
/* calm variant (contact): single static image, deeper dim, no motion */
.page-bg--calm img { animation: none; opacity: 1; transform: none; }
.page-bg--calm::after { background: rgba(0, 0, 0, 0.85); }
main { position: relative; z-index: 1; }
.footer { z-index: 1; }

/* ---------- page transition (black veil) ---------- */
.js body { animation: pageIn 0.6s ease both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
.page-veil {
  position: fixed; inset: 0; z-index: 260; background: #000;
  opacity: 0; pointer-events: none; transition: opacity 0.36s ease;
}
.page-veil.is-in { opacity: 1; pointer-events: auto; }
