.sec-recruit-mv {
  position: relative;
  display: block;
  top: 60px;
  margin-bottom: 60px;
}
.sec-recruit-mv .mv {
  position: relative;
  display: block;
  background-image: url(../img/recruitment/recrutment_title.jpg);
  width: 100vw;
  height: 21.875vw;
  background-size: cover;
  background-position: center;
}

.mv-title {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: rgb(255, 255, 255);
}
.mv-title h2 {
  position: relative;
  text-align: center;
  font-size: 64px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .mv-title h2 {
    font-size: 36px;
  }
}
.mv-title .sub-title {
  position: relative;
  text-align: center;
}
.mv-title .sub-title::before {
  content: "";
  position: relative;
  display: inline-block;
  height: 2px;
  width: 100px;
  top: -4px;
  background-color: rgb(255, 255, 255);
  margin-right: 20px;
}
.mv-title .sub-title::after {
  content: "";
  position: relative;
  display: inline-block;
  height: 2px;
  width: 100px;
  top: -4px;
  background-color: rgb(255, 255, 255);
  margin-left: 20px;
}
@media (max-width: 768px) {
  .mv-title .sub-title::before {
    width: 50px;
  }
  .mv-title .sub-title::after {
    width: 50px;
  }
}

.sec-skill {
  margin: 140px auto 80px;
}
.sec-skill .l-inner {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}
.sec-skill .l-inner .skill-title {
  margin-top: 65px;
}
.sec-skill .l-inner .skill-title h2 {
  font-size: 26px;
  position: relative;
  text-align: center;
  color: rgb(58, 192, 145);
  margin: 85px auto;
}
.sec-skill .l-inner .skill-title h2::after {
  content: "";
  width: 80px;
  height: 2px;
  margin: auto;
  position: relative;
  display: block;
  padding-top: 33px;
  border-bottom: 2px solid rgb(58, 192, 145);
}
@media (max-width: 960px) {
  .sec-skill .l-inner .skill-title h2 {
    font-size: 22px;
  }
}
.sec-skill .l-inner .skill-title .sub-title {
  color: rgb(183, 192, 191);
  text-align: center;
}
.sec-skill .l-inner .skill-title .sub-title::before {
  content: "";
  position: relative;
  top: -3px;
  display: inline-block;
  margin-right: 10px;
  height: 2px;
  width: 50px;
  background-color: #202020;
}
.sec-skill .l-inner .skill-title .sub-title::after {
  content: "";
  position: relative;
  top: -3px;
  display: inline-block;
  margin-left: 10px;
  height: 2px;
  width: 50px;
  background-color: #202020;
}
.sec-skill .l-inner .skill-tbl {
  width: 100%;
  margin-bottom: 170px;
}
.sec-skill .l-inner .skill-tbl tr th {
  padding: 25px 35px;
  border-bottom: 1px solid rgb(112, 112, 112);
  width: 160px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.sec-skill .l-inner .skill-tbl tr td {
  padding: 25px 35px;
  border-bottom: 1px solid rgb(112, 112, 112);
  width: calc(100% - 150px);
  font-size: 15px;
}
@media (max-width: 960px) {
  .sec-skill .l-inner .skill-tbl tr th {
    width: 100%;
    display: block;
    border-bottom: none;
  }
  .sec-skill .l-inner .skill-tbl tr td {
    width: 100%;
    display: block;
  }
}

.link-btn {
  width: 300px;
  height: 60px;
  margin: 60px auto 80px;
}
@media (max-width: 960px) {
  .link-btn {
    margin: 30px auto;
  }
}
.link-btn a {
  position: relative;
  color: rgb(255, 255, 255);
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  background: linear-gradient(90deg, #119844 0%, #3fd19e 50%, #119844);
  background-size: 200% auto;
  transition: 0.3s background ease-in-out;
  overflow: hidden;
}
.link-btn a:hover {
  background-position: right center;
}