/* =============================================
   staff.css — スタッフページ固有スタイル
   ============================================= */

/* ===== Page header ===== */
.page-hdr {
  background: #0e2518;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 14px;
}

.page-hdr .lbl {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ead477;
  opacity: .7;
  margin-bottom: 6px;
}

.page-hdr h1 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .04em;
}

.page-hdr h1 span {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  margin-left: 12px;
  font-weight: 400;
  letter-spacing: .06em;
}

/* ===== Section label ===== */
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 10px;
  padding-left: 4px;
}

.section-label span {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ead477;
  opacity: .7;
  font-weight: 500;
  margin-left: 8px;
}

/* ===== Staff section ===== */
.staff-section {
  margin-bottom: 20px;
}

/* ===== Staff grid ===== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ===== Staff card ===== */
.staff-card {
  background: #0e2518;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}

.staff-card:hover {
  background: #1a3d2b;
}

.staff-role-badge {
  background: rgba(234, 212, 119, .1);
  border: .5px solid rgba(234, 212, 119, .2);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  min-width: 90px;
  flex-shrink: 0;
}

.staff-role-badge .role-ja {
  font-size: 12px;
  font-weight: 600;
  color: #ead477;
  line-height: 1.4;
}

.staff-name-ja {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* ===== Recruitment section ===== */
.recruit-card {
  background: #0e2518;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 14px;
}

.recruit-card .lbl {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ead477;
  opacity: .7;
  margin-bottom: 8px;
}

.recruit-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.recruit-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.recruit-col h3 {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ead477;
  font-weight: 600;
  margin-bottom: 10px;
}

.recruit-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
}

.recruit-col p a {
  color: #ead477;
  text-decoration: none;
  border-bottom: .5px solid rgba(234, 212, 119, .3);
}

.recruit-col p a:hover {
  border-color: #ead477;
}

.recruit-positions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.recruit-pos-tag {
  background: rgba(234, 212, 119, .08);
  border: .5px solid rgba(234, 212, 119, .18);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}

.recruit-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: .5px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.recruit-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  flex: 1;
}

.recruit-btn {
  display: inline-block;
  background: #ead477;
  color: #06170f;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: opacity .2s;
  flex-shrink: 0;
}

.recruit-btn:hover {
  opacity: .85;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .page-hdr {
    padding: 20px 18px;
  }

  .page-hdr h1 {
    font-size: 22px;
  }

  .staff-grid {
    grid-template-columns: 1fr;
  }

  .staff-role-badge {
    min-width: 76px;
    padding: 6px 10px;
  }

  .staff-name-ja {
    font-size: 15px;
  }

  .recruit-card {
    padding: 20px 18px;
  }

  .recruit-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}