/* ============================================================
   Recruit Page ― 採用情報・スタッフ紹介ページ共用
   ============================================================ */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RECRUIT — Intro
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#recruit-intro {
  position: relative;
  overflow: visible;
}

.recruit-catch {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.recruit-catch-text {
  font-family: var(--font-ja);
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-blue);
  white-space: nowrap;
}

.sp-only {
  display: none;
}

.recruit-photo {
  margin-top: 0;
  margin-bottom: clamp(32px, 4vw, 64px);
  position: relative;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(210px, 24vw, 364px);
}

.recruit-photo-track {
  display: flex;
  gap: 12px;
  height: 100%;
  width: max-content;
  animation: recruit-marquee 24s linear infinite;
  will-change: transform;
}

.recruit-photo-item {
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 3px;
}

.recruit-photo-item img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  user-select: none;
}

@keyframes recruit-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .recruit-photo-track {
    animation: none;
  }
}

@keyframes recruit-sparkle {

  0%,
  100% {
    filter: brightness(1) saturate(1) blur(0px);
  }

  30% {
    filter: brightness(1.25) saturate(1.2) blur(0px);
  }

  60% {
    filter: brightness(0.9) saturate(0.95) blur(0.5px);
  }

  80% {
    filter: brightness(1.35) saturate(1.25) blur(0px);
  }
}

@keyframes recruit-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.recruit-intro-lower {
  position: relative;
}

.recruit-sparkle-wrap {
  position: absolute;
  right: 0;
  top: -90px;
  width: 44%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  bottom: -180px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 70%, transparent 100%);
}

.recruit-sparkle-wrap .fv-bg-img {
  width: 100%;
  height: auto;
  display: block;
  animation: recruit-sparkle 10s ease-in-out infinite;
}

.recruit-sparkle-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      transparent 25%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 75%);
  background-size: 250% 100%;
  animation: recruit-shimmer 4s linear infinite;
}

.recruit-body {
  max-width: 720px;
}

.recruit-content h3 {
  font-family: var(--font-ja);
  font-size: clamp(18px, 2vw, 42px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  line-height: 1.5;
  margin-bottom: clamp(20px, 2.5vw, 40px);
}

.recruit-content p {
  font-family: var(--font-ja);
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  text-align: justify;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.recruit-content .btn-outline {
  display: inline-flex;
  margin-right: 16px;
  margin-bottom: 12px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RECRUIT Intro — expand toggle
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rc-expand {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rc-expand[aria-hidden="false"] {
  grid-template-rows: 1fr;
}

.rc-expand>p {
  overflow: hidden;
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 1.95;
  color: var(--color-dark);
  padding-top: 0;
  transition: padding-top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rc-expand[aria-hidden="false"]>p {
  padding-top: 20px;
}

.rc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
  transition: opacity 0.2s ease;
}

.rc-toggle:hover {
  opacity: 0.6;
}

.rc-toggle-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rc-toggle-icon::before,
.rc-toggle-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rc-toggle-icon::before {
  width: 9px;
  height: 1.5px;
}

.rc-toggle-icon::after {
  width: 1.5px;
  height: 9px;
}

.rc-toggle[aria-expanded="true"] .rc-toggle-icon {
  transform: rotate(45deg);
}

.recruit-content-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RECRUIT — Work (仕事の魅力)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#work {
  background: var(--color-paleblue);
  position: relative;
  z-index: 1;
}

/* Feature Bands */
.work-features {
  display: flex;
  flex-direction: column;
  margin-bottom: 72px;
}

.wf-band {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 112px) clamp(24px, 5vw, 100px);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.wf-band--light,
.wf-band--pale,
.wf-band--dark {
  background: var(--color-blue);
}

.wf-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/JPG/recruit-feature-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.wf-band:hover::before {
  opacity: 0.75;
}

.wf-band--light::before {
  background-position: center top;
}

.wf-band--pale::before {
  background-position: center center;
}

.wf-band--dark::before {
  background-position: center bottom;
}

.wf-band-num,
.wf-band-inner {
  position: relative;
  z-index: 1;
}

/* 巨大アウトライン数字 */
.wf-band-num {
  font-family: var(--font-en);
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  right: clamp(24px, 4vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  -webkit-text-stroke: 1.5px currentColor;
  color: transparent;
}

.wf-band--light .wf-band-num,
.wf-band--pale .wf-band-num,
.wf-band--dark .wf-band-num {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
}

.wf-band-inner {
  position: relative;
  z-index: 1;
  max-width: 72%;
}

.wf-band-label {
  display: block;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: clamp(14px, 2vw, 24px);
}

.wf-band--light .wf-band-label,
.wf-band--pale .wf-band-label,
.wf-band--dark .wf-band-label {
  color: rgba(255, 255, 255, 0.5);
}

.wf-band-title {
  font-family: var(--font-ja);
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.wf-band--light .wf-band-title,
.wf-band--pale .wf-band-title,
.wf-band--dark .wf-band-title {
  color: #fff;
}

.wf-band--light .wf-band-title em,
.wf-band--pale .wf-band-title em,
.wf-band--dark .wf-band-title em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
}

/* 詳しく見るボタン */
.wf-band-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: clamp(20px, 2.5vw, 32px);
  padding: 10px 24px;
  border-radius: 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.wf-band-more:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.wf-band-more--inv {
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.85);
}

.wf-band-more--inv:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Feature Modal
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wf-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wf-modal[hidden] {
  display: none;
}

.wf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 40, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  animation: modal-fade-in 0.3s ease;
}

.wf-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  padding: clamp(40px, 5vw, 72px);
  max-width: 640px;
  width: 100%;
  max-height: 85dvh;
  overflow-y: auto;
  animation: modal-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wf-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 18, 181, 0.2);
  background: none;
  cursor: pointer;
  font-size: 1.125rem;
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.wf-modal-close:hover {
  background: var(--color-paleblue);
}

.wf-modal-label {
  display: block;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-blue);
  opacity: 0.6;
  margin-bottom: 14px;
}

.wf-modal-title {
  font-family: var(--font-ja);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-dark);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 18, 181, 0.1);
}

.wf-modal-body {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 2;
  color: #444;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Photo + Tasks 2-col */
/* 業務リスト: 2カラムグリッド */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: clamp(48px, 6vw, 80px);
  background: rgba(0, 18, 181, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.work-card {
  background: var(--color-white);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.work-card-num {
  font-family: var(--font-en);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-blue);
  opacity: 0.18;
}

.work-card-body h3 {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.work-card-body p {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.85;
  color: #555;
}

/* 取扱商品カテゴリ */
.work-categories {
  margin-top: 0;
}

.work-categories>p {
  font-family: var(--font-ja);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  text-align: center;
}

.work-categories-label {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-blue);
  opacity: 0.6;
  margin-bottom: 24px;
}

.work-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.work-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.work-cat-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}

.work-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-cat-item span {
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  letter-spacing: 0.04em;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RECRUIT — Why ARTE?
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#why-join {
  background: var(--color-white);
}

.why-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-join-card {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--color-paleblue);
  border-radius: 8px;
  overflow: hidden;
}

.why-join-num {
  display: block;
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-blue);
  opacity: 0.1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.why-join-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.why-join-card p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #444;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RECRUIT — Conditions (募集要項)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.conditions-table {
  width: 100%;
}

.conditions-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid rgba(0, 18, 181, 0.1);
}

.conditions-row:first-child {
  border-top: 1px solid rgba(0, 18, 181, 0.1);
}

.conditions-row dt,
.conditions-row dd {
  padding: 20px 24px;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.conditions-row dt {
  font-weight: 700;
  color: var(--color-blue);
  background: var(--color-paleblue);
  display: flex;
  align-items: center;
}

.conditions-row dd {
  color: #444;
}

.conditions-row dd small {
  font-size: 0.8125rem;
  color: #777;
  display: block;
  margin-top: 4px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RECRUIT — Flow (採用フロー)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#flow {
  background: var(--color-paleblue);
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 680px;
  display: flex;
  flex-direction: column;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 18, 181, 0.12);
}

.flow-step:first-child {
  border-top: 1px solid rgba(0, 18, 181, 0.12);
}

.flow-step-num {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  padding-top: 4px;
}

.flow-step-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.flow-step-body p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #555;
}

.flow-arrow {
  display: none;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RECRUIT — Entry CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.recruit-entry-section {
  background: var(--color-blue);
  color: var(--color-white);
}

.recruit-entry-section .en-heading,
.recruit-entry-section .section-sub {
  color: var(--color-white);
}

.entry-lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.entry-btns {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.recruit-entry-section .btn-outline {
  background: var(--color-white);
  color: var(--color-blue);
}

.recruit-entry-section .btn-outline:hover {
  background: transparent;
  color: var(--color-white);
  box-shadow: inset 0 0 0 1px var(--color-white);
}

.recruit-entry-section .btn-outline:hover .btn-pill-arrow {
  background: var(--color-white);
  color: var(--color-blue);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STAFF — Staff Interview Page
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.staff-lead-text {
  text-align: center;
  line-height: 2;
  font-size: 0.9375rem;
  color: #444;
  max-width: 720px;
  margin: 0 auto;
}

.staff-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.staff-card {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 18, 181, 0.07);
  overflow: hidden;
  border-top: 0px solid var(--color-blue);
}

.staff-card-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 48px 48px 40px;
  background: var(--color-paleblue);
  align-items: center;
}

.staff-card-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.staff-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-card-photo--placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 18, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.staff-interview-num {
  display: block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 10px;
}

.staff-name {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.staff-age-role {
  font-size: 0.9375rem;
  color: var(--color-blue);
  font-weight: 700;
  margin-bottom: 4px;
}

.staff-joined {
  font-size: 0.875rem;
  color: #666;
}

.staff-card-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.staff-prev-job {
  display: flex;
  align-items: center;
  gap: 14px;
}

.staff-prev-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--color-blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.staff-prev-text {
  font-size: 0.9375rem;
  color: #444;
}

.staff-work {
  padding: 24px;
  background: var(--color-paleblue);
  border-radius: 4px;
  border-top: 0px solid var(--color-blue);
}

.staff-work h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  margin-bottom: 10px;
}

.staff-work p {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.8;
}

.staff-qa {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid rgba(0, 18, 181, 0.1);
  padding-top: 28px;
}

.staff-qa-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-q {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-dark);
  display: flex;
  gap: 8px;
}

.staff-q::before {
  content: "Q.";
  color: var(--color-blue);
  font-family: var(--font-en);
  font-weight: 700;
  flex-shrink: 0;
}

.staff-a {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #444;
  display: flex;
  gap: 8px;
}

.staff-a::before {
  content: "A.";
  color: var(--color-blue);
  font-weight: 700;
  font-family: var(--font-en);
  flex-shrink: 0;
}

/* Staff entry CTA */
#staff-entry {
  background: var(--color-blue);
  color: var(--color-white);
}

#staff-entry .en-heading,
#staff-entry .section-sub {
  color: var(--color-white);
}

#staff-entry .entry-lead {
  color: rgba(255, 255, 255, 0.8);
}

#staff-entry .btn-outline {
  background: var(--color-white);
  color: var(--color-blue);
}

#staff-entry .btn-outline:hover {
  background: transparent;
  color: var(--color-white);
  box-shadow: inset 0 0 0 1px var(--color-white);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Responsive
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .why-join-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .work-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .recruit-sparkle-wrap {
    display: none;
  }

  .recruit-catch-text {
    white-space: normal;
  }

  .sp-only {
    display: block;
  }

  .staff-card-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .staff-card-photo,
  .staff-card-photo--placeholder {
    margin: 0 auto;
  }

  .staff-card-body {
    padding: 32px 24px;
  }

  .staff-card-header {
    padding: 32px 24px 24px;
  }
}

@media (max-width: 768px) {
  .wf-band-inner {
    max-width: 100%;
  }

  .wf-band-num {
    opacity: 0.6;
    right: -16px;
  }

  .wf-band-title {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }
}

@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-join-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .conditions-row {
    grid-template-columns: 1fr;
  }

  .conditions-row dt {
    border-bottom: none;
    padding: 20px 24px;
    display: block;
  }

  .conditions-row dd {
    padding: 24px 20px;
  }

  .flow-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}