@charset "utf-8";
/* =========================================================================
   シンソク採用サイト — 共通スタイル
   構造・数値の継承元: https://recruit.ohsho.co.jp/（2026-08-14 実測）
   実測値は scrap/recruit-ohsho-clone/STRUCTURE.md 参照
   ========================================================================= */

:root {
  --red: #da2f1c;
  --red-dark: #b8240f;
  --ink: #271e1c;
  --ink-40: rgba(39, 30, 28, 0.4);
  --cream: #f8f4ec;
  --gray: #f2f2f2;
  --offwhite: #fffdf9;
  --white: #fff;
  --yellow: #f5c518;
  --green: #4a9b5e;

  --pad-xl: 200px;
  --pad-lg: 160px;
  --pad-md: 130px;
  --pad-base: 120px;
  --pad-sm: 100px;

  --wrap: 1200px;
  --gutter: 40px;
  --radius-panel: 60px;

  --jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  --en: "Poppins", "Plus Jakarta Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.2;
  color: var(--ink);
  background: var(--white);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- レイアウト土台 ---------- */
.wrap { width: min(var(--wrap), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.wrap--wide { width: min(1440px, calc(100% - var(--gutter) * 2)); margin-inline: auto; }

.sect { padding-block: var(--pad-base); position: relative; }
.sect--xl { padding-top: var(--pad-xl); padding-bottom: var(--pad-base); }
.sect--md { padding-top: var(--pad-md); padding-bottom: 0; }
.sect--sm { padding-block: var(--pad-sm); }

.bg-red { background: var(--red); color: var(--white); }
.bg-cream { background: var(--cream); }
.bg-gray { background: var(--gray); }
.bg-white { background: var(--white); }
.bg-offwhite { background: var(--offwhite); }

/* 赤地の上に乗る大きな角丸パネル（王将の署名的レイアウト） */
.radius-top { border-radius: var(--radius-panel) var(--radius-panel) 0 0; }
.radius-bottom { border-radius: 0 0 var(--radius-panel) var(--radius-panel); }
.radius-both { border-radius: var(--radius-panel); }

.center { text-align: center; }
.relative { position: relative; }
.z1 { position: relative; z-index: 1; }

/* ---------- タイポグラフィ ---------- */
.en { font-family: var(--en); font-weight: 400; letter-spacing: -0.02em; }

/* 見出しの裏に敷く巨大な欧文 */
.ghost {
  position: absolute;
  font-family: var(--en);
  font-weight: 500;
  font-size: clamp(72px, 9.7vw, 140px);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.ghost--onRed { color: rgba(0, 0, 0, 0.07); }
.ghost--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(218, 47, 28, 0.18);
}

/* セクション頭のラベル（● LABEL / 🟡 LABEL） */
.label {
  font-family: var(--en);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.36px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: "";
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  flex: none;
}
.label--yellow::before { background: var(--yellow); }
.label--red::before { background: var(--red); }
.label--white::before { background: var(--white); }

/* 枠付き見出し（行ごとに独立した箱） */
.boxed-h { display: block; font-size: 44px; line-height: 1; font-weight: 500; letter-spacing: -0.02em; }
.boxed-h > span {
  display: inline-block;
  border: 1px solid currentColor;
  padding: 0.28em 0.5em;
  margin-bottom: 8px;
}

.h-sect { font-size: 40px; line-height: 1.5; font-weight: 600; letter-spacing: -0.02em; }
.h-lead { font-size: 44px; line-height: 1.35; font-weight: 500; letter-spacing: -0.03em; }
.txt { font-size: 16px; line-height: 2.2; font-weight: 500; }
.txt--lg { font-size: 18px; line-height: 2; font-weight: 400; }
.txt--sm { font-size: 14px; line-height: 1.9; }
.mt8 { margin-top: 8px; } .mt16 { margin-top: 16px; } .mt24 { margin-top: 24px; }
.mt40 { margin-top: 40px; } .mt64 { margin-top: 64px; } .mt100 { margin-top: 100px; }

/* ---------- ピルボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 16px 16px 16px 32px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}
.btn__arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: grid; place-items: center; flex: none;
  transition: transform 0.3s;
}
.btn__arrow::before { content: "→"; font-family: var(--en); font-size: 14px; line-height: 1; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--onRed { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--ghostWhite { color: var(--white); }
.btn--ghostWhite .btn__arrow { background: var(--white); color: var(--red); }
.btn--lg { font-size: 24px; padding: 24px 24px 24px 44px; }
.btn--xl { font-size: 32px; padding: 28px 28px 28px 56px; }
.btn--block { display: flex; justify-content: space-between; width: 100%; }

/* ---------- ポラロイド風写真 ---------- */
.polaroid {
  background: var(--white);
  padding: 12px 12px 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}
.polaroid img { width: 100%; }
.rot-l { transform: rotate(-4deg); }
.rot-r { transform: rotate(4deg); }
.rot-l2 { transform: rotate(-7deg); }
.rot-r2 { transform: rotate(7deg); }

/* =========================================================================
   ヘッダー
   ========================================================================= */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding-right: 24px;
  background: var(--white);
  border-bottom: 1px solid rgba(39, 30, 28, 0.1);
  box-shadow: 0 8px 24px rgba(39, 30, 28, 0.06);
  pointer-events: auto;
  transition: background-color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.hdr.is-overlay { background: transparent; border-bottom-color: transparent; box-shadow: none; pointer-events: none; }
.hdr > * { pointer-events: auto; }

.hdr__logo {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  padding: 14px 28px 14px 24px;
  border-radius: 0 0 20px 0;
  flex: none;
}
.hdr__logo img { width: 52px; }
.hdr__logo-copy { display: grid; gap: 2px; color: var(--ink); line-height: 1; white-space: nowrap; }
.hdr__logo-copy small { font-family: var(--jp); font-size: 10px; line-height: 1.25; font-weight: 600; letter-spacing: 0.02em; }
.hdr__logo-copy strong { font-family: var(--en); font-size: 20px; line-height: 1.1; font-weight: 500; }

.hdr__right { display: flex; align-items: center; gap: 20px; padding-top: 18px; min-width: 0; }
.hdr__right > nav { min-width: 0; }
.gnav { display: flex; align-items: center; gap: 28px; }
.gnav__item { position: relative; }
.gnav__link {
  font-size: 18px; line-height: 1; font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px; padding: 12px 0;
  white-space: nowrap;
  transition: color 0.25s, opacity 0.25s;
}
.hdr.is-overlay .gnav__link { color: var(--white); }
.gnav__link[data-drop]::after { content: "+"; font-family: var(--en); font-size: 15px; }
.gnav__link:hover { opacity: 0.75; }

.gnav__panel {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 240px; background: var(--white); color: var(--ink);
  border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  opacity: 0; visibility: hidden; transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.gnav__item:hover .gnav__panel,
.gnav__item:focus-within .gnav__panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.gnav__panel a { display: block; font-size: 15px; line-height: 2.2; white-space: nowrap; }
.gnav__panel a::before { content: "・"; color: var(--red); }
.gnav__panel a:hover { color: var(--red); }

/* 応募前の相談導線。全ページのヘッダーから辿れるようにしている */
.hdr__casual {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-size: 14px; line-height: 1; font-weight: 500;
  white-space: nowrap; padding: 12px 0;
  border-bottom: 1px solid rgba(39, 30, 28, 0.35);
  transition: color 0.25s, border-color 0.25s, opacity 0.3s;
}
.hdr.is-overlay .hdr__casual { color: var(--white); border-bottom-color: rgba(255, 255, 255, 0.5); }
.hdr__casual::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.hdr__casual:hover { opacity: 0.7; }

.hdr__entry {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--red); border-radius: 999px;
  color: var(--red); padding: 12px 22px; font-size: 15px; line-height: 1; font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}
.hdr-entry-menu { position: relative; flex: none; }
.hdr-entry-menu > .hdr__entry { position: relative; }
.hdr-entry-menu > .hdr__entry::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-family: var(--en); font-size: 13px; font-weight: 500;
}
.hdr-entry-menu__panel { right: 0; left: auto; min-width: 210px; transform: translate(0, 8px); pointer-events: none; }
.hdr-entry-menu:hover .hdr-entry-menu__panel,
.hdr-entry-menu:focus-within .hdr-entry-menu__panel { opacity: 1; visibility: visible; transform: translate(0, 0); pointer-events: auto; }
.hdr__entry b { font-family: var(--en); font-size: 18px; font-weight: 600; }
.hdr__entry:hover { background: var(--red); color: var(--white); }
.hdr.is-overlay .hdr__entry { border-color: var(--white); color: var(--white); }
.hdr.is-overlay .hdr__entry:hover { background: var(--white); color: var(--red); }

.hdr__burger {
  width: 76px; height: 48px; border-radius: 999px; background: var(--white);
  display: grid; place-content: center; gap: 6px; flex: none;
  position: relative; z-index: 1;
}
.hdr__burger span { display: block; width: 26px; height: 2px; background: var(--red); transition: transform 0.3s, opacity 0.3s; }
.hdr.is-open .hdr__burger span:nth-child(1) { transform: translateY(8px) rotate(20deg); }
.hdr.is-open .hdr__burger span:nth-child(2) { opacity: 0; }
.hdr.is-open .hdr__burger span:nth-child(3) { transform: translateY(-8px) rotate(-20deg); }

/* ドロワー（SP・および全ページ共通のサイトマップ） */
.drawer {
  position: fixed; inset: 0; z-index: 190;
  background: var(--red); color: var(--white);
  padding: 120px var(--gutter) 60px;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1100px; margin-inline: auto; }
.drawer__h { font-family: var(--en); font-size: 15px; letter-spacing: 0.04em; border-bottom: 1px solid rgba(255, 255, 255, 0.4); padding-bottom: 10px; margin-bottom: 14px; }
.drawer a { display: block; font-size: 15px; line-height: 2.1; }
.drawer a::before { content: "・"; }

/* =========================================================================
   下層ページ メインビジュアル
   ========================================================================= */
.mv { position: relative; background: var(--red); color: var(--white); overflow: hidden; }
.mv--visual { height: 770px; }
.mv--plain { height: 594px; }
.mv__inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.mv .ghost { top: 120px; left: 0; }
.mv__title { font-size: 68px; line-height: 1.2; font-weight: 500; letter-spacing: -0.03em; }
.mv__en { margin-top: 18px; font-size: 24px; line-height: 1.6; }
.mv__crumb { position: absolute; left: 0; bottom: 46px; z-index: 3; font-size: 13px; line-height: 1; letter-spacing: 0.04em; opacity: 0.85; }
.mv__crumb a:hover { text-decoration: underline; }

/* 斜めに切られた写真帯 — 王将の署名的処理 */
.mv__visual {
  position: absolute; right: 0; bottom: 0; width: 62%; height: 78%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
.mv__visual img { width: 100%; height: 100%; object-fit: cover; }
.mv__visual--strip { display: flex; gap: 4px; }
.mv__visual--strip img { flex: 1; }

/* =========================================================================
   イントロ（ラベル＋枠付き見出し＋リード）
   ========================================================================= */
.intro { text-align: center; padding-block: 100px 0; }
.intro__label { margin-bottom: 26px; }
.intro__lead { margin-top: 34px; font-size: 16px; line-height: 2.2; }

/* =========================================================================
   カード類
   ========================================================================= */
.cards { display: grid; gap: 32px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--env { grid-template-columns: 1.35fr 1fr; align-items: start; }

/* 白面のパーツは色を明示する。赤地セクションの中に置かれると color:#fff を継いで文字が消えるため */
.card { background: var(--white); color: var(--ink); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); }
.card__thumb { position: relative; aspect-ratio: 16 / 11; }
.card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.card__thumb--strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card__thumb--strip img { min-width: 0; object-position: 50% 50%; }
.card__cap { position: absolute; left: 14px; bottom: 12px; color: var(--white); font-size: 18px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); }
.card__cap::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.card__body { padding: 18px 20px 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.card__body p { font-size: 13px; line-height: 1.8; }
.card__arrow { width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: var(--white); display: grid; place-items: center; flex: none; font-family: var(--en); font-size: 14px; }
.card:hover .card__arrow { transform: translateX(3px); }
.card, .card__arrow { transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0, 0, 0, 0.13); }

/* TOP 募集職種 */
.top-recruit__contents { margin-top: 70px; }
.top-recruit__cards { gap: 32px; }
.top-recruit__card {
  min-width: 0; overflow: hidden; border-radius: 8px; background: var(--cream); color: var(--ink);
  display: grid; grid-template-rows: auto 1fr;
}
.top-recruit__photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.top-recruit__card-body { padding: 24px; }
.top-recruit__department { font-size: 22px; line-height: 1.5; font-weight: 600; }
.top-recruit__description { margin-top: 8px; }
.top-recruit__place { margin-top: 10px; color: var(--ink-40); }
.top-recruit__pay {
  margin-top: 48px; padding: 36px 40px; border-radius: 8px; background: var(--red); color: var(--white);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px;
}
.top-recruit__pay > div + div { border-left: 1px solid rgba(255, 255, 255, 0.35); padding-left: 40px; }
.top-recruit__employment { font-size: 18px; line-height: 1.5; font-weight: 600; }
.top-recruit__amount { margin-top: 8px; font-size: 26px; line-height: 1.5; font-weight: 600; }
.top-recruit__note { margin-top: 24px; text-align: center; }
.top-recruit__links { margin-top: 32px; display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* 写真の上に見出しを乗せる横長バナー */
.grow { display: grid; grid-template-columns: 60px 1fr; gap: 40px; align-items: center; }
.grow__label { writing-mode: vertical-rl; }
.bnr { position: relative; border-radius: 8px; overflow: hidden; display: block; color: var(--white); }
.bnr img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.bnr__body { position: absolute; inset: auto 0 0 0; padding: 40px; background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); }
.bnr__label { font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.bnr__label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.bnr__title { font-size: 32px; line-height: 1.4; font-weight: 500; margin-top: 8px; letter-spacing: -0.02em; }
.bnr__note { font-size: 13px; margin-top: 4px; }

/* 4枚並びの写真ストリップ（傾き付き） */
.stripwrap { overflow: hidden; } /* skew+scale が document 幅を広げるのを止める */
.strip { display: flex; gap: 4px; overflow: hidden; }
.strip img { flex: 1; aspect-ratio: 3 / 4; object-fit: cover; min-width: 0; }
.strip--skew { transform: skewY(-2deg) scale(1.06); }
.strip--skew img { transform: skewY(2deg) scale(1.04); }

/* 実写真を横長に連ねる、自動再生 + スクロール連動の斜めリボン */
.photo-ribbon-section { padding-block: var(--pad-sm); overflow: hidden; }
.photo-ribbon-heading { margin-top: 100px; margin-bottom: 38px; }
.photo-ribbon-section .photo-ribbon-heading { margin-top: 0; }
.photo-ribbon-heading--compact { margin-top: 80px; }
.photo-ribbon-wrap {
  width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden;
  padding-block: 72px;
}
.photo-ribbon-motion { width: max-content; margin-left: -6vw; }
.photo-ribbon-skew { width: max-content; transform: skewY(-0.3deg); }
.photo-ribbon-track { display: flex; width: max-content; animation: photoRibbonLoop var(--ribbon-duration) linear infinite; will-change: transform; }
.photo-ribbon-track.is-offscreen { animation-play-state: paused; will-change: auto; }
.photo-ribbon-group { display: flex; flex: none; width: max-content; }
.photo-ribbon {
  display: flex; flex: none; gap: 8px; width: max-content; padding-right: 8px;
}
.photo-ribbon img {
  flex: none; width: clamp(220px, 24vw, 360px); aspect-ratio: 4 / 3;
  object-fit: cover; transform: skewY(0.3deg) scale(1.04);
}
.photo-ribbon-wrap:hover .photo-ribbon-track,
.photo-ribbon-wrap:focus-within .photo-ribbon-track { animation-play-state: paused; }
.photo-ribbon-wrap:focus-visible { outline: 3px solid var(--yellow); outline-offset: -3px; }
@keyframes photoRibbonLoop { to { transform: translateX(-50%); } }

/* 数字カード */
.numcard { background: var(--white); border-radius: 8px; padding: 34px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--ink); }
.numcard__pill { display: inline-block; background: var(--red); color: var(--white); border-radius: 999px; font-size: 13px; line-height: 1; padding: 8px 16px; }
.numcard__value { font-family: var(--en); font-size: 64px; line-height: 1.1; font-weight: 500; letter-spacing: -0.03em; margin-top: 14px; }
.numcard__value small { font-family: var(--jp); font-size: 24px; font-weight: 500; margin-left: 4px; }
.numcard__note { font-size: 13px; line-height: 1.8; margin-top: 10px; max-width: 22em; }
.numcard__fig { flex: none; width: 220px; border-radius: 18px; background: var(--cream); overflow: hidden; }
.numcard__icon { display: block; width: 100%; height: auto; aspect-ratio: 11 / 8; }
.num-icon__halo { fill: rgba(218, 47, 28, 0.1); }
.num-icon__ink { fill: var(--ink); }
.num-icon__accent { fill: var(--red); }
.num-icon__line { fill: none; stroke: var(--ink); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
.num-icon__reverse { fill: none; stroke: var(--white); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
.num-icon__text { fill: var(--ink); font-family: var(--en); font-size: 18px; font-weight: 600; }
.num-icon__text--large { font-size: 34px; }
.num-icon__reverse-text { fill: var(--white); font-family: var(--en); font-size: 15px; font-weight: 600; }
.numcard__src { font-size: 11px; color: var(--ink-40); text-align: right; margin-top: 12px; }

.numgroup__h { text-align: center; font-size: 28px; font-weight: 600; letter-spacing: -0.02em; }
.numgroup__h::after { content: "– – –"; display: block; font-family: var(--en); font-size: 14px; letter-spacing: 0.3em; color: var(--yellow); margin-top: 6px; }

/* 定義リスト（企業情報・募集要項） */
.deflist { border-top: 1px solid rgba(39, 30, 28, 0.15); }
.deflist > div { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 24px 8px; border-bottom: 1px solid rgba(39, 30, 28, 0.15); }
.deflist dt { font-weight: 600; }
.deflist dd { font-weight: 400; line-height: 2; }

/* ステップ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { background: var(--white); color: var(--ink); border-radius: 8px; padding: 28px 24px; position: relative; }
.step__no { font-family: var(--en); font-size: 14px; color: var(--red); }
.step__t { font-size: 20px; font-weight: 600; margin-top: 6px; }
.step__d { font-size: 13px; line-height: 1.9; margin-top: 8px; }
.step + .step::before { content: "▶"; position: absolute; left: -14px; top: 50%; transform: translateY(-50%); color: var(--red); font-size: 12px; }

/* 特徴ブロック（番号付き・カルチャー/アルバイト） */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature--rev { direction: rtl; }
.feature--rev > * { direction: ltr; }
.feature__no { font-family: var(--en); font-size: 40px; line-height: 1; font-weight: 500; color: var(--red); }
.feature__cat { font-size: 22px; font-weight: 500; margin-top: 6px; }
.feature__h { font-size: 40px; line-height: 1.5; font-weight: 600; letter-spacing: -0.02em; margin-top: 18px; }
.feature__d { font-size: 18px; line-height: 2; font-weight: 400; margin-top: 18px; }

/* インタビュー */
.iv-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 760px; margin: 0 auto; }
.iv-tab { display: flex; align-items: center; gap: 16px; background: var(--white); color: var(--ink); border-radius: 8px; padding: 12px; text-align: left; width: 100%; }
.iv-tab img { width: 88px; height: 88px; object-fit: cover; border-radius: 4px; flex: none; }
.iv-tab__n { font-size: 18px; font-weight: 600; }
.iv-tab__r { font-size: 12px; color: var(--ink-40); }
.iv-tab__a { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: var(--white); display: grid; place-items: center; font-size: 13px; flex: none; }
.iv-tab { border: 1px solid rgba(39, 30, 28, 0.14); }
.iv-tab.is-active { border-color: var(--red); box-shadow: 0 0 0 1px var(--red) inset; }

.iv-hero { position: relative; }
.iv-hero__main { border-radius: 4px; overflow: hidden; }
.iv-hero__main img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.iv-hero__ghost { position: absolute; left: 30px; bottom: 24px; font-family: var(--en); font-size: 56px; font-weight: 500; color: rgba(255, 255, 255, 0.34); letter-spacing: -0.02em; }
.iv-meta__cat { display: inline-block; background: var(--white); color: var(--red); font-size: 14px; padding: 8px 14px; margin-top: 44px; }
.iv-meta__h { font-size: 52px; line-height: 1.35; font-weight: 500; letter-spacing: -0.03em; margin-top: 20px; }
.iv-meta__h span { display: inline-block; border: 1px solid currentColor; padding: 0.18em 0.4em; }
.iv-meta__n { font-size: 24px; font-weight: 500; margin-top: 28px; }
.iv-meta__r { font-size: 14px; margin-top: 4px; }

.iv-chapter { display: grid; grid-template-columns: 380px 1fr; gap: 60px; padding-block: 60px; }
.iv-chapter__label { font-size: 14px; display: flex; align-items: center; gap: 10px; }
.iv-chapter__label::before { content: "– – – –"; font-family: var(--en); color: var(--red); letter-spacing: 0.1em; }
.iv-chapter__h { font-size: 30px; line-height: 1.6; font-weight: 600; margin-top: 16px; letter-spacing: -0.02em; }
.iv-chapter__h span { display: inline-block; border: 1px solid currentColor; padding: 0.16em 0.4em; margin-bottom: 6px; }
.iv-chapter__body p { font-size: 15px; line-height: 2.1; font-weight: 400; }
.iv-chapter__body p + p { margin-top: 1.6em; }

/* NEXT CONTENTS */
.nextc { padding-block: var(--pad-sm); }
.nextc__h { text-align: center; font-family: var(--en); font-size: 24px; letter-spacing: -0.48px; }
.nextc__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.nextc__list--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nextc__list--1 { grid-template-columns: minmax(0, 1fr); }

/* =========================================================================
   共通ENTRY帯（全ページのフッター直前）
   ========================================================================= */
.entry {
  position: relative; background: var(--red); color: var(--white);
  padding-top: var(--pad-lg); overflow: hidden;
}
.entry__inner { position: relative; z-index: 2; text-align: center; padding-bottom: 350px; }
.entry__en { font-family: var(--en); font-size: 84px; line-height: 1; font-weight: 500; letter-spacing: 0.02em; }
.entry__ja { font-size: 20px; line-height: 1.7; margin-top: 14px; }
.entry__btns { display: grid; gap: 18px; max-width: 640px; margin: 46px auto 0; }
.entry__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.entry__note { margin-top: 22px; font-size: 13px; line-height: 1.9; opacity: 0.9; }
.entry__photos {
  position: absolute; inset: auto 0 0 0; height: 300px; z-index: 1;
  display: flex; gap: 4px;
  clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
}
.entry__photos img { flex: 1; height: 100%; object-fit: cover; min-width: 0; }
.entry__photos img:nth-child(1) { object-position: 48% 10%; }
.entry__photos img:nth-child(2) { object-position: 72%; }
.entry__photos img:nth-child(3) { object-position: 28% 10%; }
.entry__photos img:nth-child(4) { object-position: 38% 10%; }

/* =========================================================================
   フッター
   ========================================================================= */
.ftr { background: var(--white); color: var(--ink); padding: 56px 0 40px; }
.ftr__top { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.ftr__logo { display: flex; align-items: center; gap: 12px; }
.ftr__logo img { width: 56px; }
.ftr__logo span { font-family: var(--en); font-size: 15px; }
.ftr__map { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 28px; }
.ftr__h { font-size: 15px; font-weight: 600; border-bottom: 1px solid rgba(39, 30, 28, 0.2); padding-bottom: 8px; margin-bottom: 10px; }
.ftr__map a { display: block; font-size: 13px; line-height: 2; font-weight: 400; }
.ftr__map a::before { content: "・"; color: var(--red); }
.ftr__map .sub a::before { content: "－ "; color: var(--ink-40); }
.ftr__map .sub { padding-left: 8px; }
.ftr__map a:hover { color: var(--red); }
.ftr__bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 48px; gap: 24px; }
.ftr__copy { font-size: 40px; line-height: 1.3; font-weight: 600; letter-spacing: -0.03em; }
.ftr__meta { text-align: right; font-size: 12px; color: var(--ink-40); }

/* PC ナビが消える幅で、3つの応募入口を常時提示する。 */
.spcta { display: none; }

/* =========================================================================
   スクロール演出（王将実測 0.93% = 極めて控えめ）
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.slide-in { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.slide-in.is-in { opacity: 1; transform: none; }

/* =========================================================================
   トップページ固有
   ========================================================================= */
.opening {
  position: fixed; inset: 0; z-index: 300; background: var(--red); color: var(--white);
  display: grid; place-content: center; text-align: center;
  padding: 56px 20px; overflow-y: auto;
  transition: opacity 0.8s, visibility 0.8s;
}
.opening .tcard { width: min(230px, 42vw); margin-top: 34px; }
.opening .opening__lead { margin-top: 40px; }
.opening.is-done { opacity: 0; visibility: hidden; }
.opening__copy { font-size: clamp(38px, 5.4vw, 76px); line-height: 1.2; font-weight: 500; letter-spacing: -0.04em; }

/* 段取りは王将のスプラッシュ実測値を踏襲する。
   キャッチコピーは revealRight 1.0s / 遅延 4.3s（王将 .bl_splash_ending_tagline_item と同値）。
   その手前の 0〜5.0s はカードの登場に充てている（王将のローディング面にあたる区間）。 */
.opening__copy { animation: opReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 4.3s both; }
.opening__lead { animation: opFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 6s both; }
.opening.is-paused .opening__copy,
.opening.is-paused .opening__lead,
.opening.is-paused .opening__skip,
.opening.is-paused .tcard__holo,
.opening.is-paused .tcard__art::before,
.opening.is-paused .tcard.is-intro .tcard__scan { animation-play-state: paused; }
.opening.is-stopped .opening__copy,
.opening.is-stopped .opening__lead,
.opening.is-stopped .opening__skip,
.opening.is-stopped .tcard__holo,
.opening.is-stopped .tcard__art::before,
.opening.is-stopped .tcard.is-intro .tcard__scan { animation-play-state: paused; }
.opening.is-stopped .tcard__inner { will-change: auto; }
@keyframes opReveal { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes opFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.opening__fig { width: min(320px, 60vw); margin: 40px auto 0; border-radius: 12px; overflow: hidden; }

/* =========================================================================
   トレカ（グレーディングスラブ）3D演出
   挙動の参考: https://kxonline.co.jp/ のヒーローカード（three.js製）を実測し、
   同じ数値のままCSS 3Dへ置き換えたもの。実測値は common.js のコメント参照。
   カード比 63:88（実カード）／角丸は幅の5.5%
   ========================================================================= */
.tcard { position: relative; width: min(300px, 54vw); aspect-ratio: 63 / 88; perspective: 1400px; margin: 48px auto 0; }
.tcard__inner { position: absolute; inset: 0; transform-style: preserve-3d; will-change: transform; }

.tcard__face {
  position: absolute; inset: 0;
  border-radius: 5.5% / 3.94%;
  overflow: hidden;
  backface-visibility: hidden;
  background: #fbfaf8;
  color: var(--ink);
  display: flex; flex-direction: column;
  padding: 6% 6% 4.5%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16), 0 26px 54px rgba(0, 0, 0, 0.42);
}
.tcard__back { transform: rotateY(180deg); background: #17110f; color: #fff; }

.tcard__top { display: flex; align-items: center; justify-content: space-between; font-family: var(--en); font-size: 11px; letter-spacing: 0.06em; }
.tcard__brand { font-weight: 600; }
.tcard__brand em { color: var(--red); font-style: normal; }
.tcard__rank { color: var(--red); }

.tcard__art {
  position: relative; margin-top: 5%; aspect-ratio: 1 / 1;
  background: #14100f; border-radius: 2px; overflow: hidden;
  display: grid; place-items: center;
}
/* 斜めに走る赤い光 */
.tcard__art::before {
  content: ""; position: absolute; inset: -40%;
  background: linear-gradient(115deg, transparent 42%, rgba(218, 47, 28, 0.85) 49%, rgba(255, 210, 200, 0.9) 51%, transparent 58%);
  animation: tcardSheen 6s linear infinite;
}
@keyframes tcardSheen { from { transform: translateX(-30%); } to { transform: translateX(30%); } }
.tcard__logo { position: relative; color: #fff; font-size: 20px; font-weight: 600; letter-spacing: 0.06em; }

.tcard__meta { display: flex; align-items: baseline; justify-content: space-between; margin-top: 6%; font-size: 12px; font-weight: 600; }
.tcard__serial { font-family: var(--en); font-size: 10px; color: var(--red); }
.tcard__lines { margin-top: 5%; display: grid; gap: 5px; }
.tcard__lines i { display: block; height: 3px; border-radius: 2px; background: #c9d2e0; }
.tcard__lines i:nth-child(2) { width: 82%; background: #e0b3ac; }
.tcard__lines i:nth-child(3) { width: 64%; }
.tcard__foot { margin-top: auto; border-top: 1px solid var(--red); padding-top: 5px; font-family: var(--en); font-size: 8px; letter-spacing: 0.04em; color: var(--ink-40); }

/* ホログラム */
.tcard__holo {
  position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; opacity: 0.5;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.55) 46%, rgba(255, 140, 110, 0.4) 50%, rgba(120, 190, 255, 0.35) 54%, transparent 66%);
  background-size: 260% 260%;
  animation: tcardHolo 7s ease-in-out infinite;
}
@keyframes tcardHolo { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* 登場時に走査線が下りる */
.tcard__scan {
  position: absolute; left: 0; right: 0; height: 26%; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(218, 47, 28, 0.55), transparent);
  transform: translateY(-120%);
}
/* 走査線は common.js の INTRO_MS と合わせる */
.tcard.is-intro .tcard__scan { animation: tcardScan 5s cubic-bezier(0.22, 1, 0.36, 1) 1 both; }
@keyframes tcardScan { from { transform: translateY(-120%); } to { transform: translateY(460%); } }

/* 接地影 */
.tcard__shadow {
  position: absolute; left: 50%; bottom: -9%; width: 62%; height: 8%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.42), transparent 70%);
  filter: blur(6px);
}

@media (prefers-reduced-motion: reduce) {
  .tcard__inner { transform: none !important; }
  .tcard__holo, .tcard__art::before, .tcard.is-intro .tcard__scan,
  .opening__copy, .opening__lead, .opening__skip { animation: none; }
}
.opening__lead { margin-top: 56px; font-size: 15px; line-height: 2.2; }
.opening__skip { position: fixed; right: 40px; bottom: 40px; display: inline-flex; align-items: center; gap: 12px; font-family: var(--en); font-size: 15px; }
.opening__skip .btn__arrow { background: var(--white); color: var(--red); }

.hero { position: relative; background: var(--red); height: 100vh; min-height: 720px; overflow: hidden; }
.hero__visual {
  position: absolute; inset: 90px 20% 120px 0;
  transform: rotate(-2.2deg);
  overflow: hidden;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__mark {
  position: absolute; right: -60px; top: 8%; width: 44%; height: 84%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  transform: rotate(8deg);
}
.hero__copy { position: absolute; left: var(--gutter); bottom: 56px; z-index: 3; color: var(--white); }
.hero__copy h1 { font-size: clamp(40px, 5vw, 72px); line-height: 1.2; font-weight: 500; letter-spacing: -0.04em; }
.hero__copy p { font-size: 20px; margin-top: 12px; }

.topics-bar { background: var(--white); color: var(--ink); border-radius: 8px; padding: 26px 34px; display: grid; grid-template-columns: 210px 120px 1fr auto; align-items: center; gap: 24px; margin-top: -60px; position: relative; z-index: 4; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14); }

/* トピックス一覧の1行 */
.post-row { display: grid; grid-template-columns: 120px 110px minmax(0, 1fr) 40px; gap: 24px; align-items: center; padding: 32px 8px; border-bottom: 1px dotted rgba(39, 30, 28, 0.3); }
.post-row__cat { font-size: 12px; border: 1px solid var(--red); color: var(--red); border-radius: 999px; padding: 5px 0; text-align: center; }
@media (max-width: 720px) {
  .post-row { grid-template-columns: auto 1fr; gap: 8px 14px; padding: 22px 4px; }
  .post-row .card__arrow { grid-column: 2; justify-self: end; }
  .post-row__t { grid-column: 1 / -1; }
  .post-row__cat { padding: 5px 12px; }
}
.topics-bar__h { font-family: var(--en); font-size: 20px; }
.topics-bar__date { font-family: var(--en); font-size: 14px; color: var(--ink-40); }
.topics-bar__t { font-size: 15px; line-height: 1.7; border-bottom: 1px dotted rgba(39, 30, 28, 0.3); padding-bottom: 6px; }

/* 採用ムービー */
.movie-feature { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr); gap: 44px; align-items: center; }
.movie-feature__copy .h-sect { text-wrap: balance; }
.movie-frame { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 8px; background: var(--ink); }
.movie-facade { position: relative; display: block; width: 100%; height: 100%; color: var(--white); }
.movie-facade:focus-visible { outline: 3px solid var(--yellow); outline-offset: -3px; }
.movie-facade img { width: 100%; height: 100%; object-fit: cover; }
.movie-facade__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 76px; height: 48px; border-radius: 12px;
  background: var(--red); color: var(--white); font-size: 20px; line-height: 1;
}
.movie-facade:hover .movie-facade__play { background: var(--red-dark); }
.movie-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.movie-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 72px; }
.movie-card h2 { font-size: 18px; line-height: 1.8; font-weight: 600; margin-top: 16px; }

/* 1080px直上でもロゴ・5つのナビ項目・ENTRYを同時に収める。 */
@media (min-width: 1080.02px) and (max-width: 1199.98px) {
  .hdr__right { gap: 16px; }
  .hdr__logo { gap: 10px; padding: 12px 18px; }
  .hdr__logo img { width: 48px; }
  .hdr__logo-copy small { font-size: 9px; }
  .hdr__logo-copy strong { font-size: 18px; }
  .gnav { gap: 20px; }
  .hdr__casual { display: none; }
  .hdr__entry { gap: 0; padding-inline: 18px; }
  .hdr__entry-ja { display: none; }
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
  .hdr__right { gap: 16px; }
  .gnav { gap: 20px; }
  .hdr__casual { display: none; }
}

/* =========================================================================
   レスポンシブ
   ========================================================================= */
@media (max-width: 1080px) {
  :root { --pad-xl: 120px; --pad-lg: 100px; --pad-md: 80px; --pad-base: 80px; --pad-sm: 64px; --gutter: 24px; --radius-panel: 36px; }
  body:has(> .spcta) { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .gnav, .hdr-entry-menu, .hdr__casual { display: none; }
  .spcta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2px, calc(-25.4286px + 8.5714vw), 8px);
    padding: 10px clamp(8px, calc(-10.2857px + 5.7143vw), 12px) calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(39, 30, 28, 0.1);
    box-shadow: 0 -6px 20px rgba(39, 30, 28, 0.14);
  }
  .spcta__btn {
    display: flex; align-items: center; justify-content: center; min-width: 0; min-height: 48px;
    border-radius: 999px; text-align: center;
    font-size: clamp(10px, calc(-3.7143px + 4.2857vw), 13px); font-weight: 600;
    line-height: 1.2; letter-spacing: 0.02em; white-space: nowrap;
  }
  .spcta__btn--main { background: var(--red); color: var(--white); }
  .spcta__btn--sub { background: var(--white); border: 1px solid rgba(39, 30, 28, 0.3); color: var(--ink); }
  .hdr.is-open ~ .spcta { display: none; }
  .hero__copy { bottom: calc(77px + max(0px, 720px - 100vh) + env(safe-area-inset-bottom)); }
  .mv--visual { height: 620px; }
  .mv--plain { height: 460px; }
  .mv__title { font-size: 44px; }
  .mv__en { font-size: 19px; }
  .cards--3, .cards--4, .nextc__list { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .iv-chapter { grid-template-columns: 1fr; gap: 24px; }
  .ftr__top { grid-template-columns: 1fr; }
  .ftr__map { grid-template-columns: repeat(2, 1fr); }
  .drawer__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step + .step::before { display: none; }
}

@media (max-width: 720px) {
  :root { --pad-xl: 90px; --pad-lg: 72px; --pad-md: 56px; --pad-base: 56px; --pad-sm: 48px; --gutter: 20px; }
  body { font-size: 15px; }
  .hdr__logo { padding: 10px 18px 10px 16px; }
  .hdr__logo img { width: 42px; }
  .hdr__logo-copy small { font-size: 8px; }
  .hdr__logo-copy strong { font-size: 15px; }
  .hdr__burger { width: 60px; height: 42px; }
  .mv--visual { height: 520px; }
  .mv--plain { height: 380px; }
  .mv__title { font-size: 32px; }
  .mv__en { font-size: 16px; }
  .mv__visual { width: 82%; height: 52%; }
  .boxed-h { font-size: 26px; }
  .h-sect, .feature__h { font-size: 26px; }
  .h-lead { font-size: 26px; }
  .cards--2, .cards--3, .cards--4, .nextc__list, .steps { grid-template-columns: 1fr; }
  .cards--env { grid-template-columns: 1fr; }
  .grow { grid-template-columns: 1fr; gap: 20px; }
  .grow__label { writing-mode: horizontal-tb; }
  .bnr img { aspect-ratio: 16 / 9; object-position: 50% 30%; }
  .bnr__body { padding: 20px; background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.15)); }
  .bnr__label { font-size: 12px; line-height: 1.5; gap: 6px; }
  .bnr__title { font-size: 22px; line-height: 1.4; }
  .bnr__note { font-size: 12px; line-height: 1.6; }
  .deflist > div { grid-template-columns: 1fr; gap: 6px; }
  .entry__en { font-size: 48px; }
  .entry__row { grid-template-columns: 1fr; }
  .btn--xl { font-size: 22px; padding: 20px 20px 20px 32px; }
  .btn--lg { font-size: 18px; padding: 18px 18px 18px 28px; }
  .iv-meta__h { font-size: 30px; }
  .iv-tabs { grid-template-columns: 1fr; }
  .numcard { flex-direction: column; align-items: flex-start; padding: 24px; }
  .numcard__fig { width: 100%; }
  .numcard__value { font-size: 44px; }
  .ftr__map { grid-template-columns: 1fr; }
  .ftr__copy { font-size: 26px; }
  .ftr__bottom { flex-direction: column; align-items: flex-start; }
  .topics-bar { grid-template-columns: 1fr; gap: 10px; margin-top: -30px; }
  .hero__visual { inset: 80px 8% 140px 0; }
  .drawer__grid { grid-template-columns: 1fr; }
  .top-recruit__contents { margin-top: 48px; }
  .top-recruit__card-body { padding: 22px; }
  .top-recruit__pay { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .top-recruit__pay > div + div { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.35); padding-left: 0; padding-top: 24px; }
  .top-recruit__amount { font-size: 22px; }
  .top-recruit__links { align-items: stretch; flex-direction: column; }
  .top-recruit__links .btn { justify-content: space-between; }
  .entry__inner { padding-bottom: 310px; }
  .entry__photos { height: 260px; clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%); }
  .movie-feature, .movie-grid { grid-template-columns: 1fr; }
  .movie-feature { gap: 28px; }
  .movie-grid { gap: 44px; margin-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .slide-in { opacity: 1; transform: none; transition: none; }
  .photo-ribbon-wrap { overflow-x: auto; overflow-y: hidden; scrollbar-width: thin; overscroll-behavior-inline: contain; }
  .photo-ribbon-wrap::before { content: "スクロール →"; position: sticky; left: calc(100% - 126px); z-index: 2; display: block; width: max-content; margin: 0 18px -28px auto; border-radius: 999px; background: rgba(255, 255, 255, 0.92); color: var(--ink); padding: 6px 12px; font-family: var(--en); font-size: 11px; line-height: 1; letter-spacing: 0.08em; pointer-events: none; }
  .photo-ribbon-motion { transform: none !important; }
  .photo-ribbon-track { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

@media print {
  .spcta { display: none !important; }
  body:has(> .spcta) { padding-bottom: 0; }
}
