#formWrap {
	width:100%;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
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:var(--main-color);
	color: #FFF;
	text-align:left;
}
form input[type="submit"] {
	color:#FFF;
	border: none;
	padding: 10px 30px;
	background-color: var(--accent-color2);
	border-radius: 5px;
}
form input[type="submit"]:hover {
	filter: brightness(90%) contrast(120%);
}
form input[type="reset"], form input[type="button"] {
	color:#FFF;
	border: none;
	padding: 10px 30px;
	background-color: #ccc;
}
input[type="button"] {
	color:#FFF;
	border: none;
	padding: 10px 30px;
	background-color: #838383;
}
/* reCAPTCHA v3　表示位置 */
.grecaptcha-badge{
	margin-bottom: 70px;
	z-index:9999;
}

/*リンク アンダーライン*/
a.m-unli{
	text-decoration:underline;
	color:#454545;
}
a.m-unli:hover{
	color:#c5c5c5;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
    #formWrap {
        width:100%;
        margin:0 auto;
        font-size:16px;
    }
    table.formTable th, table.formTable td {
        width:auto;
        display:block;
    }
    table.formTable th {
        margin-top:0px;
        border-bottom:0;
    }
    form select,[type="text"], form textarea,form [type="tel"],form [type="email"] {
        width:95%;
        padding:5px;
        font-size:110%;
        display:block;
    }  
    form input[type="submit"], form input[type="reset"], form input[type="button"] {
        display:block;
        /*width:50%;*/
        height:40px;
        font-size: 16px;
        margin-bottom: 10px;
    }

}