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

#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse: separate;
	margin-top: 10px;
}
table.formTable td,table.formTable th{
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background: #CCC;
	text-align:left;
}

input[type="text"] {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}

textarea {
	width: 90%;
	height: 200px;
	padding: 5px;
	font-size: 110%;
	display: block;
}

input[type="submit"], input[type="reset"], input[type="button"] {
	background: #900;
	color: #FFF;
	padding: 10px;
	border: 0px;
	border-radius: 5px;
}

.red {
	color: #F00;
	font-size: 80%;
	margin-left: 5px;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#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"] {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}

textarea {
	width: 90%;
	height: 100px;
	padding: 5px;
	font-size: 110%;
	display: block;
}

input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
	margin: 5px 0px 0px;
}
}
