/* ===========================
   Page Hero
=========================== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.45) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  margin-left: clamp(24px, 8vw, 120px);
}

.page-hero__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.page-hero__sub {
  font-size: 0.95rem;
  color: rgba(244,244,240,0.8);
}

/* ===========================
   Breadcrumb
=========================== */
.breadcrumb {
  background: var(--dark2);
  padding: 12px 0;
}

.breadcrumb__list {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray);
  list-style: none;
}

.breadcrumb__list li + li::before {
  content: '›';
  margin-right: 8px;
}

.breadcrumb__list a {
  color: var(--gray);
  transition: color var(--trans);
}

.breadcrumb__list a:hover {
  color: var(--accent);
  opacity: 1;
}

/* ===========================
   Message
=========================== */
.recruit-msg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.recruit-msg__img-wrap {
  position: relative;
  overflow: hidden;
}

.recruit-msg__img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  z-index: 1;
}

.recruit-msg__img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.recruit-msg__text {
  color: rgba(244,244,240,0.8);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.recruit-msg__sign {
  font-size: 0.82rem;
  color: var(--gray);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 24px;
}

/* ===========================
   Reason
=========================== */
.reason__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.reason__card {
  background: var(--dark);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color var(--trans), transform var(--trans);
}

.reason__card:hover {
  border-top-color: var(--accent);
  transform: translateY(-4px);
}

.reason__num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.reason__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.reason__text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ===========================
   Jobs
=========================== */
.job-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 32px;
}

.job-card__head {
  background: var(--dark2);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.job-card__tag {
  background: var(--accent);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.job-card__tag--part {
  background: var(--dark);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.job-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.job-table {
  width: 100%;
  border-collapse: collapse;
}

.job-table th,
.job-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
}

.job-table th {
  width: 140px;
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  background: rgba(232,160,32,0.05);
}

.job-table td {
  color: rgba(244,244,240,0.85);
  line-height: 1.8;
}

.job-table tr:last-child th,
.job-table tr:last-child td {
  border-bottom: none;
}

/* ===========================
   Mood
=========================== */
.mood__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mood__item {
  overflow: hidden;
  border-radius: 2px;
}

.mood__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.mood__item:hover img {
  transform: scale(1.06);
}

/* ===========================
   CTA
=========================== */
.recruit-cta {
  background: var(--black);
  text-align: center;
}

.recruit-cta__inner {
  max-width: 680px;
  margin: 0 auto;
}

.recruit-cta__text {
  color: rgba(244,244,240,0.75);
  margin-top: -24px;
  margin-bottom: 40px;
  line-height: 2;
}

.recruit-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.recruit-cta__tel {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.recruit-cta__hours {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 860px) {
  .recruit-msg__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .job-table th {
    width: 100px;
  }
}

@media (max-width: 600px) {
  .page-hero__content {
    margin-left: 0;
    padding: 0 20px;
  }

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

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

  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
    padding: 10px 16px;
  }

  .job-table th {
    background: rgba(232,160,32,0.1);
    border-bottom: none;
  }

  .recruit-cta__btns {
    flex-direction: column;
  }

  .recruit-cta__btns .btn {
    width: 100%;
  }
}
