/* ============================================================
   RECRUIT PAGE — 専門人材紹介（ページ固有スタイル）
   ============================================================ */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

.section-tag {
  display: inline-block; font-size: 10px; font-weight: 500; color: var(--gold);
  letter-spacing: .22em; margin-bottom: 12px; font-family: 'Montserrat', sans-serif;
}
.section-title {
  font-family: 'Noto Serif JP', serif; font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600; color: var(--navy-ink); line-height: 1.45; letter-spacing: .04em;
}
.section-sub { margin-top: 16px; font-size: 14px; color: var(--text-secondary); line-height: 2; }

/* HERO */
.talent-hero {
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy-dark) 48%, var(--navy-mid) 78%, var(--navy) 100%);
  min-height: 540px; display: flex; align-items: center;
  padding: 120px 40px 90px; position: relative; overflow: hidden;
}
.talent-hero::before {
  content: 'TALENT'; position: absolute; top: 50%; right: 20px; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif; font-size: 90px; font-weight: 300;
  color: rgba(255,255,255,.04); letter-spacing: .1em; line-height: 1;
  pointer-events: none; user-select: none;
}
.talent-hero::after {
  content: ''; position: absolute; top: -60px; right: 220px; width: 280px; height: 280px;
  border-radius: 50%; border: 1px solid rgba(200,160,32,.1); pointer-events: none;
}
.hero-deco-line {
  position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(200,160,32,.2) 100%);
}
.talent-hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.talent-hero-tag {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 500;
  color: var(--gold); letter-spacing: .28em; margin-bottom: 18px; display: block;
}
.talent-hero-title {
  font-family: 'Noto Serif JP', serif; font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 600; color: var(--white); line-height: 1.55; letter-spacing: .05em; margin-bottom: 20px;
}
.talent-hero-title .gold-line { color: var(--gold); }
.talent-hero-lead {
  font-size: 14px; color: rgba(255,255,255,.65); line-height: 2.2; margin-bottom: 32px;
}
.talent-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-g {
  font-size: 13px; font-weight: 500; color: var(--navy-ink); background: var(--gold);
  border: none; padding: 14px 28px; border-radius: var(--radius-sm);
  letter-spacing: .07em; transition: background .2s, transform .15s;
}
.btn-hero-g:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-hero-o {
  font-size: 13px; color: var(--white); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.28); padding: 13px 28px; border-radius: var(--radius-sm);
  letter-spacing: .07em; transition: background .2s, transform .15s;
}
.btn-hero-o:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

.license-badge-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  padding: 10px 18px; border-radius: var(--radius-sm); margin-top: 28px; backdrop-filter: blur(6px);
}
.license-badge-hero svg { flex-shrink: 0; opacity: .7; }
.license-badge-text { font-size: 11px; color: rgba(255,255,255,.6); line-height: 1.6; letter-spacing: .03em; }
.license-badge-text strong { color: var(--gold-light); font-weight: 500; }

.hero-target-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px 26px; backdrop-filter: blur(6px);
}
.htc-tag {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 500;
  color: var(--gold); letter-spacing: .2em; margin-bottom: 16px; display: block;
}
.htc-title {
  font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 600;
  color: var(--white); line-height: 1.7; margin-bottom: 18px;
}
.htc-list { display: flex; flex-direction: column; gap: 10px; }
.htc-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.7;
}
.htc-item::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 600; }

/* ABOUT */
.about-section { padding: 100px 40px; background: var(--white); position: relative; overflow: hidden; }
.about-section::before {
  content: 'SERVICE'; position: absolute; top: 50px; right: 40px;
  font-family: 'Montserrat', sans-serif; font-size: 80px; font-weight: 600;
  color: rgba(7,9,80,.025); letter-spacing: .1em; pointer-events: none; user-select: none;
}
.about-inner { max-width: 1280px; margin: 0 auto; }
.about-header { text-align: center; margin-bottom: 64px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }
.about-card {
  border: 1px solid rgba(7,9,80,.09); border-radius: var(--radius-lg);
  padding: 36px 30px; position: relative; overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  background: var(--white);
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.about-card:hover { border-color: rgba(7,9,80,.2); box-shadow: var(--shadow-hover); transform: translateY(-6px); }
.about-card:hover::before { transform: scaleX(1); }
.about-card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300;
  color: rgba(7,9,80,.07); line-height: 1; position: absolute; top: 18px; right: 20px; user-select: none;
}
.about-icon {
  width: 56px; height: 56px; background: rgba(7,9,80,.07); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: background .25s;
}
.about-card:hover .about-icon { background: rgba(7,9,80,.12); }
.about-card-title {
  font-family: 'Noto Serif JP', serif; font-size: 17px; font-weight: 600;
  color: var(--navy-ink); margin-bottom: 14px; line-height: 1.5;
}
.about-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 2; }

.flow-wrap {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 48px 40px; border: 1px solid rgba(7,9,80,.08);
}
.flow-title {
  text-align: center; font-family: 'Noto Serif JP', serif; font-size: 18px;
  font-weight: 600; color: var(--navy-ink); margin-bottom: 40px; letter-spacing: .04em;
}
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.flow-steps::before {
  content: ''; position: absolute; top: 24px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--navy));
}
.flow-step { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 0 12px; position: relative; }
.flow-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--navy-ink);
  box-shadow: 0 4px 16px rgba(200,160,32,.18); z-index: 2;
}
.flow-step:first-child .flow-num { background: var(--gold); color: var(--white); }
.flow-step-title { font-size: 13px; font-weight: 600; color: var(--navy-ink); text-align: center; line-height: 1.5; }
.flow-step-desc { font-size: 11px; color: var(--text-muted); text-align: center; line-height: 1.7; }

/* STATS BAR */
.stats-bar { background: var(--navy-deep); padding: 28px 40px; }
.stats-inner {
  max-width: 1280px; margin: 0 auto; display: flex;
  align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; align-items: center; gap: 18px; padding: 4px 48px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300;
  color: var(--white); line-height: 1;
}
.stat-num sup { font-size: 17px; color: var(--gold); }
.stat-label { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .08em; line-height: 1.6; }

/* TALENT LIST BANNER */
.talent-banner-section {
  padding: 72px 40px 80px;
  background: var(--off-white);
}
.talent-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.talent-list-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 44px;
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, #1a2a8a 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,160,32,.28);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.talent-list-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(200,160,32,.35) 100%);
}
.talent-list-banner::after {
  content: 'TALENT';
  position: absolute;
  right: 24px;
  bottom: -18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 300;
  color: rgba(255,255,255,.05);
  letter-spacing: .08em;
  pointer-events: none;
  line-height: 1;
}
.talent-list-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.tlb-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.tlb-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .22em;
}
.tlb-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.45;
}
.tlb-sub {
  font-size: 13px;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  max-width: 560px;
}
.tlb-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: transform .25s ease, background .25s ease;
}
.talent-list-banner:hover .tlb-arrow {
  transform: translateX(4px);
  background: var(--gold-light);
}

/* LICENSE */
.license-section { padding: 64px 40px; background: var(--white); border-top: 1px solid rgba(7,9,80,.07); }
.license-inner { max-width: 1280px; margin: 0 auto; }
.license-box {
  background: var(--off-white); border: 1px solid rgba(7,9,80,.1); border-radius: var(--radius-lg);
  padding: 36px 40px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.license-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(7,9,80,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.license-title {
  font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 600;
  color: var(--navy-ink); margin-bottom: 8px; letter-spacing: .03em;
}
.license-text { font-size: 12px; color: var(--text-secondary); line-height: 1.9; }
.license-text strong { color: var(--text-primary); font-weight: 500; }

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 42%, var(--navy-mid) 72%, var(--navy) 100%);
  padding: 100px 40px; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05);
}
.cta-band::after {
  content: ''; position: absolute; bottom: -100px; left: -50px;
  width: 300px; height: 300px; border-radius: 50%; background: rgba(200,160,32,.05);
}
.cta-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta-tag-el {
  display: inline-block; font-size: 10px; font-weight: 500; color: var(--gold);
  letter-spacing: .22em; margin-bottom: 20px; font-family: 'Montserrat', sans-serif;
}
.cta-title {
  font-family: 'Noto Serif JP', serif; font-size: calc(clamp(23px, 3vw, 36px) * 0.9);
  font-weight: 600; color: var(--white); line-height: 1.55; margin-bottom: calc(20px + 1em); letter-spacing: .04em;
}
.cta-sub { font-size: 14px; color: rgba(255,255,255,.68); margin-bottom: 52px; line-height: 2.1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-g {
  font-size: 14px; font-weight: 500; color: var(--navy-ink); background: var(--gold);
  border: none; padding: 18px 40px; border-radius: var(--radius-sm);
  letter-spacing: .07em; transition: transform .15s, background .2s;
}
.btn-cta-g:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-cta-o {
  font-size: 13px; color: var(--white); background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.32); padding: 15px 32px; border-radius: var(--radius-sm);
  letter-spacing: .07em; transition: transform .15s, background .2s;
}
.btn-cta-o:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--navy-deep); padding: 72px 40px 0; }
.footer-inner {
  max-width: 1280px; margin: 0 auto; display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--white); letter-spacing: .06em; margin-bottom: 4px; }
.footer-brand-ja { font-size: 10px; color: rgba(255,255,255,.36); letter-spacing: .12em; margin-bottom: 22px; }
.footer-addr { font-size: 12px; color: rgba(255,255,255,.46); line-height: 2; font-style: normal; }
.footer-cert { margin-top: 18px; font-size: 11px; color: rgba(255,255,255,.38); line-height: 1.7; border-top: 1px solid rgba(255,255,255,.07); padding-top: 16px; }
.fcol-title { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.4); letter-spacing: .16em; margin-bottom: 18px; font-family: 'Montserrat', sans-serif; }
.flinks { display: flex; flex-direction: column; gap: 11px; }
.flink { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.flink:hover { color: var(--white); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.26); letter-spacing: .04em; }
.footer-sns { display: flex; gap: 10px; }
.footer-bottom .footer-sns { gap: 18px; }
.footer-bottom .footer-sns a:not(.social-btn) { font-size: 11px; color: rgba(255,255,255,.36); transition: color .2s; letter-spacing: .06em; }
.footer-bottom .footer-sns a:not(.social-btn):hover { color: rgba(255,255,255,.8); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .talent-hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .flow-steps::before { display: none; }
  .license-box { grid-template-columns: 1fr; text-align: center; }
  .license-icon-wrap { margin: 0 auto; }
}
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 4px 22px; }
}
@media (max-width: 640px) {
  .talent-hero { padding: 80px 20px 64px; }
  .about-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .about-section, .talent-banner-section, .license-section { padding-left: 20px; padding-right: 20px; }
  .stats-bar, .cta-band { padding-left: 20px; padding-right: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .flow-wrap { padding: 32px 20px; }
  .talent-hero-btns { flex-direction: column; }
  .talent-list-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 22px;
  }
  .tlb-arrow { align-self: flex-end; }
}
