@charset "utf-8";
#contact {background-color: #fff; line-height: 1.8;}
#contact .content{max-width: 900px;margin: 0 auto; font-size: 1.6rem;}
#contact .notice{font-size: 1.2rem; text-align: center; padding: 30px 0;}
#contact .txtIntro{text-align: center; padding: 30px 0;}
#contact .error_messe{ margin-bottom: 5px;font-size: 1.6rem; font-weight: 300;}
#formWrap {
	/* width:700px; */
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:1.4rem;
}

#contact h3{text-align: center;padding: 100px 10px;  font-weight: 300;font-size: 3.0rem; background-color: #e3ebe0; margin: 0 0 40px;}
#contact h4{text-align: center;padding: 40px; font-weight: 300;font-size: 1.8rem;margin:0}

#formWrap .btnSubmit{text-align: center;}

#contact select{    
	background-color: #f2f2f2;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	border:#ccc 1px solid;
	width: 100%;
	max-width: 300px;
}

#contact input[type="text"] {
    background-color: #f2f2f2;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	border:#ccc 1px solid;

}
#contact textarea{    
	background-color: #f2f2f2;
	border:#ccc 1px solid;
	min-height: 200px;
	border-radius: 5px;
	padding: 10px 20px;
	width: 90%;

}

#contact input[type="submit"],#contact input[type="button"] {
	background-color: #000;
	color: #fff;
	padding: 20px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 300px;
	border:none;
	font-size: 1.6rem;
}

table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
	margin-bottom: 50px;
	/* table-layout: fixed; */
	font-size: 1.6rem;

	
}

table.formTable .required{color: red; font-size: 1.2rem; display: inline-block; margin-left: 15px;}

table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:15px 20px;

}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#f9f9f9;
	text-align:left;
}
table.formTable td{
	width: 70%;
}
/*　簡易版レスポンシブ用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;
}
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;
}
}