@charset "utf-8";
/* =============================================================

	Forms

* ============================================================= */

#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:100%;
}
table.formTable{
	width:80%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:25%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}

form input[type="submit"], form input[type="reset"], form input[type="button"] {
	background: #ccc;
	border:1px solid #888;
	-webkit-appearance:none;
	height:40px;
	margin:10px;
}

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



textarea, input, select {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 100%; /* 14px base */
	color: #333;
	letter-spacing: 1px;
	background-color: #f0f0f0;
}

input[type="text"],
textarea {
	display: block;
	width: 100%;
	height: 2.6em;
	margin: 0;
	padding: 0 10px;
	background-color: #f0f0f0;
	border: none;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-appearance:none;
}
html.IE8 input[type="text"] {
	line-height: 2.6em;
}

textarea {
	padding: 10px;
	max-width: none;
	transition: height .3s;
}

