         /* bodyタグ内CSS適用 */
                    /* 【marginの説明】
                            0;(上下左右) 
                           00;(上下)(左右) 
                          000;(上)(左右)(下) 
                         0000;(上)(右)(下)(左)
                 ※ボックスを下へ伸ばす場合は、親ボックス以下の
                    heightを同等の長さだけ長くする。
                     */
body {
    font-weight:bold; /* フォント */
    margin:auto;      /* 上下左右(0px) */
    padding:auto;     /* 枠の内側 */
    text-align:left;  /* IE以外のブラウザ */
}
         /* 文字ボックス設定 */
#container { 
    max-width:100%;
    height:1000px;
    margin:auto;
    text-align:left;
    border:#000 solid 0px; /* 線の色と幅 (#000 黒) */
}

// 背景画像の設定
/* ガタつきのIE対策 */
html,body{   
    width :100%;
    height:100%;   
    overflow:auto;   
    margin:0;   
    padding:0;   
}   
#oku1 {background: url();                       /* ●1枚目の背景画像設定● */
       background-attachment: fixed; }
#oku2 {background: url(../image/hikouki20.gif); /* ●2枚目の飛行機設定● */
       background-attachment: fixed; }
#oku3 {background: url(../image/hikouki30.gif); /* ●3枚目の飛行機設定● */
       background-attachment: fixed; }
#oku4 {background: url(../image/hikouki40.gif); /* ●4枚目の飛行機設定● */
       background-attachment: fixed; }
#oku5 {background: url(../image/hikouki50.gif); /* ●5枚目の飛行機設定● */
       background-attachment: fixed; }
#oku6 {background: url(../image/hikouki60.gif); /* ●6枚目の飛行機設定● */
       background-attachment: fixed; }
#oku7 {background: url(../image/hikouki70.gif); /* ●7枚目の飛行機設定● */
       background-attachment: fixed; }
#oku8 {background: url(../image/hikouki80.gif); /* ●8枚目の飛行機設定● */
       background-attachment: fixed; }
