@charset "UTF-8";


/*----------------------------------------------
cssリンク
----------------------------------------------*/

/*---　<link href="css/base.css" rel="stylesheet" type="text/css" media="all" />　---*/



/*----------------------------------------------
ブラウザスタイル初期化
----------------------------------------------*/

/*ie用ハック（ホーリーハック）*/
*:html div {
	height: 1%;
}

/*ie用ハック（フォントサイズ）*/
* html body {
	font-size: 12px;
}



/*----------------------------------------------
CSSの初期化（リセット）
----------------------------------------------*/

/*--YUI Reset CSS 準拠--*/
body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, 
brockquote, pre, table, caption, th, td, address, 
a, form, input, fieldset, legend, object {
	margin: 0px;
	padding: 0px;
}
table{  
	border-collapse: collapse; 
	border-spacing: 0;  
}  
fieldset, img{  
	border: 0;  
}  
address, caption, cite, code, dfn, em, strong, th, var{  
	font-style: normal; 
	font-weight: normal;  
}  
ol, ul{  
	list-style: none;  
}  
caption, th{  
	text-align: left;  
}  
h1, h2, h3, h4, h5, h6{  
	font-size: 100%; 
	font-weight: normal;  
}  
q:before, q:after{  
	content: ”;  
}  
abbr, acronym{  
	border: 0;  
}  



/*----------------------------------------------
フォントサイズ指定
----------------------------------------------*/

/*--フォントサイズ指定--*/
body {
	font-size: 62.5%; /* 10px */ 
}
p {
	font-size: 1.2em; /* 12px */ 
}


/*--テキスト関連--*/
em,address,dfn{
	font-style: normal;
}
ul ul,ul dl,dl ul,table p,table ul,table table{
	font-size: 1em;
}



/*----------------------------------------------
基本設定
----------------------------------------------*/

/*--body--*/
body {
	margin: 0px;
	padding: 0px;
	font-family: "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Osaka;
	font-size: 12px;
	color: #505050;
}


/*--リンク--*/
a {
	outline: 0px;
	color: #090;
	text-decoration: none;
}
a:visited {
	color: #9F48AF;
	text-decoration: underline;
}
a:hover {
	color: #FF6600;
	text-decoration: none;
}


/*--回り込み解除--*/
.cb {
	clear: both;
}


/*--テーブル関連--*/
table{
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
}
th,td{
	vertical-align: top;
	border: solid 1px #000;
	font-weight: normal;
	text-align: left;
}
caption{
	text-align: left;
}


/*--リスト関連--*/
ul,ol,dl{
	list-style: none;
}
li{
	display: list-item;
	zoom: normal;
}


/*--画像・オブジェクト関連--*/
img,a img{
	vertical-align: bottom;
	border: none;
	background: transparent;
}
object,embed{
	vertical-align: top;
}


/*--フォーム関連--*/
fieldset{
	border: none;
}
input,textarea{
	font-size: 1em;
}



/*----------------------------------------------
ここから
----------------------------------------------*/
