
#formWrap {
	width: 90%;
height: auto;
	margin: 10px;
	color:#555;
	line-height:110%;
	font-size:90%;
}
table.formTable{
	width:95%;
	margin: 10px auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
	position: relative;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:rgb(210, 233, 247);
	text-align:left;
	color: #rgb(57, 57, 60);
}

table.formTable td{
	font-weight:normal;
	text-align: left;
background: #fff;
width: 85%;
}

.form-btn {width: 100px; height: auto; padding: 5px; margin: 5px;
	border-radius: 10px;
}
.form-btn:hover {
	opacity: 0.8;
}

input[type="text"],textarea {
	width: 80%;
}

input[type=submit]{
	background-color: rgb(242, 154, 90);
	border: 2px solid rgb(212, 139, 30);
}
input[type=reset]{
	background-color: rgb(227, 219, 213);
	border: none;
}



textarea { width: 80%; height: auto;
}

.required::after {
	content: "必須";
	color: #fff;
	font-size: 12px;
	padding: 5px;
	background-color: rgb(241, 51, 25);
	border-radius: 15px;
	margin-left: 20px;
	position: absolute;
	right: 10px;
	bottom: 5px;

}

@media screen and (max-width: 750px){

	table.formTable td,table.formTable th{
		display: block;
		width: 100%;
	}

}
