@charset "utf-8";

/* --------------------------------
	default.css
--------------------------------
default.cssは各ブラウザのデフォルトCSSの初期化のために使用しているCSSファイルです。

** imported list
	* layout.css

** index
01.初期化
02.リンクカラー
-------------------------------- */

/* --------------------------------
■01.初期化
--------------------------------
各タグのmarginやpadding、borderなどをリセットしています。
-------------------------------- */
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-style:normal;
	font-size:100%;
	font-family:"ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
}
p {
	line-height: 20px;
}
body {
	line-height:1.25;
	background:#fff;
	color:#333;
	font-size:12px;
	text-align:center;
}
html* body {	/*Safari + IE5.5-6*/
	font-size:11px;
}
* html body {	/*IE5.5-6*/
	font-size:75%;	/* 12px相当 */
}
*:first-child+html body {	/*IE7*/
	font-size:75%;	/* 12px相当 */
}
hr {
	display:none;
}
h1,h2,h3,h4,h5,h6,dt,th,
strong,em {
	font-style:normal;
	font-weight:bold;
}
li {
	list-style:none;
}
img {
	vertical-align:text-bottom;
	margin:0;
	padding:0;
	border:none;
}
table {
	border-collapse:collapse;
}

/* --------------------------------
■02.リンクカラー
--------------------------------
aタグの設定です。
-------------------------------- */
a {
	color:#003399;
	text-decoration:none;
}
a:visited {
	color:#990066;
}
a:hover {
	color:#f63;
	text-decoration:underline;
}
