/* ========== 求人セクション全体 ========== */
main{
  padding: 5rem 0;
}

.recruitTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background-color: #fdfdfd;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  border-radius: 6px;
  overflow: hidden;
}

.recruitTable td {
  padding: 16px 20px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  line-height: 1.8;
}

.recruitTable tr:nth-child(even) {
  background-color: #f5f9ff;
}

.recruitTable td:first-child {
  width: 30%;
  font-weight: 600;
  color: #1d4ed8; /* 信頼感のある青 */
  background-color: #eef4ff;
}

/* 見出し */
.title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  text-align: center;
}

.title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1d4ed8;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* 応募先案内を強調 */
.recruitTable td:last-child p:last-child {
  font-weight: 600;
  color: #333;
  margin-top: 8px;
}

/* ========== スマホ対応 ========== */
@media (max-width: 768px) {
  .recruitTable td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }

  .recruitTable td:first-child {
    background-color: #eaf2ff;
    border-bottom: none;
  }

  .title {
    font-size: 1.4rem;
  }
}


.recruit-btn-area {
  text-align: center;
  margin-top: 40px;
}

.recruit-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #1d4ed8;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.recruit-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}
