.pc{display: block;}
.sp{display: none;}

img{
  vertical-align: bottom;
}

header{
  
}

header h1{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  height: 75px;
  color: #fff;
}

header h1 ul{
  display: flex;
}

header h1 ul li{
  background: #ff7e00;
  margin-left: 20px;
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

header h1 ul li a{
  color: #fff;
  display: block;
}

header h1 ul li:last-child{
  background: #06c152;
}

header #header_nav{
  display: flex;
  height: 125px;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

header nav ul{
  display: flex;
}

header nav ul li{
  margin-left: 20px;
}

.wid1000{
  width: 1000px;
  margin: 0 auto;
}

#mainvisual{
  /* background: #0045a2; */
  background: #ffe5b9;
}

.mainV_inner{
  display: flex;
  position: relative;
}

.float{
  position: absolute;
  top: 0;
  right: 0;
}

.mainV_inner .left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
}

.mainV_inner .left a{
  margin-top: 10px;
}

.mainV_inner .left form label{
  color: #000;
  padding: 0 10px;
}

.mainV_inner .left form label input[type=text] {
  height: 40px;
  line-height: 40px;
}

.mainV_inner .left form label p{
  bottom: 4px;
}

.mainV_inner .left form input[type=image] {
  margin-top: 5px;
}

.mainV_inner .left form div{
  margin-top: 5px;
}

.worries_inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.worries_inner h2{
  margin: 50px 0;
}

.leaveitme_inner{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.leaveitme_inner img:first-child{

}

.leaveitme_inner div{
  display: flex;
  flex-direction: column;
}

.leaveitme_inner a{
  width: 200px;
  height: 50px;
  line-height: 50px;
  background: #ff0;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 30px;
}

#recommend{
  text-align: center;
  margin: 30px 0;
}

.contact{
  max-width: 1000px;
  height: 150px;
  margin: 50px auto 0;
}
.contact ul{
  display: flex;
  justify-content: center;
}
.contact ul li{
  text-align: center;
  line-height: 50px;
  width: 200px;
  height: 50px;
}
.contact ul li a{
  display: block;
  width: 100%;
  height: 100%;
  background: #ff7e00;
  border-radius: 100px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.contact ul li.line a{
  background: #06c152;
}

#worries{
  background-size: auto auto;
  background-color: rgba(215, 242, 255, 1);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(233, 248, 255, 1) 10px, rgba(233, 248, 255, 1) 20px );
}

#leaveitme{
  background: #ffb12d;
}

.form_top{
  text-align: center;
  margin: 50px;
}

.form_top p{
  font-size: 50px;
  font-weight: bold;
  color: #0045a2;
}

.form_top p:last-child{
  font-size: 35px;
}

.form{
  background: #ffb12d;
}

.form div{
  text-align: center;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
}

form div{
  display: flex;
  margin-top: 30px;
}

label{
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 40px;
  position: relative;
}

label p{
  position: absolute;
  right: 50px;
  bottom: 20px;
  color: #000;
}

input[type=text]{
  background: #fff;
  border-radius: 5px;
  width: 100%;
  height: 70px;
  line-height: 70px;
  color: #666;
}

input[type=image]  {
  margin-top: 15px;
  background: none;
}

#about{
  text-align: center;
}

#about h2{
  margin: 50px 0;
}

#about p{
  text-align: left;
  width: 70%;
  margin: 50px auto;
}

#choose{
  background: #ffb12d;
}

.choose_inner{
  padding: 50px 0;
  text-align: center;
}

.choose_inner p{
  text-align: left;
  margin: 50px auto;
  width: 70%;
  color: #fff;
}

#step{
  text-align: center;
}

#step h2{
  margin-bottom: 30px;
}

#step p{
  margin-top: 30px;
}

#company{
  background: #ddd;
  text-align: center;
  padding: 50px 0;
  margin: 50px 0 0;
}

#company h2{
  font-size: 30px;
  font-weight: bold;
}

footer{
  background: #000;
  color: #fff;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 50px;
}

footer div{
  display: flex;
}

footer nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

footer nav ul{
  display: flex;
}

footer nav ul li{
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .pc{display: none;}
  .sp{display: block;}
  
  header h1 {
    flex-direction: column;
    height: auto;
  }
  header h1 div{
    width: 100%;
  }
  header h1 ul{
    display: flex;
    justify-content: space-between;
  }
  header h1 ul li {
    margin-left: 0px;
    width: 50%;
  }
  header #header_nav {
    display: none;
  }
  
  img{
    width: 100%;
  }
  .wid1000{
    width: 100%;
  }
  .right{
    display: none;
  }
  .float {
    top: -10px;
    width: 110px;
  }
  .contact {
    height: initial;
    margin: 0px auto 20px;
  }
  .contact ul {
    flex-direction: column;
  }

  .contact ul li {
    width: 100%;
    margin-top: 20px;
  }
  #leaveitme img{
    width: 45%;
  }
  #leaveitme img:last-child{
    /* width: 55%; */
  }
  .leaveitme_inner div{
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .leaveitme_inner div img{
    width: 90%!important;
  }
  .leaveitme_inner div a{
    width: 90%;
    height: 45px;
    display: block;
    margin-top: 10px;
    text-align: center;
    background: #fff01b;
    border-radius: 5px;
    line-height: 45px;
    font-weight: bold;
  }
  .form_top p {
    font-size: 26px;
  }
  .form div {
    font-size: 26px;
    flex-direction: column;
  }
  input[type=image] {
    width: 100%;
  }
  #about p {
    width: 85%;
  }
  .choose_inner p {
    width: 85%;
  }
  footer{
    padding: 20px 0;
  }
  footer div {
    flex-direction: column;
  }
  footer nav {
    justify-content: center;
  }
  footer nav ul {
    flex-direction: column;
  }
  footer nav ul li {
    margin-left: 0px;
  }
  .sp form label{
    color: #000;
    padding: 0 10px;
  }
  
  .sp form label input[type=text] {
    height: 40px;
    line-height: 40px;
  }
  
  .sp form label p{
    bottom: 4px;
  }
  
  .sp form input[type=image] {
    margin-top: 5px;
  }
  
  .sp form div{
    margin-top: 5px;
  }
}