@charset "UTF-8";

.job-tabs {
  margin-top: 40px;
}

.job-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 0!important;
  align-items: flex-end;
}

.job-tabs__button {
  appearance: none;
  border: 1px solid #d9d1c4;
  border-bottom: none;
  background: #b79d74;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 26px 34px;
  width: 50%;
  min-width: 0;
  cursor: pointer;
  transition: all .3s ease;
  border-radius: 10px 10px 0 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.job-tabs__button + .job-tabs__button {
  margin-left: -1px;
}

.job-tabs__button.is-active {
  background: #fff;
  color: #fff;
  color: #b79d74;
  z-index: 2;
}

.job-tabs__button:hover {
  opacity: .9;
}

.job-tab-panel {
  display: none;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.job-tab-panel.is-active {
  display: block;
}

.job-description-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #d9d1c4;
    border-top: none;
  margin-top: 0!important;
}

.job-description-table th,
.job-description-table td {
  border-top: 1px solid #d9d1c4;
  padding: 24px 20px;
  vertical-align: top;
    box-sizing: border-box;
}

.job-description-table tr:first-child th,
.job-description-table tr:first-child td {
  border-top: none;
    padding-top: 40px!important;
}

.job-description-table tr:last-child th,
.job-description-table tr:last-child td {
  border-bottom: none;
}

.job-description-table th {
  width: 28%;
    padding-left: 50px!important;
}

.job-description-table th h4 {
  margin: 0;
  line-height: 1.6;
    font-weight: normal;
}

.job-description-table td p {
  margin: 0;
  line-height: 2;
}
.job-description-table td a {
    color: #000;
}
.job-description_bottom {
    text-align: center;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 14px;
  line-height: 2;
}

.job-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #b79d74;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .job-tabs {
    margin-top: 25px;
  }

  .job-tabs__nav {
    gap: 0;
    margin-bottom: 0;
  }

  .job-tabs__button {
    width: 50%;
    min-width: 0;
    font-size: 14px;
    padding: 14px 10px;
  }

  .job-description-table,
  .job-description-table tbody,
  .job-description-table tr,
  .job-description-table th,
  .job-description-table td {
  }

  .job-description-table th,
  .job-description-table td {
    padding: 16px 10px;
  }

  .job-description-table th {
    border-bottom: none;
    padding-left: 20px!important;
  }

  .job-description-table td {
    border-top: none;
    padding-top: 0;
  }

  .job-description-table tr {
  }

  .job-description-table tr:first-child {
    border-top: none;
  }

  .job-description-table th h4 {
    font-size: 16px;
  }

  .job-description-table td p {
    line-height: 1.9;
    font-size: 14px;
  }
}