@charset "Shift_JIS";



/*======================================================================================================================
========================================================================================================================

default.css

リセット項目・body初期設定・回り込み解除・リンク色用

========================================================================================================================
======================================================================================================================*/



/* リセット
-------------------------------------------------------------------------------------------------------- */
html,body,div,h1,h2,h3,h4,h5,h6,
p,blockquote,pre,address,
ul,ol,li,dl,dt,dd,
form,fieldset,input {
	margin:        0px;
	padding:       0px;
}
img {
	margin:        0px;
	padding:       0px;
	border:        0px;
	/*vertical-align: bottom;*/ /* IEで下が空くバグを回避 */
}
li {
	list-style-type: none;
}
table {
	font-size:     100%;
}





/* bodyデフォルト指定
-------------------------------------------------------------------------------------------------------- */
body {
	color:        #333333;
	font:         12px "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	*font-size:   77%;  /* IE 7向け */
	*font:        75%;  /* IE 6以下 */
	line-height:  1.5;
}





/* 回り込み解除指定
-------------------------------------------------------------------------------------------------------- */

/* 通常解除指定 */
.clearbt {
	clear:        both;
	height:       1px;
}


/* clearfix
------------------------------------------------------------ */
.clearfix:after {
    content: "."; display: block; height: 0; clear: both; visibility: hidden;
}
.clearfix {display: inline-block; }

/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */
/* --------------------------------------------------------- */


/* 区切り線指定 */
.hrline {
	margin:       0px;
	padding:      0px;
	display:      none;
}





/* リンク色
-------------------------------------------------------------------------------------------------------- */
a:link {
	color:            #E42926;
	text-decoration:  underline;
	
}

a:visited {
	color:            #E42926;
	text-decoration:  underline;
}

a:hover {
	color:            #E42926;
	text-decoration:  none;
}

a:active {
}

