/*----------------------------------------------
 * * recruit
 * *----------------------------------------------*/
.contents {
  width: var(--width);
  margin: 0 auto;
}
.table {
  flex: 1 0 auto;
  border: 1px solid rgba(var(--mainColorRGB), 0.5);
}
.table table {
  width: 100%;
}
.table :where(th, td) {
  padding: 10px;
  vertical-align: middle;
  font-size: 1.7rem;
  line-height: 1.8;
}
.table th {
  width: 20%;
  text-align: center;
  background-color: rgba(var(--mainColorRGB), 0.5);
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: bold;
}
.table td {
  width: 80%;
  border-bottom: 1px solid rgba(var(--mainColorRGB), 0.5);
  font-weight: normal;
}
.table tr:last-child th,
.table tr:last-child td {
  border-bottom: none;
}
.table td ul {
  margin-left: 2em;
}
.table td span {
  display: block;
  margin-top: 10px;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
.contents {
    display: block;
  }
.table {
  display: block;
  border: none;
}
.table th {
  display: block;
  width: 100%;
  padding: 5px;
}
.table td {
  padding: 10px 15px 40px;
  display: block;
  width: 100%;
}
}