@charset "UTF-8";
/* （毎回同じ値で使うCSS）
------------------------------------------------------------*/
/* フォント */
body {
	margin:0;
	padding:0;
/*	font-size: 80%; *//* IE */
	font-family: "HelveticaNeue", "游ゴシック","Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo", sans-serif;
	line-height: 1.6;
	font-size:15px;
	color:252525;
/*	letter-spacing:1px;	*/
}
p {
	text-align: justify;/*本文均等揃え*/
	-ms-text-justify: inter-ideograph;/* IE独自拡張 */
	text-justify: inter-ideograph;/*本文均等揃え*/
}

/* レイアウト */
.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-weight: normal;
}
.font_red {
	color: #ff0032;
}
.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: 7px 50px;
	color: #FFF;
	background-color:#007497;
	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;
}

/*-----------------
   Page Top Scroll
------------------*/
/*
.page-top {
    position: fixed;
    bottom: 60px;
    right: 40px;
    padding: 10px;
    background: #7e7a7a;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 12px;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}
*/

/*-----------------
   上へ
------------------*/
#gotop {
	height: 60px;
	width: 40px;
	position: fixed;
	right: 30px;
	bottom: 30px;
	text-align: center
}

/*-----------------
   デバッグ
------------------*/
.debug_line{
	width:1080px;
	height:100px;
	border:solid 1px red;
	margin:0 auto;
	color:red;
	text-align:center;
}
.debug_line:after{
	content: "Debug Line(1080px×120px)";
}