﻿/* ========BASIC======== */

* {
	font-family:"Hiragino Kaku Gothic Pro",HiraKakuPro-W3,"ヒラギノ角ゴ Pro W3","メイリオ", Meiryo,"MS P ゴシック",verdana,sans-serif;
}

body {
	margin: 0;
	padding: 0;
	background: url(../images/background.jpg) repeat;	/* ======== 背景色 ======== */
	-webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5 {
	margin: 10px 0 10px;	/* ======== TEXT上下の幅 ======== */
}

h1 {
	font-size: 2.5em;	/* ======== h1 フォントサイズ ======== */
}

h2 {
	font-size: 2.0em;	/* ======== h2 フォントサイズ ======== */
}

h3 {
	font-size: ;	/* ======== h3 フォントサイズ ======== */
}

h4 {
	font-size: ;	/* ======== h4 フォントサイズ ======== */
}

h5 {
	font-size: ;	/* ======== h5 フォントサイズ ======== */
}

p {
	font-size: ;	/* ======== p フォントサイズ ======== */
	margin: 5px 0px;
	padding: 0px;
}

img {
    border-style:none;
}

.no_border {
    border-style:none;
}


/* ========ヘッダー（左側ロゴ部の設定）======== */

#header-wrap {
	position: fixed;	/* ======== fixed で固定　relative で稼動 ======== */
	top: 0;
	left: 0;
	width: 100%;	
}

#header-container {
	height: 56px;		/* ======== ヘッダーの縦幅 ======== */
	background: url(../images/header-bg.jpg) repeat-x left bottom;	/* ======== ヘッダー画像 ======== */
}

#header {
	width: 840px;		/* ======== ヘッダーの要素表示幅 ======== */
	margin: 0 auto;
	position: relative;
}

#header h1 {
	color: #ffffff;
	text-align: left;
	width: 100%;
	margin: 0;
	position: absolute;
	left: 0px;
	top: 5px;
}

#header h1 em{
	color: #999999;
	font-size: small;
	display: block;
}


/* ======== ヘッダー（右側メニュー部の設定）======== */

#header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	top: 16px;		/* ======== トップとメニューの間隔 ======== */
	right: 0;
}

#header ul li {
	float: left;
	margin-right: 5px;	/* ======== メニュー間の幅（１） ======== */
}

#header ul li a{
	color: #ffffff;		/* ======== メニュー フォントカラー ======== */
	font-weight: bold;	/* ======== メニュー フォント太さ ======== */
	font-size: 0.9em;	/* ======== メニュー フォントサイズ ======== */
	margin-right: 0px;	/* ======== メニュー間の幅（２） ======== */
	text-decoration: none;
}

#header ul li a:hover {
	color: #666666;		/* ======== メニュー 裏フォントカラー ======== */
}


/* ======== ページ内要素表示定義 ======== */

#container {
	width: 840px;		/* ======== ページ 要素表示幅 ======== */
	margin: 0 auto;
	font-size: 0.9em;	/* ======== フォントサイズ ======== */
	overflow: auto;
	padding: 86px 0px 0px 0px;	/* ======== container上下の空白幅 ======== */
	background: url(../images/background_s.jpg) repeat;
}

#content {
	float: left;		/* ======== ページ左側の表示幅 ======== */
	width: 800px;
	padding: 0px 20px 0px 20px;	/* ======== content左右の空白幅 ======== */
}

#sidebar {
	float: right;		/* ======== ページ右側の表示幅 ======== */
	width: 0px;
	margin-top: 0px;
}


/* ======== フッター ======== */

#footer-wrap {
	position: relative;	/* ======== fixed で固定　relative で稼動 ======== */
	bottom: -50px;
	left: 0;
	width: 100%;	
}

#footer-container {
	height: 21px;		/* ======== フッター 縦幅 ======== */
	background: url(../images/footer-bg.jpg) repeat-x left bottom;	/* ======== フッター画像 ======== */
	font-size: 0.6em;	/* ======== フッター フォントサイズ ======== */
}

#footer {
	width: 840px;		/* ======== フッター 要素表示幅 ======== */
	bottom: -4px;		/* ======== ボトムとフッターの間隔 ======== */
	margin: 0 auto;
	position: relative;
}

