﻿/* -------------------------------------------------------------------
トップページの書式設定
------------------------------------------------------------------- */

/* -------------------------------------------------------------------
body要素
・背景設定
・フォント設定
------------------------------------------------------------------- */
body {
	width: 900px; /* コンテンツの幅指定 */
	margin-left: auto; /* コンテンツセンタリング */
	margin-right: auto; /* コンテンツセンタリング */
	
	background-image:url("../../images/background/bgCurve.jpg"); /* 背景画像 */
	background-attachment:fixed; /*背景画像固定*/
	background-repeat:no-repeat; /*背景画像繰り返しなし*/
	background-position:center top;
	background-color: #000080; /* 背景色：濃紺 */

	/* フォントの設定 */
	font-family: 'HG丸ｺﾞｼｯｸM-PRO', Osaka, 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', 'メイリオ';
	font-size: 80%; /* フォントサイズ：80% */
	color: #C0C0B6; /* 文字色：グレー */
}

a {
	color: #FFFFFF;
}

/* -------------------------------------------------------------------
上段 ロゴ表示
------------------------------------------------------------------- */
div#Top_Content {
	height:170px; /* ロゴ画像にあわせた高さ指定 */
	text-align: right; /* 右寄せ */
	/* clear: left; */
}

/* -------------------------------------------------------------------
中段 各画面へのリンクボタン
------------------------------------------------------------------- */
div#Middle_Content {
	margin-upper: 50px;
	margin-bottom: 80px;
	margin-right: 60px;
	text-align: right; /* 右寄せ */
}

img.linkButton {
	margin: 2px;
}

/* -------------------------------------------------------------------
下段 地図、お知らせリンクなど
------------------------------------------------------------------- */
div#Bottom_Content {
	margin-left: 250px;
}

/* -------------------------------------------------------------------
下段左 地図画像表示
------------------------------------------------------------------- */
div#BottomLeft_Content {
	float: left; /* 左寄せ */
	margin-left: 0; /* 左マージン設定(div共通設定にあわせる) */
	margin-right: 10px; /* 右マージン設定 */
	font-size: 90%; /* フォントサイズ小さめ */
	width: 350px;
	/*
	background-color: #4444CC;
	*/
}

/* -------------------------------------------------------------------
下段右(1) 住所等の基本情報
------------------------------------------------------------------- */
div#BottomRight_Content {
	float: right;
	width: 250px;
	text-align: left;
	margin-left: 30px;
	/*
	background-color: #44CC44;
	*/
}

/* -------------------------------------------------------------------
下段右(2) お知らせ等のリンク
------------------------------------------------------------------- */
div#Link_Content {
	margin-top: 20px;
}

/* -------------------------------------------------------------------
フッター
------------------------------------------------------------------- */
div#Foot_Content {
	width: 100%;
	color: #C0C0B6;
	margin: 20px;
}

/* -------------------------------------------------------------------
コピーライト
------------------------------------------------------------------- */
td#Copyright {
	color: #D0D0D6;
}

p.furigana {
	line-height: 80%;
	font-size: 80%;
	margin-bottom: 0em;
	margin-left: 0em;
}

p.name {
	font-size: 120%;
	margin-top: 0em;
	margin-left: 0em;
}


