@charset "utf-8";

/*
===============================================================================
初期設定
===============================================================================
*/

/*-----------------------------------------------------------------------------
タグのブラウザ依存設定を初期化
-----------------------------------------------------------------------------*/
/*
Reset: margin, padding propaty*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,p {
	margin:0;padding:0; 
}

/*
Reset: border propaty*/
img {
	border:0; 
}

/*
Reset: List selector*/
ol,ul {
	list-style:none; 
}

/*
Reset: font propaty*/
address {
	font-style:normal;
	font-weight:normal; 
}


/*-----------------------------------------------------------------------------
フォントフェイス、フォントサイズ、行間の基本設定
-----------------------------------------------------------------------------*/
/*
Reset: font-size, line-height propaty
ブラウザのデフォルトフォントサイズを16pxと前提*/
body {
	font-size: 87.5%; /* 14px */ line-height: 1.3; 
}

h1,h2,h3,h4,h5,h6 {
	font-size: 1.2em; /* 14px */ line-height: 1.0; 
	color:#666;
	font-weight:normal;
}

p {
	font-size: 1.0em; /* 12px */ line-height: 1.3; 
	color:#666;
}
dl,dt,dd{
	color:#666;
	font-size: 1.0em; /* 12px */ line-height: 1.3; 
	}
li{
	color:#666;
}
dl{
	/*background-color:#0FF;*/
}
dt{
	/*background-color:#F39;*/
	}
dd{
	/*background-color:#00F;*/
	}


/* 
Reset: font-family propaty*/
body {
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Osaka,sans-serif; 
}


/*-----------------------------------------------------------------------------
フロート操作によるボックスの高さ調整
-----------------------------------------------------------------------------*/
.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.clearfix {display: inline-table;min-height: 1%;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-Mac */


/*-----------------------------------------------------------------------------
Firefoxの右側スクロールバーの表示
Firefox上でコンテンツの高さがウィンドウの高さより短い場合に表示位置がずれる現象を解消
-----------------------------------------------------------------------------*/
html {
	overflow-y: scroll;
}

hr {
	display: none;
}
