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

/* ========================
   Page Hero
   ======================== */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 280px;
  max-height: 400px;
  background-image: url("../img/recuruit/sakura.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 32px;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 56, 124, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 0.2em;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  font-family: var(--font-serif);
}

.page-subtitle {
  font-size: 1.3em;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.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;
  }
}
