@charset "utf-8";

/******************************

 * style
 *
 * 1. import
 * 2. html, body
 * 3. HTMLtag（各タグ）
 * 4. Layout（共通要素）
 * 5. EachPageStyle（下層ページ）

******************************/



/*****
 * 1. import
*****/

@import "import/reset.css";
@import "import/item.css";


/*****
 * 2. html, body
*****/

	body {
		background-color: #fff;
		background-image: url(../imgs/space.gif);
		background-repeat: repeat-x;
		background-position: center top;
	}
	.page {
		color: #000;
		font-size: 14px;
		line-height: 1.5;
		letter-spacing: 0.1em;
		font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	}

/*****
 * 3. HTMLtag
*****/

/* anchor */
	a {
		background-color: transparent;
		background-image: none;
		background-repeat: no-repeat;
		background-position: top left;
		color: #0000ff;
		text-decoration: underline;
	}
	a:visited {}
	a:hover {
		color: #ff0000;
		background-position: bottom right;
		text-decoration: underline;
	}
	a:active {}

/* cap */
	.cap,
	.caption {
		background: none;
		color: #666666;
		font-size: 10px;
		line-height: 15px;
	}
	.cap {
		padding-top: 5px;
	}

/*****
 * 4. Layout
*****/
 
/* Header */
	body #gHeader {}
	body .shldrTxt {
		font-size: 10px;
		line-height: 15px;
	}
	.siteTitle {
		/*dont use <h1> selector*/
	}
	.contentTitle {
		/*dont use <h2> selector*/
	}
	
/* Container */
	body #container {
		text-align: left;
	}
	.wrap {
		width: 1160px;
		margin-left: auto;
		margin-right: auto;
	}
	
/* Footer */
	body #gFooter {}
	#fNav {
		color: #666666;
		font-size: 12px;
		line-height: 18px;
	}
	#fNav li {
		float: left;
		letter-spacing: 1px;
	}
	#fNav a {
		/*color: #003593;*/
	}
	#fNav a:hover {
		/*color: #f60;*/
	}
	#fNav strong {
		/*color: #003593;*/
		font-weight: bold;
	}
	#fNav span {
		/*color: #cccccc;*/
	}
	
/*****
 * 5. EachPageStyle
*****/



