@charset "utf-8";

/*------------------------------------------------------------------------------

	[ファイル名]	privacy.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#privacy div#pageHeader{
	background-image: url(../../privacy/images/page_header.jpg);
}



/*------------------------------------------------------------------------------

									見出し
									
------------------------------------------------------------------------------*/
#mainContent h2{
	margin-bottom: 8px;
	background: url(../../privacy/images/privacy_h2.gif) no-repeat scroll left top;
}

#mainContent h3{
	width: 100%;
	min-height: 24px;
	margin-bottom: 10px;
	padding-top: 11px;
	background: url(../../images/common/h3_l_bg.gif) no-repeat scroll left top;
}

/* Win IE6 \*/
* html #mainContent h3
{
	height: 35px;
}
/* End Win IE6 */

#mainContent h3 span{
	display: block;
	padding: 0px 10px;
	font-weight: bold;
}



/*------------------------------------------------------------------------------

								詳細
								
------------------------------------------------------------------------------*/
#contentHeader{
	margin-bottom: 20px;
	padding: 0px 15px;
}

#contentHeader strong{
	font-weight: bold;
}

#mainContent ul{
	margin-top: 10px;
	padding: 0px 15px;
}

#mainContent ul.list-disc li{
	line-height: 1.3;
	padding: 3px 0px 8px 0px;
	background: url(../../privacy/images/list_mark_circle.gif) no-repeat scroll 0em 0.4em;
	text-indent: 16px;
}

#mainContent ul.list-disc ul{
	margin-left: 10px;
	padding-left: 0px;
}

#mainContent ul.list-disc ul li{
	padding: 0px 0px 5px 0px;
	background: none;
	list-style: inside disc;
}

#contentFooter{
	margin-bottom: 20px;
	padding: 10px 15px 15px 15px;
	background: url(../../privacy/images/border_dot.gif) repeat-x scroll left bottom;
	font-weight: bold;
	text-align: right;
}

#mainContent ol{
	margin-top: 10px;
	padding: 0px 15px;
}

#mainContent ol.list-decimal li{
	line-height: 1.3;
	margin-left: 1.7em;
	padding-top: 3px;
	padding-bottom: 8px;
	list-style-type: decimal;
	list-style-position: outside;
}


