.title{
  position: relative;
  padding: 0 0 15px;
  margin: 30px 0;
  font-size: 2.5rem;
  border-bottom: 1px solid #cdcdcd;
}
.title:after {
  content: "";
  width: 70px;
  height: 1px;
  background: #00206a;
  display: block;
  position: absolute;
  bottom: -1px;
}

.title-sub {
  margin: 60px 0 30px;
  font-size: 2rem;
}

.sub-container{
  margin-bottom: 5rem;
  margin-left: 1rem;
}
.sub-container p{
  margin: 1rem 0;
  font-size: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table tr:first-child th,
table tr:first-child td {
  border-top: 1px solid rgba(29, 29, 29, 0.4);
}
table th {
  width: 20%;
  border-bottom: 1px solid rgba(29, 29, 29, 0.4);
  padding: 1.2rem 0;
  text-align: left;
  font-size: 1rem;
}
table td {
  border-bottom: 1px solid rgba(29, 29, 29, 0.4);
  padding: 1.2rem 0;
  padding-left: 3rem;
  font-size: 1rem;
  line-height: 2rem;
}

/* 募集職種 */
.job-block {
  background-color: #eae7db6f;
  padding: 3rem;
  margin-bottom: 2rem;
}
.job-block .block-title {
  position: relative;
  cursor: pointer;
}
.job-block .block-title h3 {
  font-size: clamp(1.475rem, 1.268rem + 0.3vw, 1.7rem);
  font-weight: 500;
}
.job-block .block-title .oc {
  position: absolute;
  right: 0;
  top: 0;
  width: 31px;
  height: 31px;
}
.job-block .block-title .oc::before, .job-block .block-title .oc::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  background-color: #000;
}
.job-block .block-title .oc::after {
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}
.job-block .block-body {
  padding-top: 7rem;
  display: none;
}
.job-block table {
  width: 100%;
  border-top: 1px solid rgba(29, 29, 29, 0.2);
}
.job-block table th {
  width: 20%;
  border-bottom: 1px solid rgba(29, 29, 29, 0.2);
}
.job-block.active .block-title .oc::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .job-block {
    padding: 2rem;
  }
  .job-block .block-title h3 {
    padding-right: 20px;
  }
  .job-block .block-title .oc {
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.textlink {
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
}
.textlink:hover {
  color: #0056b3;
  text-decoration: underline;
}
