@charset "utf-8";

form#mail_form dl {
	margin: 0 auto;
}

form#mail_form dl dt {
	width: 100%;
	text-align: left;
	line-height: 2.5em;
	font-weight: bold;
}

form#mail_form dl dd {
	width: 100%;
	text-align: left;
	line-height: 2em;
	margin-bottom: 1em;
}

form#mail_form dl dd span {
	font-size: 12px;
}

form#mail_form .radioinline_input {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

form#mail_form .radioinline_label {
	background: #eee;
	color: #83aeb9;
	font-weight: blod;
	display: inline-block;
	margin-right: 1px;
	border-radius: 3px;
	transition: all .2s;
}

form#mail_form .radioinline_input:checked+.radioinline_label {
	background: #83aeb9;
	color: #fff;
	text-shadow: 0 0 1px rgba(0, 0, 0, .7);
}

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

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	display: inline-block;
	color: #ffffff;
	line-height: 1;
	padding: 0.4em;
	border-radius: 3px;
	font-size: 11px;
}

form#mail_form dl dt span.required {
	color: #ee301e;
}

form#mail_form dl dt span.optional {
	display: none;
}

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: #ee301e;
	margin-top: 3px;
}


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: -30px;
	margin-left: -30px;
}

@-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,
form#mail_form select {
	max-width: 96%;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;

}

form#mail_form input {
	width: 96%;
	border: 1px solid #ffffff;
	background: #ffffff;
	padding: 10px 2%;
	border-radius: 3px;
}

form#mail_form select {
	font-size: 100%;
	font-family: inherit;
}


form#mail_form textarea {
	display: block;
	width: 96%;
	padding: 10px 2%;
	resize: vertical;
	border: 1px solid #ffffff;
	background: #ffffff;
	border-radius: 3px;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
	margin-top: .5em;
	font-weight: normal;
}

form#mail_form dl dd p {
	display: block;
	margin-left: 0.5em;
	margin-right: 0.5em;
	font-size: 12px;
}

form#mail_form input:focus,
form#mail_form textarea:focus {
	box-shadow: 0px 0px 5px #1C50A1;
	outline: 0;
}

form#mail_form input[type="radio"],
form#mail_form input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 0;
}

form#mail_form option:first-child {
	color: #ccc;
}

form#mail_form ul {
	list-style-type: none;
}

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


form#mail_form input[type="button"] {
	border-radius: 30px;
	border: 2px solid #8CA6CF;
	padding: 0.5em;
	width: 100%;
	display: inline-block;
	text-align: center;
	max-width: 280px;
	color: #8CA6CF;
	font-weight: bold;
	background: none;
	transition: all 0.2s ease-in;
	letter-spacing: 0.08em;
	margin-top: 30px;
	line-height: 2em;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	opacity: .7;
	border: 2px solid #1C50A1;
	background: #1C50A1;
	color: #ffffff;
}

select::-ms-expand {
	display: none;
}



