@charset "Shift_JIS";

/*----------------------------------------------------------------------*/
/* 全般的なスタイル                                                     */
/*----------------------------------------------------------------------*/
* {
    margin:0; padding:0;         /* 全要素のリセット                    */
    line-height:1.0;             /* 全要素の行の高さを1.0倍にする       */
    color:#004080;               /* 文字色                              */

} 
body {
    background-color:#ffffff;    /* ページ全体の背景色                  */
    text-align:center;           /* IE6以下でセンタリングするための対策 */
}
div#pagebody {
    width:940px; margin:0 auto;  /* 内容全体をセンタリング              */
    background-color:#ffffff;    /* ページ全体の背景色                  */
    text-align:left;             /* テキストの配置を左揃え              */
}
div {
	-moz-box-sizing : border-box;
	box-sizing : border-box;
}
/*----------------------------------------------------------------------*/
/* ヘッダ                                                               */
/*----------------------------------------------------------------------*/
div#header {
    width:940px;
    height:110px;
    background-image:url("../img/bg_header.gif");
    background-position:0px;
    background-repeat:no-repeat;
}

/*----------------------------------------------------------------------*/
/* メニュー(高さ25pxタイプ)                                             */
/*----------------------------------------------------------------------*/
div#menu_h25 {
    width:940px;
    height:25px;
    margin:0px 0px 5px 0px;
}

/*----------------------------------------------------------------------*/
/* メニュー(高さ41pxタイプ)                                             */
/*----------------------------------------------------------------------*/
div#menu_h41 {
    width:940px;
    height:41px;
    margin:0px 0px 5px 0px;
}

/*----------------------------------------------------------------------*/
/* コンテンツ(左と中央の２カラム)                                       */
/*----------------------------------------------------------------------*/
div#content {
    width:720px;
    float:left;                  /* カラム全体を左寄せ                  */
    margin:0px;
    padding:0px;
    background-color:#ffffff;
}

/*----------------------------------------------------------------------*/
/* コンテンツ(左カラム)                                                 */
/*----------------------------------------------------------------------*/
div#content_left {
    width:270px;
    float:left;                  /* カラムを左寄せ                      */
    margin:0px;
}

/*----------------------------------------------------------------------*/
/* コンテンツ(中央カラム)                                               */
/*----------------------------------------------------------------------*/
div#content_center {
    width:440px;
    float:left;                  /* カラムを左寄せ                      */
    margin:0px 0px 0px 4px;      /* IE6対策 4px                         */
    background-color:#ffffff;
}

/*----------------------------------------------------------------------*/
/* コンテンツ(右カラム)                                                 */
/*----------------------------------------------------------------------*/
div#content_right {
    width:220px;
    float:right;                 /* カラムを右寄せ                      */
    margin:0px;
    padding:0px;
}

/*----------------------------------------------------------------------*/
/* コンテンツ(左＋中央カラム一体タイプ)                                 */
/*----------------------------------------------------------------------*/
div#content_leftcenter {
    width:720px;
    margin:0px;
    padding:0px;
    float:left;                  /* カラムを左寄せ                      */
    background-color:#ffffff;
}

/*----------------------------------------------------------------------*/
/* フッタ                                                               */
/*----------------------------------------------------------------------*/
div#footer {
    width:940px;
    height:50px;
    float:left;                  /* カラムを左寄せ                      */
    margin:5px 0px 0px 0px;
    background-image:url("../img/bg_footer.gif");
    background-position:0px;
    background-repeat:no-repeat;
}

/*--- END OF FILE ---*/
