/* ------------------------------------------------------------
// Recruit
------------------------------------------------------------ */
.recruit-txt {
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-txt {
    text-align: left;
  }
}

.recruit-box {
  margin-bottom: 80px;
  padding: 80px 0;
  border-top: 1px dashed #231815;
  border-bottom: 1px dashed #231815;
}
@media screen and (max-width: 767px) {
  .recruit-box {
    margin-bottom: 40px;
    padding: 40px 0 20px;
  }
}

.table-box {
  display: flex;
}
.table-box .box:first-child {
  flex: 1;
}
.table-box .box:last-child {
  width: 600px;
}
@media screen and (max-width: 1259px) {
  .table-box .box:last-child {
    display: none;
  }
}

.table-recruit {
  width: 100%;
}
.table-recruit tr {
  display: grid;
  grid-template-columns: 170px auto;
}
.table-recruit tr th,
.table-recruit tr td {
  text-align: left;
  vertical-align: top;
}
.table-recruit tr th {
  padding-bottom: 30px;
}
.table-recruit tr th span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 0.5em 1em;
  background: #38a1db;
}
.table-recruit tr td {
  padding: 8px 20px 30px;
}
@media screen and (max-width: 767px) {
  .table-recruit tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .table-recruit tr th,
  .table-recruit tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .table-recruit tr th {
    font-weight: 500;
    padding: 0;
  }
  .table-recruit tr td {
    padding: 1em 0.5em 2em;
  }
}

.contact-btn {
  text-align: center;
}
.contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  width: 388px;
  height: 60px;
  margin: 0 auto 10px;
  background: #231815;
  transition: 0.3s;
}
.contact-btn a:hover {
  background: #38a1db;
}
@media screen and (max-width: 767px) {
  .contact-btn a {
    font-size: 20px;
    width: 300px;
    height: 50px;
  }
}