/* ------------------------------------------
  mv
------------------------------------------ */
.mv {
  position: relative;
}

.mv_slider {
  width: 100%;
}

.mv_slider li {
  height: 100%;
  width: 100%;
}

.mv_slider li img {
  height: 100%;
  width: 100%;
}

.mv .mv_text {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50% , -50%);
  width: 684px;
}

.mv .mv_text .mv_title {
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
}

.mv .mv_text .mv_title span {
  font-size: 4.5rem;
}

.mv .mv_text .mv_desc {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 30px;
}

.sp_scroll {
  display: none;
}

@media screen and (max-width: 767px) {
  .mv {
    position: relative;
  }

  .mv .mv_text {
    width: 300px;
  }

  .mv .mv_text .mv_title {
    font-size: 2.7rem;
    line-height: 1.4;
  }

  .mv .mv_text .mv_title span {
    font-size: 3.8rem;
  }

  .mv .mv_text .mv_desc {
    font-size: 1.6rem;
  }

  .sp_scroll {
    background-image: url(../img/sp_scroll.png);
    background-size: 100%;
    bottom: 10px;
    content: '';
    cursor: pointer;
    display: block;
    height: 54px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 54px;
  }
}
/* ------------------------------------------
  service
------------------------------------------ */
.service {
  padding: 100px 0 80px;
}

.service_lists {
  display: flex;
  margin-top: 80px;
}

.service_lists li {
  margin-left: 60px;
  width: calc(50% - 30px);
}
/*
.service_lists li {
  margin-left: 66px;
  width: calc(33% - 40px);
} */

.service_lists li:first-child {
  margin-left: 0;
}

.service_lists_img {
  padding: 40px 40px 0 40px;
  width: 100%;
}

.service_lists_img img {
  width: 100%;
}

.service_lists_text {
  background-color: #edfaf8;
  display: flex;
  flex-direction: column;
  padding: 25px 40px;
}

/* 変更 */
.service_lists_text .service_lists_text_title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}

.service_lists_text .service_lists_text_desc {
  font-size: 1.8rem;
  margin-top: 15px;
}

.service_more {
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .service {
    padding: 40px 0;
  }

  .service_lists {
    display: block;
    margin-top: 60px;
  }

  .service_lists li {
    margin-left: 0;
    width: 100%;
  }

  .service_lists_img {
    margin: 20px auto;
    padding: 0;
    width: 216px;
  }

  .service_lists_text {
    margin-top: 0;
    min-height: inherit;
    padding: 17px 28px;
  }

  .service_lists_text .service_lists_text_title {
    font-size: 1.8rem;
  }

  .service_lists_text .service_lists_text_desc {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .service_more {
    margin-top: 30px;
  }
}

/* ------------------------------------------
  strength
------------------------------------------ */
.strength {
  background-color: #fff;
  background-image: url(../img/strength_back.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 70px;
}

.strength .strength_text {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 50px;
}

.strength_more {
  margin-top: 70px;
}

.strength_more .more_btn {
  margin: 0 0 0 100px;
}

@media screen and (max-width: 767px) {
  .strength {
    background-image: url(../img/sp_strength_back.png);
    padding: 30px 0 40px;
  }

  .strength .strength_text {
    font-size: 1.2rem;
    margin-top: 17px;
  }

  .strength_more {
    margin-top: 15px;
  }

  .strength_more .more_btn {
    margin: 0 auto;
  }
}

/* ------------------------------------------
  recruit
------------------------------------------ */
.recruit {
  padding: 80px 0 60px;
  position: relative;
}

.recruit::before {
  background-image: url(../img/recruit_bg01.png);
  background-repeat: no-repeat;
  background-size: 376px auto;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 376px;
  z-index: 0;
}

.recruit::after {
  background-image: url(../img/recruit_bg02.png);
  background-repeat: no-repeat;
  background-size: 376px auto;
  bottom: 0;
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  width: 376px;
  z-index: 0;
}

.recruit .container {
  position: relative;
  z-index: 1;
}

.recruit_lists {
  display: flex;
  margin-top: 65px;
}

.recruit_lists li {
  background-color: #f2fbfa;
  border: 2px #f2fbfa solid;
  box-shadow: 4px 4px 2px rgba(4,0,0,.33);
  margin-left: 30px;
  position: relative;
  width: calc(25% - 22px);
}

.recruit_lists li:before, .recruit_lists li:after {
  border-color: #17aa97;
  border-style: solid;
  box-sizing: content-box;
  content: '';
  pointer-events: none;
  position: absolute;
  transition: all .3s;
  z-index: 5;
}

.recruit_lists li:before {
  border-width: 2px 0 2px 0;
  height: 100%;
  left: 0;
  top: -2px;
  transition-delay: .05s;
  width: 0;
}

.recruit_lists li:hover:before {
  width: 101%;
}

.recruit_lists li:after {
  border-width: 0 2px 0 2px;
  height: 0;
  left: -1px;
  padding: 0;
  top: -1px;
  width: 100%;
}

.recruit_lists li:hover:after {
  height: 101%;
}

.recruit_lists li:first-child {
  margin-left: 0;
}

.recruit_lists li a::after {
  background-repeat: no-repeat;
  content: '';
  left: 50%;
  position: absolute;
  top: 35px;
  transform: translateX(-50%);
  transition: .5s;
}

.recruit_lists .item01 a::after {
  background-image: url(../img/recruit_list_icon01.png);
  background-size: 74px auto;
  height: 94px;
  width: 74px;
}

.recruit_lists .item01 a:hover::after {
  background-size: 84px auto;
  height: 106px;
  top: 25px;
  width: 84px;
}

.recruit_lists .item02 a::after {
  background-image: url(../img/recruit_list_icon02.png);
  background-size: 101px auto;
  height: 103px;
  top: 32px;
  width: 101px;
}

.recruit_lists .item02 a:hover::after {
  background-size: 111px auto;
  height: 113px;
  top: 25px;
  width: 111px;
}

.recruit_lists .item03 a::after {
  background-image: url(../img/recruit_list_icon03.png);
  background-size: 105px auto;
  height: 78px;
  width: 105px;
}

.recruit_lists .item03 a:hover::after {
  background-size: 115px auto;
  height: 88px;
  top: 31px;
  width: 115px;
}

.recruit_lists .item04 a::after {
  background-image: url(../img/recruit_list_icon04.png);
  background-size: 75px auto;
  height: 71px;
  top: 52px;
  width: 75px;
}

.recruit_lists .item04 a:hover::after {
  background-size: 85px auto;
  height: 81px;
  top: 47px;
  width: 85px;
}

.recruit_lists li a {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.1;
  padding: 153px 0 22px;
  text-align: center;
  width: 100%;
}

.recruit_more {
  margin-top: 61px;
}

@media screen and (max-width: 767px) {
  .recruit {
    padding: 30px 0 35px;
  }

  .recruit::before {
    background-image: url(../img/sp_recruit_bg01.png);
    background-size: 188px auto;
    height: 294px;
    width: 188px;;
  }

  .recruit::after {
    background-image: url(../img/sp_recruit_bg02.png);
    background-size: 188px auto;
    height: 294px;
    width: 188px;;
  }

  .recruit_lists {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .recruit_lists li {
    margin-left: 19px;
    margin-top: 25px;
    width: calc(50% - 10px);
  }

  .recruit_lists li:before {
    display: none;
  }

  .recruit_lists li::after {
    display: none;
  }

  .recruit_lists li:nth-child(2n - 1) {
    margin-left: 0;
  }

  .recruit_lists li a {
    font-size: 1.5rem;
    padding: 96px 0 13px;
  }

  .recruit_lists .item01 a::after {
    background-size: 50px auto;
    height: 64px;
    top: 21px;
    width: 50px;
  }

  .recruit_lists .item02 a::after {
    background-size: 63px auto;
    height: 64px;
    top: 21px;
    width: 63px;
  }

  .recruit_lists .item03 a::after {
    background-size: 66px auto;
    height: 49px;
    top: 25px;
    width: 66px;
  }

  .recruit_lists .item04 a::after {
    background-size: 47px auto;
    height: 44px;
    top: 32px;
    width: 47px;
  }

  .recruit_more {
    margin-top: 44px;
  }
}

/* ------------------------------------------
  result
------------------------------------------ */
.result {
  background-image: url(../img/result_back.png);
  background-position: center;
  background-size: cover;
  padding: 80px 0 60px;
}

.result .container .heading {
  color: #fff;
}

.result .container .heading span {
  color: #fff;
}

.result_lists {
  display: flex;
  margin-top: 60px;
}

.result_lists .item {
  height: 157px;
  margin-left: 30px;
  width: calc(50% - 15px);
}

.result_lists .item a {
  display: flex;
  height: 100%;
  overflow: hidden;
}

.result_lists .item a:hover {
  opacity: 1;
}

.result_lists .item a:hover .result_lists_img {
  transform: scale(1.1,1.1);
  transition: .5s all;
}

.result_lists .item:first-child {
  margin-left: 0;
}

.result_lists_img {
  height: 100%;
  transition: .5s all;
  width: calc(100% - 246px);
}

.result_lists_img img {
  height: 100%;
}

.result_lists_text {
  background-color: #8bd4cb;
  padding: 35px 24px;
  position: relative;
  width: 245px;
}

.result_lists_text .title {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.3;
}

.result_lists_text .lists li {
  background-color: #fff;
  color: #17aa97;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 10px;
  padding: 5px;
  text-align: center;
}

.result_more {
  margin-top: 53px;
}

@media screen and (max-width: 767px) {
  .result {
    background-image: url(../img/sp_result_back.png);
    background-position: center;
    background-size: cover;
    padding: 35px 0;
  }

  .result .container .heading span {
    display: block;
    margin-bottom: 5px;
  }

  .result_lists {
    margin-top: 35px;
  }

  .result_lists .item {
    height: auto;
    margin-left: 20px;
    width: calc(50% - 10px);
  }

  .result_lists .item a {
    display: block;
    height: auto;
  }

  .result_lists_img {
    width: auto;
  }

  .result_lists_img img {
    height: auto;
  }

  .result_lists_text {
    padding: 10px;
    width: 100%;
  }

  .result_lists_text .title {
    font-size: 1.3rem;
  }

  .result_lists_text .lists li {
    font-size: 1rem;
    margin-top: 5px;
    padding: 3px;
  }

  .result_lists_text::after {
    background-size: 5px auto;
    height: 7px;
    right: 10px;
    width: 5px;
  }

  .result_more {
    margin-top: 35px;
  }
}
