/*==============================================================================
・CSSの説明
　まず style.cssが読まれます。
　この style.cssは全ページにわたるレイアウト等の指示が書かれいます。
　全体のサイズやサイドバーのサイズなどが、これに該当致します。

　次に、各CSSがインポートされます。



　■default.css
　　：ブラウザを初期化します
　　：通常・このファイルの内容を変更する事はありません。


　■index.css
　　：トップページだけに用いるCSSです


　■sub.css
　　：トップページ以外に適用するCSSです


　■fontchange/basefont.css
　　：最初に読み込まれるベースとなるフォントです。
　　　全体的に作用されるフォントサイズ・フォントカラー
　　　・フォントファミリーはこの場所で指定します。

　　　＠各divに適用させるフォントはこの箇所ではありませんのでご注意下さい。

　■ie.css
　　：Internet Exporerだけに適用します。


==============================================================================*/


@import "default.css";
@import "sub.css";
@import "index.css";
@import "./fontchange/basefont.css";



/*BODY
=========================*/

body {
 background-color: #ffffff;
 text-align: center;
 height:100%;
}


/*LAYOUT
=========================*/

#layout {
 width: 960px;
 height: 100%;
 min-height: 100%;
 text-align: center;
 margin-right: auto;
 margin-left: auto;
 background-color: #ffffff;
}

body > #layout{
 height: auto;
}


/*HEADER
=========================*/
#header{
 text-align: center;
 margin-right: auto;
 margin-left: auto;
 background-image:url(../images/index/top2009060107.gif);
 background-repeat: no-repeat;
}

#header table{
 border-collapse: collapse;
}

#header td{
 padding: 3px 0;
}


#header td h1{
 color: #c0c0c0;
}

/*MAIN
=========================*/
#main{
 background-image: url(../images/bg2.jpg);
 background-repeat: no-repeat;
}


/*FOOTER
=========================*/

#footermenu{
 clear: both;
 width: 960px;
 text-align: center;
 margin: 0 auto;
 }

#footermenu ul{
 padding: 8px 0 0 0;
}

#footermenu li{
 list-style-type:none;
 display: inline;
 font-size: 14px;
 padding: 0 4px 0 0;
}

#footer{
 padding: 10px 0 0 0;
 clear: both;
 text-align: center;
}

address{
 color: #585A59;
 font-style: normal;
}

address a{
 color: #585A59;
 text-decoration: none;
}

address a:hover{
 color: #585A59;
 text-decoration: underline;
}


