@charset "UTF-8";

/* --------------------------------
	default.css
--------------------------------
default.cssはサイト内全ページで使用している、ブラウザ間の差異をなくすための初期化用CSSファイルです。
各ページ用のCSSから、importして使用しています。

** imported list
（ページ用CSSすべて）

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

/* --------------------------------
■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 {
	line-height:1.5;
	background:#ffffff;
	color:#000000;
	font-family:sans-serif;
	font-size:12px;
}
html* body {/*Safari + IE5.5-6*/
	font-size:11px;
}
* html body {/*IE5.5-6*/
	font-size:75%;
}
*:first-child+html body {/*IE7*/
	font-size:75%;
}
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;
}
table {
	border-collapse:collapse;
}



/* --------------------------------
■02.リンクカラー
--------------------------------
リンクの基本カラーの設定です。
-------------------------------- */
a {
	color:#2f5181;
}
a:visited {}
a:hover {
	text-decoration:none;
}
