@charset "utf-8";
/* CSS Document */
.contact_form{
	padding: 50px 0;
}

.contact_form h2{
	color:#000;
	font-weight:bold;
}

.contact_form h2:before {
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 70px;
  height: 5px;
  content: '';
  border-radius: 5px;
  background: #000;
}

.form_item{
	margin:40px 0;
	display:flex;
}

.f_tit{
	font-size: 20px;
	width:40%;
}
.f_tit .red{
	color:#fff;
	background-color:#163a02;
	padding:5px 10px;
	border-radius:10px;
	margin-right:20px;
}

.form_item input{
	height:30px;
	width:300px;
}

.form_item textarea{
	width:300px;
	height:150px;
}

.submit{
	font-size: 20px;
	color:#fff;
	background-color:#163a02;
	padding:5px 10px;
	width: 20%;
	display: block;
	margin: 0 auto;
}

.submit:hover{
	opacity: 0.8;
}

.thanks .contact_form p{
	text-align:center;
    font-size:24px;
    line-height:35px;
    margin-top:100px;
}

.thanks .contact_form{
	min-height:450px;
}


@media screen and (max-width:640px) {

.form_item{
	display:block;
}

.f_tit{
	font-size: 20px;
	width:100%;
}

.form_item input{
	margin:20px 0;
	width:95%;
}
.form_item textarea{
	margin:20px 0;
	width:95%;
}

.thanks .contact_form p{
    font-size:18px;
}



}