@charset "Shift_JIS";

/* ブラウザ初期設定解除CSS */

/* ================= 目次 =====================

【1】リセット
【2】フォント関連
【3】リンクカラー

============================================ */


/* =============================================================
　■□■ 1. リセット ■□■
============================================================= */

body, form, h1, h2, h3, h4, h5, h6, p, ol, ul, pre, blockquote, input, dl, dd, dt, div, address, label, img
{
	margin: 0;
	padding: 0;
}

a img { border: 0; }

li { list-style: none; }

ol li /* 数字のリストは数字マーカーを残す */
{
	list-style-type: decimal;
	list-style-position: outside;
	margin-left: 25px;
}


em
{
	font-style: normal;
	font-weight: bold;
}

address
{ 
 	font-style: normal;
 	font-weight: normal;
}

form, input, select, textarea
{
	margin: 0 2px 0 0;
	padding: 1px;
	font-size: 100%;
}

sup
{
	font-size:70%;
	padding-right:2px;
}


/* =============================================================
　■□■ 2. フォント関連 ■□■
============================================================= */

body
{
	font-size: 70%;
	color: #4C4C4C;
	line-height: 1.4;
	text-align: left;
	background: #FFFFFF;
}


h1, h2, h3, h4, h5, h6
{
	font-size: small;
}

h1, h2, h3, h4, h5, h6
{
	font-size: 98%;
}


/* =============================================================
　■□■ 3. リンクカラー ■□■
============================================================= */

a:link,
a:visited /* リンク未訪問・訪問済みの色指定 */
{
	color: #1983ba;
	text-decoration:none;
	background-color: transparent;
}
a:hover,
a:active /* リンクマウスオーバー時の色指定 */
{
	color: #ff4800;
	background-color: transparent;
	text-decoration:underline;
}
