@charset "UTF-8";


.contBox{
  padding: 250px 0 0;
  max-width: 1080px;
  margin: 0 auto;
}

.contTitle{
  font-size: 8.4rem;
  color: #0a508e;
  text-align: center;
  margin-bottom: 50px;
}

.contTitle span{
  font-size: 1.6rem;
  display: block;
  color: #109ac4;
  margin-top: 24px;
}

.contacIntro{
  font-size: 1.8rem;
  margin-bottom: 70px;
  text-align: center;
}


.completeTtl{
	text-align: center;
	margin-bottom: 5vw;
	font-size: 2vw;
}


.contBox.complete{
	margin-bottom :70px;
}




.completeTxt{
    max-width: 1100px;
    margin: 0 auto 100px;
}


.innerBox{
    margin-bottom: 80px;
    text-align: center;
}

.innerBox .boxTitle{
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #20573a;
}

.telBox{
    display: flex;
    width: 100%;
    background: #20573a;
    color: #fff;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 50px 0;
    margin-top: 30px;
    position: relative;
}

.telBox img{
  max-width: 66px;
}



.telBoxInner{
    font-size: 1.4rem;
    line-height: 1.5;
}

.telBoxInner strong{
    display: block;
    font-size: 4.8rem;
}


.requredTxt{
    margin-bottom: 2vw;
}



.requredTxt span{
    color:#FF4221 
}

.formPartWrap{
  max-width: 1100px;
  margin:0 auto;
}




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



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



.formPart dt span {
    display: block;
    color: #fff;
    background: #20573a;
    border-radius: 10px;
    text-align: center;
    width: 45px;
    height: 25px;
    line-height: 25px;
    font-size: 1.2rem;
}





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



.formPart dd span{

    display: block;

    padding-top: 4px;

    font-size: 1.2rem;

}



.txtFix{

    padding: 5px 20px;

}





input[type="text"],
input[type="tel"],
input[type="email"]

{
    background: #f5f5f5;
    border: 1px solid #cccccc;
    border-radius: 10px;
    width: 100%;
    line-height: 50px;
    height: 50px;
    padding: 10px;
}


.short{
    max-width: 380px;
}

.radioWrap{

  height: auto;

}



.visible{

  background: #FFF!important;

}


textarea {
  background: #f5f5f5;  
  border: 1px solid #cccccc;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
}



.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 {

  /*display: none;*/

  margin-left: -22px;

}



/*

.mwform-radio-field-text{

    padding-left: 23px;

}

*/



select{ 
    background: url("../img/select_arrow.jpg") no-repeat 96% center #f5f5f5 !important;
    padding: 10px;    
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    width: 380px;
    height: 50px;
    font-size: 16px!important;
    font-size:1.6rem!important;
    border: 1px solid #cccccc;
    border-radius: 10px;

}

select::-ms-expand{

    display: none;

}


/*
input[type="radio"] + label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding-left: 24px;    
}    
*/

/*

input[type="radio"] {
    display: inline-block;
    margin-right: -3px;
}


input[type="radio"]::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  background: #ffffff;
  border: 2px solid #0C7459;
  border-radius: 30px;
}


input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    left: 5px;
    bottom: 0;
    width: 8px;
    height: 8px;
    margin: auto;

    bakground: #0C7459;
    border-radius: 8px;
}
*/




input[type=checkbox] {
    display: inline-block;
    margin-right: -3px;
    display: none;
}





input[type=checkbox] + label {

    position: relative;

    display: inline-block;

    cursor: pointer;

    padding-left: 24px;

}





.checkbox-input + span::before, input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 24px;
    height: 24px;
    margin-top: -10px;
    background: #ffffff;
}



.checkbox-input + span::before, input[type="checkbox"] + label::before {
    border: 2px solid #000;
}





input[type="checkbox"]:checked + label::after {

  content: "";

  position: absolute;

  top: 10px;

  left: 4px;

  width: 18px;

  height: 8px;

  border-left: 2px solid #000;

  border-bottom: 2px solid #000;

  -webkit-transform: rotate(-45deg);

  -ms-transform: rotate(-45deg);

  transform: rotate(-45deg);

}



.checkbox-input{

    display: none;

}



.checkbox-input:checked + .mwform-checkbox-field-tex::after

{

  content: "";

  display: block;

  position: absolute;

  top: -5px;

  left: 5px;

  width: 7px;

  height: 14px;

  transform: rotate(40deg);

  border-bottom: 3px solid #1b91cc;

  border-right: 3px solid #1b91cc;

}



input::placeholder,textarea::placeholder{

  color: #c8c8c9;

}





.agreeBox{

	margin-bottom:50px;

    text-align: center;

}



.agreeBox label{

     padding-left: 40px !important;

}

.agree-intro{

    padding-bottom: 30px;

}



.agree-intro a{
    color: #20573a;
}



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

}



.btnSubmit {
  font-weight: 400;
  font-style: normal;
  height: 60px;
  line-height: 60px;
  color: #fff;
  position: relative;
  text-align: center;
  overflow: hidden;
  display: block;
  background: #20573a;
  border: 1px solid #20573a;
  width: 240px;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: bold;
}



  

.btnSubmit::after {
    display: none;
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0;
    margin: auto;
    z-index: 2;
    right: 2vw;
    width: 0.8vw;
    height: 0.8vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}



.btnSubmit.back {
    background: #fff;
    color: #20573a;
}



.complete .btnSubmit{

    margin:0 auto;

}





.submit-confirm{
    margin:0 auto;
    display: block;
    pointer-events: none;
    opacity: 0.5;
}



.submit-confirm.clear{
    pointer-events: auto !important;
    cursor: pointer !important;
    transition: all 0.2s;
    opacity: 1 !important;
}







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



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



.formIntro strong{

  text-align: center;

  margin-bottom: 40px;

  font-size: 2rem;

  font-weight: bold;

  display: block;

}



.formIntro.complete{

  text-align: left;

  font-size: 1.6rem;

}





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

/*896*/

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

.telBox{
    padding: 24px 10px;
    margin-top: 30px;
}


.telBox a{
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left:0;
  color: #fff;
}


.telBoxInner{
    text-align: left;
}

.telBoxInner strong{
    display: block;
    font-size: 2.4rem;
}

.telBox img{
    max-width: 50px;
}


    .contBox{
      padding: 50px 20px;
    }

    .contTitle{
      font-size: 4rem;
      margin-bottom: 24px;
    }


    .contBox p {

        padding: 0;

    }



    .formIntro {

      margin: 0 auto 50px;

      font-size: 1.6rem;

      padding: 0 20px;

    }



    .completeTxt{
      margin: 0 auto 50px;
    }



    .requredTxt {

      margin-bottom: 20px;

      font-size: 1.6rem;

    }



    .formPart {

      display: block;

      margin-bottom: 50px;

    }



    .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;

    }



    select {

        line-height: 30px;

        width: 100%;

    }



    .inputWrap input {

      width: 58%;

      margin-right: 10px;

    }



    .formIntro{

        margin:0 auto 50px;

        font-size: 1.6rem;

        padding: 0;

    }



     .agreeBox {

        padding: 0;

        margin-bottom: 50px;

        text-align: center;

        font-size: 1.4rem;

    }



    .agree-intro {

      padding-bottom: 20px;

    }



    .agreeBox label {

      font-size: 1.6rem;

    }





    .sumbitBox {
        /*max-width: 90%;*/
        /*display: block;*/
        margin: 0 auto 100px;
    }    



    .btnSubmit {

        width: 100%;

        margin-bottom: 20px;

    } 



    .btnSubmit::after {

        right: 20px;

        width: 8px;

        height: 8px;  

    } 





    .sumbitBox .btnCommon{

      width: 46%;

      font-size: 18px;
      
      font-weight: bold;

    }





}



