@charset "utf-8";

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

	[ファイル名] inquiry.css
	
	[概要] お問い合わせページ専用のCSSです。
	
	[目次]
		・clearFix／画像代替／非表示部
	
------------------------------------------------------------------------------*/



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

								clearFix
								
------------------------------------------------------------------------------*/

#xxx:after
{
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	line-height: 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;
/*\*/
	overflow: hidden;
/* */
}



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

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



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

							div#contentheader 画像指定
							
------------------------------------------------------------------------------*/
div#contentHeader h1{
	background-image: url(../../inquiry/images/content_header.gif);
}



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

					追記内容がある場合は以下に記述ください
							
------------------------------------------------------------------------------*/


h6 {
	margin-top: 10px;
	margin-bottom: 5px;
	padding-left: 1em;
	color: #009933;
	font-size: 120%;
	font-weight: bold;
	text-indent: -1em;
}

div.section p{
	line-height:1.8em;
}


p#address{
	margin-left: 1em;
}


.clear {
	clear: both;
}


p em{
	font-weight: bold;
	color: #555;
}