@charset "utf-8";

/************************************************************
* reset.css - スタイルの初期化
* 
* 01. Initialization
* 02. Anchor style
**************************************************/
*{
	margin: 0;
	padding: 0;
	line-height: 1.5em;
}

html,body{
	height: 100%;
	background: #fff;
	color: #333;
	text-align: center;
	font-family: "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho", sans-serif;
}

body{
	font-size:14px;
}

/* for IE6 */
* html body {
    font-size: 80%;
}

/* for IE7 */
*:first-child+html body {
    font-size: 80%;
}

/***********************
*基本サイズ
*16px→100%
*12px→75%
*11px→70%
*10px→65%
***********************/

h1,h2,h3,h4,p,div{
}

ul,ol,li,dl,dt,dd{
	list-style: none;
}

img{
	vertical-align: middle;
	border: none;
}


/**************************************************
* 02. Anchor style
**************************************************/
a{ cursor:pointer;}

a,
a:link,
a:focus,
a:active,
a:visited{
	color:#333;
	text-decoration: none;	
}

a:hover{
	color:#090909;
}