@charset "UTF-8";
/*      // 日本語 UTF-8N LF
//---------------------------------------------------------
// CSS
// 基本レイアウト
//---------------------------------------------------------*/
* {
    margin:0px;
    padding:0px;
}
img {
    vertical-align:bottom;          /* IE7: 画像の下にできる隙間対応 */
}
@media screen {
    body {
        zoom:1;                     /* IE7: hasLayout 不具合対応 */
        background-color:#EEEEEE;
    }
    #page {                         /* ページ全体 */
        margin:8px;
        text-align:center;          /* IE6 BUGFIX */
    }
}
@media print {
    body {
        zoom:1;                     /* IE7: hasLayout 不具合対応 */
    }
    #page {                         /* ページ全体 */
    }
}
.rel {
    position:relative;
}
.abs {
    position:absolute;
}
#containerMain {                /* コンテンツ表示領域 */
    margin-left:auto;
    margin-right:auto;
    padding:4px;
    background-color:#FFFFFF;
}
#containerMainMinWidth {        /* IE6 のための min-width 対策用 */
    height:0px;
    line-height:0px;
    border-width:0px;
    background-color:#FFFFFF;   /* #containerMain と同じ色 */
}
/*---------------------------------------------------------
// コンテナ：上下方向
//---------------------------------------------------------*/
#containerTop {                 /* ====== 上段 ====== */
    width:100%;                 /* IE6: sp2 peek-a-boo 不具合対応 */
    position:relative;
}
#containerMiddle {              /* ====== 中段 ====== */
    width:100%;
    position:relative;
}
#containerBottom {              /* ====== 下段 ====== */
    width:100%;
    position:relative;
}
/*---------------------------------------------------------
// Copyright(C)Landwarf. All right reserved.
//---------------------------------------------------------*/
