@charset "UTF-8";

#formWrap {
	width:80%;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
	text-align:center;
}
table.formTable th{
	width:35%;
	font-weight:normal;
	background:#efefef;
	text-align:center;
}

table.formTable td input {
	border-radius:5px;
	line-height: 28px;
	border:1px solid #aaa;
	height: 35px;
}

textarea {
	border:1px solid #aaa;

}

input[type="submit"],input[type="reset"] {
	width:17%;
	height:45px;
	border-radius:5px;
	border:1px solid #aaa;

}

@media screen and (max-width:768px) {
	#formWrap {
		width:95%;
		margin:0 auto;
	}
	table.formTable th, table.formTable td {
		width:auto;
		display:block;
	}
	table.formTable th {
		margin-top:5px;
		border-bottom:0;
	}
	input[type="text"], textarea {
		width:100%;
		padding:5px;
		font-size:110%;
		display:block;
	}
	input[type="submit"], input[type="reset"], input[type="button"] {
		display:block;
		width:100%;
		height:40px;
	}

}