@charset "utf-8";
/* CSS Document */

body{
	background-color:#074356;  
	color: #efefef; 
	font-family: 'M PLUS 1', sans-serif;
}
footer{
	font-weight: 400;
	font-size: 0.8rem;
}


.textright{
	text-align:right;
}

.bg-white{
	background-color: #fff;
	color: #212529;
}
.bg-pd0{
	padding-left: 0;
}

.text-color2{
	color: #fff;
}
.text-size-s{
	font-size: 0.8rem;
}

#formWrap {
	width:700px;
	margin:0 auto;
	color:#fff;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	text-align:left;
}
/*　簡易版レスポンシブ用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:80%;
	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;
}
}