.job-table {
  margin-top: 24px;
}

.job-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

/* 1行＝カード */
.job-table tr {
  background: #ffffff;
  border-radius: 6px; /* 控えめ */
  border: 1px solid #e3e6e8;
  overflow: hidden;
}

/* 見出し */
.job-table th {
  width: 26%;
  padding: 14px 16px;
  background: #f4f8ec; /* #7FB42Dの淡色 */
  color: #333;
  font-weight: 600;
  text-align: left;
  vertical-align: top;
  border-left: 4px solid #7FB42D; /* 控えめアクセント */
}

/* 内容 */
.job-table td {
  padding: 14px 18px;
  line-height: 1.75;
  color: #333;
}

/* 強調 */
.job-table strong {
  color: #5f8f1e;
  font-weight: 600;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .job-table table,
  .job-table tbody,
  .job-table tr,
  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
  }

  .job-table tr {
    margin-bottom: 16px;
  }

  .job-table th {
    padding: 10px 14px;
    font-size: 0.95rem;
    border-left: none;
  }

  .job-table td {
    padding: 12px 14px 16px;
  }
}

/* 共通事項 *//* 勤務条件（共通） 強調ブロック */
.recruit-common--emphasis {
  margin-top: 80px;
}

.recruit-common__inner {
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  border: 3px solid #7FB42D;
}

.recruit-common__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
}

.recruit-common__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #7FB42D;
  margin: 16px auto 0;
}

.recruit-common__list > div {
  display: flex;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
}

.recruit-common__list > div:first-child {
  border-top: none;
}

.recruit-common__list dt {
  width: 160px;
  font-weight: 500;
  color: #7FB42D;
}

.recruit-common__list dd {
  margin: 0;
  color: #333;
  line-height: 1.7;
}

/* SP */
@media screen and (max-width: 768px) {
  .recruit-common__inner {
    padding: 24px;
  }

  .recruit-common__title {
    font-size: 1.3rem;
  }

  .recruit-common__list > div {
    flex-direction: column;
  }

  .recruit-common__list dt {
    width: 100%;
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
}

