@charset "UTF-8";

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
  --color-primary: #DB1425;
  --color-text: #2A2A2A;
  --color-text-gray: #505050;
  --color-dark: #1a1a1a;
  --color-dark-alt: #323232;
  --color-light-gray: #ECECEC;
  --color-white: #FFFFFF;
  --color-body-text: #333333;
  --gradient-primary: linear-gradient(105deg, #FF0014 4.4%, #D00011 49.1%, #851F29 95.6%);
  --font-display: 'Special Gothic Condensed One', sans-serif;
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Poppins', sans-serif;
  --max-width: 1440px;
  --scene-padding: clamp(24px, 4vh, 60px);
}

/* ========================================
   Page Loader (FOUT防止)
   ======================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #1a1a1a;
  transition: opacity 0.5s ease;
}

.page-loader.is-loaded {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
}

/* ========================================
   Coming Soon (未公開リンク)
   ======================================== */
.is-coming-soon {
  position: relative;
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.coming-soon-tag {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.4;
}

/* overflow:hidden な親の中ではボタン内に収める */
[data-scene] .coming-soon-tag {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26, 26, 26, 0.85);
  font-size: 11px;
  padding: 5px 14px;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-snap-type: y mandatory;
}

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  background: #1a1a1a;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ========================================
   Utility
   ======================================== */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 74px;
  border-radius: 30px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 2.1px;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  opacity: 0.8;
}

.btn--gradient {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
}

.section-label {
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 0.81;
  letter-spacing: 2.49px;
  color: var(--color-light-gray);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.section-title-ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 27px;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

/* スマホ専用改行（PCでは非表示） */
.sp-br {
  display: none;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

/* ========================================
   WP Admin Bar 対応
   ======================================== */
body.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
  html.wp-toolbar {
    padding-top: 0 !important;
  }
}

/* ========================================
   Scroll Snap / Scene System
   ======================================== */
[data-scene] {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}

/* Scene bottom shadow (kamishibai fold line) */
[data-scene]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.06));
}
/* Dark scenes */
.hero[data-scene]::after,
.lead[data-scene]::after {
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.15));
}
/* Red scenes */
.recruit[data-scene]::after,
.join-us[data-scene]::after {
  background: linear-gradient(to bottom, transparent, rgba(133,31,41,0.2));
}

/* Scene enter animation — dark sections only (white bg sections skip to avoid flash) */
@keyframes sceneEnter {
  from { opacity: 0.6; transform: translateY(8px); }
  to   { opacity: 1;   transform: translateY(0); }
}
.hero[data-scene].is-active-scene,
.about[data-scene].is-active-scene,
.business[data-scene].is-active-scene,
.news[data-scene].is-active-scene {
  animation: none;
}
.lead[data-scene].is-active-scene,
.join-us[data-scene].is-active-scene {
  animation: sceneEnter 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.recruit[data-scene].is-active-scene {
  animation: none;
}

/* Scene indicator */
.scene-indicator {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  font-family: var(--font-en);
  font-weight: 600;
  color: #fff;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.scene-indicator.is-active {
  opacity: 1;
}
.scene-indicator__current {
  font-size: 28px;
  transition: transform 0.3s, opacity 0.3s;
  display: inline-block;
}
.scene-indicator__current.is-changing {
  transform: translateY(-8px);
  opacity: 0;
}
.scene-indicator__sep,
.scene-indicator__total {
  font-size: 14px;
  opacity: 0.5;
}

/* ========================================
   Header
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.site-header.is-dark-scene {
  background: transparent;
  backdrop-filter: none;
}
.site-header.is-dark-scene .site-header__nav-link {
  color: var(--color-white);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 34px;
}

/* --- Logo --- */
.site-header__logo {
  display: block;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 208px;
  height: 66px;
}

/* Logo switching: default visible, dark/light hidden */
.site-header__logo .logo-dark,
.site-header__logo .logo-light {
  display: none;
}

/* Light-bg sections (about, business, news) → dark logo */
.site-header.is-light-scene .logo-default { display: none; }
.site-header.is-light-scene .logo-dark { display: block; }

/* Red-bg sections (recruit, join-us) → light logo */
.site-header.is-red-scene .logo-default { display: none; }
.site-header.is-red-scene .logo-light { display: block; }

/* --- Nav --- */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header__nav-link {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.3px;
  color: var(--color-white);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.site-header.is-scrolled .site-header__nav-link {
  color: var(--color-text);
}

.site-header.is-scrolled .site-header__contact {
  color: var(--color-white);
}

.site-header__nav-link:hover {
  color: var(--color-primary);
}

.site-header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 38px;
  border-radius: 24px;
  background: var(--gradient-primary);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.4px;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}

.site-header__contact:hover {
  opacity: 0.8;
}

/* --- Hamburger button (hidden on desktop) --- */
.hamburger {
  display: none;
  position: relative;
  z-index: 1002;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger__line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.2s ease;
}

.hamburger__line:nth-child(1) { top: 0; }
.hamburger__line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger__line:nth-child(3) { bottom: 0; }

/* Line color adapts to header state */
.site-header.is-scrolled .hamburger__line,
.site-header.is-light-scene .hamburger__line,
body.page:not(.home) .hamburger__line {
  background: var(--color-text);
}

/* Open state → X */
.hamburger.is-open .hamburger__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* When menu is open, lines are always white (overlay is dark) */
.hamburger.is-open .hamburger__line {
  background: var(--color-white);
}

/* --- Mobile menu overlay --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.4s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  text-align: center;
  width: 100%;
  padding: 0 40px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--color-white);
  padding: 20px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.3s ease;
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal */
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.31s; }

/* Contact link → gradient button */
.mobile-menu__link--contact {
  margin-top: 20px;
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 2px;
  background: var(--gradient-primary);
  border-radius: 30px;
  padding: 14px 48px;
  width: auto;
  display: inline-flex;
}

.mobile-menu__link:not(.mobile-menu__link--contact)::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 1px;
  background: var(--color-primary);
  transition: transform 0.3s ease;
}

.mobile-menu__link:not(.mobile-menu__link--contact):hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

/* Curtain overlay (Act 1: dark-to-reveal) */
.hero__curtain {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #1a1a1a;
  animation: heroCurtainFade 1.6s ease-in-out 0.2s both;
  pointer-events: none;
}
@keyframes heroCurtainFade {
  to { opacity: 0; }
}

/* ---- Emotional montage ---- */
.hero__montage {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  animation: montageOut 1.4s ease-in 3.8s both;
}
@keyframes montageOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.hero__montage-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.hero__montage-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.1);
}

/* Vignette on each slide */
.hero__montage-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.15), transparent 30%, transparent 70%, rgba(0,0,0,0.4));
  pointer-events: none;
}

/* Ken Burns + crossfade per slide
   Total montage visible: 0.4s ~ 5.2s  (montageOut starts at 3.8s, ends ~5.2s)
   Each slide: 1.6s visible window with 0.5s crossfade overlap */
@keyframes introSlide {
  0%   { opacity: 0; transform: scale(1.02); }
  12%  { opacity: 1; }
  30%  { opacity: 1; }
  42%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.14); }
}

.hero__montage-slide--1 {
  animation: introSlide 4.8s ease-in-out 0.4s both;
  transform-origin: 50% 60%;
}
.hero__montage-slide--2 {
  animation: introSlide 4.8s ease-in-out 1.2s both;
  transform-origin: 40% 40%;
}
.hero__montage-slide--3 {
  animation: introSlide 4.8s ease-in-out 2.0s both;
  transform-origin: 60% 50%;
}
.hero__montage-slide--4 {
  animation: introSlide 4.8s ease-in-out 2.8s both;
  transform-origin: 50% 40%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cinematic vignette */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(42, 42, 42, 0) 78%, #2A2A2A 97.5%);
}

.hero__content {
  position: relative;
  z-index: 6;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__title {
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 240px;
  line-height: 0.81;
  letter-spacing: 2.49px;
  white-space: nowrap;
  margin-top: 95px;
  perspective: 800px;
}

.hero__title-white {
  color: var(--color-white);
}

.hero__title-red {
  color: var(--color-primary);
}

.hero__catch {
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: 43px;
  line-height: 1.07;
  color: var(--color-text);
  font-feature-settings: 'vert', 'vrt2', 'vkrn';
  margin-top: -80px;
}

.hero__catch span {
  color: var(--color-primary);
  font-size: 48px;
}

.hero__catch-sub {
  position: absolute;
  right: 110px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: 43px;
  line-height: 1.07;
  color: var(--color-text);
  font-feature-settings: 'vert', 'vrt2', 'vkrn';
  margin-top: -300px;
}

.hero__catch-sub span {
  color: var(--color-primary);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroScrollIn 0.8s ease-out 6.0s both;
  z-index: 6;
}
@keyframes heroScrollIn {
  to { opacity: 1; }
}
.hero__scroll-text {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--color-white);
  animation: scrollTextPulse 2.5s ease-in-out 7s infinite;
}
@keyframes scrollTextPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: var(--color-white);
  transform-origin: top center;
  animation: scrollPulse 2s ease-in-out 6.8s infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; }
}

/* ========================================
   Lead Section
   ======================================== */
.lead {
  background: var(--color-dark);
  padding: var(--scene-padding) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SVG gradient animation background */
.lead__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}
.lead__bg svg {
  width: 100%;
  height: 100%;
}

.lead__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 94px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.lead__text {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 2.42;
  color: var(--color-white);
  max-width: 750px;
}

.lead__buttons {
  display: flex;
  gap: 31px;
  margin-top: 58px;
}

.lead__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 217px;
  height: 49px;
  border: none;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2.1px;
  color: var(--color-white);
  overflow: hidden;
  transition: color 0.3s ease 0.4s;
  /* 4辺を個別のgradientで描画 */
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.4)),
    linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.4)),
    linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.4)),
    linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.4));
  background-repeat: no-repeat;
  background-position: top left, top right, bottom right, bottom left;
  background-size: 0 1px, 1px 0, 0 1px, 1px 0;
}

/* 登場時: 線がぐるっと回って描かれる */
.lead__buttons.is-visible .lead__btn {
  animation: btnBorderDraw 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes btnBorderDraw {
  0%   { background-size: 0 1px,     1px 0,     0 1px,     1px 0; }
  25%  { background-size: 100% 1px,  1px 0,     0 1px,     1px 0; }
  50%  { background-size: 100% 1px,  1px 100%,  0 1px,     1px 0; }
  75%  { background-size: 100% 1px,  1px 100%,  100% 1px,  1px 0; }
  100% { background-size: 100% 1px,  1px 100%,  100% 1px,  1px 100%; }
}

/* 左右の線が下から伸びる */
.lead__btn span::before,
.lead__btn span::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  background: var(--color-white);
  transition: height 0.3s ease;
}
.lead__btn span::before {
  left: 0;
  bottom: 0;
}
.lead__btn span::after {
  right: 0;
  bottom: 0;
}

/* 背景が下から上に塗りつぶす */
.lead__btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background: var(--color-white);
  transition: height 0.3s ease;
}

/* Hover: 線が伸びる → 背景が塗りつぶす → 文字色変化 */
.lead__btn:hover span::before,
.lead__btn:hover span::after {
  height: 100%;
}
.lead__btn:hover::before {
  height: 100%;
  transition-delay: 0.4s;
}
.lead__btn:hover {
  color: var(--color-dark);
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-image:
    linear-gradient(90deg, transparent, transparent),
    linear-gradient(180deg, transparent, transparent),
    linear-gradient(90deg, transparent, transparent),
    linear-gradient(180deg, transparent, transparent);
}

/* Lead montage — 走馬灯 (lantern-slide flow) */
.lead__montage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: lighten;
}

.lead__slide {
  position: absolute;
  width: clamp(280px, 40vw, 560px);
  overflow: hidden;
  opacity: 0;
}

/* Montage starts when lead section gets .montage-active */

.lead__slide img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%) contrast(1.2) brightness(0.85);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 60%, transparent 100%);
}

/* Alternate filter treatments for variety */
.lead__slide:nth-child(odd) img {
  filter: grayscale(40%) contrast(1.25) brightness(0.8);
}
.lead__slide:nth-child(3n) img {
  filter: sepia(20%) contrast(1.2) brightness(0.9);
}

/* Scatter positions + staggered delay: 3枚→休み→3枚→休み… */
.lead__slide:nth-child(1)  { top: 2%;   left: 50%; }
.lead__slide:nth-child(2)  { top: 30%;  left: 68%; }
.lead__slide:nth-child(3)  { top: 58%;  left: 46%; }
.lead__slide:nth-child(4)  { top: 5%;   left: 74%; }
.lead__slide:nth-child(5)  { top: 45%;  left: 56%; }
.lead__slide:nth-child(6)  { top: 15%;  left: 60%; }
.lead__slide:nth-child(7)  { top: 65%;  left: 72%; }
.lead__slide:nth-child(8)  { top: -2%;  left: 54%; }
.lead__slide:nth-child(9)  { top: 35%;  left: 44%; }
.lead__slide:nth-child(10) { top: 55%;  left: 78%; }

.lead.montage-active .lead__slide:nth-child(1)  { animation: leadMontage 30s 0s ease-in-out infinite; }
.lead.montage-active .lead__slide:nth-child(2)  { animation: leadMontage 30s 1s ease-in-out infinite; }
.lead.montage-active .lead__slide:nth-child(3)  { animation: leadMontage 30s 2s ease-in-out infinite; }
.lead.montage-active .lead__slide:nth-child(4)  { animation: leadMontage 30s 5s ease-in-out infinite; }
.lead.montage-active .lead__slide:nth-child(5)  { animation: leadMontage 30s 6s ease-in-out infinite; }
.lead.montage-active .lead__slide:nth-child(6)  { animation: leadMontage 30s 7s ease-in-out infinite; }
.lead.montage-active .lead__slide:nth-child(7)  { animation: leadMontage 30s 10s ease-in-out infinite; }
.lead.montage-active .lead__slide:nth-child(8)  { animation: leadMontage 30s 11s ease-in-out infinite; }
.lead.montage-active .lead__slide:nth-child(9)  { animation: leadMontage 30s 12s ease-in-out infinite; }
.lead.montage-active .lead__slide:nth-child(10) { animation: leadMontage 30s 15s ease-in-out infinite; }

/* Fade in, linger, fade out —循環する走馬灯 */
@keyframes leadMontage {
  0%   { opacity: 0;   transform: scale(1.05); }
  5%   { opacity: 1; transform: scale(1.02); }
  15%  { opacity: 1; transform: scale(1); }
  20%  { opacity: 0;   transform: scale(0.98); }
  100% { opacity: 0; }
}

/* ========================================
   About Section
   ======================================== */
.about__grid-pulse {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.about {
  position: relative;
  background: var(--color-white);
  padding: var(--scene-padding) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.about__label {
  position: absolute;
  left: 32px;
  top: -48px;
}

.about__content {
  max-width: 828px;
  margin: 0 auto;
  padding-top: 10px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about__heading {
  font-family: var(--font-en), var(--font-ja);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -1.35px;
  margin-bottom: clamp(16px, 3vh, 35px);
}

.about__heading-main {
  font-size: 45px;
}

.about__heading-sub {
  font-size: 32px;
}

.about__desc {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 2.5;
  color: var(--color-body-text);
  text-align: justify;
  text-align-last: left;
}

.about__desc p + p {
  margin-top: 20px;
}

.about__btn {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 6vh, 80px);
}

/* ========================================
   Our Business Section
   ======================================== */
.business {
  background: var(--color-white);
  padding: var(--scene-padding) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.business__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.business__header {
  position: relative;
  margin-bottom: 20px;
}

.business__label {
  position: absolute;
  left: 10px;
  top: -45px;
}

.business__title {
  text-align: right;
  padding-right: 100px;
}

.business__cards {
  position: relative;
  width: 100%;
  height: clamp(280px, 45vh, 500px);
  overflow: hidden;
  display: flex;
}

.business__card {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business__card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.business__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.business__card:hover .business__card-bg img {
  transform: scale(1.05);
}

.business__card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.4s ease;
}

.business__card:hover .business__card-bg::after {
  background: rgba(0, 0, 0, 0.12);
}

/* 斜めワイプマスク */
.business__wipe {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.business__card--left .business__wipe {
  background: linear-gradient(135deg, var(--color-white) 0%, #f0f0f0 100%);
  clip-path: polygon(0 0, 120% 0, 100% 100%, 0 100%);
}

.business__card--right .business__wipe {
  background: linear-gradient(225deg, var(--color-white) 0%, #f0f0f0 100%);
  clip-path: polygon(-20% 0, 100% 0, 100% 100%, 0 100%);
}

.business__cards.is-revealed .business__card--left .business__wipe {
  clip-path: polygon(0 0, -20% 0, -40% 100%, 0 100%);
}

.business__cards.is-revealed .business__card--right .business__wipe {
  clip-path: polygon(120% 0, 100% 0, 100% 100%, 140% 100%);
  transition-delay: 0.2s;
}

/* ワイプ面の透かし文字 */
.business__wipe-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  color: rgba(219, 20, 37, 0.08);
  white-space: nowrap;
  z-index: 4;
  pointer-events: none;
}

/* テキスト */
.business__card-content {
  position: relative;
  z-index: 5;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.business__cards.is-revealed .business__card--left .business__card-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.business__cards.is-revealed .business__card--right .business__card-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.business__card-sub {
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.business__card-title {
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--color-white);
  letter-spacing: 0.06em;
}

/* 中央ライン */
.business__center-line {
  display: none;
}

/* ホバーで内側に赤グロー */
.business__card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 60px rgba(219, 20, 37, 0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}

.business__card:hover::before {
  box-shadow: inset 0 0 60px rgba(219, 20, 37, 0.08);
}

/* ========================================
   Recruit Section
   ======================================== */
.recruit {
  position: relative;
  padding: var(--scene-padding) 0;
  overflow: hidden;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.recruit__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  mix-blend-mode: multiply;
}

.recruit__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.recruit__header {
  position: relative;
  margin-bottom: clamp(50px, 10vh, 120px);
}

.recruit__label {
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 0.81;
  letter-spacing: 2.49px;
  color: var(--color-white);
  position: absolute;
  left: 32px;
  top: -30px;
  pointer-events: none;
  opacity: 0.3;
}

.recruit__title {
  text-align: center;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 27px;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.recruit__circles {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  margin-bottom: 60px;
}

.recruit__circle {
  position: relative;
  width: clamp(160px, 16vw, 220px);
  height: clamp(160px, 16vw, 220px);
  border: 1.5px dashed rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10%;
  transition: transform 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: scale(0.7);
}


/* Rotating dashed outer ring */
@keyframes dashRotate {
  to { transform: rotate(360deg); }
}
.recruit__circle::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.15);
  animation: dashRotate 40s linear infinite;
  pointer-events: none;
}
.recruit__circle:nth-child(2)::before { animation-direction: reverse; animation-duration: 35s; }
.recruit__circle:nth-child(3)::before { animation-duration: 45s; }
.recruit__circle:nth-child(4)::before { animation-direction: reverse; animation-duration: 38s; }

.recruit__circle-bg {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  overflow: hidden;
  z-index: 0;
}

.recruit__circle-icon {
  position: relative;
  z-index: 2;
  width: clamp(52px, 6vw, 80px);
  max-width: none;
  height: auto;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.recruit__circle-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-ja);
  font-weight: 600;
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.4;
  text-align: center;
  color: var(--color-text);
  white-space: nowrap;
}

/* Recruit section reveal states */
.recruit.is-revealed .recruit__circle {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1), border-color 0.4s ease;
}
.recruit.is-revealed .recruit__circle:nth-child(1) { transition-delay: 0.5s; }
.recruit.is-revealed .recruit__circle:nth-child(2) { transition-delay: 0.65s; }
.recruit.is-revealed .recruit__circle:nth-child(3) { transition-delay: 0.8s; }
.recruit.is-revealed .recruit__circle:nth-child(4) { transition-delay: 0.95s; }

.recruit__message {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 20px) 0 clamp(28px, 4vh, 118px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.recruit.is-revealed .recruit__message {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.3s;
}

.recruit__message-heading {
  font-family: var(--font-en), var(--font-ja);
  font-weight: 700;
  font-size: clamp(26px, 3.8vw, 42px);
  letter-spacing: 0.02em;
  margin-bottom: clamp(20px, 3vh, 40px);
}

.recruit__message-text p {
  margin-bottom: 0.6em;
}

.recruit__message-text p:last-child {
  margin-bottom: 0;
}

.recruit__message-text {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 2.2;
  opacity: 0.9;
}

.recruit__message-text .highlight {
  display: block;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.8;
  margin-top: 1em;
  opacity: 1;
}

.recruit__btn-wrap {
  text-align: center;
  padding-top: clamp(16px, 3vh, 36px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.recruit.is-revealed .recruit__btn-wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.6s;
}

/* ========================================
   News Section
   ======================================== */
.news {
  background: var(--color-white);
  padding: var(--scene-padding) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.news__header {
  position: relative;
  margin-bottom: clamp(30px, 5vh, 80px);
}

.news__label {
  position: absolute;
  left: 32px;
  top: -45px;
}

.news__title {
  padding-left: 120px;
}

.news__body {
  display: flex;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(240px, 32vw, 480px) 0 40px;
}

.news__list {
  flex: 1;
  max-width: 1120px;
  margin-left: auto;
}

.news__item {
  border-bottom: 1px solid var(--color-text-gray);
  padding: 27px 0;
}

.news__item-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.news__date {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-gray);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 6px;
}

.news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 18px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  border-radius: 17px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}

.news__item-content {
  flex: 1;
}

.news__item-title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-gray);
  margin-bottom: 12px;
}

.news__item-excerpt {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.62;
  color: var(--color-text-gray);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  box-orient: vertical;
  overflow: hidden;
}

.news__images {
  flex-shrink: 0;
  position: absolute;
  width: clamp(280px, 35vw, 520px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news__img {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: box-shadow 0.4s ease;
}

.news__img:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news__img:hover img {
  transform: scale(1.04);
}

/* Gentle floating animation */
@keyframes newsFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes newsFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes newsFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.news__img--1 {
  width: 100%;
  aspect-ratio: 382 / 251;
  margin-bottom: clamp(24px, 5vh, 86px);
  animation: newsFloat1 5s ease-in-out infinite;
}

.news__img--2 {
  width: 64%;
  aspect-ratio: 243 / 312;
  margin-left: -20%;
  margin-bottom: clamp(24px, 5vh, 95px);
  animation: newsFloat2 6s ease-in-out 1s infinite;
}

.news__img--3 {
  width: 71%;
  aspect-ratio: 271 / 197;
  margin-left: 14%;
  animation: newsFloat3 5.5s ease-in-out 0.5s infinite;
}

.news__btn-wrap {
  text-align: center;
  margin-top: clamp(20px, 4vh, 50px);
}

/* ========================================
   Join Us Section
   ======================================== */
.join-us {
  background: var(--color-primary);
  padding: var(--scene-padding) 0;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-us__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.join-us__label {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 130px);
  line-height: 0.81;
  letter-spacing: 2.49px;
  color: var(--color-white);
  margin-bottom: clamp(20px, 3vh, 40px);
  opacity: 0;
  transform: scale(2.5);
  transition: opacity 0.6s ease, transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.join-us__text {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.9;
  margin-bottom: clamp(24px, 4vh, 58px);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 1s ease 0.6s, filter 1.2s ease 0.6s;
}

.join-us__message {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.56;
  margin-bottom: clamp(24px, 4vh, 62px);
  opacity: 0;
  filter: blur(8px);
  transition: opacity 1s ease 1s, filter 1.2s ease 1s;
}

.join-us__buttons {
  display: flex;
  justify-content: center;
  gap: 37px;
}

.join-us__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  border: 1px solid var(--color-white);
  border-radius: 30px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 2.1px;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 1.4s, transform 0.6s ease 1.4s, background 0.3s ease, color 0.3s ease;
}

.join-us__btn:last-child {
  transition-delay: 1.6s, 1.6s, 0s, 0s;
}

.join-us__btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Join Us reveal states */
.join-us.is-revealed .join-us__label { opacity: 1; transform: scale(1); }
.join-us.is-revealed .join-us__text { opacity: 1; filter: blur(0); }
.join-us.is-revealed .join-us__message { opacity: 1; filter: blur(0); }
.join-us.is-revealed .join-us__btn { opacity: 1; transform: translateY(0); }

/* ========================================
   Footer (Figma 共通フッター)
   ======================================== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  scroll-snap-align: end;
  scroll-snap-stop: normal;
  min-height: 200px;
}

/* Red top bar */
.site-footer__bar {
  display: none;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 35px 20px;
}

/* --- Main row: Logo (left) + Nav + CONTACT (right) --- */
.site-footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.site-footer__logo {
  display: block;
  width: 208px;
  flex-shrink: 0;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
}

.site-footer__nav {
  display: flex;
  gap: 78px;
  align-items: flex-start;
}

.site-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.site-footer__nav-link {
  font-family: var(--font-ja);
  font-size: 13px;
  line-height: 13px;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}

.site-footer__nav-link:hover {
  opacity: 0.7;
}

.site-footer__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 38px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 19px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-white);
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.site-footer__contact-btn:hover {
  opacity: 0.7;
}

/* --- Bottom row: PRIVACY POLICY / © --- */
.site-footer__bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__privacy,
.site-footer__sep,
.site-footer__copy {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 11px;
  line-height: 20px;
  color: var(--color-white);
}

.site-footer__privacy {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__privacy:hover {
  opacity: 0.7;
}

/* ========================================
   Scroll & Entry Animations
   ======================================== */

/* Base: hidden before trigger */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
}

/* Hero: cinematic background reveal (blur → sharp + slow zoom) */
@keyframes heroBgReveal {
  from {
    transform: scale(1.08);
    filter: blur(8px) saturate(0.3);
  }
  to {
    transform: scale(1);
    filter: blur(0) saturate(1);
  }
}
.hero__bg {
  animation: heroBgReveal 3s ease-out both;
}

/* Hero: character-by-character 3D flip reveal */
@keyframes heroCharIn {
  from {
    opacity: 0;
    transform: rotateX(-40deg) translateY(0.35em);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
.hero__title-line {
  display: block;
}
.hero__char {
  display: inline-block;
  opacity: 0;
  transform-origin: bottom center;
  animation: heroCharIn 0.5s ease-out both;
  animation-delay: calc(1.8s + var(--i, 0) * 0.07s);
}

/* Hero: vertical text reveal */
@keyframes heroVerticalIn {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 20px));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
.hero__catch,
.hero__catch-sub {
  opacity: 0;
}
@keyframes heroVerticalInGlow {
  0% {
    opacity: 0;
    transform: translateY(calc(-50% + 20px));
    text-shadow: none;
  }
  40% {
    text-shadow: 0 0 16px rgba(255,255,255,0.7), 0 0 40px rgba(255,255,255,0.3);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
    text-shadow: none;
  }
}
.hero__catch-sub {
  animation: heroVerticalInGlow 1.2s ease-out both;
  animation-delay: 3.6s;
}
.hero__catch {
  animation: heroVerticalIn 0.8s ease-out both;
  animation-delay: 4.1s;
}

/* Hero: emphasis glow on 「世界で勝てる産業」 */
@keyframes heroGlow {
  0% {
    text-shadow: none;
  }
  50% {
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.9),
      0 0 30px rgba(255, 0, 20, 1),
      0 0 60px rgba(255, 0, 20, 0.7),
      0 0 100px rgba(255, 0, 20, 0.4);
  }
  100% {
    text-shadow: none;
  }
}
.hero__catch span {
  animation: heroGlow 1.8s ease-in-out both;
  animation-delay: 4.1s;
}

/* Fade up */
[data-anim="fade-up"] {
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: var(--anim-delay, 0s);
}
[data-anim="fade-up"].is-visible {
  opacity: 1;
  transform: none;
}

/* Slide from left */
[data-anim="fade-left"] {
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: var(--anim-delay, 0s);
}
[data-anim="fade-left"].is-visible {
  opacity: 1;
  transform: none;
}

/* Slide from right */
[data-anim="fade-right"] {
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: var(--anim-delay, 0s);
}
[data-anim="fade-right"].is-visible {
  opacity: 1;
  transform: none;
}

/* Pop in (scale bounce) */
[data-anim="pop"] {
  transform: scale(0.8) translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--anim-delay, 0s);
}
[data-anim="pop"].is-visible {
  opacity: 1;
  transform: none;
}

/* Scale up + fade */
[data-anim="scale-up"] {
  transform: scale(0.85);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: var(--anim-delay, 0s);
}
[data-anim="scale-up"].is-visible {
  opacity: 1;
  transform: none;
}


/* Lead text: clip-path typewriter reveal */
.lead__line {
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lead__group {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-bottom: 1em;
}
.lead__group:last-child {
  margin-bottom: 0;
}
.lead__group.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.lead__group.is-visible .lead__line {
  clip-path: inset(0 0% 0 0);
}
.lead__group.is-visible .lead__line:nth-child(2) {
  transition-delay: 0.2s;
}

/* Accent group emphasis — gradient red + underline */
.lead__emphasis {
  font-style: normal;
  position: relative;
  color: transparent;
  background: linear-gradient(90deg, var(--color-primary) 0%, #ff4455 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.lead__emphasis::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s;
}
.lead__group--accent.is-visible .lead__emphasis::after {
  width: 100%;
}

/* Buttons appear after all groups finish */
.lead__buttons {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.lead__buttons.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Recruit label: preserve reduced opacity when visible */
.recruit__label[data-anim].is-visible {
  opacity: 0.3;
}


/* ========================================
   Subpage overrides
   ======================================== */
body.page:not(.home) {
  background: var(--color-white);
}

html:has(body.page:not(.home)) {
  scroll-snap-type: none;
}

html:has(body.page:not(.home)) [data-scene] {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  height: auto;
  overflow: visible;
}

/* Subpage header: always white bg with dark text */
body.page:not(.home) .site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

body.page:not(.home) .site-header .logo-default { display: none; }
body.page:not(.home) .site-header .logo-dark { display: block; }

body.page:not(.home) .site-header__nav-link {
  color: var(--color-text);
}

body.page:not(.home) .site-header__contact {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

/* ========================================
   Company Page – Title
   ======================================== */
.page-company {
  background: var(--color-white);
  color: var(--color-text);
}

.page-company ~ .site-footer .site-footer__bar,
.page-business ~ .site-footer .site-footer__bar {
  display: none;
}

.company-title {
  padding: 126px 0 0;
  background: var(--color-white);
}

.company-title__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 124px 40px 10px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.company-title__en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 128px;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--color-light-gray);
}

.company-title__ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
}

/* ========================================
   Company Page – Message
   ======================================== */
.company-message {
  position: relative;
  overflow: hidden;
}

.company-message--01 {
  background: var(--color-primary);
}

.company-message--02 {
  background: var(--color-white);
}

.company-message__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 120px;
  display: flex;
  align-items: flex-end;
  gap: 78px;
}

.company-message--01 .company-message__inner {
  flex-direction: row;
}

.company-message--02 .company-message__inner {
  flex-direction: row;
}

.company-message__text {
  flex: 1;
  min-width: 0;
}

.company-message__catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* MESSAGE 01: 白テキスト on 赤背景 */
.company-message--01 .company-message__catch {
  color: var(--color-white);
}

.company-message--02 .company-message__catch {
  color: var(--color-text);
}

.company-message__body {
  font-size: 17px;
  line-height: 2;
}

.company-message--01 .company-message__body {
  color: var(--color-white);
}

.company-message--02 .company-message__body {
  color: var(--color-body-text);
}

.company-message__body p + p {
  margin-top: 1.5em;
}

.company-message__author {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.company-message__author-name {
  font-weight: 700;
  font-size: 20px;
}

.company-message--01 .company-message__author-name {
  color: var(--color-white);
}

.company-message--02 .company-message__author-name {
  color: var(--color-text);
}

.company-message__author-title {
  font-size: 15px;
}

.company-message--01 .company-message__author-title {
  color: rgba(255, 255, 255, 0.8);
}

.company-message--02 .company-message__author-title {
  color: var(--color-text-gray);
}

/* MESSAGE 02: 著者名を右寄せ */
.company-message--02 .company-message__author {
  align-items: flex-end;
}

.company-message__photo {
  flex-shrink: 0;
}

.company-message--01 .company-message__photo {
  width: 389px;
}

.company-message--02 .company-message__photo {
  width: 420px;
}

.company-message__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.company-message__label {
  position: absolute;
  bottom: 34px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.81;
  letter-spacing: 4.027px;
  color: #F4CFD2;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.company-message__label-text {
  font-size: 85.824px;
}

.company-message__label-num {
  font-size: 128.736px;
}

.company-message--01 .company-message__label {
  right: max(62px, calc((100% - var(--max-width)) / 2 + 62px));
  text-align: right;
}

.company-message--02 .company-message__label {
  left: max(58px, calc((100% - var(--max-width)) / 2 + 58px));
}

/* ========================================
   Company Page – Mission / Vision
   ======================================== */
.company-mv {
  background: var(--color-white);
  padding: 120px 0;
  border-top: 50px solid var(--color-primary);
}

.company-mv__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 198px;
}

.company-mv__row {
  display: flex;
  align-items: center;
  padding: 0;
  min-height: 129px;
}

.company-mv__row + .company-mv__row {
  margin-top: 68px;
}

.company-mv__heading {
  display: flex;
  align-items: center;
  gap: 23px;
  width: 403px;
  flex-shrink: 0;
  border-right: 1px solid var(--color-text);
  padding-right: 45px;
  min-height: 129px;
}

.company-mv__en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
  color: var(--color-text);
}

.company-mv__ja {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-gray);
}

.company-mv__desc {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 19px;
  line-height: 2;
  color: var(--color-text);
  padding-left: 45px;
}

/* ========================================
   Company Page – Reason
   ======================================== */
.company-reason {
  background: var(--color-white);
  padding: 0 0 120px;
}

.company-reason__inner {
  position: relative;
  max-width: 1046px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 24px;
  padding: 60px 62px 70px;
  text-align: left;
}

.company-reason__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
  text-align: center;
  position: absolute;
  top: -0.7em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  padding: 0 24px;
  white-space: nowrap;
}

.company-reason__catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 35px;
}

.company-reason__body {
  font-size: 17px;
  line-height: 2;
  color: var(--color-body-text);
}

.company-reason__body p + p {
  margin-top: 1.5em;
}

/* ========================================
   Company Page – Profile
   ======================================== */
.company-profile {
  background: #F0F0F0;
  padding: 120px 0;
}

.company-profile__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 198px;
  display: flex;
  align-items: flex-start;
}

.company-profile__heading {
  flex-shrink: 0;
  width: 284px;
}

.company-profile__en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  color: var(--color-text);
}

.company-profile__ja {
  display: block;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-gray);
  margin-top: 19px;
}

.company-profile__table {
  flex: 1;
  min-width: 0;
  border-left: 1px solid var(--color-text);
  margin-left: 132px;
  padding-left: 43px;
}

.company-profile__row {
  display: flex;
  align-items: baseline;
  padding: 0;
  min-height: 40px;
  line-height: 40px;
}

.company-profile__row + .company-profile__row {
  margin-top: 9px;
}

.company-profile__row dt {
  width: 120px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text);
  margin-right: 30px;
}

.company-profile__row dd {
  font-size: 17px;
  color: var(--color-body-text);
  line-height: 40px;
}

/* ========================================
   Company Page – History
   ======================================== */
.company-history {
  background: var(--color-white);
  padding: 120px 0 120px;
}

.company-history__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 198px;
}

.company-history__heading {
  margin-bottom: 130px;
}

.company-history__en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  color: var(--color-text);
  display: block;
}

.company-history__ja {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-gray);
  display: block;
  margin-top: 19px;
}

.company-history__section-title {
  font-family: var(--font-ja);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--color-primary);
}

.company-history__section-title + .company-history__timeline {
  margin-bottom: 60px;
}

.company-history__timeline {
  position: relative;
}

.company-history__item {
  display: flex;
  align-items: baseline;
}

.company-history__item + .company-history__item {
  margin-top: 23px;
}

.company-history__year {
  display: flex;
  align-items: center;
  width: 84px;
  flex-shrink: 0;
}

.company-history__year-num {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--color-text);
  flex: 1;
  text-align: right;
}

.company-history__month {
  font-family: var(--font-ja);
  font-size: 17px;
  color: var(--color-text);
  display: none;
}

/* 赤い丸ドット（年の右側） */
.company-history__year::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 10px;
}

.company-history__event {
  display: flex;
  align-items: baseline;
  gap: 26px;
  margin-left: 15px;
  line-height: 1.8;
}

.company-history__events {
  display: flex;
  flex-direction: column;
}

.company-history__event-month {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text);
  width: 48px;
  flex-shrink: 0;
  text-align: right;
}

.company-history__event-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-body-text);
}

/* ========================================
   Company Page – CTA
   ======================================== */
.company-cta {
  background: #F0F0F0;
  padding: 46px 0;
}

.company-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  padding: 0 68px;
  gap: 51px;
}

.company-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 2px;
  text-align: center;
  transition: opacity 0.3s ease;
  border: none;
}

.company-cta__btn:hover {
  opacity: 0.8;
}

.company-cta__btn--recruit {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.company-cta__btn--company {
  background: linear-gradient(105deg, #555 4.4%, #333 49.1%, #1a1a1a 95.6%);
  color: var(--color-white);
}



/* ========================================
   Business Page – Title
   ======================================== */
.page-business {
  background: var(--color-white);
  color: var(--color-text);
}

.biz-title {
  padding: 126px 0 0;
  background: var(--color-white);
}

.biz-title__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 124px 40px 10px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.biz-title__en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 128px;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--color-light-gray);
}

.biz-title__ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
}

/* ========================================
   Business Page – リアル店舗事業
   ======================================== */
.biz-store {
  background: #F0F0F0;
  padding: 100px 0 80px;
}

.biz-store__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 140px;
}

.biz-store__heading {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 34px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 28px;
}

.biz-store__lead {
  font-size: 17px;
  line-height: 2;
  text-align: center;
  color: var(--color-body-text);
  margin-bottom: 60px;
}

.biz-store__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 56px;
}

.biz-store__feature {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 30px 40px;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
}

.biz-store__feature-icon {
  flex-shrink: 0;
}

.biz-store__feature-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.biz-store__feature-title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.biz-store__feature-desc {
  font-size: 17px;
  color: var(--color-text-gray);
  padding-left: 40px;
}

/* ========================================
   Business Page – OUR BRAND
   ======================================== */
.biz-brand {
  background: #F0F0F0;
  padding: 80px 140px 100px;
}

.biz-brand__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 20px;
}

.biz-brand__header {
  padding: 80px 80px 0;
  margin-bottom: 60px;
}

.biz-brand__heading-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.biz-brand__en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
  color: var(--color-text);
}

.biz-brand__ja {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-gray);
}

.biz-brand__intro {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 8px;
}

.biz-brand__intro-sub {
  font-size: 17px;
  line-height: 2;
  color: var(--color-body-text);
  margin-bottom: 100px;
}

.biz-brand__list {
  padding: 0 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.biz-brand__item {
  display: flex;
  align-items: flex-start;
  gap: 97px;
  padding-bottom: 37px;
  border-bottom: 1px solid var(--color-text);
}

.biz-brand__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.biz-brand__item-logo {
  width: 316px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biz-brand__item-logo img {
  max-width: 100%;
  height: auto;
}

.biz-brand__item-body {
  flex: 1;
  min-width: 0;
}

.biz-brand__item-name {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.biz-brand__item-catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 22px;
  line-height: 2;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.biz-brand__item-desc {
  font-size: 17px;
  line-height: 2;
  color: var(--color-body-text);
}

.biz-brand__btn-wrap {
  text-align: center;
  padding: 60px 80px 80px;
}

/* ========================================
   Business Page – メディア事業
   ======================================== */
.biz-media {
  background: var(--color-primary);
  padding: 100px 0;
}

.biz-media__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 140px;
}

.biz-media__heading {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 37px;
}

.biz-media__content {
  background: var(--color-white);
  border-radius: 20px;
  padding: 80px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.biz-media__text {
  flex: 1;
  min-width: 0;
}

.biz-media__catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 22px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 20px;
}

.biz-media__jfg-logo {
  margin-bottom: 24px;
}

.biz-media__jfg-logo img {
  max-height: 62px;
  width: auto;
}

.biz-media__desc {
  font-size: 17px;
  line-height: 2;
  color: var(--color-body-text);
}

.biz-media__image {
  flex-shrink: 0;
  width: 436px;
}

.biz-media__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


/* ========================================
   Strategy Page
   ======================================== */
.page-strategy {
  background: var(--color-white);
  color: var(--color-text);
}

.page-strategy ~ .site-footer .site-footer__bar {
  display: none;
}

/* ---------- Hero ---------- */
.strat-hero {
  position: relative;
  height: 510px;
  overflow: hidden;
}

.strat-hero__bg {
  position: absolute;
  inset: 0;
}

.strat-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strat-hero__text {
  position: absolute;
  left: 60px;
  bottom: 100px;
  z-index: 1;
}

.strat-hero__title {
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: 50px;
  line-height: 2.42;
  color: var(--color-white);
}

.strat-hero__sub {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 25px;
  line-height: 2.42;
  color: var(--color-white);
}

/* ---------- Contents ---------- */
.strat-contents {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}

.strat-contents__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.43;
  pointer-events: none;
}

.strat-contents__bg img {
  width: 100%;
  height: auto;
  display: block;
}

/* Vertical text (right side) */
.strat-contents__vertical {
  position: absolute;
  right: 175px;
  top: 120px;
  writing-mode: vertical-rl;
}

.strat-contents__vertical-main {
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: 50px;
  line-height: 1.07;
  color: var(--color-text);
  font-feature-settings: 'vkrn', 'vrt2';
}

.strat-contents__vertical-sub {
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: 50px;
  line-height: 1.07;
  color: var(--color-text);
  font-feature-settings: 'vkrn', 'vrt2';
  margin-top: 70px;
}

.strat-contents__vertical-label {
  position: absolute;
  right: 110px;
  top: 120px;
  writing-mode: vertical-rl;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.05;
  color: var(--color-primary);
  font-feature-settings: 'vrt2', 'vkrn';
}

/* Body text */
.strat-contents__body {
  margin: 144px 0 0 120px;
  width: 830px;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  color: var(--color-body-text);
}

.strat-contents__body p + p {
  margin-top: 20px;
}

/* Problem box */
.strat-contents__problem {
  position: relative;
  margin: 72px 0 0 120px;
  width: 830px;
  padding: 46px 101px 28px;
  text-align: center;
}

.strat-contents__problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ececec;
  mix-blend-mode: soft-light;
  border-radius: 0;
}

.strat-contents__problem-title {
  position: relative;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: var(--color-text);
  margin-bottom: 53px;
}

/* Funnel */
.strat-contents__funnel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.strat-contents__funnel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 32px 69px;
  border-radius: 20px;
  color: var(--color-white);
  white-space: nowrap;
}

.strat-contents__funnel-item--wide {
  width: 628px;
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%), linear-gradient(90deg, #2a2a2a 0%, #2a2a2a 100%);
}

.strat-contents__funnel-item--mid {
  width: 473px;
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%), linear-gradient(90deg, #2a2a2a 0%, #2a2a2a 100%);
}

.strat-contents__funnel-item--result {
  width: 332px;
  background: var(--color-primary);
  padding: 32px;
}

.strat-contents__funnel-label {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.56;
}

.strat-contents__funnel-label-big {
  font-size: 27px;
}

.strat-contents__funnel-label-small {
  font-size: 20px;
}

.strat-contents__funnel-item--result .strat-contents__funnel-label {
  font-weight: 900;
  font-size: 25px;
  line-height: 1.33;
}

.strat-contents__funnel-desc {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
}

.strat-contents__funnel-arrow {
  line-height: 0;
}

.strat-contents__funnel-arrow svg {
  width: 63px;
  height: 31px;
}

/* Conclusion */
.strat-contents__conclusion {
  position: relative;
  text-align: center;
  margin-top: 40px;
}

.strat-contents__big-arrow {
  width: 958px;
  height: 100px;
  margin: 0 auto 30px;
}

.strat-contents__big-arrow svg {
  width: 100%;
  height: 100%;
}

.strat-contents__conclusion-sub {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 25px;
  line-height: 40px;
  color: var(--color-text);
  margin-bottom: 10px;
}

.strat-contents__conclusion-main {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: var(--color-text);
}

.strat-contents__accent {
  color: var(--color-primary);
}

/* ---------- Japan Food Platform ---------- */
.strat-jfp {
  background: var(--color-primary);
  padding: 0 0 100px;
  text-align: center;
  overflow: hidden;
}

.strat-jfp__display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 180px;
  line-height: 0.81;
  letter-spacing: 2.49px;
  padding-top: 60px;
  white-space: nowrap;
}

.strat-jfp__display-white {
  color: var(--color-white);
}

.strat-jfp__display-dark {
  color: var(--color-text);
}

.strat-jfp__lead {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.7;
  color: var(--color-white);
  margin-top: 60px;
}

/* Video placeholder */
.strat-jfp__video {
  max-width: 736px;
  margin: 60px auto 0;
  aspect-ratio: 736 / 414;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strat-jfp__video-placeholder svg {
  width: 71px;
  height: 50px;
}

/* 5-step flow */
.strat-jfp__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
  padding: 0 40px;
}

.strat-jfp__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 186px;
}

.strat-jfp__step-circle {
  width: 186px;
  height: 186px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  color: var(--color-white);
  text-align: center;
}

.strat-jfp__step-desc {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--color-white);
  margin-top: 20px;
}

.strat-jfp__step-arrow {
  display: flex;
  align-items: center;
  height: 186px;
  margin: 0 -8px;
}

.strat-jfp__step-arrow svg {
  width: 77px;
  height: 186px;
}

/* Media card */
.strat-jfp__media-card {
  max-width: 1160px;
  margin: 100px auto 0;
  background: var(--color-white);
  border-radius: 20px;
  padding: 80px 90px 73px;
}

.strat-jfp__media-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 61px;
}

.strat-jfp__media-catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.7;
  color: var(--color-text);
}

.strat-jfp__media-logo img {
  height: 55px;
  width: auto;
}

.strat-jfp__media-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.strat-jfp__media-text {
  flex: 1;
  max-width: 456px;
}

.strat-jfp__media-text p {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  color: var(--color-text);
}

.strat-jfp__media-image {
  flex-shrink: 0;
  width: 436px;
}

.strat-jfp__media-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ---------- Why CS-R ---------- */
.strat-why {
  background: var(--color-white);
  padding: 120px 0;
}

.strat-why__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.strat-why__text {
  flex: 0 0 421px;
}

.strat-why__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
  color: var(--color-text);
  margin-bottom: 80px;
}

.strat-why__body {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  color: var(--color-body-text);
}

.strat-why__body p + p {
  margin-top: 20px;
}

/* Diagram */
.strat-why__diagram {
  position: relative;
  flex: 1;
  min-height: 662px;
}

.strat-why__diagram-bg {
  position: absolute;
  left: 37px;
  top: 72px;
  width: 518px;
  height: 518px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,236,236,0) 51%, #ececec 100%);
}

.strat-why__node {
  position: absolute;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--color-white);
  text-align: center;
  background: #868686;
}

.strat-why__node--center {
  left: 224px;
  top: 259px;
  background: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 45px;
  line-height: 36px;
}

.strat-why__node--top {
  left: 224px;
  top: 0;
}

.strat-why__node--top-right {
  left: 448px;
  top: 130px;
}

.strat-why__node--bottom-right {
  left: 448px;
  top: 388px;
}

.strat-why__node--bottom {
  left: 224px;
  top: 518px;
}

.strat-why__node--top-left {
  left: 0;
  top: 130px;
}

.strat-why__node--bottom-left {
  left: 0;
  top: 388px;
}


/* ========================================
   Shops Page
   ======================================== */
.page-shops {
  background: var(--color-white);
  color: var(--color-text);
}

.page-shops ~ .site-footer .site-footer__bar {
  display: none;
}

/* ---------- Title ---------- */
.shops-title {
  padding: 126px 0 0;
  background: var(--color-white);
}

.shops-title__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 124px 40px 10px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.shops-title__en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 180px;
  line-height: 0.81;
  letter-spacing: 2.49px;
  color: var(--color-light-gray);
}

.shops-title__ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 27px;
  color: var(--color-text);
}

/* ---------- Grid ---------- */
.shops-grid {
  padding: 120px 0 100px;
}

.shops-grid__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}

.shops-grid__card {
  width: 266px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shops-grid__card-image {
  width: 100%;
  height: 200px;
  background: #d9d9d9;
}

.shops-grid__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.shops-grid__card-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.shops-grid__card-name {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}

.shops-grid__card-name-sm {
  font-size: 20px;
}

.shops-grid__card-name-lg {
  font-size: 28px;
}

.shops-grid__card-access {
  width: 100%;
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding: 6px 0;
  text-align: center;
}

.shops-grid__card-access p {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
}

.shops-grid__card-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shops-grid__card-desc {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text);
}

.shops-grid__card-address {
  width: 100%;
  background: #ededed;
  padding: 8px;
}

.shops-grid__card-address p {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.54;
  color: var(--color-text);
}


/* ========================================
   Recruit Page
   ======================================== */
.page-recruit {
  background: var(--color-white);
  color: var(--color-text);
}

.page-recruit ~ .site-footer .site-footer__bar {
  display: none;
}

/* ---------- Hero ---------- */
.rec-hero {
  position: relative;
  height: 720px;
  background: var(--color-primary);
  overflow: hidden;
}

.rec-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/recruit-hero.png') center / cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.rec-hero__display {
  position: absolute;
  left: 32px;
  top: 30px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 180px;
  line-height: 0.81;
  letter-spacing: 2.49px;
  color: var(--color-white);
}

.rec-hero__ja {
  position: absolute;
  right: 160px;
  top: 76px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 27px;
  color: var(--color-white);
}

.rec-hero__vertical {
  position: absolute;
  right: 374px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.rec-hero__vertical-1,
.rec-hero__vertical-2 {
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: 43px;
  line-height: 1.07;
  color: var(--color-white);
  font-feature-settings: 'hist', 'vert', 'vrt2', 'vkrn', 'dlig';
}

.rec-hero__vertical-2 {
  margin-top: 30px;
}

/* ---------- Lead ---------- */
.rec-lead {
  position: relative;
  height: 685px;
  overflow: hidden;
}

.rec-lead__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 1301px;
  height: 100%;
}

.rec-lead__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rec-lead__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(255,255,255,0) 52%, white 85%);
}

.rec-lead__text {
  position: absolute;
  left: 120px;
  top: 104px;
  z-index: 1;
}

.rec-lead__catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 58px;
}

.rec-lead__body-bold {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 25px;
  line-height: 2.42;
  color: var(--color-text);
  margin-bottom: 20px;
}

.rec-lead__body p:not(.rec-lead__body-bold) {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 2.42;
  color: var(--color-text);
}

/* ---------- Message ---------- */
.rec-message {
  position: relative;
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%), linear-gradient(90deg, #2a2a2a 0%, #2a2a2a 100%);
  padding: 150px 120px 100px 92px;
}

.rec-message__label {
  position: absolute;
  top: 43px;
  left: 42px;
  display: flex;
  align-items: center;
  gap: 23px;
  color: var(--color-white);
}

.rec-message__label-en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 0.81;
  letter-spacing: 2.49px;
}

.rec-message__label-ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
}

.rec-message__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.rec-message__photo {
  flex-shrink: 0;
  width: 468px;
}

.rec-message__photo img {
  width: 100%;
  height: auto;
}

.rec-message__text {
  flex: 1;
  max-width: 648px;
}

.rec-message__catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.7;
  color: var(--color-white);
  margin-bottom: 35px;
}

.rec-message__body {
  color: var(--color-white);
}

.rec-message__body p {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
}

.rec-message__body p + p {
  margin-top: 20px;
}

.rec-message__author {
  margin-top: 25px;
  color: var(--color-white);
}

.rec-message__author-name {
  display: block;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
}

.rec-message__author-title {
  display: block;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
}

/* ---------- Career Path ---------- */
.rec-career {
  padding: 106px 0 100px;
}

.rec-career__heading {
  padding: 0 120px;
  margin-bottom: 60px;
}

.rec-career__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: var(--color-text);
}

.rec-career__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.rec-career__card {
  width: 580px;
  border: 1px solid var(--color-text);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-height: 363px;
}

.rec-career__card-title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 50px;
  color: var(--color-primary);
  text-align: center;
}

.rec-career__card-content {
  flex: 1;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.rec-career__card-image {
  flex-shrink: 0;
  width: 250px;
  height: 100%;
  min-height: 200px;
  background: #d9d9d9;
}

.rec-career__card-desc {
  flex: 1;
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text);
}

/* ---------- Interview ---------- */
.rec-interview {
  position: relative;
  background: var(--color-primary);
  padding: 200px 0 120px;
}

.rec-interview__label {
  position: absolute;
  top: 43px;
  left: 42px;
  display: flex;
  align-items: center;
  gap: 23px;
  color: var(--color-white);
}

.rec-interview__label-en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 0.81;
  letter-spacing: 2.49px;
}

.rec-interview__label-ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
}

.rec-interview__grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 80px;
}

.rec-interview__card {
  width: 449px;
  flex-shrink: 0;
  position: relative;
}

.rec-interview__card-image {
  width: 100%;
  height: 501px;
  background: #d9d9d9;
  position: relative;
}

.rec-interview__card-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%), linear-gradient(90deg, #2a2a2a 0%, #2a2a2a 100%);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  writing-mode: vertical-rl;
  padding: 16px 7px 27px;
  border-radius: 0 0 30px 0;
  width: 36px;
}

.rec-interview__card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
}

.rec-interview__card-role {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text);
}

.rec-interview__card-name {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.9;
  color: var(--color-text);
}

.rec-interview__btn-wrap {
  text-align: center;
}

.rec-interview__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 74px;
  border-radius: 30px;
  background: linear-gradient(109deg, #5c5c5c 4.4%, #423737 49.1%, #000 95.6%);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 2.1px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.rec-interview__btn:hover {
  opacity: 0.8;
}

/* ---------- 制度 ---------- */
.rec-system {
  background: #ededed;
  padding: 106px 0 100px;
}

.rec-system__heading {
  padding: 0 120px;
  margin-bottom: 60px;
}

.rec-system__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: var(--color-text);
}

.rec-system__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.rec-system__col {
  flex: 1;
  border-right: 1px solid var(--color-text);
  padding: 10px 33px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.rec-system__col:first-child {
  padding-left: 0;
}

.rec-system__col--last {
  border-right: none;
  padding-right: 0;
}

.rec-system__col-title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 50px;
  color: var(--color-primary);
  text-align: center;
}

.rec-system__col-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.rec-system__col-image {
  width: 250px;
  height: 204px;
  overflow: hidden;
}

.rec-system__col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rec-system__col-catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 10px;
}

.rec-system__col-desc {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text);
}

/* ---------- Culture ---------- */
.rec-culture {
  position: relative;
  padding: 43px 0 100px;
  overflow: hidden;
}

.rec-culture__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 23px;
  padding-left: 42px;
  color: var(--color-text);
  margin-bottom: 60px;
}

.rec-culture__label-en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 0.81;
  letter-spacing: 2.49px;
}

.rec-culture__label-ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
}

.rec-culture__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
}

.rec-culture__text {
  flex: 0 0 444px;
  padding-top: 160px;
}

.rec-culture__catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
}

.rec-culture__desc {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
  color: var(--color-text);
  margin-bottom: 40px;
}

.rec-culture__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 74px;
  border-radius: 30px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 2.1px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.rec-culture__btn:hover {
  opacity: 0.8;
}

.rec-culture__visual {
  position: relative;
  flex: 1;
  min-height: 740px;
}

.rec-culture__circle {
  position: absolute;
  right: 0;
  top: 0;
  width: 657px;
  height: 657px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-primary);
}

.rec-culture__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rec-culture__dot {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
}

.rec-culture__dot--1 {
  width: 210px;
  height: 210px;
  left: -140px;
  top: 4px;
}

.rec-culture__dot--2 {
  width: 105px;
  height: 105px;
  left: 46px;
  top: 420px;
}

.rec-culture__dot--3 {
  width: 62px;
  height: 62px;
  left: -580px;
  top: 588px;
}


/* ========================================
   Interview Archive Page
   ======================================== */
.page-interview {
  background: var(--color-white);
  color: var(--color-text);
}

.page-interview ~ .site-footer .site-footer__bar {
  display: none;
}

.itv-contents {
  background: var(--color-primary);
  padding: 124px 0 120px;
  overflow: hidden;
}

.itv-contents__title {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  margin-bottom: 40px;
}

.itv-contents__display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 180px;
  line-height: 0.81;
  letter-spacing: 2.49px;
  color: var(--color-white);
}

.itv-contents__ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 27px;
  color: var(--color-white);
}

.itv-contents__sub {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.7;
  color: var(--color-white);
  padding: 0 44px;
  margin-bottom: 80px;
}

.itv-contents__grid {
  max-width: 1200px;
  margin: 0 auto 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.itv-contents__card {
  width: calc((100% - 68px) / 3);
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.itv-contents__card-image {
  width: 100%;
  height: 421px;
  background: #d9d9d9;
  position: relative;
}

.itv-contents__card-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%), linear-gradient(90deg, #2a2a2a 0%, #2a2a2a 100%);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  writing-mode: vertical-rl;
  padding: 16px 7px 27px;
  border-radius: 0 0 25px 0;
  width: 30px;
}

.itv-contents__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.itv-contents__card-role {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-white);
}

.itv-contents__card-name {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.9;
  color: var(--color-white);
}

.itv-contents__btn-wrap {
  text-align: center;
}

.itv-contents__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 0 111px;
  border-radius: 45px;
  border: 2.25px solid var(--color-white);
  background: var(--gradient-primary);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 3.15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.itv-contents__btn:hover {
  opacity: 0.85;
}


/* ========================================
   Interview Detail Page
   ======================================== */
.page-itvdetail {
  background: var(--color-white);
  color: var(--color-text);
}

.page-itvdetail ~ .site-footer .site-footer__bar {
  display: none;
}

/* ---------- Hero ---------- */
.itvd-hero {
  background: var(--color-primary);
  padding: 126px 120px 0;
}

.itvd-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 450px;
}

.itvd-hero__text {
  flex: 1;
}

.itvd-hero__catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 43px;
  line-height: 1.7;
  color: var(--color-white);
  margin-bottom: 35px;
}

.itvd-hero__meta {
  color: var(--color-white);
}

.itvd-hero__role {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
}

.itvd-hero__person {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.9;
}

.itvd-hero__photo {
  flex-shrink: 0;
  width: 370px;
  height: 412px;
  overflow: hidden;
}

.itvd-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itvd-hero__photo-placeholder {
  width: 100%;
  height: 100%;
  background: #d9d9d9;
}

/* ---------- Q&A ---------- */
.itvd-qa {
  padding: 120px 0;
}

.itvd-qa__block {
  display: flex;
  align-items: center;
  gap: 78px;
  margin-bottom: 100px;
}

.itvd-qa__block:last-child {
  margin-bottom: 0;
}

/* Layout 0: image-left, text-right */
.itvd-qa__block--0 {
  flex-direction: row;
}

.itvd-qa__block--0 .itvd-qa__image {
  flex-shrink: 0;
  width: 691px;
  height: 490px;
  background: #d9d9d9;
}

.itvd-qa__block--0 .itvd-qa__text {
  flex: 1;
  max-width: 551px;
  padding: 20px 0;
}

/* Layout 1: text-left, image-right */
.itvd-qa__block--1 {
  flex-direction: row;
  justify-content: flex-end;
}

.itvd-qa__block--1 .itvd-qa__text {
  flex-shrink: 0;
  width: 551px;
  padding: 20px 0 20px 120px;
}

.itvd-qa__block--1 .itvd-qa__image {
  flex: 1;
  height: 490px;
  background: #d9d9d9;
}

/* Layout 2: image full-width top, text below */
.itvd-qa__block--2 {
  flex-direction: column;
  align-items: stretch;
  gap: 78px;
}

.itvd-qa__block--2 .itvd-qa__image--full {
  width: 100%;
  height: 421px;
  background: #d9d9d9;
}

.itvd-qa__block--2 .itvd-qa__text {
  padding: 0 120px;
}

/* Q&A shared text styles */
.itvd-qa__label {
  margin-bottom: 35px;
}

.itvd-qa__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-primary);
}

.itvd-qa__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.7;
  color: var(--color-primary);
}

.itvd-qa__answer {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
  color: var(--color-text);
}

.itvd-qa__answer p + p {
  margin-top: 20px;
}

/* ---------- Other Interview ---------- */
.itvd-other {
  background: #ededed;
  padding: 43px 0 100px;
  overflow: hidden;
}

.itvd-other__label {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 0 42px;
  margin-bottom: 80px;
  color: var(--color-text);
}

.itvd-other__label-en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 0.81;
  letter-spacing: 2.49px;
}

.itvd-other__label-ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
}

.itvd-other__scroll {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  padding: 0 120px 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.itvd-other__scroll::-webkit-scrollbar {
  display: none;
}

.itvd-other__card {
  flex-shrink: 0;
  width: 378px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 21px;
  transition: opacity 0.3s ease;
}

.itvd-other__card:hover {
  opacity: 0.8;
}

.itvd-other__card-image {
  width: 100%;
  height: 421px;
  background: #d9d9d9;
  position: relative;
  overflow: hidden;
}

.itvd-other__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itvd-other__card-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%), linear-gradient(90deg, #2a2a2a 0%, #2a2a2a 100%);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  writing-mode: vertical-rl;
  padding: 16px 7px 27px;
  border-radius: 0 0 25px 0;
  width: 30px;
}

.itvd-other__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.itvd-other__card-role {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text);
}

.itvd-other__card-name {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.9;
  color: var(--color-text);
}

.itvd-other__btn-wrap {
  text-align: center;
  margin-top: 60px;
}

.itvd-other__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 74px;
  border-radius: 30px;
  background: linear-gradient(109deg, #5c5c5c 4.4%, #423737 49.1%, #000 95.6%);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 2.1px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.itvd-other__btn:hover {
  opacity: 0.8;
}

/* ---------- Apply CTA ---------- */
.itvd-apply {
  padding: 120px 0;
  text-align: center;
}


/* ========================================
   Positions Page (募集要項)
   ======================================== */
.page-positions {
  background: var(--color-white);
  color: var(--color-text);
}

.page-positions ~ .site-footer .site-footer__bar {
  display: none;
}

.pos-main {
  padding: 126px 0 120px;
}

.pos-main__heading {
  max-width: 1044px;
  margin: 0 auto 120px;
  padding: 0 40px;
}

.pos-main__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7;
  color: var(--color-text);
}

.pos-main__en {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 0.97;
  letter-spacing: 2.49px;
  color: var(--color-text);
  margin-top: 10px;
}

.pos-main__table {
  max-width: 1044px;
  margin: 0 auto;
}

.pos-main__row {
  display: flex;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-text);
}

.pos-main__row dt {
  flex-shrink: 0;
  width: 212px;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  color: var(--color-text);
}

.pos-main__row dd {
  flex: 1;
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  color: var(--color-text);
}

.pos-main__row dd ul {
  list-style: disc;
  padding-left: 30px;
}

.pos-main__row dd ul li {
  line-height: 40px;
}

.pos-main__btn-wrap {
  text-align: center;
  margin-top: 100px;
}


/* ========================================
   Responsive – Design Tokens
   ======================================== */
@media (max-width: 1200px) {
  :root {
    --sp-section: 80px;
    --sp-inner: 48px;
    --sp-gutter: 24px;
  }
}
@media (max-width: 768px) {
  :root {
    --sp-section: 56px;
    --sp-inner: 20px;
    --sp-gutter: 16px;
  }
}
@media (max-width: 480px) {
  :root {
    --sp-section: 40px;
    --sp-inner: 16px;
    --sp-gutter: 12px;
  }
}

/* ========================================
   Responsive (small PC ≤ 1400px)
   ======================================== */
@media (max-width: 1400px) {

  /* ---- Header ---- */
  .site-header.is-scrolled {
    background: transparent;
    backdrop-filter: none;
  }

  /* ---- Hero ---- */
  .hero__title {
    font-size: 200px;
  }
  .hero__catch {
    font-size: 36px;
    right: 180px;
    margin-top: 20px;
  }
  .hero__catch span {
    font-size: 40px;
  }
  .hero__catch-sub {
    font-size: 36px;
    right: 120px;
    margin-top: -140px;
  }

  /* ---- Section labels ---- */
  .section-label,
  .recruit__label {
    font-size: 120px;
  }

  /* ---- Lead ---- */
  .lead__inner {
    padding: 0 40px 0 80px;
  }
  .lead__text {
    font-size: 22px;
  }
  .lead__slide {
    width: 240px;
  }
  .lead__montage {
    opacity: 0.5;
  }

  /* ---- About ---- */
  .about__heading-main {
    font-size: 34px;
  }
  .about__heading-sub {
    font-size: 24px;
  }
  .about__desc {
    font-size: 20px;
  }

  /* ---- Business ---- */
  .business__title {
    padding-right: 40px;
  }

  /* ---- Recruit ---- */
  .recruit__header {
    margin-bottom: 40px;
  }
  .recruit__circles .recruit__circle {
    width: 140px;
    height: 140px;
    padding: 12px;
    box-sizing: border-box;
  }
  .recruit__circle-icon {
    width: 44px;
    margin-bottom: 4px;
  }
  .recruit__circle-text {
    font-size: 13px;
  }
  .recruit__circles {
    gap: 24px;
    margin-bottom: 36px;
  }
  .recruit__message {
    padding: 20px 0 40px;
  }
  .recruit__message-heading {
    font-size: 28px;
  }
  .recruit__message-text {
    font-size: 16px;
  }
  .recruit__message-text .highlight {
    font-size: 20px;
  }
  .recruit__title {
    font-size: 22px;
  }

  /* ---- Buttons ---- */
  .btn {
    font-size: 15px;
    padding: 0 40px;
    height: 50px;
  }
  .lead__btn {
    width: 190px;
    height: 44px;
    font-size: 15px;
  }
}

/* ========================================
   Responsive (tablet ≤ 1200px)
   ======================================== */
@media (max-width: 1200px) {

  /* ---- Header ---- */
  .site-header__inner {
    padding: 18px 24px;
  }
  .site-header__logo img {
    width: 170px;
    height: auto;
  }
  .site-header__nav {
    gap: 18px;
  }
  .site-header__nav-link {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .site-header__contact {
    width: 130px;
    height: 34px;
    font-size: 12px;
  }

  /* ---- Scene indicator ---- */
  .scene-indicator {
    bottom: 24px;
    right: 24px;
  }

  /* ---- Hero ---- */
  .hero__title {
    font-size: 160px;
  }
  .hero__catch,
  .hero__catch-sub {
    font-size: 32px;
    right: 60px;
  }
  .hero__catch-sub {
    right: 20px;
  }

  /* ---- Section labels ---- */
  .section-label,
  .recruit__label {
    font-size: 120px;
  }

  /* ---- Lead ---- */
  .lead__inner {
    padding: 0 var(--sp-inner);
  }
  .lead__montage {
    display: none;
  }
  .lead__text {
    max-width: 100%;
  }

  /* ---- News ---- */
  .news__images {
    display: none;
  }
  .news__body {
    padding: 0 40px;
    justify-content: center;
  }

  /* ---- Footer ---- */
  .site-footer__nav {
    gap: 40px;
  }
  .site-footer__inner {
    padding: 24px 24px 16px;
  }

  /* ---- Company: Title ---- */
  .company-title__en {
    font-size: 80px;
  }

  /* ---- Company: Message ---- */
  .company-message__inner {
    padding: var(--sp-section) var(--sp-inner);
    gap: 40px;
  }
  .company-message--01 .company-message__photo {
    width: 280px;
  }
  .company-message--02 .company-message__photo {
    width: 320px;
  }
  .company-message__label-text {
    font-size: 72px;
  }
  .company-message__label-num {
    font-size: 108px;
  }

  /* ---- Company: Mission/Vision ---- */
  .company-mv__inner {
    padding: 0 var(--sp-inner);
  }
  .company-mv__heading {
    width: 260px;
    min-width: auto;
    padding-right: 30px;
    gap: 16px;
  }
  .company-mv__en {
    font-size: 48px;
  }

  /* ---- Company: Reason ---- */
  .company-reason__inner {
    margin: 0 var(--sp-inner);
  }

  /* ---- Company: Profile ---- */
  .company-profile__inner {
    padding: 0 var(--sp-inner);
    flex-direction: column;
    gap: 40px;
  }
  .company-profile__table {
    padding-left: 0;
    border-left: none;
    margin-left: 0;
  }

  /* ---- Company: History ---- */
  .company-history__inner {
    padding: 0 var(--sp-inner);
  }
  .company-history__heading {
    margin-bottom: 60px;
  }

  /* ---- Company: CTA ---- */
  .company-cta__inner {
    padding: 0 var(--sp-inner);
    gap: 24px;
  }

  /* ---- Interview Detail ---- */
  .itvd-hero {
    padding: 100px var(--sp-inner) 0;
  }
  .itvd-hero__catch {
    font-size: 32px;
  }
  .itvd-hero__photo {
    width: 300px;
    height: 340px;
  }
  .itvd-qa__block--0 .itvd-qa__image {
    width: 50%;
  }
  .itvd-qa__block--1 .itvd-qa__text {
    padding-left: var(--sp-inner);
  }
  .itvd-qa__block--2 .itvd-qa__text {
    padding: 0 var(--sp-inner);
  }
  .itvd-other__label-en {
    font-size: 56px;
  }
  .itvd-other__scroll {
    padding: 0 var(--sp-inner) 32px;
  }

  /* ---- Interview Archive ---- */
  .itv-contents__display {
    font-size: 100px;
  }
  .itv-contents__grid {
    padding: 0 var(--sp-inner);
  }
  .itv-contents__card {
    width: calc((100% - 34px) / 2);
  }
  .itv-contents__card-image {
    height: 340px;
  }

  /* ---- Recruit ---- */
  .rec-hero__display {
    font-size: 120px;
  }
  .rec-hero__vertical {
    right: 120px;
  }
  .rec-hero__vertical-1,
  .rec-hero__vertical-2 {
    font-size: 34px;
  }
  .rec-lead__text {
    left: var(--sp-inner);
  }
  .rec-message {
    padding: 150px var(--sp-inner) 80px;
  }
  .rec-message__photo {
    width: 360px;
  }
  .rec-career__heading {
    padding: 0 var(--sp-inner);
  }
  .rec-career__grid {
    padding: 0 var(--sp-inner);
  }
  .rec-career__card {
    width: 100%;
  }
  .rec-interview__grid {
    flex-wrap: wrap;
    padding: 0 var(--sp-inner);
  }
  .rec-interview__card {
    width: calc(50% - 20px);
  }
  .rec-system__heading {
    padding: 0 var(--sp-inner);
  }
  .rec-system__grid {
    padding: 0 var(--sp-inner);
  }
  .rec-culture__inner {
    padding: 0 var(--sp-inner);
  }
  .rec-culture__circle {
    width: 400px;
    height: 400px;
  }

  /* ---- Shops: Title ---- */
  .shops-title__en {
    font-size: 80px;
  }

  /* ---- Business: Title ---- */
  .biz-title__en {
    font-size: 80px;
  }

  /* ---- Business: Store ---- */
  .biz-store__inner {
    padding: 0 var(--sp-inner);
  }

  /* ---- Business: Brand ---- */
  .biz-brand {
    padding: 60px var(--sp-inner) 80px;
  }
  .biz-brand__inner {
    padding: 0;
  }
  .biz-brand__header {
    padding: var(--sp-section) var(--sp-inner) 0;
  }
  .biz-brand__list {
    padding: 0 var(--sp-inner) var(--sp-section);
  }
  .biz-brand__item {
    gap: 48px;
  }
  .biz-brand__item-logo {
    width: 220px;
  }
  .biz-brand__btn-wrap {
    padding: 40px var(--sp-inner) var(--sp-section);
  }

  /* ---- Business: Media ---- */
  .biz-media__inner {
    padding: 0 var(--sp-inner);
  }
  .biz-media__content {
    padding: 48px;
    gap: 40px;
  }
  .biz-media__image {
    width: 300px;
  }

  /* ---- Contact ---- */
  .contact-title__en {
    font-size: 80px;
  }
  .contact-form__inner {
    padding: 0 var(--sp-inner);
  }
  .contact-form__box {
    padding: 60px;
  }
  .cf-label {
    width: 220px;
  }

  /* ---- Legal ---- */
  .legal-title__en {
    font-size: 80px;
  }
  .legal-title__inner {
    padding: 100px var(--sp-inner) 10px;
  }
  .legal-content__inner {
    padding: 0 var(--sp-inner);
  }
}

/* ========================================
   Responsive (mobile ≤ 768px)
   ======================================== */
@media (max-width: 768px) {
  :root {
    --scene-padding: clamp(16px, 3vh, 40px);
  }

  /* ---- Header ---- */
  .site-header__nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .site-header__inner {
    padding: 12px var(--sp-inner);
  }
  .site-header__logo img {
    width: 140px;
    height: auto;
  }

  /* ---- Hero ---- */
  .hero__title {
    font-size: 24vw;
    left: var(--sp-inner);
    margin-top: 140px;
  }
  /* 「日本食を」→ 右側の列 */
  .hero__catch-sub {
    font-size: 30px;
    top: 15%;
    right: calc(var(--sp-inner) + 24px);
    transform: none;
    margin-top: 0;
    animation-name: heroVerticalInMobile;
    color: var(--color-white);
  }
  /* 「世界で勝てる産業」へ → 左隣の列 */
  .hero__catch {
    font-size: 30px;
    top: 15%;
    bottom: auto;
    right: calc(var(--sp-inner) + 24px + 42px);
    transform: none;
    margin-top: 0;
    animation-name: heroVerticalInMobile;
    color: var(--color-white);
  }
  .hero__catch span {
    font-size: inherit;
    animation-name: heroGlowMobile;
  }
  /* 右上→左下の薄い影で文字を浮き出させる */
  .hero__bg::before {
    background:
      linear-gradient(to bottom left, rgba(0, 0, 0, 0.45) 0%, transparent 60%),
      radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  }

  /* ---- Scene indicator: hide on mobile ---- */
  .scene-indicator {
    display: none;
  }

  /* ---- Utility: tighter inner padding ---- */
  .inner {
    padding: 0 var(--sp-inner);
  }

  /* ---- セクション見出し: 英字+日本語を左寄せで統一 ---- */

  /* 共通: 装飾ラベルを通常フローに戻す */
  .section-label,
  .recruit__label {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    color: var(--color-light-gray);
    margin-bottom: 4px;
  }
  .recruit__label {
    color: rgba(255, 255, 255, 0.25);
  }
  .recruit__label[data-anim].is-visible {
    opacity: 1 !important;
  }

  /* 共通: 日本語タイトルを左寄せ */
  .section-title-ja {
    text-align: left;
    font-size: 18px;
  }

  /* About: 英字ラベルをヘッダー内に */
  .about__label {
    position: static;
    font-size: clamp(48px, 13vw, 72px);
    margin-bottom: 4px;
  }
  .about__inner {
    padding: 0 var(--sp-inner);
    margin-bottom: 8px;
  }

  /* About: 見出し「CS-Rとは」左寄せ */
  .about__heading {
    text-align: left;
  }

  /* Business: ヘッダー左寄せ */
  .business__header {
    padding: 0 var(--sp-inner);
    margin-bottom: 16px;
  }
  .business__label {
    position: static;
    font-size: clamp(48px, 13vw, 72px);
    margin-bottom: 4px;
  }
  .business__title {
    text-align: left;
    padding-right: 0;
    font-size: 18px;
  }

  /* Recruit: ヘッダー左寄せ */
  .recruit__header {
    padding: 0 var(--sp-inner);
  }
  .recruit__label {
    position: static;
    font-size: clamp(48px, 13vw, 72px);
    margin-bottom: 4px;
  }
  .recruit__title {
    text-align: left;
    font-size: 18px;
  }

  /* News */
  .news__title {
    padding-left: var(--sp-inner);
  }

  /* ---- Hero scroll indicator ---- */
  .hero__scroll-indicator {
    bottom: 24px;
  }
  .hero__scroll-line {
    height: 32px;
  }

  /* ---- Lead: インパクト重視 ---- */
  .sp-br {
    display: block;
  }
  .lead__line {
    display: inline;
    clip-path: none !important;
  }
  .lead__emphasis::after {
    display: none;
  }
  .lead__inner {
    padding: 0 var(--sp-inner);
  }
  .lead__text {
    font-size: 18px;
    line-height: 2.2;
    font-weight: 500;
  }
  .lead__group {
    margin-bottom: 1.2em;
  }
  /* 最初の段落: やや大きく、しっかり読ませる */
  .lead__group:first-child {
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
  }
  /* アクセント段落: 最大インパクト */
  .lead__group--accent {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.9;
  }
  .lead__buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
  }
  .lead__buttons {
    align-items: center;
  }
  .lead__btn {
    width: 80%;
    max-width: 300px;
    height: 48px;
    font-size: 15px;
  }

  /* ---- Section labels ---- */
  .section-label,
  .recruit__label {
    font-size: clamp(48px, 12vw, 80px);
  }

  /* ---- About ---- */
  .about__content {
    padding: 20px var(--sp-inner) 0;
  }
  .about__heading {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .about__heading-main {
    font-size: clamp(32px, 8.5vw, 44px);
  }
  .about__heading-sub {
    font-size: clamp(22px, 6vw, 30px);
  }
  .about__desc {
    font-size: 15px;
    line-height: 2.2;
  }

  /* ---- Business cards (top page) ---- */
  .business__cards {
    flex-direction: column;
    height: auto;
  }
  .business__card {
    width: 100%;
    height: clamp(160px, 28vh, 260px);
  }
  .business__wipe {
    display: none;
  }
  .business__center-line {
    display: none;
  }
  .business__card-content {
    opacity: 1;
    transform: none;
  }

  /* ---- Recruit ---- */
  .recruit__header {
    margin-bottom: 16px;
  }
  .recruit__circles {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-items: center;
    gap: 12px 20px;
    padding: 0 var(--sp-inner);
    margin-bottom: 20px;
  }
  .recruit__circle {
    width: clamp(120px, 34vw, 155px);
    height: clamp(120px, 34vw, 155px);
  }
  .recruit__circle-icon {
    width: 38px;
    margin-bottom: 4px;
  }
  .recruit__circle-text {
    font-size: 13px;
    font-weight: 700;
  }
  .recruit__circle::before {
    inset: -3px;
  }
  .recruit__message {
    padding: 12px var(--sp-inner) 16px;
  }
  .recruit__message-heading {
    font-size: clamp(20px, 5.5vw, 28px);
    margin-bottom: 12px;
    font-weight: 900;
  }
  .recruit__message-text {
    font-size: 15px;
    line-height: 2;
  }
  .recruit__message-text p:not(.highlight) {
    display: inline;
  }
  .recruit__message-text .highlight {
    font-size: clamp(20px, 5.5vw, 26px);
    font-weight: 900;
    margin-top: 0.8em;
  }
  .recruit__btn-wrap {
    padding-top: 12px;
  }

  /* ---- News ---- */
  .news__item:nth-child(n+3) {
    display: none;
  }
  .news__item-excerpt {
    display: none;
  }
  .news__item-inner {
    flex-wrap: wrap;
  }

  /* ---- Buttons (global) ---- */
  .btn {
    font-size: 16px;
    padding: 0 36px;
    height: 50px;
  }

  /* ---- Join Us ---- */
  .join-us__message br {
    display: none;
  }
  .join-us__message {
    font-size: clamp(17px, 4.5vw, 22px);
  }
  .join-us__buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .join-us__btn {
    width: 100%;
    max-width: 320px;
  }

  /* ---- Footer: PC版の品を保ったまま縦積み ---- */
  .site-footer__inner {
    padding: 32px var(--sp-inner) 20px;
  }
  .site-footer__main {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
  }
  .site-footer__logo {
    width: 140px;
  }
  .site-footer__nav {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .site-footer__nav-col {
    gap: 14px;
  }
  .site-footer__nav-col:last-child {
    position: absolute;
    top: 0;
    right: 0;
  }
  .site-footer__contact-btn {
    width: 140px;
    height: 36px;
    font-size: 13px;
    border-radius: 18px;
  }
  .site-footer__bottom {
    flex-wrap: wrap;
    gap: 4px 8px;
  }

  /* ============================
     Company Page – mobile
     ============================ */

  /* Title: stacked, bold presence */
  .company-title {
    padding: 56px 0 0;
  }
  .company-title__inner {
    padding: 32px var(--sp-inner) 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .company-title__en {
    font-size: clamp(48px, 13vw, 72px);
  }
  .company-title__ja {
    font-size: 20px;
    padding-bottom: 0;
  }

  /* Message: single-column, photo centered */
  .company-message__inner {
    flex-direction: column !important;
    padding: 48px var(--sp-inner);
    gap: 32px;
  }
  .company-message--02 .company-message__text {
    order: -1;
  }
  .company-message--01 .company-message__photo,
  .company-message--02 .company-message__photo {
    width: 65%;
    max-width: 300px;
    margin: 0 auto;
  }
  .company-message__catch {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-bottom: 24px;
    line-height: 1.7;
  }
  .company-message__body {
    font-size: 15px;
    line-height: 2;
  }
  .company-message__label {
    bottom: 12px;
  }
  .company-message__label-text {
    font-size: clamp(40px, 11vw, 64px);
  }
  .company-message__label-num {
    font-size: clamp(60px, 16vw, 96px);
  }
  .company-message--01 .company-message__label {
    right: var(--sp-inner);
  }
  .company-message--02 .company-message__label {
    left: var(--sp-inner);
  }
  .company-message__author {
    margin-top: 28px;
  }
  .company-message__author-name {
    font-size: 18px;
  }
  .company-message__author-title {
    font-size: 13px;
  }

  /* Mission / Vision: bold stacked cards */
  .company-mv {
    padding: 48px 0 56px;
    border-top-width: 28px;
  }
  .company-mv__inner {
    padding: 0 var(--sp-inner);
  }
  .company-mv__row {
    flex-direction: column;
    gap: 0;
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 16px;
    padding: 32px 24px;
  }
  .company-mv__row + .company-mv__row {
    margin-top: 24px;
  }
  .company-mv__heading {
    width: auto;
    min-width: auto;
    border-right: none;
    border-bottom: none;
    padding-right: 0;
    padding-bottom: 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 20px;
  }
  .company-mv__en {
    font-size: clamp(42px, 11vw, 60px);
    color: var(--color-primary);
  }
  .company-mv__ja {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--color-text-gray);
  }
  .company-mv__desc {
    padding-left: 0;
    font-size: 16px;
    line-height: 2;
  }

  /* Reason */
  .company-reason {
    padding: 0 0 var(--sp-section);
  }
  .company-reason__inner {
    margin: 0 var(--sp-inner);
    padding: 40px 24px;
  }
  .company-reason__title {
    font-size: 15px;
    padding: 0 16px;
  }
  .company-reason__catch {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-bottom: 24px;
  }
  .company-reason__body {
    font-size: 15px;
    line-height: 2;
  }

  /* Profile: stacked, readable table */
  .company-profile {
    padding: var(--sp-section) 0;
  }
  .company-profile__inner {
    padding: 0 var(--sp-inner);
    flex-direction: column;
    gap: 32px;
  }
  .company-profile__en {
    font-size: clamp(36px, 9.5vw, 52px);
  }
  .company-profile__ja {
    font-size: 15px;
    margin-top: 12px;
  }
  .company-profile__table {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
  .company-profile__row {
    flex-direction: column;
    gap: 2px;
    min-height: auto;
    line-height: 1.8;
  }
  .company-profile__row dt {
    font-weight: 700;
    font-size: 13px;
    width: auto;
    margin-right: 0;
    line-height: 1.8;
    color: var(--color-text-gray);
  }
  .company-profile__row dd {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
  }
  .company-profile__row + .company-profile__row {
    margin-top: 16px;
  }

  /* History: clean vertical timeline */
  .company-history {
    padding: var(--sp-section) 0;
  }
  .company-history__inner {
    padding: 0 var(--sp-inner);
  }
  .company-history__heading {
    margin-bottom: 40px;
  }
  .company-history__en {
    font-size: clamp(48px, 13vw, 72px);
  }
  .company-history__section-title {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .company-history__section-title + .company-history__timeline {
    margin-bottom: 48px;
  }

  /* 赤ドット非表示、年を上に配置 */
  .company-history__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-light-gray);
  }
  .company-history__item + .company-history__item {
    margin-top: 16px;
  }
  .company-history__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .company-history__year {
    width: auto;
  }
  .company-history__year::after {
    display: none;
  }
  .company-history__year-num {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--color-primary);
  }

  /* イベントを年の下に並べる */
  .company-history__event {
    margin-left: 0;
    gap: 8px;
    padding-left: 0;
    margin-top: 6px;
  }
  .company-history__events {
    margin-top: 6px;
  }
  .company-history__event-month {
    width: auto;
    font-size: 14px;
    color: var(--color-text-gray);
    flex-shrink: 0;
  }
  .company-history__event-month::after {
    content: '—';
    margin-left: 6px;
    color: var(--color-light-gray);
  }
  .company-history__event-text {
    font-size: 15px;
  }

  /* CTA */
  .company-cta {
    padding: 32px 0;
  }
  .company-cta__inner {
    flex-direction: column;
    padding: 0 var(--sp-inner);
    gap: 12px;
  }
  .company-cta__btn {
    flex: none;
    height: 90px;
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  /* ============================
     Business Page – mobile
     ============================ */
  .biz-title {
    padding: 56px 0 0;
  }
  .biz-title__inner {
    padding: 32px var(--sp-inner) 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .biz-title__en {
    font-size: clamp(48px, 13vw, 72px);
  }
  .biz-title__ja {
    font-size: 20px;
    padding-bottom: 0;
  }

  /* Store section */
  .biz-store {
    padding: 48px 0;
  }
  .biz-store__inner {
    padding: 0 var(--sp-inner);
  }
  .biz-store__heading {
    font-size: clamp(24px, 6.5vw, 32px);
    margin-bottom: 20px;
    text-align: left;
  }
  .biz-store__lead {
    font-size: 16px;
    text-align: left;
    line-height: 2;
    margin-bottom: 36px;
  }
  .biz-store__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .biz-store__feature {
    padding: 24px;
    border-radius: 14px;
  }
  .biz-store__feature-title {
    font-size: 18px;
  }
  .biz-store__feature-desc {
    font-size: 15px;
    padding-left: 0;
    line-height: 1.8;
  }

  /* Brand section */
  .biz-brand {
    padding: 32px var(--sp-inner) var(--sp-section);
  }
  .biz-brand__inner {
    border-radius: 14px;
    padding: 0;
  }
  .biz-brand__header {
    padding: 36px 24px 0;
    margin-bottom: 28px;
  }
  .biz-brand__en {
    font-size: clamp(40px, 11vw, 56px);
  }
  .biz-brand__intro {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.8;
  }
  .biz-brand__intro-sub {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 40px;
  }
  .biz-brand__list {
    padding: 0 24px 36px;
  }
  .biz-brand__item {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 32px;
  }
  .biz-brand__item-logo {
    width: 240px;
    margin: 0 auto;
  }
  .biz-brand__item-name {
    font-size: 22px;
    margin-bottom: 12px;
    text-align: center;
  }
  .biz-brand__item-catch {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.8;
  }
  .biz-brand__item-desc {
    font-size: 15px;
    line-height: 2;
  }
  .biz-brand__btn-wrap {
    padding: 28px 24px 36px;
  }

  /* Media section */
  .biz-media {
    padding: var(--sp-section) 0;
  }
  .biz-media__inner {
    padding: 0 var(--sp-inner);
  }
  .biz-media__heading {
    font-size: clamp(24px, 6.5vw, 32px);
    margin-bottom: 24px;
    text-align: left;
  }
  .biz-media__content {
    flex-direction: column;
    padding: 28px 24px;
    gap: 28px;
    border-radius: 14px;
  }
  .biz-media__image {
    width: 100%;
    order: -1;
  }
  .biz-media__catch {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.8;
  }
  .biz-media__desc {
    font-size: 15px;
    line-height: 2;
  }
  .biz-media__jfg-logo img {
    max-height: 48px;
  }

  /* ============================
     Positions Page – mobile
     ============================ */
  .pos-main {
    padding: 80px 0 60px;
  }
  .pos-main__heading {
    padding: 0 24px;
    margin-bottom: 48px;
  }
  .pos-main__title {
    font-size: 28px;
  }
  .pos-main__table {
    padding: 0 24px;
  }
  .pos-main__row {
    flex-direction: column;
    gap: 8px;
  }
  .pos-main__row dt {
    width: auto;
    font-weight: 700;
    font-size: 17px;
    line-height: 32px;
  }
  .pos-main__row dd {
    font-size: 16px;
    line-height: 32px;
  }
  .pos-main__row dd ul li {
    line-height: 32px;
  }
  .pos-main__btn-wrap {
    margin-top: 60px;
  }

  /* ============================
     Interview Detail – mobile
     ============================ */
  .itvd-hero {
    padding: 80px 24px 0;
  }
  .itvd-hero__inner {
    flex-direction: column;
    gap: 32px;
    min-height: auto;
  }
  .itvd-hero__catch {
    font-size: 26px;
  }
  .itvd-hero__photo {
    width: 100%;
    height: 300px;
  }
  .itvd-qa {
    padding: 60px 0;
  }
  .itvd-qa__block {
    flex-direction: column !important;
    gap: 32px;
    margin-bottom: 60px;
  }
  .itvd-qa__block--0 .itvd-qa__image,
  .itvd-qa__block--1 .itvd-qa__image {
    width: 100%;
    height: 240px;
  }
  .itvd-qa__block--0 .itvd-qa__text,
  .itvd-qa__block--1 .itvd-qa__text,
  .itvd-qa__block--2 .itvd-qa__text {
    max-width: none;
    width: auto;
    padding: 0 24px;
  }
  .itvd-qa__block--2 .itvd-qa__image--full {
    height: 240px;
  }
  .itvd-qa__title {
    font-size: 20px;
  }
  .itvd-qa__answer {
    font-size: 16px;
    line-height: 32px;
  }
  .itvd-other {
    padding: 40px 0 60px;
  }
  .itvd-other__label {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0 24px;
    margin-bottom: 32px;
  }
  .itvd-other__label-en {
    font-size: 40px;
  }
  .itvd-other__scroll {
    padding: 0 24px 24px;
    gap: 20px;
  }
  .itvd-other__card {
    width: 280px;
  }
  .itvd-other__card-image {
    height: 300px;
  }
  .itvd-apply {
    padding: 60px 0;
  }

  /* ============================
     Interview Archive – mobile
     ============================ */
  .itv-contents {
    padding: 80px 0 60px;
  }
  .itv-contents__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0 24px;
    margin-bottom: 24px;
  }
  .itv-contents__display {
    font-size: 48px;
  }
  .itv-contents__ja {
    font-size: 18px;
  }
  .itv-contents__sub {
    font-size: 18px;
    padding: 0 24px;
    margin-bottom: 40px;
  }
  .itv-contents__grid {
    padding: 0 24px;
    gap: 32px;
  }
  .itv-contents__card {
    width: 100%;
  }
  .itv-contents__card-image {
    height: 280px;
  }
  .itv-contents__btn {
    height: 64px;
    padding: 0 40px;
    font-size: 20px;
    letter-spacing: 2px;
  }

  /* ============================
     Recruit Page – mobile
     ============================ */
  .rec-hero {
    height: 400px;
  }
  .rec-hero__display {
    font-size: 64px;
    left: 20px;
    top: 20px;
  }
  .rec-hero__ja {
    right: auto;
    left: 20px;
    top: auto;
    bottom: 100px;
    font-size: 20px;
  }
  .rec-hero__vertical {
    right: 30px;
    writing-mode: horizontal-tb;
    text-align: right;
  }
  .rec-hero__vertical-1,
  .rec-hero__vertical-2 {
    font-size: 24px;
    font-feature-settings: normal;
  }
  .rec-hero__vertical-2 {
    margin-top: 0;
  }
  .rec-lead {
    height: auto;
    padding: 60px 24px;
  }
  .rec-lead__bg {
    display: none;
  }
  .rec-lead__text {
    position: relative;
    left: 0;
    top: 0;
  }
  .rec-lead__catch {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .rec-lead__body-bold {
    font-size: 20px;
  }
  .rec-lead__body p:not(.rec-lead__body-bold) {
    font-size: 16px;
    line-height: 2;
  }
  .rec-lead__body p:not(.rec-lead__body-bold) br {
    display: none;
  }
  .rec-message {
    padding: 100px 24px 60px;
  }
  .rec-message__label {
    left: 20px;
    top: 24px;
  }
  .rec-message__label-en {
    font-size: 40px;
  }
  .rec-message__label-ja {
    font-size: 16px;
  }
  .rec-message__inner {
    flex-direction: column;
    gap: 32px;
  }
  .rec-message__photo {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .rec-message__catch {
    font-size: 20px;
  }
  .rec-message__body p {
    font-size: 15px;
    line-height: 32px;
  }
  .rec-career {
    padding: 60px 0;
  }
  .rec-career__heading {
    padding: 0 24px;
    margin-bottom: 32px;
  }
  .rec-career__title {
    font-size: 26px;
  }
  .rec-career__grid {
    padding: 0 24px;
    gap: 24px;
  }
  .rec-career__card {
    width: 100%;
    min-height: auto;
    padding: 24px;
  }
  .rec-career__card-content {
    flex-direction: column;
  }
  .rec-career__card-image {
    width: 100%;
    height: 180px;
    min-height: auto;
  }
  .rec-career__card-desc {
    font-size: 16px;
  }
  .rec-interview {
    padding: 120px 24px 80px;
  }
  .rec-interview__label {
    left: 20px;
    top: 24px;
  }
  .rec-interview__label-en {
    font-size: 40px;
  }
  .rec-interview__label-ja {
    font-size: 16px;
  }
  .rec-interview__grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .rec-interview__card {
    width: 100%;
    max-width: 400px;
  }
  .rec-interview__card-image {
    height: 300px;
  }
  .rec-system {
    padding: 60px 0;
  }
  .rec-system__heading {
    padding: 0 24px;
    margin-bottom: 32px;
  }
  .rec-system__title {
    font-size: 26px;
  }
  .rec-system__grid {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }
  .rec-system__col {
    border-right: none;
    border-bottom: 1px solid var(--color-text);
    padding: 0 0 32px;
  }
  .rec-system__col--last {
    border-bottom: none;
    padding-bottom: 0;
  }
  .rec-system__col-image {
    width: 100%;
    height: 200px;
  }
  .rec-culture {
    padding: 40px 0 60px;
  }
  .rec-culture__label {
    padding-left: 20px;
    margin-bottom: 32px;
  }
  .rec-culture__label-en {
    font-size: 40px;
  }
  .rec-culture__label-ja {
    font-size: 16px;
  }
  .rec-culture__inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }
  .rec-culture__text {
    flex: none;
    width: 100%;
    padding-top: 0;
  }
  .rec-culture__catch {
    font-size: 22px;
  }
  .rec-culture__desc {
    font-size: 16px;
    line-height: 32px;
  }
  .rec-culture__visual {
    min-height: 300px;
    width: 100%;
  }
  .rec-culture__circle {
    width: 280px;
    height: 280px;
    position: relative;
    margin: 0 auto;
  }
  .rec-culture__dot {
    display: none;
  }

  /* ============================
     Shops Page – mobile
     ============================ */
  .shops-title {
    padding: 56px 0 0;
  }
  .shops-title__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 32px var(--sp-inner) 10px;
  }
  .shops-title__en {
    font-size: 48px;
  }
  .shops-title__ja {
    font-size: 18px;
  }
  .shops-grid {
    padding: 48px 0 60px;
  }
  .shops-grid__inner {
    padding: 0 24px;
    gap: 40px;
    justify-content: center;
  }
  .shops-grid__card {
    width: 100%;
    max-width: 400px;
  }
  .shops-grid__card-name {
    white-space: normal;
  }
  .shops-grid__card-desc {
    font-size: 17px;
  }

  /* ============================
     Strategy Page – mobile
     ============================ */
  .strat-hero {
    height: 320px;
  }
  .strat-hero__text {
    left: 24px;
    bottom: 40px;
  }
  .strat-hero__title {
    font-size: 28px;
    line-height: 1.6;
  }
  .strat-hero__sub {
    font-size: 15px;
    line-height: 1.6;
  }
  .strat-contents__vertical,
  .strat-contents__vertical-label {
    display: none;
  }
  .strat-contents__body {
    margin: 60px auto 0;
    width: auto;
    padding: 0 24px;
    font-size: 16px;
    line-height: 32px;
  }
  .strat-contents__problem {
    margin: 40px auto 0;
    width: auto;
    padding: 32px 20px 20px;
  }
  .strat-contents__problem-title {
    font-size: 22px;
    margin-bottom: 32px;
  }
  .strat-contents__funnel-item {
    padding: 24px 20px;
  }
  .strat-contents__funnel-item--wide,
  .strat-contents__funnel-item--mid {
    width: 100%;
  }
  .strat-contents__funnel-item--result {
    width: 80%;
  }
  .strat-contents__funnel-label {
    font-size: 22px;
  }
  .strat-contents__funnel-label-big {
    font-size: 22px;
  }
  .strat-contents__funnel-label-small {
    font-size: 16px;
  }
  .strat-contents__funnel-desc {
    font-size: 16px;
    line-height: 32px;
  }
  .strat-contents__big-arrow {
    width: 100%;
    height: 60px;
  }
  .strat-contents__conclusion-sub {
    font-size: 18px;
    padding: 0 24px;
  }
  .strat-contents__conclusion-main {
    font-size: 20px;
    padding: 0 24px;
  }
  .strat-jfp__display {
    font-size: 60px;
    padding-top: 40px;
  }
  .strat-jfp__lead {
    font-size: 18px;
    padding: 0 24px;
    margin-top: 32px;
  }
  .strat-jfp__video {
    max-width: calc(100% - 48px);
    margin-top: 40px;
  }
  .strat-jfp__flow {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
  }
  .strat-jfp__step-arrow {
    height: auto;
    transform: rotate(90deg);
  }
  .strat-jfp__step-arrow svg {
    width: 40px;
    height: 96px;
  }
  .strat-jfp__step-circle {
    width: 140px;
    height: 140px;
    font-size: 16px;
    line-height: 32px;
  }
  .strat-jfp__step-desc {
    font-size: 15px;
    line-height: 24px;
  }
  .strat-jfp__media-card {
    margin: 60px 24px 0;
    padding: 40px 24px 32px;
  }
  .strat-jfp__media-header {
    margin-bottom: 32px;
  }
  .strat-jfp__media-catch {
    font-size: 20px;
  }
  .strat-jfp__media-logo img {
    height: 40px;
  }
  .strat-jfp__media-content {
    flex-direction: column;
    gap: 32px;
  }
  .strat-jfp__media-text p {
    font-size: 15px;
    line-height: 32px;
  }
  .strat-jfp__media-image {
    width: 100%;
  }
  .strat-why {
    padding: 60px 0;
  }
  .strat-why__inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }
  .strat-why__text {
    flex: none;
    width: 100%;
  }
  .strat-why__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .strat-why__body {
    font-size: 16px;
    line-height: 32px;
  }
  .strat-why__diagram {
    width: 100%;
    min-height: 400px;
    transform: scale(0.6);
    transform-origin: top center;
  }

  /* ============================
     Contact Page – mobile
     ============================ */
  .contact-title {
    padding: 56px 0 0;
  }
  .contact-title__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 32px var(--sp-inner) 10px;
  }
  .contact-title__en {
    font-size: clamp(42px, 11vw, 64px);
  }
  .contact-form {
    padding: 36px 0 var(--sp-section);
  }
  .contact-form__inner {
    padding: 0 var(--sp-inner);
  }
  .contact-form__box {
    padding: 28px 20px;
  }
  .cf-row {
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
  }
  .cf-label {
    width: auto;
    padding-top: 0;
  }
  .cf-label > p {
    max-width: none;
  }
  .cf-field--split {
    flex-direction: column;
  }
  .cf-field--split p {
    flex-direction: column;
  }
  .contact-form__privacy {
    font-size: 13px;
    margin-top: 32px;
  }
  .contact-form__submit {
    min-width: auto;
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 50px;
  }
  .cf-textarea,
  .contact-form__box .wpcf7-form textarea {
    min-height: 140px;
  }

  /* ============================
     Legal Pages – mobile
     ============================ */
  .legal-title {
    padding: 56px 0 0;
  }
  .legal-title__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 32px var(--sp-inner) 10px;
  }
  .legal-title__en {
    font-size: clamp(32px, 8.5vw, 48px);
  }
  .legal-content__inner {
    padding: 0 var(--sp-inner);
    font-size: 14px;
  }
  .legal-content__divider {
    margin: 40px 0;
  }
  .legal-content__inner ul {
    margin-left: 1em;
  }
  .legal-content__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .legal-content__contact-box {
    padding: 20px 16px;
  }
}

/* ========================================
   Responsive (small phone ≤ 480px)
   ======================================== */
@media (max-width: 480px) {

  /* ---- Hero: tighter, bolder ---- */
  .hero__title {
    font-size: 24vw;
    margin-top: 140px;
  }
  .hero__catch-sub {
    font-size: 30px;
    right: calc(var(--sp-inner) + 20px);
  }
  .hero__catch {
    font-size: 30px;
    right: calc(var(--sp-inner) + 20px + 42px);
  }

  /* ---- Buttons: full-width feel ---- */
  .btn {
    font-size: 15px;
    padding: 0 24px;
    height: 48px;
    width: 100%;
    max-width: 320px;
  }

  /* ---- Recruit ---- */
  .recruit__circle {
    width: clamp(110px, 32vw, 140px);
    height: clamp(110px, 32vw, 140px);
  }
  .recruit__circle-icon {
    width: 34px;
  }
  .recruit__circle-text {
    font-size: 12px;
  }
  .recruit__message-heading {
    font-size: 18px;
  }
  .recruit__message-text {
    font-size: 14px;
  }
  .recruit__message-text .highlight {
    font-size: clamp(18px, 5vw, 22px);
  }

  /* ---- Join Us ---- */
  .join-us__btn {
    font-size: 15px;
    height: 48px;
  }

  /* ---- Company ---- */
  .company-title__en {
    font-size: clamp(36px, 10vw, 48px);
  }
  .company-message__inner {
    padding: 40px var(--sp-inner);
    gap: 24px;
  }
  .company-message--01 .company-message__photo,
  .company-message--02 .company-message__photo {
    width: 80%;
    max-width: 280px;
  }
  .company-message__catch {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .company-message__label-text {
    font-size: clamp(36px, 10vw, 52px);
  }
  .company-message__label-num {
    font-size: clamp(54px, 14vw, 78px);
  }
  .company-mv__en {
    font-size: clamp(36px, 10vw, 48px);
  }
  .company-mv__row {
    padding: 28px 20px;
  }
  .company-reason__inner {
    margin: 0 var(--sp-inner);
    padding: 28px 20px;
  }
  .company-reason__catch {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .company-profile__en,
  .company-history__en {
    font-size: clamp(40px, 11vw, 56px);
  }
  .company-history__year-num {
    font-size: 24px;
  }
  .company-history__event {
    margin-left: 0;
  }
  .company-cta__btn {
    height: 80px;
    font-size: 16px;
  }

  /* ---- Business ---- */
  .biz-title__en {
    font-size: clamp(36px, 10vw, 48px);
  }
  .biz-store__heading {
    font-size: 20px;
  }
  .biz-store__feature {
    padding: 20px;
  }
  .biz-brand__header {
    padding: 28px 20px 0;
  }
  .biz-brand__en {
    font-size: clamp(26px, 7vw, 36px);
  }
  .biz-brand__list {
    padding: 0 20px 28px;
  }
  .biz-brand__item-logo {
    width: 200px;
    margin: 0 auto;
  }
  .biz-media__content {
    padding: 24px 20px;
  }
  .biz-media__catch {
    font-size: 15px;
  }

  /* ---- Contact ---- */
  .contact-title__en {
    font-size: clamp(36px, 10vw, 48px);
  }
  .contact-form__box {
    padding: 24px var(--sp-inner);
  }

  /* ---- Footer ---- */
  .site-footer__logo {
    width: 120px;
  }
  .site-footer__nav {
    gap: 20px;
  }
  .site-footer__nav-col {
    gap: 12px;
  }
  .site-footer__nav-link {
    font-size: 12px;
  }
  .site-footer__privacy,
  .site-footer__sep,
  .site-footer__copy {
    font-size: 10px;
  }

  /* ---- Legal ---- */
  .legal-title__en {
    font-size: clamp(26px, 7vw, 36px);
  }
}

/* Mobile: 白グロウがふわっと現れて残る */
@keyframes heroGlowMobile {
  from {
    text-shadow: none;
  }
  to {
    text-shadow:
      0 0 10px rgba(255, 255, 255, 1),
      0 0 28px rgba(255, 255, 255, 0.6),
      0 0 50px rgba(255, 255, 255, 0.3);
  }
}

/* Mobile hero text animation (no translateY(-50%)) */
@keyframes heroVerticalInMobile {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Short viewport */
@media (max-height: 700px) {
  .recruit__circle {
    width: 100px;
    height: 100px;
  }
  .recruit__circle-icon {
    width: 32px;
  }
  .recruit__circle-text {
    font-size: 11px;
  }
  .recruit__message-text {
    display: none;
  }
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none !important;
  }
  [data-scene] {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }
  [data-scene].is-active-scene {
    animation: none !important;
  }
  .scene-indicator,
  .scene-indicator__current {
    transition: none !important;
  }
  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .recruit__label[data-anim] {
    opacity: 0.3 !important;
  }
  .recruit__circle {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .recruit__circle::before {
    animation: none !important;
  }
  .recruit__message,
  .recruit__btn-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .join-us__label,
  .join-us__text,
  .join-us__message,
  .join-us__btn {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .hero__montage {
    animation: none !important;
    opacity: 0 !important;
  }
  .hero__montage-slide {
    animation: none !important;
    opacity: 0 !important;
  }
  .hero__curtain {
    animation: none !important;
    opacity: 0 !important;
  }
  .hero__bg {
    animation: none !important;
  }
  .hero__char {
    animation: none !important;
    opacity: 1 !important;
  }
  .hero__catch,
  .hero__catch-sub {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(-50%) !important;
  }
  .hero__catch span {
    animation: none !important;
  }
  .hero__scroll-indicator {
    animation: none !important;
    opacity: 1 !important;
  }
  .hero__scroll-line {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .lead__montage {
    display: none !important;
  }
  .lead__group {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .lead__line {
    clip-path: none !important;
    transition: none !important;
  }
}

/* Reduced-motion + mobile: fix hero catch position */
@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .hero__catch,
  .hero__catch-sub {
    transform: none !important;
  }
}

/* ========================================
   Contact Page
   ======================================== */
.page-contact {
  background: var(--color-white);
  color: var(--color-text);
}

.page-contact ~ .site-footer .site-footer__bar {
  display: none;
}

/* Title */
.contact-title {
  padding: 126px 0 0;
  background: var(--color-white);
}

.contact-title__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 124px 40px 10px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.contact-title__en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 128px;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--color-light-gray);
}

.contact-title__ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
}

/* Form Section */
.contact-form {
  padding: 80px 0 120px;
}

.contact-form__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 185px;
}

/* グレーボックス（角丸なし） */
.contact-form__box {
  background: #F0F0F0;
  border-radius: 0;
  padding: 100px;
}

/* 各行: ラベル左 + フィールド右 */
.cf-row {
  display: flex;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.cf-row:first-child {
  padding-top: 0;
}

.cf-label {
  width: 263px;
  flex-shrink: 0;
  padding-top: 10px;
}

.cf-label > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 75%;
  margin: 0;
}

/* テキストエリア・ラジオ・チェックボックス行はパディング不要 */
.cf-row:first-child .cf-label,
.cf-row:nth-child(2) .cf-label,
.cf-row:last-child .cf-label {
  padding-top: 0;
}

.cf-label__text {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
}

.cf-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  line-height: 1;
}

.cf-badge--required {
  background: var(--color-primary);
  color: var(--color-white);
}

.cf-field {
  flex: 1;
  min-width: 0;
}

.cf-field--split {
  display: flex;
  gap: 8px;
}

.cf-field--split p {
  display: flex;
  gap: 8px;
  width: 100%;
}

.cf-field--split .wpcf7-form-control-wrap {
  flex: 1;
  display: block;
}

.cf-field--split .wpcf7-form-control-wrap input {
  width: 100%;
}

.cf-input,
.cf-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 17px;
  font-family: var(--font-ja);
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}

.cf-input:focus,
.cf-textarea:focus {
  border-color: var(--color-primary);
}

.cf-textarea {
  resize: vertical;
  min-height: 200px;
}

.cf-note {
  font-size: 15px;
  color: var(--color-text-gray);
  margin-top: 7px;
}

.cf-radio,
.cf-checkbox {
  display: block;
  font-size: 15px;
  cursor: pointer;
  color: var(--color-text);
  cursor: pointer;
  line-height: 2.2;
}

.cf-radio input,
.cf-checkbox input {
  margin-right: 6px;
}

/* プライバシーポリシー */
.contact-form__privacy {
  text-align: center;
  margin-top: 60px;
  font-size: 15px;
  line-height: 2;
  color: var(--color-body-text);
}

.contact-form__privacy a {
  color: var(--color-text);
  text-decoration: underline;
}

.contact-form__agree {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* 送信ボタン */
.contact-form__submit-wrap {
  text-align: center;
  margin-top: 40px;
}

.contact-form__submit {
  display: inline-block;
  min-width: 262px;
  padding: 18px 60px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  background: var(--gradient-primary);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-form__submit:hover {
  opacity: 0.8;
}

/* CF7 スタイル上書き */
.contact-form__box .wpcf7-form .cf-row {
  display: flex;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.contact-form__box .wpcf7-form .cf-row:first-child {
  padding-top: 0;
}

.contact-form__box .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form__box .wpcf7-form input[type="text"],
.contact-form__box .wpcf7-form input[type="email"],
.contact-form__box .wpcf7-form input[type="tel"],
.contact-form__box .wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 17px;
  font-family: var(--font-ja);
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form__box .wpcf7-form input:focus,
.contact-form__box .wpcf7-form textarea:focus {
  border-color: var(--color-primary);
}

.contact-form__box .wpcf7-form textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form__box .wpcf7-form .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  line-height: 1;
  font-size: 15px;
  cursor: pointer;
}

.contact-form__box .wpcf7-form .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 12px;
}

.contact-form__box .wpcf7-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

/* Hide native radio/checkbox */
.contact-form__box .wpcf7-form .wpcf7-list-item input[type="radio"],
.contact-form__box .wpcf7-form .wpcf7-list-item input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 0;
  cursor: pointer;
  border: 2px solid var(--color-light-gray);
  background: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
}

.contact-form__box .wpcf7-form .wpcf7-list-item input[type="radio"] {
  border-radius: 50%;
}

.contact-form__box .wpcf7-form .wpcf7-list-item input[type="checkbox"] {
  border-radius: 4px;
}

/* Radio checked */
.contact-form__box .wpcf7-form .wpcf7-list-item input[type="radio"]:checked {
  border-color: var(--color-primary);
}
.contact-form__box .wpcf7-form .wpcf7-list-item input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Checkbox checked */
.contact-form__box .wpcf7-form .wpcf7-list-item input[type="checkbox"]:checked {
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.contact-form__box .wpcf7-form .wpcf7-list-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Privacy radio (outside CF7) */
.contact-form__agree input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 2px solid var(--color-light-gray);
  border-radius: 50%;
  background: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}
.contact-form__agree input[type="radio"]:checked {
  border-color: var(--color-primary);
}
.contact-form__agree input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* その他の理由入力欄（JS動的生成） */
.cf-other-reason-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 17px;
  font-family: var(--font-ja);
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}
.cf-other-reason-input:focus {
  border-color: var(--color-primary);
}

/* CF7 送信ボタン */
.contact-form__box .wpcf7-form input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 60px auto 0;
  padding: 18px 0;
  font-size: 17px;
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  letter-spacing: 0.1em;
}
.contact-form__box .wpcf7-form input[type="submit"]:hover {
  opacity: 0.8;
}

/* ========================================
   Legal Pages (Privacy Policy / Antisocial)
   ======================================== */
.page-legal {
  background: var(--color-white);
  color: var(--color-text);
}

.page-legal ~ .site-footer .site-footer__bar {
  display: none;
}

.legal-title {
  padding: 126px 0 0;
}

.legal-title__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 124px 40px 10px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.legal-title__en {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--color-light-gray);
}

.legal-title__ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
}

.legal-content {
  padding: 80px 0 120px;
}

.legal-content__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 17px;
  line-height: 2;
  color: var(--color-body-text);
}

.legal-content__heading {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-primary);
}

.legal-content__inner h3 {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  margin: 40px 0 16px;
}

.legal-content__inner h4 {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  margin: 24px 0 12px;
}

.legal-content__inner p {
  margin-bottom: 16px;
}

.legal-content__inner ul {
  margin: 0 0 16px 1.5em;
}

.legal-content__inner li {
  margin-bottom: 8px;
}

.legal-content__date {
  margin-top: 40px;
  font-weight: 500;
}

.legal-content__sig {
  margin-top: 16px;
  font-weight: 500;
}

.legal-content__contact-box {
  margin-top: 32px;
  padding: 24px;
  background: #F0F0F0;
  border-radius: 8px;
}

.legal-content__divider {
  border: none;
  border-top: 1px solid var(--color-light-gray);
  margin: 60px 0;
}

/* (Legal & Contact responsive rules consolidated into main breakpoint blocks above) */
