/* =========================================================
   Gallery Air – light greige / airy / minimal
   - MV背景維持（Ken Burns / パララックスも現状のまま）
   - ヘッダー：初期は透明、スクロール後だけ淡背景＋ヘアライン
   - Works：整然グリッド（写真主役、余白広め、影ゼロ）
   ========================================================= */

   :root{
    /* Palette */
    --bg:#ffffff;           /* ページ基調 */
    --tone:#F7F6F4;         /* セクションの淡い面（グレージュ） */
    --ink:#121314;          /* 本文 */
    --ink-2:#676C71;        /* 補助テキスト */
    --line:rgba(0,0,0,.08); /* ヘアライン */

    /* Layout */
    --container:1160px;
    --header-h:66px;
    --hero-h:100svh;        /* JSで実測pxに更新（main押し出し同期） */

    /* Type（小さめ） */
    --fz-11:11px; --fz-12:12px; --fz-13:13px; --fz-14:14px; --fz-16:16px; --fz-28:28px; --fz-34:34px; --fz-48:48px;
    --lh:1.8;

    --radius:4px;
  }

/* Base */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;                              /* ← 上の隙間対策 */
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif !important;
  font-feature-settings: "palt" 1, "pkna" 1;  /* 約物/カナの詰めを最適化 */  color:var(--ink); background:var(--bg);
  line-height:var(--lh); font-size:var(--fz-14);
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{ display:block; max-width:100%; height:auto; object-fit:cover; }
a{ color:inherit; text-decoration:none; }
a:focus-visible,button:focus-visible,[tabindex]:focus-visible{ outline:2px solid #111; outline-offset:3px; border-radius:3px; }

.container{ width:min(var(--container), 90vw); margin-inline:auto; }
.section{ padding:clamp(64px,8vh,100px) 0; position:relative; z-index:1; background:var(--bg); }
.center{ text-align:center; }

/* Type */
.h2{ font-size:clamp(24px,2.8vw,var(--fz-34)); line-height:1.3; margin:0 0 24px; font-weight:700; letter-spacing:-.01em; }
.lead{ font-size:clamp(13px,1.4vw,15px); color:var(--ink-2); margin:0 0 20px; line-height:1.9; }
.eyebrow{ font-size:var(--fz-11); letter-spacing:.22em; text-transform:uppercase; color:#8f9498; margin:0 0 6px; }
.ja{ display:block; font-family:"Noto Serif JP","Hiragino Mincho ProN","Yu Mincho","MS PMincho",serif; font-size:13px; line-height:1.7; letter-spacing:.08em; color:#7b8187; margin-top:4px; }

/* Grid */
.grid{ display:grid; gap:26px; }
.grid--2col{ grid-template-columns:1fr; }
.grid--rev{ direction:rtl; } .grid--rev>*{ direction:ltr; }
@media (min-width:760px){ .grid--2col{ grid-template-columns:1fr 1fr; } }

/* Header – 初期透明 → スクロール後だけ背景 */
.site-header{
  position:sticky; top:0; z-index:1000; margin:0;               /* ← 上の隙間対策 */
  background:transparent; border-bottom:1px solid transparent;  /* 初期は完全クリア */
  transition: background .18s ease, border-color .18s ease, backdrop-filter .18s ease;
  backdrop-filter:none;
}
.site-header.is-scrolled{
  background:rgb(36 36 36 / 82%);           /* スクロール後、淡い背景 */
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(8px) saturate(140%);
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.site-header__inner{ display:flex; align-items:center; justify-content:space-between; height:var(--header-h); }
.brand__img{ height:32px; width:auto; }
@media (min-width:960px){ .brand__img{ height:36px; } }

/* Nav（下線だけ・最小） */
.gnav{ display:none; }
@media (min-width:960px){ .gnav{ display:block; } }
.gnav__list{ list-style:none; display:flex; gap:22px; margin:0; padding:0; align-items:center; }
.gnav__link{
  padding:6px 0; position:relative; font-weight:600; letter-spacing:.01em; font-size:var(--fz-13); color:#fff;
  display:flex; flex-direction:column; align-items:center;
}
/* ナビ内 .ja：スクロール前は非表示 */
.gnav__link .ja{
  display:block; font-size:10px; line-height:1; margin-top:2px; color:rgba(255,255,255,.85);
  max-height:0; opacity:0; overflow:hidden;
  transition:max-height .4s cubic-bezier(.22,1,.36,1), opacity .4s ease, margin .4s ease;
}
.site-header.is-scrolled .gnav__link .ja{
  max-height:20px; opacity:1; margin-top:4px;
}
.gnav__link::after{ content:""; position:absolute; left:0; right:0; bottom:-8px; height:1px; background:currentColor;
  transform:scaleX(0); transform-origin:left; transition:transform .18s ease; opacity:.8; }
  .gnav__link:hover::after{ transform:scaleX(1); }
  .has-children{ position:relative; }
  .dropdown{
    position:absolute; right:0; top:100%; background:#fff; padding:6px 0; margin:0; list-style:none;
    border:1px solid var(--line); border-radius:6px; opacity:0; transform:translateY(-6px); pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
  }
  .dropdown li a{ display:block; padding:9px 12px; font-weight:500; font-size:var(--fz-13); color:var(--ink); }
  @media (hover:hover){ .has-children:hover .dropdown{ opacity:1; transform:translateY(0); pointer-events:auto; } }

/* Hamburger */
.hamburger{ display:inline-flex; flex-direction:column; gap:6px; width:40px; height:36px; align-items:center; justify-content:center; background:transparent; border:0; cursor:pointer; }
.hamburger span{ display:block; width:28px; height:1px; background:#fff; }
.hamburger span:last-child{ display:none; }
@media (min-width:960px){ .hamburger{ display:none; } }

/* Drawer – 全画面グラス */
.drawer[hidden]{ display:none; }
.drawer{
  position:fixed; inset:0; z-index:1100;
  background:rgba(20,20,20,.7);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  opacity:0; transition:opacity .35s ease;
}
.drawer.is-open{ opacity:1; }
.drawer__overlay{ position:absolute; inset:0; }
.drawer__panel{
  position:relative; width:100%; height:100%;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
}
.drawer__close{
  position:absolute; top:16px; right:20px;
  background:transparent; border:0; font-size:32px; line-height:1; color:#fff; cursor:pointer; z-index:1;
}
.drawer__logo{
  margin-bottom:clamp(24px,4vh,40px);
}
.drawer__logo img{
  height:36px; width:auto;
}
.mnav__list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; align-items:center; gap:0;
}
.mnav__link{
  display:block; padding:16px 0; text-align:center;
  font-family:"Noto Serif JP","Hiragino Mincho ProN","Yu Mincho","MS PMincho",serif;
  font-size:clamp(18px,4.5vw,24px); font-weight:600; color:#fff;
  letter-spacing:.04em; text-decoration:none; border-bottom:none;
}
.mnav__link .ja{
  display:block; font-size:11px; color:rgba(255,255,255,.6);
  margin-top:4px; letter-spacing:.08em; font-weight:400;
}
.mnav__submenu{ display:none !important; }
.mnav__item--has-sub .mnav__submenu{ display:none !important; }

/* ドロワー下部：電話・営業時間 */
.drawer__info{
  margin-top:clamp(24px,4vh,40px);
}
.drawer__tel{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  padding:14px 28px; border:1px solid rgba(255,255,255,.5); border-radius:8px;
  color:#fff; text-decoration:none;
}
.drawer__tel-number{
  font-family:"Inter",sans-serif;
  font-size:clamp(18px,4.5vw,22px); font-weight:600; letter-spacing:.04em;
}
.drawer__tel-hours{
  font-size:11px; opacity:.7; letter-spacing:.04em;
}

/* HERO（MV） – 背景ダイナミックは維持、タイプ控えめ */
.hero{
  position:fixed; inset:0 0 auto 0; height:var(--hero-h);
  display:grid; place-items:center; color:#fff; z-index:0;
}
.hero__slides{ position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.hero__img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform:scale(1.06); opacity:0; transition:opacity 1s ease; animation:zoom 12s ease-in-out infinite;
  filter:contrast(.92) brightness(.74); /* 明るめ寄せで“Air” */
}
.hero__img.is-active{ opacity:1; }
@keyframes zoom{ 0%{transform:scale(1.06);} 100%{transform:scale(1.12);} }

.hero__content{ position:relative; z-index:2; text-align:center; }
.hero__title{ font-size:clamp(37px,5.8vw,70px); margin:0 0 6px; letter-spacing:-.01em; text-shadow:0 8px 28px rgba(0,0,0,.28); }
.hero__lead{ font-size:clamp(20px,1.6vw,22px); margin:0 0 14px; opacity:.92; }

/* Scroll indicator */
.hero__scroll{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px; z-index:2;
}
@media(max-width:768px){
  .hero__scroll{ bottom:22%; }
}
.hero__scroll-text{
  font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:#fff; opacity:.7;
}
.hero__scroll-line{
  display:block; width:1px; height:40px; background:rgba(255,255,255,.4); position:relative; overflow:hidden;
}
.hero__scroll-line::after{
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background:#fff;
  animation:scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown{
  0%{ top:-100%; }
  50%{ top:0; }
  100%{ top:100%; }
}
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:8px 12px; border-radius:999px; font-weight:600; border:1px solid rgba(255,255,255,.4); cursor:pointer; font-size:var(--fz-13); color:#fff; background:transparent; }
.btn--solid{ background:#111; color:#fff; border-color:transparent;margin:30px 0 0 0; }
.btn--ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.btn--light{ background:#fff; color:#111; }

/* Fixed CTA（右下固定） */
.fixed-cta-group{
  position:fixed; right:20px; bottom:20px; z-index:900;
  display:flex; flex-direction:row; gap:10px; align-items:center;
}
.fixed-cta{
  display:flex; align-items:center; gap:8px;
  padding:16px 28px; border-radius:999px;
  background:transparent; color:#fff; text-decoration:none;
  font-size:var(--fz-16); font-weight:600; letter-spacing:.02em;
  border:1.5px solid rgba(255,255,255,.7);
  box-shadow:none;
  transition:background .4s ease, border-color .4s ease, box-shadow .4s ease, transform .25s ease;
}
.fixed-cta-group.is-scrolled .fixed-cta{
  background:#111; border-color:transparent;
  box-shadow:0 4px 20px rgba(0,0,0,.25);
}
.fixed-cta:hover{ background:#333; border-color:transparent; transform:translateY(-2px); }
.fixed-cta__icon{ font-size:20px; line-height:1; }
.fixed-cta__label{ line-height:1; }
.fixed-cta__label--sp{ display:none; }
@media(max-width:768px){
  .fixed-cta-group{ right:12px; bottom:12px; gap:8px; }
  .fixed-cta{
    padding:10px 18px; font-size:var(--fz-12);
  }
  .fixed-cta__icon{ font-size:15px; }
  .fixed-cta__label--pc{ display:none; }
  .fixed-cta__label--sp{ display:inline; }
}

/* MVの下から開始（押し出し） */
main{ padding-top:var(--hero-h); position:relative; z-index:1; background:var(--bg); }

/* “Air”セクション（淡い面・線ほぼ無し） */
.section.section--overlay{ background:var(--tone); color:var(--ink); padding:64px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section.section--overlay .bg{ display:none; } /* MV以外では背景写真は使わない */
.tiles{ display:none; } /* カテゴリカードは出さず、写真グリッドを主役に */

/* ===== Works: 4列 → 2列(各2カラム幅) → 4列  ===== */
#works .carousel__arrow{ display:none !important; } /* 矢印は非表示 */
#works .carousel__track{
  display:grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 !important;
  overflow: visible !important;
  scroll-snap-type: none !important;
}

/* 1段目: 1〜4枚 = 4分割（デフォルトのまま） */

/* 2段目: 5・6枚目を 2カラムずつ（=2分割） */
#works .carousel__track > .card:nth-child(5){ grid-column: 1 / span 2; }
#works .carousel__track > .card:nth-child(6){ grid-column: 3 / span 2; }

/* 以降は通常の4分割で折返し */

/* ===== Card (枠線・角丸なし／写真は横幅MAX) ===== */
#works .carousel__track > .card{
  background:#fff;
  border:none;
  border-radius:0;
  overflow:visible;
}
#works .carousel__track > .card:hover .card__media img{
  transform:scale(1.04);
}

#works .card__media{ margin:0; overflow:hidden; }
#works .card__media img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity:0;
  transform:scale(1.15);
  transition:opacity .8s cubic-bezier(.45,.03,.51,.95), transform .8s cubic-bezier(.45,.03,.51,.95);
}
#works .card.is-in .card__media img{
  opacity:1;
  transform:scale(1);
}

/* メタ/タイトルの余白だけ整える（必要最小） */
#works .card__meta{ display:flex; gap:10px; align-items:center; padding:10px 0 6px; font-size:12px; color:#676C71; }
#works .card__title{ margin:0; padding:0 0 10px; font-size:16px; font-weight:700; }

/* レスポンシブ：<1024px は2列、span解除 / <600px は1列 */
@media (max-width:1023.98px){
  #works .carousel__track{ grid-template-columns: repeat(2, 1fr); gap:24px; }
  #works .carousel__track > .card:nth-child(5),
  #works .carousel__track > .card:nth-child(6){ grid-column:auto; }
}
@media (max-width:599.98px){
  #works .carousel__track{ grid-template-columns:1fr; }
}

/* ===== Scroll Animation: neo（tilt + blur + up） ===== */
.sa-neo{
  opacity:0;
  transform: translate3d(0,22px,0) scale(.985) rotateX(6deg);
  filter: blur(6px);
  transform-origin:50% 100%;
  transition: opacity .7s cubic-bezier(.2,.65,.2,1),
             transform .7s cubic-bezier(.2,.65,.2,1),
             filter .7s cubic-bezier(.2,.65,.2,1);
  will-change: opacity, transform, filter;
  backface-visibility:hidden;
}
.sa-neo.is-in{ opacity:1; transform:none; filter: blur(0); }

.sa-neo-stagger > *{
  opacity:0;
  transform: translate3d(0,22px,0) scale(.985) rotateX(6deg);
  filter: blur(6px);
  transform-origin:50% 100%;
  transition: opacity .7s cubic-bezier(.2,.65,.2,1),
             transform .7s cubic-bezier(.2,.65,.2,1),
             filter .7s cubic-bezier(.2,.65,.2,1);
  will-change: opacity, transform, filter;
  backface-visibility:hidden;
}
.sa-neo-stagger.is-in > *{ opacity:1; transform:none; filter: blur(0); }
.sa-neo-stagger.is-in > *{ transition-delay: var(--neo-delay, 0ms); }

@media (prefers-reduced-motion:reduce){
  .sa-neo, .sa-neo-stagger > *{ opacity:1!important; transform:none!important; filter:none!important; transition:none!important; }
}

/* Contact / News / Access – 低コントラストで静かに */
.section--accent{ background:var(--tone); color:var(--ink); padding:72px 0; }
.news{ list-style:none; padding:0; margin:0; border-top:1px solid var(--line); }
.news li{ border-bottom:1px solid var(--line); }
.news a{ display:grid; grid-template-columns:120px 1fr; gap:22px; align-items:center; padding:12px 2px; font-size:var(--fz-14); color:var(--ink); }
.news time{ color:var(--ink-2); font-size:var(--fz-12); }

.map-embed{ aspect-ratio:16/9; background:#eee; position:relative; overflow:hidden; border-radius:3px; }
.map-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.company{ font-size:var(--fz-18); font-weight:700; margin:0 0 6px; letter-spacing:-.01em; }
.addr{ font-style:normal; color:#686E73; font-size:var(--fz-14); }

/* Footer */
/* =========================================================
   Mega Footer
   ========================================================= */
.mega-footer{ position:relative; z-index:1; overflow:hidden; }

/* 無限スライド（背景として配置） */
.mega-footer__slider{
  position:absolute; inset:0; z-index:0; overflow:hidden;
}
.mega-footer__track{
  display:flex; gap:0; width:max-content; height:100%;
  animation:footerSlide 60s linear infinite;
}
.mega-footer__track img{
  display:block; height:100%; width:auto; object-fit:cover; flex-shrink:0;
}
@keyframes footerSlide{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* コンテンツ（写真の上に被せる） */
.mega-footer__body{
  position:relative; z-index:1;
  min-height:clamp(360px,44vw,560px);
  display:flex; align-items:center;
  padding:clamp(24px,4vw,48px);
}
.mega-footer__content{
  background:rgba(255,255,255,.94);
  padding:40px 44px 24px;
  display:flex; flex-direction:column; justify-content:space-between;
  width:clamp(300px,36vw,480px); flex-shrink:0;
  border-radius:4px;
  min-height:clamp(280px,34vw,440px);
}
.mega-footer__brand{ margin-bottom:32px; }
.mega-footer__brand .brand__img--footer{ height:44px; width:auto; filter:invert(1); }
.mega-footer__nav{
  display:flex; gap:40px; margin-bottom:auto;
}
.mega-footer__nav ul{
  list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:16px;
}
.mega-footer__nav a{
  font-family:"Noto Serif JP","Hiragino Mincho ProN","Yu Mincho","MS PMincho",serif;
  font-size:var(--fz-14); font-weight:600; color:var(--ink); text-decoration:none; letter-spacing:.02em;
}
.mega-footer__nav a:hover{ opacity:.6; }
.mega-footer__nav .ja{
  display:block; font-size:11px; font-weight:400; color:#888; margin-top:2px; letter-spacing:.06em;
}
.mega-footer__copyright{
  margin-top:32px; padding-top:16px; border-top:1px solid rgba(0,0,0,.1);
  font-size:var(--fz-12); color:#888;
}
@media(max-width:768px){
  .mega-footer__body{ flex-direction:column; }
  .mega-footer__content{ width:100%; padding:32px 20px 60px; }
  .mega-footer__nav{ gap:28px; }
}

/* Parallax（土台は維持。JSがtransform上書き） */
[data-parallax]{ overflow:hidden; }
[data-parallax] img{
  width:100%; height:100%; object-fit:cover; display:block;
  will-change:transform;
  transform:translate3d(0,0,0) scale(1.12);
}
@media (max-width:768px),(prefers-reduced-motion:reduce){
  [data-parallax] img{ transform:none !important; }
}

/* Utilities */
:target{ scroll-margin-top: calc(var(--header-h) + 12px); }
body{ overflow-x:hidden; }

/* sa（下からふわっと） */
.sa{
  opacity:0;
  transform: translate3d(0,16px,0);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.sa.is-in{
  opacity:1;
  transform:none;
}

/* sa-stagger（子要素を段差で） */
.sa-stagger > *{
  opacity:0;
  transform: translate3d(0,16px,0);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.sa-stagger.is-in > *{
  opacity:1;
  transform:none;
}
/* 遅延はJSで子へtransition-delayを設定（data-sa-base/step） */

@media (prefers-reduced-motion:reduce){
  .sa, .sa-stagger > *{ opacity:1!important; transform:none!important; transition:none!important; }
}

/* ==== About：背景を白フィルターで薄く／中央寄せ／日本語のみ ==== */
.about-hero{
  --about-bg: url("images/aboutus.jpeg");
  position: relative;
  padding: clamp(100px, 18vh, 220px) 0 clamp(60px, 10vh, 100px);
  text-align: center;
  color: #111;
  overflow: hidden;
}
.about-hero__bg{
  position:absolute; inset:0; z-index:0;
  background-image: var(--about-bg);
  background-size: cover; background-position: center;
  transform: scale(1.04);
  filter: saturate(.9);
}
/* 白フィルター：下に行くほど白く */
.about-hero.is-light::before{
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.65) 0%,
    rgba(255,255,255,.8) 40%,
    rgba(255,255,255,.95) 80%,
    rgba(255,255,255,1) 100%
  );
}

.about-hero__inner{
  position: relative; z-index:1;
  padding: 0 16px;
  max-width: 860px;
  margin-inline: auto;
}

/* タイトル＆テキスト（明朝・黒） */
.about-eyebrow{
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: .22em;
  margin: 0 0 18px;
}
.about-title{
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  margin: 0 0 32px;
}
.about-text{
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.9;
  margin: 0 0 20px;
  color:#111;
}

/* flow-reveal 初期状態 */
.flow-reveal{
  opacity:0;
  filter:blur(6px);
  transform:translateX(-10px);
  clip-path:inset(0 100% 0 0);
  transition:
    opacity .8s cubic-bezier(.2,.65,.2,1),
    filter .8s cubic-bezier(.2,.65,.2,1),
    transform .8s cubic-bezier(.2,.65,.2,1),
    clip-path 1.1s cubic-bezier(.2,.65,.2,1);
  will-change:opacity,filter,transform,clip-path;
}
/* 表示状態 */
.flow-reveal.is-in{
  opacity:1;
  filter:none;
  transform:none;
  clip-path:inset(0 0 0 0);
}
@media (prefers-reduced-motion:reduce){
  .flow-reveal{ opacity:1!important; filter:none!important; transform:none!important; clip-path:inset(0 0 0 0)!important; transition:none!important; }
}

/* =========================================================
   Recruit Hero – フルブリード背景
   ========================================================= */
.recruit-hero{
  position:relative;
  min-height:clamp(400px,60vh,600px);
  display:flex; align-items:center; justify-content:center;
  text-align:center; color:#fff; overflow:hidden;
}
.recruit-hero__bg{
  position:absolute; inset:0; z-index:0;
  background:url('images/rec.jpg') center/cover no-repeat;
  filter:brightness(.4) saturate(.9);
}
.recruit-hero__inner{
  position:relative; z-index:1;
  max-width:700px; padding:0 16px;
}
.recruit-hero__title{
  font-family:"Noto Serif JP","Hiragino Mincho ProN","Yu Mincho","MS PMincho",serif;
  font-size:clamp(32px,4vw,52px); font-weight:700;
  letter-spacing:-.01em; margin:0 0 12px;
}
.recruit-hero__subtitle{
  font-family:"Noto Serif JP","Hiragino Mincho ProN","Yu Mincho","MS PMincho",serif;
  font-size:clamp(16px,2vw,22px); letter-spacing:.08em;
  margin:0 0 28px; opacity:.9;
}
.recruit-hero__lead{
  font-size:clamp(12px,1.2vw,14px); line-height:1.9;
  letter-spacing:.04em; opacity:.8; margin:0 0 32px;
}
.recruit-hero__lead-ja{
  display:inline; margin-left:0;
}

/* =========================================================
   Name Origin v1 (backup – commented out)
   =========================================================
.name-origin{ padding:100px 0; background:var(--tone); position:relative; z-index:1; }
.name-origin__visual{ display:flex; align-items:stretch; justify-content:center; gap:0; max-width:700px; margin:0 auto 40px; }
.name-origin__card{ flex:1; padding:40px 24px; text-align:center; position:relative; }
.name-origin__card--left{ background:var(--ink); color:#fff; border-radius:6px 0 0 6px; }
.name-origin__card--right{ background:#c8271e; color:#fff; border-radius:0 6px 6px 0; }
.name-origin__en{ font-family:"Inter","Noto Sans JP",sans-serif; font-size:clamp(32px,4vw,44px); font-weight:700; letter-spacing:.04em; line-height:1.1; margin:0 0 12px; }
.name-origin__meaning{ font-size:var(--fz-13); letter-spacing:.08em; opacity:.85; margin:0 0 4px; }
.name-origin__meaning-ja{ font-family:"Noto Sans JP",sans-serif; font-size:var(--fz-16); font-weight:500; letter-spacing:.1em; margin:0; }
.name-origin__connector{ display:flex; align-items:center; justify-content:center; width:0; position:relative; z-index:2; }
.name-origin__connector span{ display:flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; background:#fff; color:var(--ink); font-family:"Inter",sans-serif; font-size:18px; font-weight:700; box-shadow:0 2px 12px rgba(0,0,0,.12); flex-shrink:0; }
.name-origin__body{ text-align:center; max-width:560px; margin:0 auto; }
.name-origin__brand{ font-family:"Inter","Noto Sans JP",sans-serif; font-size:clamp(18px,2.4vw,24px); font-weight:700; letter-spacing:.06em; margin:0 0 12px; color:var(--ink); }
.name-origin__brand em{ font-style:normal; color:#c8271e; }
.name-origin__desc{ font-family:"Noto Sans JP",sans-serif; font-size:var(--fz-14); color:var(--ink-2); line-height:2; margin:0; }
*/

/* =========================================================
   Name Origin v2 – ダイナミック黒赤アニメーション
   ========================================================= */
.no2{
  position:relative; z-index:1; overflow:hidden;
  min-height:clamp(420px,60vh,600px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:#fff;
}

/* 背景パネル（写真 + 半透過の黒・赤） */
.no2__bg{ position:absolute; inset:0; display:flex; }
.no2__bg-left,
.no2__bg-right{
  width:50%; position:relative; overflow:hidden;
  transition:transform 1s cubic-bezier(.22,1,.36,1);
}
.no2__bg-left{ transform:translateX(-100%); }
.no2__bg-right{ transform:translateX(100%); }
.no2.is-in .no2__bg-left,
.no2.is-in .no2__bg-right{
  transform:translateX(0);
}
.no2__bg-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.no2__bg-left::after,
.no2__bg-right::after{
  content:''; position:absolute; inset:0; z-index:1;
}
.no2__bg-left::after{ background:rgba(17,17,17,.9); }
.no2__bg-right::after{ background:rgba(200,39,30,.88); }

/* コンテンツ */
.no2__content{
  position:relative; z-index:1;
  text-align:center; width:100%;
  opacity:0; transform:translateY(16px);
  transition:opacity .7s ease .8s, transform .7s ease .8s;
}
.no2.is-in .no2__content{
  opacity:1; transform:none;
}

/* 上段：In + Pal（黒赤背景の上、白文字） */
.no2__top{
  display:flex; align-items:center; justify-content:center; gap:0;
  color:#fff;
  padding:clamp(40px,6vh,80px) 0;
}
.no2__label{ text-align:center; flex:1; max-width:50%; }
.no2__en{
  font-family:"Inter","Noto Sans JP",sans-serif;
  font-size:clamp(48px,7vw,88px); font-weight:700;
  letter-spacing:.04em; line-height:1; margin:0 0 8px;
}
.no2__sub{
  font-size:clamp(13px,1.4vw,16px); letter-spacing:.1em; opacity:.8; margin:0 0 2px;
}
.no2__sub-ja{
  font-family:"Noto Serif JP","Hiragino Mincho ProN",serif;
  font-size:clamp(14px,1.6vw,18px); font-weight:500; letter-spacing:.12em; margin:0;
}

/* +マーク（白丸・黒文字・完全中央） */
.no2__plus{
  display:flex; align-items:center; justify-content:center;
  width:clamp(48px,5vw,64px); height:clamp(48px,5vw,64px);
  border-radius:50%; background:#fff; flex-shrink:0;
  font-family:"Inter",sans-serif;
  font-size:clamp(24px,2.5vw,32px); font-weight:700; color:#111; line-height:1;
  box-shadow:0 2px 16px rgba(0,0,0,.15);
}

/* 下段テキスト（白背景・黒文字） */
.no2__bottom{
  display:flex; justify-content:center;
  padding:clamp(32px,5vh,56px) 16px;
}
.no2__bottom-inner{
  background:#fff; border-radius:4px;
  padding:clamp(24px,3vh,40px) clamp(32px,4vw,56px);
  max-width:560px; text-align:center;
}
.no2__brand{
  font-family:"Inter","Noto Sans JP",sans-serif;
  font-size:clamp(20px,2.6vw,28px); font-weight:700;
  letter-spacing:.06em; margin:0 0 14px; color:#111;
}
.no2__brand em{ font-style:normal; color:#c8271e; }
.no2__desc{
  font-family:"Noto Serif JP","Hiragino Mincho ProN",serif;
  font-size:clamp(13px,1.2vw,15px); line-height:2; color:#555; margin:0;
  letter-spacing:.06em;
}

@media(max-width:600px){
  .no2__top{ gap:0; }
  .no2__label{ flex:1; }
}

