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

#formWrap {
	width:700px;
	margin:30px auto 0;
	color:#ddd;
	line-height:120%;
	font-size:90%;
	padding: 20px;
	background: linear-gradient(45deg, rgba(155,155,155,0.8),rgba(0,0,0,0.8));
	border-radius: 30px;
	filter: invert(0);
/*
	transition: 100000s;
*/
}
/*
#formWrap:hover{
	filter: invert(0);
	transition: 0.8s;
}
*/
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background: linear-gradient(-45deg, rgba(55,55,55,0.7), rgba(0,0,0,1));
	text-align:center;
	vertical-align: middle;
}
.formTable td option{
	font-size: 16px;
}
.formTable td input{
	font-size: 16px;
}
.contact h3{
	margin-bottom: 20px;
}
.contact p{
	margin-bottom: 20px;
}
.contact p:last-child{
	text-align: right;
	margin-bottom: 20px;
}
div.form_annotation{
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.8);
}
.contact .ss_font{
    text-align: left;
    font-size: 12px;
    color: #000;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:768px) {
#formWrap {
	max-width: 500px;
	width:95%;
	margin:30px auto;
    font-size: 16px;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
input[type="text"], textarea {
	width:calc(100% - 10px);
	padding:5px;
	font-size:16px;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}
