@charset "UTF-8";

/* ##################################################################### */
/*        　                                             　              */
/* 　 ●各ページ共通のスタイル   　　                                    */
/*    1.ページ全体のレイアウト等                                   　    */
/*      1-1.インポート　　　　　　　　　                                 */
/*      1-2.基本情報　　　　　　　　　　                                 */
/*      1-3.段組み（レイアウト）　　　　                                 */
/*    2.プライマリーナビゲーション+トップバックグラウンド     　         */
/*      2-1.プライマリーナビゲーション                                   */
/*    3.ヘッダー　　　　　　　　　　　　　　　　　　　　　　             */
/*      3-2.h1　見出し１　　　　　　　                                   */
/*      3-2.ヘッダーロゴエリア                                           */
/*    4.コンテンツエリア                                          　     */
/*      4-1.コンテンツ範囲指定（メイン+ローカルナビエリア）              */
/*      4-2.メインコンテンツ範囲指定                                     */
/*      4-3. section1　　　　　　　　　　　　　　　　　　　　　　　　　　*/
/*      4-4. section2　　　　　　　　　　　　　　　　　　　　　　　　　　*/
/*      4-5. section3　　　　　　　　　　　　　　　　　　　　　　　　　　*/
/*     5.トップに戻る                                                    */
/*        　                                                             */
/* ##################################################################### */

/* ===================================================================== */
/*    1.ページ全体のレイアウト等                                   　    */
/* ===================================================================== */
/* --------------------------------------------------------------------- */
/*      1-1.インポート　　　　　　　　　                                 */
/* --------------------------------------------------------------------- */

/* リセット用CSSをインポート */
@import "reset.css";

/* グローバルナビ用CSSをインポート */
@import "globalNavigation.css";

/* フッター用CSSをインポート */
@import "footer.css";

/* ローカルナビ用CSSをインポート */
@import "localNavigation.css";

/* コンテンツ用スタイル用CSSをインポート */
@import "style_content.css";

/* テーブル用基本スタイル用CSSをインポート */
@import "table.css";


/* --------------------------------------------------------------------- */
/*      1-2.基本情報　　　　　　　　　　                                 */
/* --------------------------------------------------------------------- */

/* body */
body {
	font-size:100%;
	margin-top: 0;
	margin-bottom: 0;
	background: #EAEFF2 url(../images/bg_top.gif) repeat-x;
}

html{
}

a:link { text-decoration: none ; color:#0066cc }
a:visited { text-decoration: none;	color:#006}
a:hover{ text-decoration: underline ; color:#6633ff }


/* --------------------------------------------------------------------- */
/*      1-3.段組み（レイアウト）　　　　                                 */
/* --------------------------------------------------------------------- */

#wraper{
	text-align: center;
	width: 100%;
	}
	
#shadow{
	margin-right: auto;
	margin-left: auto;
}
#container{
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	text-align: left;
	width: 800px;
	background-color: #FFFFFF;
	margin-bottom: 0px;
}


/* ===================================================================== */
/*    2.プライマリーナビゲーション+トップバックグラウンド     　         */
/* ===================================================================== */
/* --------------------------------------------------------------------- */
/*      2-1.プライマリーナビゲーション                                   */
/* --------------------------------------------------------------------- */


/* ===================================================================== */
/*    3.ヘッダー　　　　　　　　　　　　　　　　　　　　　　             */
/* ===================================================================== */
/* --------------------------------------------------------------------- */
/*      3-1.ヘッダー範囲指定　　　　　                                   */
/* --------------------------------------------------------------------- */

#header{
	width: 800px;
	margin-bottom: 0px;
	margin-top: 0px;
	padding-top: 0px;
}




/* --------------------------------------------------------------------- */
/*      3-2.h1　見出し１　　　　　　　                                   */
/* --------------------------------------------------------------------- */


/* --------------------------------------------------------------------- */
/*      3-2.ヘッダーロゴエリア                                           */
/* --------------------------------------------------------------------- */
#primaryNavi{
	margin-bottom: 0px;}

#primaryNavi ul {
	width: 800px;
	height: 28px;
	background-image: url(../images/header.jpg);
	background-repeat: no-repeat;}

#primaryNavi li {
	float: left;
	list-style-type: none;
}

#primaryNavi li a{
	display: block;
	background-image: url(../images/header.jpg);
	background-repeat: no-repeat;
	height: 28px;
	text-indent: -9999px;}

#primaryNavi ul li.list01 a {
	width: 105px;
	margin-left: 585px;
	background-position: -585px 0px;}

#primaryNavi ul li.list02 a {
	width: 105px;
	background-position: -690px 0px;}
	
#primaryNavi ul li.list01 a:hover {
	width: 105px;
	margin-left: 585px;
	background-position: -585px -28px;}

#primaryNavi ul li.list02 a:hover {
	width: 105px;
	background-position: -690px -28px;}

/* ===================================================================== */
/*    4.コンテンツエリア                                          　     */
/* ===================================================================== */
/* --------------------------------------------------------------------- */
/*      4-1.コンテンツ範囲指定（メイン+ローカルナビエリア）              */
/* --------------------------------------------------------------------- */

#mainImage{
	margin-bottom: 15px;
	}

#contentArea{
	width: 800px;
	padding-top: 5px;
}

/* --------------------------------------------------------------------- */
/*      4-2.メインコンテンツ範囲指定                                     */
/* --------------------------------------------------------------------- */

#contentArea #mainContent {
	display: block;
	width: 570px;
	color: #666666;
	background-color: inherit;
	float: left;
	margin-left: 10px;
}


/* --------------------------------------------------------------------- */
/*      4-3. section1　　　　　　　　　　　　　　　　　　　　　　　　　　*/
/* --------------------------------------------------------------------- */
#mainContent div.section1 {
	width: 550px;
	float: left;
	margin-bottom: 15px;
}

/* --------------------------------------------------------------------- */
/*      4-4. section2　　　　　　　　　　　　　　　　　　　　　　　　　　*/
/* --------------------------------------------------------------------- */

div.mainColumn div.section2 {
	width: 550px;
	float: left;
	margin-bottom: 15px;
}


/* --------------------------------------------------------------------- */
/*      4-5. section3　　　　　　　　　　　　　　　　　　　　　　　　　　*/
/* --------------------------------------------------------------------- */

div.mainColumn div.section3 {
	width: 550px;
	float: left;
	margin-bottom: 15px;
}




/* ===================================================================== */
/*      5.トップに戻る                                                   */
/* ===================================================================== */


#pagetop {
	width: 750px;
	clear: both;
}

#pagetop p a{
	width: 76px;
	margin-bottom: 10px;
	margin-top: 10px;
	background-image:url(../images/pagetop.gif);
	background-repeat: no-repeat;
	text-indent: -9999px;
	display: block;
	background-position: right;
	margin-right: 10px;
	margin-left: 700px;
	clear: both;
	height: 25px;
}


#localNav{
	width: 195px;
	height: auto;
	padding:0px;
	margin-top: 0px;
	margin-bottom: 0px;
	float: right;
	margin-right: 10px;
}
#localNav p{
	margin-top: 0px;
	padding-top: 0px;
	}
	
.givetake {
	height: 123px;
	width: 200px;
	background: url(../../front/images/reuse.jpg);
	text-indent: -9999px;
	display: block;
	margin-bottom: 15px;
}

a:hover.givetake {
	margin-top: 1px;
	margin-left: 1px;
	margin-bottom: 14px;
}

.kengaku {
	height: 123px;
	width: 200px;
	background: url(../../front/images/kengaku.jpg);
	text-indent: -9999px;
	display: block;
	margin-bottom: 15px;
}


a:hover.kengaku {
	margin-top: 1px;
	margin-left: 1px;
	margin-bottom: 14px;
}

.yaocity {
	height: 70px;
	width: 200px;
	background: url(../../front/images/yaocity.jpg);
	text-indent: -9999px;
	display: block;
}


a:hover.yaocity {
	margin-top: 1px;
	margin-left: 1px;
	margin-bottom: 14px;
}

/* ===================================================================== */
/*      5.スクリーンリーダー                                             */
/* ===================================================================== */
.for-screenreader{
	display: none;
	}


/* ===================================================================== */
/*      5.section01                                                      */
/* ===================================================================== */
/* --------------------------------------------------------------------- */
/*      5.section01 共通部分　　　　　　　　　　　　　　　　　　 　　　　*/
/* --------------------------------------------------------------------- */
#section01{
	width:560px;
	margin: 0px 0px 10px;
	padding: 0px;
	}

div#section01 div.box{
	width:560px;
	margin:0px 0px 10px;
	padding:5px 0px 7px;
	background:#d4e3ea;
	overflow:hidden;
	clear: left;
	height: auto;
	float: left;
}

div#section01 div.box div{
	width:265px;
	background:url(../../front/images/index01_bg_start.gif) repeat-y 0px 0px;
	margin: 0px;
	padding: 0px;
	float: left;
}

div#section01 div.box ul{
	width: auto!important;
	}

div#section01 div.box ul li{
	width: auto!important;
	margin-left: 0px;
	padding-left: 25px;
	}

div#section01 div.box #section01-01,
div#section01 div.box #section01-02,
div#section01 div.box #section01-03,
div#section01 div.box #section01-04,
div#section01 div.box #section01-05,
div#section01 div.box #section01-06{
	margin-left: 10px;
	margin-top: 5px;
	background: url(../../front/images/index01_bg_end.gif) no-repeat center bottom !important;
	height: auto;
	padding-bottom: 5px;

	}

div#section01 div.box h3,
div#section01 div.box h3 a:link,
div#section01 div.box h3 a:visited {
	border-style: none;
	width: 265px;
	display: block;
	margin: 0px !important;
	padding: 0px !important;
	text-indent: 19px;
	height: 36px;
	line-height: 2.7em;
	color: #FFF !important;
	}

div#section01 div.box h3 span{
	margin-right: 13px;
	}
/* --------------------------------------------------------------------- */
/*      5.section01 各種設定　　　　　　　　　　　　　　　　　　 　　　　*/
/* --------------------------------------------------------------------- */

div#section01 div.box #section01-01 h3{
	background:url(../../front/images/section01_h01.gif) no-repeat left top;
}

div#section01 div.box div#section01-02 h3{
	background:url(../../front/images/section01_h02.gif) no-repeat left top;
}
div#section01 div.box div#section01-03 h3{
	background:url(../../front/images/section01_h03.gif) no-repeat left top;
}
div#section01 div.box div#section01-04 h3{
	background:url(../../front/images/section01_h04.gif) no-repeat left top;
}
div#section01 div.box div#section01-05 h3{
	background:url(../../front/images/section01_h05.gif) no-repeat left top;
}
div#section01 div.box div#section01-06 h3{
	background:url(../../front/images/section01_h06.gif) no-repeat left top;
}

div#section01 div.box div ul{
	width: 230px !important;
	margin: 5px 0px 0px;
	}
div#section01 div.box div ul li{
	width: 230px !important;
	margin: 0px 0px 0px 10px !important;
	padding: 0px 0px 0px 10px !important;
}

div#index div#index02 div.box div h3 span{
	float:left;
	display:block;
	width:22px;
	height:auto;
	margin:0 8px 0 1px;
	padding:2px 0 0 0;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	line-height:1em;
	overflow:hidden;
}
div#section01 div.box #section01-01 h3 span{ color:#1b4785 ;}
div#section01 div.box #section01-02 h3 span{ color:#593 ;}
div#section01 div.box #section01-03 h3 span{ color:#f2972b ;}
div#section01 div.box #section01-04 h3 span{ color:#bd0109 ;}
div#section01 div.box #section01-05 h3 span{ color:#8c90cf ;}
div#section01 div.box #section01-06 h3 span{ color:#960 ;}