@charset "utf-8";
/* CSS Document */

.form_box {	
	font-size: 18px;
}

.form_box .form {
	margin-bottom: 25px;
}

.form_box .form label {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: bold;
	color: #2F2F2F;
}

.form_box label em {
	color: #E61F6E;
	font-style: normal;
	font-weight: normal;
}

.form_box .input {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 5px;
	width: 100%;
	height: 35px;
	line-height: 35px;
	border: 1px solid #CCC;
}

.form_box .input_money {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 5px;
	width: 10%;
	height: 35px;
	line-height: 35px;
	border: 1px solid #CCC;
}

.form_box .input_website {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 5px;
	width: 60%;
	height: 35px;
	line-height: 35px;
	border: 1px solid #CCC;
}

.form_box .form select {
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 5px;
	height: 35px;
	border: 1px solid #CCC;
}

.form_box .form textarea {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	height: 80px;
	padding: 0 5px;
	border: 1px solid #CCC;
}

.form_box .checkbox_menu ul li {
	float:left;
	width:25%;;
}

.error {
	box-shadow: 0 0 10px #F00;
}

.form_note {
	clear: both;
	text-align: left;
	line-height: 20px;
	color: #FF0F0F;
}


.content_text {
	padding-bottom: 50px;
}



@media (max-width: 800px) {
	.form_box .checkbox_menu ul li {
		float:left;
		width:50%;;
	}
}



@media (max-width: 450px) {
	.form_box .checkbox_menu ul li {
		float:left;
		width:100%;;
	}
}


