/*Mv
=======================================================*/
.mv{
  width: 100%;
  padding: 150px 0 350px;
  margin-top: -60px;
  position: relative;
}
.mv::after{
  content: "";
  background: url(../img/mv.png) no-repeat;
  width: 2100px;
  height: 100vh;
  background-position: top center;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}
.mv-catch-txt{
  font-family: "NotoSansJP Bold";
  font-size: 52px;
  text-align: center;
}
img.mv-catch-img{
  width: 70%;
}

@media screen and (min-width:768px) and ( max-width:1000px){
  img.mv-catch-img{
    width: 50%;
  }
}

@media screen and (max-width: 768px){
  .mv{
    padding: 80px 0 100px;
  }
  .mv::after{
    width: 100%;
    background: url(../img/mv-sp.png) no-repeat;
    background-size: 100%;
  }
  .mv-catch-txt{
    font-size: 7.1vw;
  }
}

/*About us
=======================================================*/
.about{
  margin-top: -250px;
}
.about-wrap{
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.about-wrap h2{
  width: 50%;
}
.about-inner{
  width: 40%;
}
.about-txt{
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
}
.about-bg{
  position: absolute;
  z-index: -1;
  top: -27%;
  left: 40%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 768px){
  .about{
    margin-top: -200px;
  }
  .about-wrap h2{
    width: 100%;
  }
  .about-inner{
    width: 100%;
  }
  .about-txt{
    font-size: 3.7vw;
    margin-top: 10px;
  }
}

/*Recruit
=======================================================*/
.recruit{
  position: relative;
}
.recruit-bg1{
  position: absolute;
  left: -10%;
  width: 80%;
  top: -60%;
  z-index: -2;
}
.recruit-bg2{
  position: absolute;
  right: -35%;
  width: 80%;
  top: -40%;
  z-index: -1;
}
.recruit-txt{
  font-family: "NotoSansJP Regular";
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

@media screen and (max-width: 1300px){
  .recruit-bg1{
    left: 0;
    top:-15%;
  }
  .recruit-bg2{
    width: 80%;
    top:-15%;
  }
}
@media screen and (max-width: 768px){
  .recruit-bg1{
    width: 100%;
    left: 0;
  }
  .recruit-bg2{
    width: 70%;
    right: 0;
  }
  .recruit-txt{
    font-size: 3.7vw;
  }
}

/*Company
=======================================================*/
.company-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.company-inner{
  width: 50%;
}
.company-inner dl{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  line-height: 2;
  width: 100%;
}
.company-inner dl:last-child{
  margin-bottom: 0;
}
.company-inner dl dt{
  font-family: "NotoSansJP SemiBold";
  font-size: 14px;
  width: 30%;
}
.company-inner dl dt::before{
  content: "-";
}
.company-inner dl dd{
  font-family: "NotoSansJP Regular";
  font-size: 14px;
  width: 70%;
}
.company-map{
  width: 50%;
}
.company-map .company__map{
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px){
  .company .common{
    padding: 0;
  }
  .company-wrap{
    margin-top: 30px;
  }
  .company-inner{
    width: 100%;
    margin-bottom: 30px;
  }
  .company-inner dl{
    margin-bottom: 20px;
  }
  .company-inner dl dt{
    width: 100%;
  }
  .company-inner dl dd{
    width: 100%;
  }
  .company-map{
    width: 110%;
    height: 300px;
    position: relative;
    margin-left: -5%;
    margin-right: -5%;
  }
  .company-map .company__map{
    width: 100%;
  }
}

/*Contact
=======================================================*/
.contact{
  position: relative;
}
.contact-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  background: #fff;
  box-shadow: 0px 0px 10px #eee;
  border-radius: 30px;
  padding: 50px 50px 100px 50px;
}

@media screen and (max-width: 768px){
  .contact{
    background: #F5F5F5;
  }
  .contact-wrap{
    padding: 40px 20px 70px;
  }
  .contact-inner{
    width: 100%;
    margin-top: 20px;
  }
  .contact-txt{
    font-size: 3.7vw;
  }
  .contact a.btn-normal{
    width: 100%;
    margin: 20px auto 0;
  }
}