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

main form {
	margin-top: 0px;
	margin-bottom: 0px;
}
main form fieldset {
	border: thin solid #CCC;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 6px;
}
main form fieldset legend {
	font-weight: bold;
	color: #666;
}
main form fieldset p {
	margin-bottom: 15px;
}
main form label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
	color: #666;
}
main form label .required {
	color: #FFF;
	background-color: #F00;
	padding-top: 1px;
	padding-right: 4px;
	padding-bottom: 1px;
	padding-left: 4px;
	font-size: 0.75em;
	margin-left: 3px;
	border-radius: 4px;
	font-weight:normal;
}
main form .optional {
	color: #FFF;
	background-color: #063;
	padding-top: 1px;
	padding-right: 4px;
	padding-bottom: 1px;
	padding-left: 4px;
	font-size: 0.75em;
	margin-left: 3px;
	border-radius: 4px;
	font-weight:normal;
}
main form kbd {
	font-size: 0.75em;
	display: block;
	color: #999;
	font-weight: normal;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
main form .input_box {
	width: 90%;
}
main form p img {
	display: inline;
}
input[type="email"], input[type="password"], input[type="text"], textarea {
	padding: 5px;
	border: 1px solid #CCC;
	border-radius: 5px;
}
input[type="submit"] {
	color: #FFFFFF;
	padding: 10px 20px;
	background: #0078D7;
	border: thin solid #09F;
	border-radius: 5px;
	font-weight: bolder;
	-webkit-appearance: none;
}
form .system_message {
	font-size: 1.0em;
	font-weight: bold;
	color: #FF0000;
	margin-top: 15px;
	margin-bottom: 15px;
	background-color: #FED1D9;
	padding: 10px;
	border: thin solid #F00;
}
/* ユーザー入力時の補助 */
input:focus, select:focus, textarea:focus, radio:focus {
	outline: 1px #ff0000;
	border-color: #09F;
}
/*********************/
/* captcha画像表示用 */
/*********************/
main form .captcha {
	overflow: hidden;
}
main form .captcha figure {
	width: 150px;
	float: left;
}
main form .captcha figure img {
	height: auto;
	width: 100%;
	margin-bottom: 5px;
}
main form .captcha figure figcaption {
	text-align: center;
	color: #369;
	text-decoration: underline;
	margin-top: 2px;
	cursor: pointer;
	cursor: hand;
	font-size: 0.75em;
}
#contact_us_captcha {
	margin-top: 10px;
}
#contact_us_captcha:before {
	content:" → ";
}
