@charset "utf-8";

/*------------------------------------------------------------------------------

	[ファイル名]	sitemap.css
	
	[概要]			サイトマップ 専用
	
	[目次]
		・clearFix／画像代替／非表示部
	
------------------------------------------------------------------------------*/



/*------------------------------------------------------------------------------

								clearFix
								
------------------------------------------------------------------------------*/
#xxx:after
{
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
	content: ".";
}

/* Win IE7 */
*:first-child + html #xxx
{
	min-height: 1%;
}
/* End Win IE7 */

/* Win IE6 \*/
* html #xxx
{
	height: 1%;
}
/* End Win IE6 */

/* Mac IE\*//*/
#xxx
{
	display: inline-table;
}
/* End Mac IE */



/*------------------------------------------------------------------------------

							テキスト画像代替
							
------------------------------------------------------------------------------*/
#xxx
{
	display: block;
	margin: 0;
	padding: 0;
	text-indent: -10000px;
	text-decoration: none;
	text-align: left;
/*\*/
	overflow: hidden;
/* */
}



/*------------------------------------------------------------------------------

								非表示部
								
------------------------------------------------------------------------------*/
#xxx
{
	position: absolute;
	top: -9999px;
	left: -9999px;
	z-index: -9999;
	width: 0;
	height: 0;
	overflow: hidden;
}



/*------------------------------------------------------------------------------

							pageHeader画像指定（上書き）
							
------------------------------------------------------------------------------*/
body#sitemap div#pageHeader{
	background-image: url(../../sitemap/images/page_header.jpg);
}



/*------------------------------------------------------------------------------

								h2
								
------------------------------------------------------------------------------*/
body#sitemap div.article h2{
	background-image: url(../../sitemap/images/sitemap_h2.gif);
}



/*------------------------------------------------------------------------------

								h3
								
------------------------------------------------------------------------------*/
body#sitemap div.article h3{
	min-height: 24px;
	margin-bottom: 10px;
	padding-top: 11px;
	padding-left: 6px;
	background: url(../../images/common/h3_bg.gif) no-repeat left top;
}

* html body#sitemap div.article h3{
	height: 35px;
	padding-top: 12px;
}

body#sitemap div.article h3 a{
	padding-left: 12px;
	background: url(../../images/common/icon_arrow_red.gif) no-repeat 0px 1px;
	font-weight: bold;
}



/*------------------------------------------------------------------------------

								div.left .right
								
------------------------------------------------------------------------------*/
/*----- .left .right -----*/
body#sitemap div.article div.left{
	width: 300px;
	margin-left: 10px;
}

* html body#sitemap div.article div.left{
	margin-left: 5px;
}

body#sitemap div.article div.right{
	width: 298px;
}



/*------------------------------------------------------------------------------

							div.articleContent（上書き）
							
------------------------------------------------------------------------------*/
body#sitemap div.article div.articleContent{
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}



/*------------------------------------------------------------------------------

								ul
								
------------------------------------------------------------------------------*/
body#sitemap div.article div.articleContent ul{
	padding-left: 15px;
}

body#sitemap div.article div.articleContent ul li{
	line-height: 1em;
	padding-bottom: 6px;
	font-weight: bold;
}

body#sitemap div.article div.articleContent ul li a{
	padding-left: 12px;
	background: url(../../images/common/icon_arrow_red.gif) no-repeat 0px 1px;
	font-weight: bold;
}


