@charset "UTF-8";
#fv{
  width: 100%;
  margin: auto;
  max-width: 1100px;
}
#fv img{
  width: 100%;
}
#form{
  margin: 30px auto 40px;
  width: 80%;
  max-width: 750px;
  box-shadow: 0px 8px 20px #e4e4e4;
  border-radius: 20px;
}
#form h2{
  background: #1b1464;
  color: white;
  text-align: center;
  font-size: 26px;
  padding: 15px 0;
  border-radius: 20px 20px 0 0;
}
#form iframe{
  width: 100%;
  height: 750px;
  border-radius: 20px;
}


footer{
  width: 100%;
  margin: auto;
  max-width: 1100px;
  border: none;
  background: #1b1464;
  padding: 30px 0;
  color: white;
  text-align: center;
  font-size: 16px;
}
footer img{
  width: 300px;
}
footer ul{
  display: flex;
  margin: 30px 0;
  justify-content: center;
  column-gap: 10px;
}
footer ul li a{
  color: white;
}



/* フォーム */
form{
  padding: 30px;
}
.step{
  display: flex;
  margin-bottom: 15px;
  justify-content: center;
  column-gap: 20px;
}
.step > div{
  width: 5em;
  text-align: center;
}
.step > div .maru{
  background: #c1c1c1;
  width: 20px;
  height: 20px;
  margin: 0 auto 5px;
  border-radius: 50%;
}
.step > div p{
  color: #c1c1c1;
  font-size: 14px;
}
.step > div.active .maru{
  background: #1b1464;
}
.step > div.active p{
  color: #1b1464;
}
#complete{
  padding: 30px;
}
#complete h2{
  text-align: center;
  margin: 15px 0;
  font-size: 20px;
  color: #1b1464;
}
#complete > p{
  font-size: 16px;
  line-height: 1.5;
}

.input_block{
  margin-bottom: 15px;
}
.input_block h3{
  font-size: 18px;
  margin-bottom: 5px;
}
.input_block h3 .required{
  background: #ff0000;
  color: white;
  font-weight: normal;
  font-size: 16px;
  width: 3em;
  display: inline-block;
  text-align: center;
  padding: 2px 0;
  border-radius: 4px;
  position: relative;
  left: 10px;
  bottom: 2px;
}
.input_block input[type="radio"]{
  display: none;
}
.input_block .wpcf7-radio{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.input_block .wpcf7-radio .wpcf7-list-item{
  margin: 0;
  width: 49%;
}
.wpcf7-list-item{
  margin: 0;
}
.input_block .wpcf7-radio label{
  width: 100%;
  display: block;
  text-align: center;
  padding: 20px 0;
  border: 1.5px solid #1b1464;
  border-radius: 20px;
  margin-bottom: 10px;
  font-size: 16px;
}
.input_block .wpcf7-radio label:hover,
.input_block .wpcf7-radio label.checked{
  background: #1b1464;
  color: white;
  font-weight: bold;
}
.input_block select,
.input_block input[type="text"],
.input_block input[type="email"],
.input_block input[type="tel"]{
  width: 100%;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 10px;
}
.agreement{
  text-align: center;
  font-size: 18px;
  margin-top: 25px;
}
.submit{
  margin-top: 30px;
}
.submit:not(.single){
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.submit:not(.single) > div{
  width: 48%;
}
input[type="submit"]{
  background: #dfc167;
  font-size: 24px;
  width: 10em;
  padding: 10px 0;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  border: none;
  color: white;
}
.submit:not(.single) > div input[type="button"]{
  background: #f1e7e2;
  color: #beadad;
  font-size: 24px;
  width: 10em;
  padding: 10px 0;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  border: none;
}
.submit:not(.single) > div input[type="button"]:hover{
  opacity: 0.8;
}
.wpcf7-spinner{
  display: none;
}
.confirm_page h2{
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.confirm_page .confirm_flex{
  display: flex;
  justify-content: space-between;
}
.confirm_page .confirm_flex .confirm_left,
.confirm_page .confirm_flex .confirm_right{
  width: 48%;
}

@media only screen and (max-width: 768px){
  .pconly{
    display: none !important;
  }
  footer img{
    width: 240px;
  }

  #form iframe{
    height: 700px;
  }
  form{
    padding: 15px;
  }
  .input_block h3{
    font-size: 16px;
  }
  .input_block h3 .required{
    font-size: 14px;
  }
  .input_block input[type="text"],
  .input_block input[type="email"],
  .input_block input[type="tel"]{
    width: 85%;
  }
  .submit:not(.single){
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .submit:not(.single) > div{
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 769px){
  .sponly{
    display: none !important;
  }
}