#formWrap {
	width:auto;
	max-width: 650px; /* 最大幅650px */
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable th{
	height:75px;
	border:1px solid #ccc;
	justify-items: center;
	align-content: center;
	font-weight:normal;
	background:#efefef;
}
table.formTable td{
	border:1px solid #ccc;
	padding:10px;
}
p{
margin: 0px 10px 1.5em 10px;
font-size:13px;
line-height:200%;
}
h1{
font-size:30px;
line-height:150%;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th {
	width:auto;
	display:block;
	margin-top:5px;
	border-bottom:0;
}
table.formTable td {
	width:auto;
	display:block;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}