@charset "utf-8";
/* CSS Document */

/*プロパティ順番
////////////////////////////////////////////////////*//*


	Mozillaが採用している「ボックスモデルによる記述順番」

	01 display
	02 list-style
	03 position
	04 float
	05 clear
	06 width
	07 height
	08 margin
	09 padding
	10 border
	11 background
	12 color
	13 font
	14 text-decoration
	15 text-align
	16 vertical-align
	17 white-space
	18 other text
	19 content


///////////////////////////////////////////////////////*/


/*初期化
////////////////////////////////////////////////////*/

html {
	font-size: 62.5%;
}





* {
	line-height: 150%;
	margin: 0;
	padding: 0;
	color: #333333;
	font-family: "ＭＳ Ｐゴシック", "Osaka", "ヒラギノ角ゴ Pro W3", sans-serif;
	font-size: 100%;
	letter-spacing: 0.1em;
	list-style: none;
}


body {
	text-align: center;
	font-size: 120%;
}

img {
	border: none;
	vertical-align: bottom;
}

/*clear fix
////////////////////////////////////////////////////*/
.clear:after{
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}

.clear{
	display:inline-block;
}

/*Hides from IE-mac \*/
*html .clear{
	height:1%;
}

.clear{
	display:block;
}
/*End hide from IE-mac*/


/*デフォルトリンクカラー
////////////////////////////////////////////////////*/
a:link {
	color: #006699;
}

a:visited {
	color: #996699;
}

a:hover {
	color: #FF3366;
}


/*メインボックスのレイアウト設定
////////////////////////////////////////////////////*/

#mainBox {
	margin: 0 auto;
	width: 900px;
	text-align: left;
}


/*ヘッダーのレイアウト設定
////////////////////////////////////////////////////*/

#header h1 {
	float: left;
}

#header p#contactBt {
	float: right;
}


/*フッターのレイアウト設定
////////////////////////////////////////////////////*/



