@charset "utf-8";

/* ============================================================

	Default Style Reset

	FILE NAME: reset.css
	AUTHOR: ※Suzuki Yudai※
	UPDATE: 2010/XX/XX
	
	1:common style
	2:fonts
	3:Clerfix + other

============================================================ */


/*
	1:common style
-----------------------------------------------*/
/*
Reset: margin, padding propaty*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,p{
margin:0;padding:0; }

/*
Reset: border propaty*/
img {
border:0; }

/*
Reset: List selector*/
ol,ul {
list-style:none; }

/*
Reset: font propaty*/
address {
font-style:normal;font-weight:normal; }

/*
Reset: horizontal rule display*/
hr {
	display: none;
}

/*
	2:fonts
-----------------------------------------------*/
/*
Reset: font-size, line-height propaty
*/
body,h1,h2,h3,h4,h5,h6,p,th {
	font-size:12px;
	font-weight:normal;
	color:#333;
	line-height:1.6;
}

body{
	font-family:"ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
}
a{
	color:;
	text-decoration:underline;
}
a:hover{
	text-decoration:none;
}


/*
	3:Clerfix + other
-----------------------------------------------*/

.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.clearfix {display: inline-table;min-height: 1%;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-Mac */


/*
scrooll bar for FF*/
html {
	overflow-y: scroll;
}