@charset "UTF-8";

#formWrap {
	width:600px;
	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;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background-color: rgba(67,11,7,0.1);
	text-align:left;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	width: 15%;
	font-size: 1.4em;
}
.errM {
	font-weight: bold;
	line-height: 1.5em;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:767px) {
	#formWrap {
		width:95%;
		margin:0 auto;
		height: 870px;
	}
	h2 {
		text-align: center;
	}
	table.formTable th, table.formTable td {
		width:auto;
		display:block;
	}
	table.formTable th {
		margin-top:5px;
		background-color: rgba(67,11,7,0.4);
		border-bottom:0;
		color: #FFF;
	}
	input[type="text"], textarea {
		width:80%;
		padding:5px;
		font-size:110%;
		display:block;
	}
	input[type="submit"], input[type="reset"], input[type="button"] {
		width:40%;
		height:40px;
		background: #FFF;
	}
	.errM {
		text-align: left!important;
		line-height: 1.5em;
	}
}