@charset "UTF-8";
/*      // 日本語 UTF-8N LF
//---------------------------------------------------------
// CSS
// 基本レイアウト
//---------------------------------------------------------*/
* {
    margin:0px;
    padding:0px;
}
body {
    zoom: 1;                        /* IE7: hasLayout 不具合対応 */
}
img {
    vertical-align:bottom;          /* IE7: 画像の下にできる隙間対応 */
}
@media screen {
    #page {                         /* ページ全体 */
        text-align:center;          /* IE6 BUGFIX */
    }
}
@media print {
}
/*---------------------------------------------------------
// 汎用クラス
//---------------------------------------------------------*/
.rel {
    position: relative;
}
.abs {
    position: absolute;
}
/* センタリング */
.hc {
    margin-left: auto;
    margin-right: auto;
}
/* 縦方向配置 */
.vt {
    vertical-align: top;
}
.vm {
    vertical-align: middle;
}
.vb {
    vertical-align: bottom;
}
/* テキスト横方向 */
.tc {
    text-align: center;
}
.tl {
    text-align: left;
}
.tr {
    text-align: right;
}
/* サイズ */
.max {
    width: 100%;
    height: 100%;
}
/* その他 */
.system .notice {
    font-size: 12px;
    background-color:#FFC;
}
/*---------------------------------------------------------
// コンテナ：メイン
//---------------------------------------------------------*/
#containerMain {                /* コンテンツ表示領域 */
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
/*---------------------------------------------------------
// コンテナ：上下方向
//---------------------------------------------------------*/
#containerTop {                 /* ====== 上段 ====== */
    position: relative;
    width: 100%;                /* IE6: sp2 peek-a-boo 不具合対応 */
}
#containerMiddle {              /* ====== 中段 ====== */
    position: relative;
    width: 100%;
}
#containerBottom {              /* ====== 下段 ====== */
    position: relative;
    width: 100%;
}
/*---------------------------------------------------------
// Copyright(C)Landwarf. All right reserved.
//---------------------------------------------------------*/
