/* ============================================================
   benefits-hero.css — 福利厚生ページ ヒーロー
   背景: ホワイト（淡いウォームグラデーション） / シンプルな縦組み
   ============================================================ */

/* ---- Section ---- */
.benefits-hero {
  position: relative;
  background: linear-gradient(180deg, #FFF7EE 0%, var(--c-bg, #FFFFFF) 100%);
  padding: calc(var(--s-header-h, 80px) + 80px) 0 72px;
  overflow: hidden;
  z-index: var(--z-content, 10);
}

.benefits-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(232, 103, 42, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Inner ---- */
.benefits-hero__inner {
  max-width: var(--s-container, 1200px);
  margin: 0 auto;
  padding: 0 var(--s-gutter, 32px);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ---- Breadcrumb ---- */
.benefits-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-label, 'Inter', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-light, #555);
  margin-bottom: 28px;
}

.benefits-hero__breadcrumb a {
  color: var(--c-text-light, #555);
  text-decoration: none;
  transition: color 0.2s;
}

.benefits-hero__breadcrumb a:hover {
  color: var(--c-orange, #E8672A);
}

.benefits-hero__breadcrumb-sep {
  color: var(--c-text-muted, #999);
}

/* ---- Deco ---- */
.benefits-hero__deco {
  font-family: var(--f-heading-en, 'Barlow Condensed', sans-serif);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  background: linear-gradient(110deg, var(--c-orange, #E8672A) 0%, var(--c-gold, #C9A84C) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
}

/* ---- Title ---- */
.benefits-hero__title {
  font-family: var(--f-heading-ja, 'Noto Serif JP', serif);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--c-navy-deep, #0D1B2E);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}

/* ---- Subtitle ---- */
.benefits-hero__subtitle {
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--c-text-light, #555);
  line-height: 1.9;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .benefits-hero {
    padding: calc(var(--s-header-h, 80px) + 56px) 0 56px;
  }

  .benefits-hero__breadcrumb {
    font-size: 0.66rem;
    margin-bottom: 20px;
  }

  .benefits-hero__title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .benefits-hero__subtitle {
    font-size: 0.86rem;
    line-height: 1.85;
  }
}
