
.formWrap{
	background: #333;
	padding: 50px 0;
	color: #fff;
}

.formBox{
	max-width: 890px;
	margin: 0 auto;
}


.formBoxTitle{
	position: relative;
	padding-bottom: 20px;
}

.formBoxTitle::after{
	content: "";
	position: absolute;
	width: 50px;
	height: 5px;
	background: #fff;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	padding: 0;	
}

.intro{
	margin-bottom:50px; 
}
.nesseary{
	color: #ff0000;
}


.formPart{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.formPart dt{
	width: 30%;
	margin-bottom: 30px;
	color: #fff;
	line-height: 60px;
	text-align: left;
	font-size: bold;
}

.formPart dd{
	width: 70%;
	margin-bottom: 30px;
}

.ps{
	text-align: left;
	font-size: 14px;
	display: block;
	margin-top: 1%;
}

input[type="text"], 
input[type="tel"], 
input[type="email"] {
  width: 100%;
  line-height: 60px;
  height: 60px;
  font-size: 16px;
  padding: 1%;
  border-radius: 0;
  border: none;
  box-sizing: border-box;
  background: #fff;	
}

textarea{
	width: 100%;
	background: #fff;	
	border: none;
	padding: 1%;
	font-size: 16px;
	box-sizing: border-box;
}

select {
  width: 100%;
  line-height: 60px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../img/arrow_select.png") 98% center no-repeat #fff;
  background-size: 14px 14px;
  border: none;
  padding: 0 1%;
}

::placeholder {
  color: #707070;
}


.agreeBox{
	margin-bottom:60px; 
}

.agreeBox a{
	color: #fff;
	text-decoration: underline;
}

.agreeCheckBox{
	margin-top:30px;
	display: block; 
}

.btn_submit{
  cursor: pointer;
  width: 330px;
  height: 50px;
  line-height: 50px;
  position: relative;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  border: 1px solid #fff;
  background: transparent;
  background: url(../img/arrow_right.png) no-repeat 90% center transparent;
}


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

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

.submitBack {
  background: transparent;
  text-decoration: underline;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.confirm .agreeCheckBox{
  display: none;
}

.confirm .formPart dt{
	line-height: 1;
}
.confirm .formPart dd{
	margin-bottom: 80px;
	text-align: left;
}

.complete .intro{
	text-align: left;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output,
.wpcf7-spinner,
.wpcf7-spinner::before {
  display: none!important;
}

@media only screen and (max-width: 641px) {
	.formWrap{
		padding: 50px 10px;
	}

	.formPart{
		display: block;
	}

	.formPart dt{
		width: 100%;
		margin-bottom: 10px;
		line-height: 1;
	}

	.formPart dd{
		width: 100%;
	}


	.confirm .formPart dd{
		margin-bottom: 40px;
	}

}	