@charset "UTF-8";

/* --------------------------------
	reset.css
--------------------------------
reset.cssは初期化用のCSSファイルです。

** index
01.初期化
-------------------------------- */

/* --------------------------------
■01.初期化
--------------------------------
各HTMLに適用されるブラウザの初期値を定義します。
-------------------------------- */
 
body,div,form,h1,h2,h3,h4,h5,h6,p,address,dl,dt,dd,ul,ol,li,table,th,td {
	margin:0;
	padding:0;
	border:none;
	font-size:100%;
	font-style:normal;
}
body {
	min-width: 960px;
	background:#fff;
	color:#4d4d4d;
	font:12px/1.25 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	*font-size:small;	/* IE 7向け */
	_font:x-small;	/* IE 6以下 */
}
hr {
	display:none;
}
h1,h2,h3,h4,h5,h6,dt,th,strong,em {
	font-style:normal;
	font-weight:bold;
}
li {
	list-style:none;
}
img {
	margin:0;
	padding:0;
	border:none;
	vertical-align:bottom;
}
table {
	border-collapse:collapse;
}
label {
	cursor:pointer;
}
input {
	padding: 0;
	margin: 0;
}
input:focus {
	background:#ffc;
}
a {
	color:#467bbb;
	text-decoration:underline;
}
a:visited {
	color:#467b9b;
}
a:hover {
	color:#3483b2;
	text-decoration:none;
}


