@charset "utf-8";

@media only screen and (min-width: 769px){
  .sponly{
    display: none !important;
  }
}
@media only screen and (max-width: 768px){
  .pconly{
    display: none !important;
  }
}
html{
  margin: 0 !important;
  background: #e6f1f0;
}
body{
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding: 30px 20px;
}
p{
  margin: 0;
}
header{
  background: white;
  border-radius: 10px;
  border: 1px solid #dadce0;
}
header h1{
  background: #131b3f;
  border-radius: 10px 10px 0 0;
  padding: 10px 0;
  margin: 0 0 30px;
  color: white;
  font-size: 28px;
  text-align: center;
}
header .intro p{
  margin: 0;
  font-size: 28px;
  line-height: 1.5;
  padding: 0 20px 20px;
}

.form-header {
  background: none !important;
  border: none !important;
}

.form-header h1 {
  border: 1px solid #dadce0 !important;
  border-radius: 10px !important;
}

section.step h2{
  margin: 20px 0 -20px;
  color: white;
  font-size: 18px;
  background: #131b3f;
  border-radius: 10px 10px 0 0;
  padding: 10px 20px;
  border: 1px solid #dadce0;
  border-bottom: none;
}
section.step .formpart{
  background: white;
  border: 1px solid #dadce0;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}
section.step .formpart.kado{
  border-radius: 0 0 10px 10px;
}
section.step .formpart .formname{
  font-size: 16px;
  margin-bottom: 15px;
}
section.step .formpart .formname .chui{
  font-size: 12px;
}

section.step .formpart .formname span{
  color: #d93025;
  font-size: 12px;
}
section.step .formpart .forminput .wpcf7-list-item{
  margin: 0 0 10px;
}
section.step .formpart .forminput .wpcf7-list-item label{
  display: flex;
  column-gap: 10px;
  align-items: flex-start;  
}
section.step .formpart .forminput .wpcf7-list-item label input[type="checkbox"]{
  position: relative;
  top: 4px;
}
section.step .formpart .forminput input[type="text"],
section.step .formpart .forminput input[type="email"]{
  font-size: 16px;
  width: 97%;
  border: none;
  border-bottom: 1px solid #dadce0;
  max-width: 500px;
  padding: 10px;
}
section.step .formpart .forminput textarea{
  width: 97%;
  font-size: 16px;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #dadce0;
  height: 5em;
  font-family: inherit;
}
section.step .button{
  width: 10%;
  margin: 20px auto;
}
section.step .button .prev{
  cursor: pointer;
  color: #131b3f;
  background: white;
  border: 1px solid #dadce0;
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
}
section.step .button .next{
  cursor: pointer;
  color: white;
  background: #131b3f;
  border: 1px solid #dadce0;
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
}
section.step .button .prev:hover,
section.step .button .next:hover{
  opacity: 0.7;
}
section.step .agree{
  background: #efe7e7;
  padding: 4px;
}
section.step .agree p{
  margin-bottom: 15px;
}
section.step .confirm{
  background: #efe7e7;
  padding: 4px;
}
section.step input[type="submit"]{
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
section.step .button .wpcf7-spinner{
  display: none;
}
.step-position{
  display: flex;
  justify-content: center;
  margin-top: 40px;
  column-gap: 45px;
}
.step-position .position{
  position: relative;
}
.step-position .position::before{
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #8b8b8b;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}
.step-position .position::after{
  content: "";
  width: 81px;
  height: 2px;
  background: #8b8b8b;
  position: absolute;
  left: 33px;
  top: -15px;
}
.step-position .position.last::after{
  display: none;
}
.step-position .position.active::before{
  background: #131b3f;
}

@media only screen and (max-width: 768px){
  body{
    max-width: 500px;
    padding: 30px 0;
  }
  .step-position{
    column-gap: 20px;
  }
  .step-position .position::after{
    width: 55px;
  }
  section.step .formpart .forminput input[type="text"],
  section.step .formpart .forminput input[type="email"]{
    width: 93%;
  }
  section.step .button{
    width: 30%;
  }
}