﻿@charset "UTF-8";

/* ブラウザ初期設定解除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
{
	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;
}
	ol li span
	{
		font-weight:normal;
		color:#333333;
	}

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

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

form, input, select, textarea
{
	margin: 0 2px 0 0;
	font-family: "Tahoma","ヒラギノ角ゴPro W3","Hiragino Kaku Gothic Pro",Osaka,"MS UI Gothic",sans-serif;
	padding: 1px;
	font-size: 100%;
}

*:first-child+html form,
*:first-child+html input,
*:first-child+html select,
*:first-child+html textarea /* For Only IE7 */
{
	font-family: "Verdana","ヒラギノ角ゴPro W3","Hiragino Kaku Gothic Pro",Osaka,"MS UI Gothic",sans-serif;
}


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

body
{
	font-family: "Tahoma","ヒラギノ角ゴPro W3","Hiragino Kaku Gothic Pro",Osaka,"MS UI Gothic",sans-serif;
	font-size: 75%;
	color: #4C4C4C;
	line-height: 1.66;
	text-align: left;
	background: #FFFFFF;
	padding-bottom: 30px;
}

*:first-child+html body /* For Only IE7 */
{
	font-family: "Verdana","ヒラギノ角ゴPro W3","Hiragino Kaku Gothic Pro",Osaka,"MS UI Gothic",sans-serif;
}

table
{
	font-family: "Tahoma","ヒラギノ角ゴPro W3","Hiragino Kaku Gothic Pro",Osaka,"MS UI Gothic",sans-serif;
	color: #4C4C4C;
	line-height: 1.66;
	background-color: #FFFFFF;
	text-align: left;
}

*:first-child+html table /* For Only IE7 */
{
	font-family: "Verdana","ヒラギノ角ゴPro W3","Hiragino Kaku Gothic Pro",Osaka,"MS UI Gothic",sans-serif;
}

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


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

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