@charset "UTF-8";




.formPartWrap{
  max-width: 1100px;
  margin:90px auto 0;
  padding-top:40px;
  border-top:1px solid #b49531; 
}

.intro{
  margin-bottom: 80px;
}

.complete .intro{
  margin-bottom: 200px;
}


.formPart{
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
  align-items: flex-start;
}



.formPart dt{
  width:30%;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  justify-content: space-between;
  padding-top: 10px;
}



.formPart dt span {
    display: block;
    color: #fff;
    background: #e60012;
    text-align: center;
    width: 70px;
    height: 22px;
    line-height: 22px;
    font-size: 1.2rem;
}


.formPart dd {
    width: 64%;
    position: relative;
    margin-bottom: 50px;
}



input[type="text"],
input[type="tel"],
input[type="email"]
{
    background: #f9f9f4;
    border-radius: 10px;
    width: 100%;
    line-height: 50px;
    height: 50px;
    padding: 10px;
    border: none;

}


.radioWrap{
  height: auto;

}

.visible{
  background: #FFF!important;
}


textarea {
  background: #f9f9f4;  
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  border: none;

}



.inputWrap{
  display: flex;
  justify-content: space-between;
}



.inputWrap input{
  width:190px;
  margin-right:20px;
}


label{
    position: relative;
    display: inline-block;
    margin-right: 12px;
    line-height: 30px;
    cursor: pointer;
    display: block;
}


.radio {
  margin-left: -22px;
}


input::placeholder,textarea::placeholder{
  color: #cccccc;
}


.sumbitBox{
  max-width: 280px;
  margin:0 auto 150px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap:30px;

}

.confirm .agreeBox,
.confirm .nessceray,
.confirm dd span{
    display: none;
}



.confirm .formPart dd {
   padding: 1vw;
   background: none;
}



.formIntro.complete{
  text-align: left;
  font-size: 1.6rem;
}





/* Media Queries ================================================== */

/*896*/

@media screen and (max-width: 896px) {


  .pageTtl::after {
    top: 250px;
  }


  .intro{
    margin-bottom: 40px;
    padding: 0 20px;
  }

    .completeTxt{
      margin: 0 auto 50px;
    }


    .formPart {
      display: block;
      margin-bottom: 50px;
      padding: 0 20px;
    }



    .formPart dt {
      width: 100%;
      font-size: 1.6rem;
      margin-bottom: 10px;
    }



    .formPart dd {
      width: 100%;
      margin-bottom: 30px;
      font-size: 1.6rem;
    }



    input[type="text"], input[type="tel"], input[type="email"]{
      line-height: 30px;
      height: 50px;
    }



    label {
      font-size: 1.6rem;
      display: block;
    }



    .radioWrap {
        height: auto;
        padding-top: 10px;
        line-height: 1.2;
    }


    .sumbitBox {
        margin: 0 auto 100px;
    }    

    .complete .intro{
      margin-bottom: 100px;
    }

}



