@charset "utf-8";
/* まずはフォントを定義。 */
@font-face {

    font-family: 'WG1';/* フォントの名前を付けます */

    src: url('../font_a/go_mig/web_go1.eot');/* IE 用に EOT 形式を読み込みます */

    src: local('hide from IE'), url('../font_a/go_mig/web_go1.ttf') format('truetype');
    /* IE 以外用に TTF 形式を読み込みます。(iPhone にも使いたいなら SVG 形式をあわせて読み込みます。) */
}
body {
    /* @font-face でつけた名前で適用します。*/
    font-family:'WG1';
    font-size:12px;
    margin: 0px;
    padding: 0px;
    background-image: url(../imgs/sub/head_hanrei_bg.png);
    background-repeat: repeat-x;
    background-color: #FFD9B9;
}
#wrapper {
    height: auto;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
#headW {
    height: 38px;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
#logoW {
    height: 32px;
    width: 100%;
    float: left;
}
#contentsW {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
    line-height:24px;
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    /*width: 100%;
    clear: both;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.5em;
    color: #333;*/
}
