﻿@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;
}
html,body {height: 100%;}
a img {border: 0;}
li {list-style: none;}
ol li /* 数字のリストは数字マーカーを残す */
{
	list-style-type: decimal;
	list-style-position: outside;
	margin-left: 25px;
}
ol li ul li
{
	list-style-type: none;
	margin-left: 0;
}
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: #434343;
	line-height: 1.6;
	text-align: center;
	background: #fdfbe9 url(/img/bk_body.gif) repeat-x left top;
}

*: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: #434343;
	background-color: #fdfbe9;
	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;
}

h1, h2, h3, h4, h5, h6
{
	font-size: 98%;
}


/* =============================================================
　■□■ 3. リンクカラー ■□■
============================================================= */

a:link,
a:visited /* リンク未訪問・訪問済みの色指定 */
{
	color: #137a5c;
	background-color: transparent;
}
a:hover,
a:active /* リンクマウスオーバー時の色指定 */
{
	color: #189a74;
	background-color: transparent;
	text-decoration: none;
}
