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


/* フォーム共通・テキストエリア */
.formInquiry textarea, .formInquiry input {
	font-size: 14px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-family: meiryo, Helvetica, Helvetica Neue, Arial, sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.formInquiry textarea, .formInquiry input[type=text], .formInquiry input[type=password] {
	width: 100%;
	padding: 5px;
	border: 1px solid #BBB;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.formInquiry textarea {
	resize: vertical;
	min-height: 12em;
}
/* jQueryカスタムセレクトスタイル */
.formInquiry .styleSelect {
	cursor: pointer;
}
.formInquiry .customSelect {
	width: 100%;
	background: #FFF url(../img/common/arrowSelect.png) right center no-repeat;
	border: 1px solid #BBB;
	padding: 0 5px;
	font-size: 14px;
	vertical-align: top;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 31px;
}
.formInquiry .customSelectInner {
	width: 100% !important;
}
/* ラジオボタン */
.formInquiry .radioWrapper {
	list-style: none;
}
.formInquiry .radioWrapper li {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 7px 0;
	height: 19px;
	vertical-align: text-top;
}
.formInquiry .radioWrapper input[type="radio"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	cursor: pointer;
 filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);/*IE*/
}
.formInquiry .radioWrapper input[type="radio"] + label {
	display: block;
	height: 19px;
	line-height: 19px;
	padding-left: 25px;
	background: url(../img/common/inputRadio.png) no-repeat left 0;
	float: left;
}
.formInquiry .radioWrapper input[type="radio"]:checked + label {
	background: url(../img/common/inputRadio.png) no-repeat left -19px;
}
.formInquiry .radioWrapper li + li {
	margin-left: 20px;
}
/* ボタン */
.btnSubmit input[type="submit"] {
	width: 188px;
	height: 55px;
	font-size: 19px;
	letter-spacing: .05em;
	color: #FFF;
	background: #008750;
	text-align: center;
	cursor: pointer;
	outline: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
