@charset "utf-8";
/* CSS Document */
/* 共通部分のスタイルシート */


/*------------------------------
#form_contents
------------------------------*/
#form_contents h2 {
}
#form_contents form {
	background: #F0F0F2;
	display: block;
}

/* #form_area */
#form_area dt,
#form_area dd {
	position: relative;
}
#form_area dt {
	font-weight: bold;
	box-sizing: border-box;
}
#form_area dt:after {
	content: '任意';
	text-align: center;
	text-indent: 1px;
	color: #FFF;
	background: #A8A8B7;
	display: block;
	position: absolute;
	right: 0;
	box-sizing: border-box;
}
#form_area dt.req:after {
	content: '必須';
	background: #DD4737;
}
#form_area dt span {
	font-weight: normal;
	line-height: 1.3;
}
#form_area dd {
	border-bottom: 1px dashed #BDBDAC;
}
#form_area dd table {
	border-collapse: separate;
	border-spacing: 0;
}
#form_area dd table th,
#form_area dd table td {
	padding: 0;
	font-size: 14px;
}

#form_area input[type="text"],
#form_area select,
#form_area textarea,
#form_area input[type="radio"] + label,
#form_area input[type="checkbox"] + label {
	height: 40px;
	margin: 0;
	padding: 0 10px;
	color: #1F1F1F;
	border: 1px solid #B5B5BF;
	border-radius: 4px;
	background: #FFF;
	box-sizing: border-box;
}
#form_area select {
	padding-right: 0;
	cursor: pointer;
}
#form_area select.inputbox-error {
	background: #FBF0E6;
}
#form_area textarea {
	padding: 5px 10px;
	resize: vertical;
}
#form_area input[type="radio"],
#form_area input[type="checkbox"] {
	display: none;
}
#form_area input[type="radio"] + label,
#form_area input[type="checkbox"] + label {
	padding: 0 0 0 39px;
	line-height: 38px;
	background: #FFF no-repeat 9px 50%;
	background-size: 22px auto;
	display: inline-block;
	cursor: pointer;
}
#form_area input[type="radio"] + label { background-image: url(../img/icon_form_02_off.png); }
#form_area input[type="radio"]:checked + label { background-image: url(../img/icon_form_02_on.png); }

#form_area input::-webkit-input-placeholder {
	color: #999;
}
#form_area input:-ms-input-placeholder {
	color: #999;
}
#form_area input::-moz-placeholder {
	color: #999;
}

.formError {
	z-index: 1;
}

/* .form_name .form_name2 */
#form_area .form_name + dd {
	border-bottom: none;
	padding-bottom: 0;
}

/* .form_email */
#form_area .form_email + dd input {
	font-weight: bold;
}

/* .form_occupation */
#form_area .form_occupation + dd li {
	float: left;
}
#form_area .form_occupation + dd input[type="radio"] + label {
	display: block;
}

/* .form_asset */
#form_area .form_asset + dd {
	padding-bottom: 27px;
}

/* spanあり */
#form_area .form_tel,
#form_area .form_fax,
#form_area .form_income,
#form_area .form_asset {
	line-height: 22px;
}
#form_area .form_tel span,
#form_area .form_fax span,
#form_area .form_income span,
#form_area .form_asset span {
	line-height: 12px;
}


/* #form_privacy */
#form_privacy {
	position: relative;
}
#form_privacy:before {
	content: '';
	background: #5293CB url(../img/icon_form_01.png) no-repeat 50% 50%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}
#form_privacy a {
	text-decoration: underline;
	color: #252525;
}
#form_privacy a:hover {
	color: #5293CB;
}

/* #form_submit */
#form_submit {
}
#form_submit div {
	border-radius: 3px;
	background: #DD4737;
	background: -moz-linear-gradient(top, #DD4737 0%, #C83322 100%);
	background: -webkit-linear-gradient(top, #DD4737 0%,#C83322 100%);
	background: linear-gradient(to bottom, #DD4737 0%,#C83322 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#DD4737', endColorstr='#C83322',GradientType=0 );
	display: block;
	position: relative;
}
#form_submit div:after {
	content: '';
	width: 10px;
	background: url(../img/icon_arrow_01.png) no-repeat 0 50%;
	display: block;
	position: absolute;
	top: 0;
}
#form_submit input[type="submit"] {
	padding: 0;
	font-weight: bold;
	color: #FFF;
	border: none;
	background-color: transparent;
	display: block;
	cursor: pointer;
	outline: none;
	position: relative;
	z-index: 1;
}
