/* ══════════════════════════════════════════
   common.css
   全ページ共通スタイル
   header (nav) / footer / リセット / ユーティリティ / 装飾
══════════════════════════════════════════ */


/* ══════════════════════════════════════════
   ROOT & RESET
══════════════════════════════════════════ */

/* ── CSS変数 ── */
:root {
  --black:    #161614;
  --white:    #ffffff;
  --off:      #f5f4f0;
  --lg:       #e8e6e1;
  --mg:       #aeacA6;
  --dg:       #5a5855;
  --accent:   #7a9e8e;
  --accent-l: #daeae3;
  --gold:     #b8955a;
  --gold-l:   #f3ead8;
}

/* ── ベースリセット ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body { font-family: 'Noto Sans JP', sans-serif; font-weight: 300; color: var(--black); background: var(--white); line-height: 1.8; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }


/* ══════════════════════════════════════════
   TYPOGRAPHY UTILS
══════════════════════════════════════════ */

.en { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .06em; }
.serif { font-family: 'Noto Sans JP', sans-serif; font-weight: 500; letter-spacing: .04em; }


/* ══════════════════════════════════════════
   CURSOR
══════════════════════════════════════════ */

.cursor { width: 8px; height: 8px; background: var(--black); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: transform .15s, width .3s, height .3s, background .3s; mix-blend-mode: difference; }
.cursor.hover { width: 36px; height: 36px; background: var(--white); }


/* ══════════════════════════════════════════
   NAV — グローバルナビゲーション
══════════════════════════════════════════ */

/* ── ナビ本体 ── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; display: flex; align-items: center; justify-content: space-between; padding: 0 64px; height: 68px; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--lg); backdrop-filter: blur(10px); transition: box-shadow .3s; }
#nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }

/* ── ロゴ ── */
.nav-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 6px; }
.nav-logo-main { font-family: 'Bebas Neue', sans-serif; font-size: 24px; font-weight: 400; letter-spacing: .14em; }
.nav-logo-img { width: 130px; height: auto; display: block; }
.nav-logo-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--dg);
  letter-spacing: .2em;
  line-height: 1;
}

/* ── リンク ── */
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a { font-size: 12px; font-weight: 400; letter-spacing: .08em; color: var(--dg); position: relative; padding-bottom: 2px; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 1px; background: var(--black); transition: right .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

/* ── 大阪ボタン ── */
.nav-osaka { font-size: 11px; font-weight: 500; letter-spacing: .1em; padding: 1px 0 1px 1px; background: linear-gradient(90deg, #b8962a 0%, var(--gold) 40%, #e8c84a 60%, var(--gold) 100%); color: var(--white); border: none; transition: opacity .25s; display: inline-flex; align-items: stretch; overflow: hidden; gap: 0; }
.nav-osaka:hover { opacity: .85; }
.nav-osaka-new { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: .16em; color: var(--gold); background: var(--white); border: 1px solid rgba(184,145,68,.75); padding: 9px 11px 5px; display: flex; align-items: center; justify-content: center; line-height: 1; flex-shrink: 0; position: relative; overflow: hidden; animation: nav-new-glow 2.4s ease-in-out infinite; }
.nav-osaka-new::after { content: ''; position: absolute; top: -10%; left: -100%; width: 70%; height: 120%; background: linear-gradient(105deg, transparent 15%, rgba(255,255,255,.85) 50%, transparent 85%); animation: nav-new-shimmer 2.4s ease-in-out infinite; }
@keyframes nav-new-shimmer { 0%, 15% { left: -100%; } 55%, 100% { left: 150%; } }
@keyframes nav-new-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(184,145,68,.5); } 50% { box-shadow: 0 0 12px 4px rgba(184,145,68,.45); } }
.nav-osaka-label { padding: 10px 17px; display: flex; align-items: center; justify-content: center; }

/* ── エントリーボタン ── */
.nav-entry { font-size: 11px; font-weight: 400; letter-spacing: .16em; padding: 10px 24px; border: 1px solid var(--black); color: var(--black); transition: background .25s, color .25s; }
.nav-entry:hover { background: var(--black); color: var(--white); }

/* ── 右側グループ ── */
.nav-right { display: flex; align-items: center; gap: 10px; }

/* ── ハンバーガー ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--black); }
.hamburger span { transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── モバイルナビ ── */
.nav-mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 490; flex-direction: column; padding: 32px 24px 40px; gap: 0; overflow-y: auto; border-top: 1px solid var(--lg); }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { display: block; font-size: 15px; font-weight: 400; letter-spacing: .06em; color: var(--black); padding: 18px 0; border-bottom: 1px solid var(--lg); text-decoration: none; }
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.nav-mobile-actions a { display: flex; align-items: center; justify-content: center; font-size: 13px; letter-spacing: .12em; padding: 14px; text-align: center; }


/* ══════════════════════════════════════════
   LAYOUT — レイアウト共通
══════════════════════════════════════════ */

.si { max-width: 1200px; margin: 0 auto; padding: 0 80px; }


/* ══════════════════════════════════════════
   SECTION UTILITIES — セクション共通
══════════════════════════════════════════ */

/* ── セクション枠 ── */
.sec { padding: 88px 0; }
.sec-off { background: var(--off); }
.sec-cta { background: linear-gradient(to bottom, rgba(245,244,240,.75) 0%, rgba(234,230,224,.82) 100%), url('../images/bg01.jpeg') center center / cover no-repeat !important; border-top: 1px solid var(--lg); }
.sec + .sec { border-top: 1px solid var(--lg); }

/* ── セクション見出し ── */
.sec-label { font-size: 10px; font-weight: 400; letter-spacing: .24em; color: var(--mg); text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sec-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--mg); }
.sec-en { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 4.5vw, 64px); font-weight: 400; letter-spacing: .08em; color: var(--lg); line-height: 1; margin-bottom: -6px; }
.sec-title { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(22px, 2.4vw, 30px); font-weight: 300; letter-spacing: .04em; margin-bottom: 48px; }


/* ══════════════════════════════════════════
   BUTTONS — 共通ボタン
══════════════════════════════════════════ */

.btn-p { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 400; letter-spacing: .14em; padding: 14px 32px; background: var(--black); color: var(--white); transition: background .25s; }
.btn-p:hover { background: #333; }
.btn-p svg, .btn-o svg { transition: transform .25s; }
.btn-p:hover svg, .btn-o:hover svg { transform: translateX(4px); }
.btn-o { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 400; letter-spacing: .14em; padding: 14px 32px; border: 1px solid var(--black); color: var(--black); transition: background .25s, color .25s; }
.btn-o:hover { background: var(--black); color: var(--white); }
.btn-w { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .14em; padding: 14px 32px; border: 1px solid var(--white); color: var(--white); transition: background .25s, color .25s; }
.btn-w:hover { background: var(--white); color: var(--black); }


/* ══════════════════════════════════════════
   PLACEHOLDER / INFO TABLE — プレースホルダー・情報テーブル
══════════════════════════════════════════ */

/* ── プレースホルダー ── */
.ph { background: var(--lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--mg); }
.ph svg { opacity: .35; }
.ph span { font-size: 11px; letter-spacing: .06em; }

/* ── 情報テーブル ── */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--lg); }
.info-table tr:first-child { border-top: 1px solid var(--lg); }
.info-table th { padding: 18px 0; font-size: 11px; font-weight: 400; letter-spacing: .1em; color: var(--mg); text-align: left; width: 160px; vertical-align: top; }
.info-table td { padding: 18px 0; font-size: 13px; font-weight: 300; line-height: 1.9; }


/* ══════════════════════════════════════════
   SCROLL REVEAL — スクロールアニメーション
══════════════════════════════════════════ */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .35s; }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

/* ── フッター本体 ── */
footer { background: var(--black); padding: 56px 80px 40px; position: relative; overflow: hidden; }
footer::after { content: 'PRESTIGE'; font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 10vw, 120px); font-weight: 400; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.03); position: absolute; right: 32px; bottom: 16px; letter-spacing: .1em; line-height: 1; pointer-events: none; white-space: nowrap; }

/* ── フッター上部 ── */
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 40px; border-bottom: 1px solid #2a2a28; margin-bottom: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 26px; font-weight: 400; letter-spacing: .2em; color: var(--white); }
.footer-logo-img { width: 110px; height: auto; display: block; }
.footer-tagline { font-size: 11px; color: #555; letter-spacing: .08em; }

/* ── フッターナビ ── */
.footer-nav-group { display: grid; grid-template-columns: repeat(3, 140px); gap: 40px; }
.footer-nav-title { font-size: 10px; letter-spacing: .16em; color: #555; margin-bottom: 12px; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a { font-size: 12px; color: #888; letter-spacing: .06em; transition: color .2s; }
.footer-nav-list a:hover { color: var(--white); }

/* ── フッター下部 ── */
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; color: #555; letter-spacing: .06em; transition: color .2s; }
.footer-links a:hover { color: #888; }
.footer-copy { font-size: 11px; color: #555; letter-spacing: .06em; }


/* ══════════════════════════════════════════
   FLOATING OSAKA BUTTON — フローティングボタン
══════════════════════════════════════════ */

#float-osaka { position: fixed; right: 24px; bottom: 100px; z-index: 400; display: flex; flex-direction: column; align-items: center; gap: 0; opacity: 0; transform: translateX(20px); transition: opacity .4s, transform .4s; pointer-events: none; }
#float-osaka.visible { opacity: 1; transform: translateX(0); pointer-events: auto; }
.float-osaka-inner { background: var(--gold); width: 64px; display: flex; flex-direction: column; align-items: center; padding: 16px 8px; gap: 10px; cursor: pointer; transition: background .25s; text-decoration: none; }
.float-osaka-inner:hover { background: #a07840; }
.float-osaka-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; color: var(--white); writing-mode: vertical-rl; text-orientation: mixed; line-height: 1.4; }
.float-osaka-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--white); opacity: .8; animation: blink 1.6s ease infinite; }
.float-osaka-arrow { color: var(--white); opacity: .8; }


/* ══════════════════════════════════════════
   VISUAL ENHANCEMENTS — 共通装飾
══════════════════════════════════════════ */

/* ── ページヒーロー（下層ページ共通） ── */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(16,16,14,.78) 0%, rgba(16,16,14,.52) 60%, rgba(16,16,14,.60) 100%),
    url('../images/under_top.jpeg') center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,158,142,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,90,.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow { font-size: 10px; font-weight: 400; letter-spacing: .24em; color: var(--accent); text-transform: uppercase; display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--accent); }
.page-hero-en { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 6vw, 88px); font-weight: 400; color: rgba(255,255,255,.18); line-height: 1; margin-bottom: -8px; letter-spacing: .06em; }
.page-hero-title { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(28px, 3vw, 40px); font-weight: 300; letter-spacing: .04em; margin-bottom: 20px; color: var(--white); }
.page-hero-desc { font-size: 14px; color: rgba(255,255,255,.70); line-height: 2.2; max-width: 640px; }

/* ── ページヒーロー SVGデコアクセント ── */
.page-hero-deco { position: absolute; top: 0; right: 0; bottom: 0; width: 45%; pointer-events: none; overflow: hidden; opacity: .5; }
.page-hero-deco svg { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); }

/* ── セクション背景ストライプ装飾 ── */
.sec-off, .section-off { position: relative; overflow: hidden; }
.sec-off::before, .section-off::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(122,158,142,.025) 40px,
    rgba(122,158,142,.025) 41px
  );
  pointer-events: none;
}

/* ── 大型英字デコレーション ── */
.sec-deco-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,.055);
  line-height: 1;
  letter-spacing: .04em;
  pointer-events: none;
  user-select: none;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

/* ── ヒーロー左カラム装飾 ── */
.hero-left { background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%); position: relative; overflow: hidden; }
.hero-left::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,158,142,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── CTA / sec-cta 装飾 ── */
.sec-cta, #cta { position: relative; overflow: hidden; }
.sec-cta::before, #cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(122,158,142,.10) 0%,
    rgba(184,149,90,.05) 45%,
    transparent 70%
  );
  pointer-events: none;
}
.sec-cta .sec-en, .sec-cta .cta-en, #cta .sec-en, #cta .cta-en {
  color: rgba(22,22,20,.20) !important;
  -webkit-text-stroke: 1px rgba(22,22,20,.25);
}

/* ── セクション区切りドット ── */
.sec-dot-divider { display: flex; align-items: center; justify-content: center; height: 1px; background: var(--lg); position: relative; }
.sec-dot-divider::before { content: ''; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); left: 50%; transform: translateX(-50%); top: -3px; }

/* ── #numbers ホバー装飾 ── */
#numbers .num-item { position: relative; overflow: hidden; }
#numbers .num-item::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity .4s; }
#numbers .num-item:hover::before { opacity: 1; }


/* ══ レスポンシブ: 1024px以下 ══ */
@media (max-width: 1024px) {
  #nav { padding: 0 40px; }
  .si { padding: 0 48px; }
  footer { padding: 48px 48px 32px; }
  .info-table th { width: 140px; }
}

/* ══ レスポンシブ: 768px以下 ══ */
@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-logo { gap: 4px; margin-top: 4px; }
  .nav-logo-img { width: 110px; }
  .nav-logo-sub { font-size: 9px; letter-spacing: .16em; }
  .si { padding: 0 20px; }
  .sec { padding: 56px 0; }
  .sec-en { font-size: clamp(32px, 8vw, 48px); }
  .sec-title { font-size: clamp(18px, 4vw, 24px); margin-bottom: 36px; }
  .page-hero { padding: 96px 0 44px; }
  .page-hero-en { font-size: clamp(44px, 10vw, 64px); }
  .page-hero-title { font-size: clamp(22px, 5vw, 30px); }
  .page-hero-desc { font-size: 13px; line-height: 2; }
  footer { padding: 40px 20px 28px; }
  footer::after { display: none; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-nav-group { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  #float-osaka { right: 16px; bottom: 80px; }
  .info-table th { width: 100px; font-size: 11px; padding: 14px 0; }
  .info-table td { font-size: 12px; padding: 14px 0; line-height: 1.8; }
  .btn-p, .btn-o { padding: 13px 24px; }
}

/* ══ レスポンシブ: 480px以下 ══ */
@media (max-width: 480px) {
  .si { padding: 0 16px; }
  .sec { padding: 44px 0; }
  .sec-title { margin-bottom: 28px; }
  .page-hero { padding: 84px 0 36px; }
  .page-hero-desc { font-size: 12px; }
  .footer-nav-group { grid-template-columns: 1fr; }
  .info-table th { width: 80px; padding: 12px 0; }
  .info-table td { padding: 12px 0; font-size: 12px; }
  .btn-p, .btn-o { padding: 12px 20px; letter-spacing: .1em; }
}


/* ══════════════════════════════════════════
   SECTION — TOPページ系レイアウト（front-page / recruit 共用）
══════════════════════════════════════════ */

/* ── セクション枠 ── */
.section { padding: 100px 0; }
.section-off { background: var(--off); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 80px; }

/* ── セクション見出し ── */
.section-head { margin-bottom: 60px; }
.section-label { font-size: 10px; font-weight: 400; letter-spacing: .24em; color: var(--mg); text-transform: uppercase; display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--mg); }
.section-title { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(24px, 2.4vw, 32px); font-weight: 300; letter-spacing: .04em; line-height: 1.5; }
.section-title-en { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 4.5vw, 64px); font-weight: 400; letter-spacing: .08em; color: var(--lg); line-height: 1; margin-bottom: -8px; }


/* ══════════════════════════════════════════
   BUTTONS — TOPページ系ボタン（front-page / recruit 共用）
══════════════════════════════════════════ */

.btn-primary { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 400; letter-spacing: .14em; padding: 14px 32px; background: var(--black); color: var(--white); transition: background .25s; }
.btn-primary:hover { background: #333; }
.btn-primary svg { transition: transform .25s; }
.btn-primary:hover svg { transform: translateX(4px); }


/* ══════════════════════════════════════════
   RECRUIT POSITIONS — 募集職種（front-page / recruit 共用）
══════════════════════════════════════════ */

#recruit .recruit-list { display: flex; flex-direction: column; border-top: 1px solid var(--lg); }
.recruit-item { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--lg); transition: background .2s; cursor: pointer; }
.recruit-item:hover { background: var(--off); padding-left: 12px; padding-right: 12px; margin: 0 -12px; }
.recruit-tag-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.rtag { font-size: 10px; letter-spacing: .1em; padding: 3px 10px; border: 1px solid var(--lg); color: var(--dg); }
.rtag-new { background: var(--accent-l); border-color: var(--accent); color: var(--accent); }
.rtag-osaka { background: var(--gold-l); border-color: var(--gold); color: var(--gold); }
.recruit-info { display: flex; flex-direction: column; gap: 4px; }
.recruit-title { font-size: 15px; font-weight: 500; letter-spacing: .04em; }
.recruit-meta { font-size: 12px; color: var(--dg); letter-spacing: .04em; }
.recruit-arrow { width: 36px; height: 36px; border: 1px solid var(--lg); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .25s, border-color .25s; flex-shrink: 0; }
.recruit-item:hover .recruit-arrow { background: var(--black); border-color: var(--black); }
.recruit-item:hover .recruit-arrow svg { stroke: var(--white); }


/* ══════════════════════════════════════════
   レスポンシブ（上記共用ブロック）
══════════════════════════════════════════ */

/* ══ 1024px以下 ══ */
@media (max-width: 1024px) {
  .section-inner { padding: 0 48px; }
  .recruit-item { grid-template-columns: 120px 1fr auto; gap: 20px; }
}

/* ══ 768px以下 ══ */
@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  .section-inner { padding: 0 !important; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: clamp(20px, 4.5vw, 26px); }
  .section-title-en { font-size: clamp(32px, 8vw, 48px); }
  .recruit-item { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .recruit-title { font-size: 13px; }
  .recruit-arrow { display: none; }
}

/* ══ 480px以下 ══ */
@media (max-width: 480px) {
  .section { padding: 48px 16px; }
  .btn-primary { font-size: 11px; padding: 12px 20px; }
}
