@charset "utf-8";

/*------------------------------------------------------------------------------

	[ファイル名]	terms_of_use.css
	
	[概要]
	
	[目次]
		・clearFix／画像代替／非表示部
	
------------------------------------------------------------------------------*/



/*------------------------------------------------------------------------------

								clearFix
								
------------------------------------------------------------------------------*/
#xxx
{
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	line-height: 0;
	content: ".";
}

/* Win IE7 */
#xxx
{
	min-height: 1%;
}
/* End Win IE7 */

/* Win IE6 \*/
#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;
/*\*/
	overflow: hidden;
/* */
}



/*------------------------------------------------------------------------------

								非表示部
								
------------------------------------------------------------------------------*/
#xxx
{
	position: absolute;
	top: -9999px;
	left: -9999px;
	z-index: -9999;
	width: 0;
	height: 0;
	overflow: hidden;
}



/*------------------------------------------------------------------------------

								div.section
								
------------------------------------------------------------------------------*/
div.section{
	line-height: 1.5em;
	margin: 10px;
	padding: 5px;
	background-color: #ffffff;
	font-size: 75%;
	text-align: left;
}

div.section h2{
	padding: 10px;
	background-color: #eeeeee;
	border-bottom: 1px solid #cccccc;
	font-weight: bold;
	font-size: 120%;
}

div.section div.sectionContent{
	padding: 5px 10px;
}

div.section ul li{
	margin: 15px 0px;
	padding-left: 1em;
	text-indent: -1em;
}

div.section p#buttonClose{
	padding: 10px 70px;
	text-align: center;
}

div.section p#buttonClose a{
	display: block;
	padding: 5px;
	background-color: #555555;
	border-bottom: 1px solid #000000;
	color: #dddddd;
	font-weight: normal;
	text-decoration: none;
}

div.section p#buttonClose a:hover{
	background-color: #000000;
	color: #ffffff;
}
