/* recruit.css - 求人募集ページ専用 */

.recruit-hero {
  width: 100%;
  min-height: 240px;
  background-image: linear-gradient(120deg, #00000000 0%, #3498db00 0%), url('../img/index/hero_img_campany.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 48px 0 36px 0;
  box-shadow: 0 8px 40px #b3d4fc33;
  border-radius: 4px;
  margin-bottom: 32px;
}
.recruit-hero-title {
  font-size: 3.5em;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 2px 2px 8px #1462b1cc;
}
.recruit-hero-catch {
  font-size: 1.1em;
  font-weight: 500;
  opacity: 0.9;
}

.recruit-section {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 32px #e3f0fa;
  max-width: 900px;
  margin: 32px auto 0 auto;
  padding: 32px 24px 24px 24px;
  position: relative;
}
.recruit-section-title {
  font-size: 1.4em;
  font-weight: 800;
  color: #1462b1;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  position: relative;
}
.recruit-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #1462b1);
  border-radius: 2px;
  margin-top: 7px;
}
.recruit-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fafdff;
  border-radius: 4px;
  box-shadow: 0 2px 12px #e3f0fa;
  overflow: hidden;
  margin-bottom: 18px;
}
.recruit-table th, .recruit-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e3f0fa;
  text-align: left;
  font-size: 1.02em;
}
.recruit-table th {
  background: #f5fafd;
  color: #1462b1;
  font-weight: 700;
  width: 140px;
  letter-spacing: 0.05em;
}
.recruit-table tr:last-child th,
.recruit-table tr:last-child td {
  border-bottom: none;
}

.recruit-univ-list {
  min-height: 60px;
  font-size: 1.08em;
  color: #222;
  line-height: 1.7;
  padding: 8px 0;
}

@media (max-width: 900px) {
  .recruit-section {
    padding: 18px 4vw 12px 4vw;
  }
}
@media (max-width: 600px) {
  .recruit-hero-title {
    font-size: 1.2em;
  }
  .recruit-section-title {
    font-size: 1em;
  }
  .recruit-section {
    margin: 14px auto 0 auto;
    padding: 8px 2vw 6px 2vw;
  }
  .recruit-table th, .recruit-table td {
    padding: 7px 4px;
    font-size: 0.97em;
  }
} 