@charset "UTF-8"; 

/* ---------------
layout.css
レイアウトの設定
--------------- */
/* ---------------
■目次
・画面全体のレイアウト
	コンテンツ全体のボックス
	ヘッダ
	ナビゲーション
	サブエリア
	フッタ
・フロートの解除
	フロート解除
	フロート解除(不可視)
--------------- */

/* ---------------
画面全体のレイアウト
--------------- */
/* コンテンツ全体のボックス */
div#wrapperBox {
	width: 100%;
	background: #FFFFFF url(../images/headerBg.gif) repeat-x;
}
/* ie6対応*/
div#wrapperBox {
	text-align: center;
}
div#headerBox, div#bodyWrapperBox,div#footerBox {
	text-align: left;
}


/* ヘッダ */
div#headerBox {
	display: none;
}


/* サービスメニュー */
div#serviceMenu {
	display: none;
}


/* サブエリア */
div#subWrapperBox {
	display: none;
}


/* フッタ */
div#footerWrapperBox {
	display: none;
}


/* ---------------
フロートの解除
--------------- */
/* フロート解除 */
.clear {
	clear: both;
}

/* フロート解除(不可視) */
.clearHidden {
	clear: both;
	visibility: hidden;
}

/* 内容のフロートをクリア */
div.line {
	clear: both;
	_margin: -15px 0 0 0;
	line-height: 0;
}
	div.line hr {
		visibility: hidden;
		height: 1px;
		margin: 0;
		padding: 0;
	}


.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {
	zoom:1;
	display: inline-table;
}

/* Hides from IE-mac ¥*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* ---レイアウトの設定ここまで--- */
