@charset "UTF-8";
/* （毎回同じ値で使うCSS）
------------------------------------------------------------*/
/* レイアウト */
.alright {
	text-align:right;
}
.alcenter {
	text-align: center;
}
.left {
	float: left;
	margin-right: 0px;
}
.right {
	float: right;
}
.relative {
	position: relative;
}

/* スペース */
.topspace5 {
	margin-top: 5px;
}
.topspace10 {
	margin-top: 10px;
}
.topspace20 {
	margin-top: 20px;
}
.bottom_space {
	margin-bottom: 30px;
}
.width100 {
	width: 100%;
}
/* テキスト装飾 */
.fontB {
	font-weight: bold;
}
.fontS {
/*	font-size: 80%;	*/
/*	font-size: 87%;	*/
	font-size:13px;
	font-weight: normal;
}
.font_red {
	color: #e23e2c;
}
.font_grey {
	color: #A7A49F;
}
.error_com {
	color: #ff0032;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}
.letter_spaceing_m1 {
	letter-spacing: -1px;
}
.letter_spaceing_p1 {
	letter-spacing: 1px;
}
/* その他 */
hr.tensen {
	border: 0;
	border-bottom: 1px dashed #CCC;
	background: #999;
}
.imgBorder {
	border: 1px solid #999;
}

/* img rollover */
.cssover a:hover img {
	opacity: 0.8;/* Safari,Opera */
	filter: alpha(opacity=80);/* IE */
	-ms-filter: "alpha( opacity=80 )";/* Firefox */
	background-color: #FFF;
}

/* input関連
------------------------------------------------------------*/
input[type=text] {
	font-size: 16px;
}
.radio_button_list input[type=radio]
 {
	font-size: 13px;
	line-height: 100%;
	vertical-align: 0.1em;
}
textarea {
	font-size: 16px;
}
input[type="text"] {
	font-size: 16px;
	border: 1px solid #CCC;
	height: 25px;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}
input[type="password"] {
	font-size: 16px;
	border: 1px solid #CCC;
	height: 25px;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

/* 送信ボタン */
.submit_button {
	border: 1px solid #CCC;
/*	background-image: url(../images/common/buttonbg.png);	*/
	padding: 13px 140px;
	color: #FFF;
	background-color:#006fbc;
	font-size: 14px;
	text-decoration: none;
	vertical-align: middle;
}
.submit_button:hover {
	-ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}
.submit_button2 {
	border: 1px solid #CCC;
/*	background-image: url(../images/common/buttonbg.png);	*/
	padding: 13px 65px;
	color: #FFF;
	background-color:#006fbc;
	font-size: 14px;
	text-decoration: none;
	vertical-align: middle;
}
.submit_button2:hover {
	-ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

