/* ============================================
   Recruit
   ============================================ */
.recruit {
  background-color: #f4f4ef;
  padding: 0 0 120px;
}

.recruit__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.recruit__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2b0f09;
  margin-bottom: 32px;
}

/* Table */
.recruit__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.recruit__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #bbb2ad;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #3b2a1a;
}

.recruit__table th,
.recruit__table td {
  padding: 6px 24px;
  vertical-align: top;
  text-align: left;
}

.recruit__table th {
  width: 180px;
  min-width: 140px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
  color: #2b0f09;
  border-right: 1px solid #bbb2ad;
}

/* Alternate row colors */
.recruit__table tr:nth-child(odd) th,
.recruit__table tr:nth-child(odd) td {
  background-color: #dedbd6;
}

.recruit__table tr:nth-child(even) th,
.recruit__table tr:nth-child(even) td {
  background-color: #f4f4ef;
}

.recruit__table td p {
  margin: 0;
}

/* Spacing utilities */
.recruit__mt {
  margin-top: 16px !important;
}

.recruit__mt-sm {
  margin-top: 8px !important;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .recruit {
    padding: 0 0 64px;
  }

  .recruit__inner {
    padding: 0 20px;
  }

  .recruit__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .recruit__table {
    font-size: 14px;
  }

  .recruit__table th,
  .recruit__table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  .recruit__table th {
    text-align: left;
    white-space: normal;
    border-bottom: none;
  }

  .recruit__table tr:last-child td {
    border-bottom: 1px solid #d5d0cb;
  }

  .recruit__table tr:last-child th {
    border-bottom: none;
  }
}
