@charset "utf-8";

/*------------------------------------------------------------------------------

	[ファイル名]	home.css
	
	[概要]	トップページ専用CSS
	
	[目次]
			・clearFix
			・画像代替
			・非表示部
	
------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------

	clearFix
								
------------------------------------------------------------------------------*/
body#home #mainContent dl:after
{
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
	content: ".";
}

/* Win IE7 */
*:first-child + html body#home #mainContent dl
{
	min-height: 1%;
}
/* End Win IE7 */

/* Win IE6 \*/
* html body#home #mainContent dl
{
	height: 1%;
}
/* End Win IE6 */

/* Mac IE\*//*/
body#home #mainContent dl
{
	display: inline-table;
}
/* End Mac IE */

/*------------------------------------------------------------------------------

	テキスト画像代替
							
------------------------------------------------------------------------------*/
body#home div.section h2,
body#home div.section h2 a
{
	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;
}

/*------------------------------------------------------------------------------

	div#wrapper
								
------------------------------------------------------------------------------*/
body#home div#wrapper{
	
}

/*------------------------------------------------------------------------------

	div#globalNav
								
------------------------------------------------------------------------------*/
body#home div#globalNav ul li{
	height: 51px;
}

body#home div#globalNav ul li a{
	height: 51px;
}

/*------------------------------------------------------------------------------

	div#mainVisual
								
------------------------------------------------------------------------------*/
body#home div#mainVisual{
	height: 225px;
	background: none;
}

/*------------------------------------------------------------------------------

	見出し
								
------------------------------------------------------------------------------*/
body#home div.section h2{
	position: relative;
	width: 600px; height: 50px;
	background-position: left top;
	background-attachment: scroll;
	background-repeat: no-repeat;
}

body#home div#sectionNews h2{
	background-image: url(../../images/home/top_ttl_news.gif);
}

body#home div#sectionCampaign h2{
	background-image: url(../../images/home/top_ttl_campaign.gif);
}

body#home div#sectionBlog h2{
	background-image: url(../../images/home/top_ttl_blog.gif);
}

body#home div.section h2 a{
	position: absolute;
	top: 17px; right: 3px;
	width: 66px; height: 13px;
	background: url(../../images/home/btn_view.gif) no-repeat scroll left top;
	/*border: 1px solid #000000;*/
}

body#home div.section h2 a:hover,body#home div.section h2 a:active{
	background: url(../../images/home/btn_view_ov.gif) no-repeat scroll left top;
}

/*------------------------------------------------------------------------------

	記事一覧リスト
								
------------------------------------------------------------------------------*/
body#home #mainContent dl{
	padding: 5px 12px;
}

body#home #mainContent dl dt{
	clear: both;
	float: left;
	width: 6em;
	padding-top: 10px; padding-bottom: 10px; padding-left: 15px;
	background-image: url(../../images/common/icon_list.gif);
	background-repeat: no-repeat;
	line-height: 120%;
}

body#home #mainContent dl dd{
	padding-top: 10px; padding-bottom: 10px; padding-left: 8em;
	background-image: url(../../images/common/line_dot01.gif);
	background-position: bottom;
	background-repeat: repeat-x;
	line-height: 120%;
}

body#home #mainContent dl dd a{
	text-decoration: underline;
}

