@charset "utf-8";


form#mail_form{
	width : 80%;
	margin : 50px auto;
}

form#mail_form dl{
	width : 90%;
	margin : 0 auto;
	border-bottom : 1px solid #cccccc;
	padding:10px 0;
	display:table;
}

form#mail_form dl dt{
	width : 40%;
	text-align : right;
	display:table-cell;
}

form#mail_form dl dd{
	width : 60%;
	display:table-cell;
	padding-left:40px;
	vertical-align:top;
}


form#mail_form dl dt span{
	/*display : none;
	font-size : 85%;
	color : #3377ff;*/
	display : block;
}


/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional{
	display : inline-block;
	float : left;
	font-weight : bold;
	color : #ffffff;
	padding : 3px 5px;
	border-radius : 3px;
}

form#mail_form dl dt span.required{
	background : #1293D4;
}

form#mail_form dl dt span.optional{
	background : #CCC;
}

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match{
	display : block;
	color : #ff0000;
	font-size:85%;
}


span.loading{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 255, 255, 255, 0.2 );
	border-right: 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
}

@-webkit-keyframes load-circle{
	0%{
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100%{
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle{
	0%{
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100%{
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */


form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"]{
	height : 2em;
	padding : 2px 2%;
	border : 1px solid #cccccc;
	border-radius : 3px;
	background : #fafafa;
	font-size : 16px;
	-webkit-appearance : none;
}

form#mail_form select{
	/*font-size : 16px;*/
}

form#mail_form textarea{
	width : 90%;
	height : 200px;
	padding : 2px 2%;
	resize : vertical;
	border : 1px solid #cccccc;
	border-radius : 3px;
	background : #fafafa;
	font-size : 16px;
	-webkit-appearance : none;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus{
	box-shadow : 0px 0px 5px #55ccff;
	border : 1px solid #55ccff;
	background : #ffffff;
}

form#mail_form input#company{
	width : 60%;
}

form#mail_form input#name_1,
form#mail_form input#name_2{
	width : 30%;
}

form#mail_form input#read_1,
form#mail_form input#read_2{
	width : 30%;
}

form#mail_form input#mail_address,
form#mail_form input#mail_address_confirm{
	width : 80%;
}
form#mail_form ul li{
	list-style-type : none;
}

form#mail_form ul li label:hover{
	cursor : pointer;
}

form#mail_form ul li input{
	height : auto;
	margin-right : 0.5em;
}

form#mail_form input#postal{
	width : 30%;
}

form#mail_form input#address_1,
form#mail_form input#address_2{
	display : block;
	width : 90%;
	margin-bottom : 7px;
}

form#mail_form input#phone{
	width : 40%;
}

form#mail_form input#schedule{
	width : 30%;
}


form#mail_form p#form_submit{
	margin : 30px auto;
	text-align:center;
}

form#mail_form input#form_submit_button{
	width : auto;
	height : auto;
	padding : 7px 35px;
	vertical-align : middle;
	color : #444444;
	background : #eeeeee;
	border : 1px solid #cccccc;
	border-radius : 3px;
	font-family : inherit;
	font-weight : bold;
}

form#mail_form input#form_submit_button:hover{
	cursor : pointer;
	color : #106dff;
	background : #e0e0e0;
}






