@charset "UTF-8";
/*==============================================================================
	全体
==============================================================================*/
* {
        margin: 0;                                                         /* 領域間のスペースを「0」に指定 */
        padding: 0;                                                        /* 領域内のスペースを「0」に指定 */
}
body {
        background-image:url('../images/blue_p6b.gif');                    /* 背景画像の指定 */
        font-family: sans-serif;                                           /* フォントの種類を「sans-serif」に指定 */
        text-align: center;                                                /* 横に「中央揃え」 */
}
/*==============================================================================
	タイトルロゴ
==============================================================================*/
h1 {
        margin: 43px auto auto auto;                                       /* 上(領域間)に「43px」のスペースを空ける */
        line-height: 0;                                                    /* 行の高さを「0」に指定 */
}
/*==============================================================================
	画像
==============================================================================*/
img {
        max-width: 100%;                                                   /* 画像の幅の最大値を「100%」に制限 */
        height: auto;                                                      /* 高さを「auto」に指定 */
}
/*==============================================================================
	Welcome
==============================================================================*/
header p {
        margin: 57px auto auto auto;                                       /* 上(領域間)に「57px」のスペースを空ける */
        font-weight: bold;                                                 /* フォントの太さを「bold」に指定 */
        font-size: 24px;                                                   /* フォントのサイズを「24px」に指定 */
        color: red;                                                        /* テキストの色を「red」に指定 */
}
cite {
        font-style: normal;                                                /* フォントを「標準」フォントで表示 */
}
/*==============================================================================
	区切り
==============================================================================*/
hr {
        width: 980px;                                                      /* 幅を「980px」に指定 */
        height: 2px;                                                       /* 高さを「2px」に指定 */
        max-width: 100%;                                                   /* 幅の最大値を「100%」に制限 */
        margin: auto;                                                      /* 領域間のスペースを「auto」に指定 */
}
/*==============================================================================
	since
==============================================================================*/
#since {
        margin: 15px auto 31px auto;                                       /* 上(領域間)に「15px」、下(領域間)に「31px」のスペースを空ける */
        font-weight: bold;                                                 /* フォントの太さを「bold」に指定 */
        font-size: 18px;                                                   /* フォントのサイズを「18px」に指定 */
        color: red;                                                        /* テキストの色を「red」に指定 */
}
/*==============================================================================
	挨拶
==============================================================================*/
#welcome {
        font-weight: bold;                                                 /* フォントの太さを「bold」に指定 */
        font-size: 18px;                                                   /* フォントのサイズを「18px」に指定 */
        color: red;                                                        /* テキストの色を「red」に指定 */
}
/*==============================================================================
	World Mapへの入り口
==============================================================================*/
#entrance {
        display: table;                                                    /* 表示形式を「table」に指定 */
        border: outset thin gray;                                          /* ボーダーのスタイルを「outset」、太さを「thin」、色を「gray」に指定 */
        border-spacing: 2px;                                               /* セルのボーダーの間隔を「2px」に指定 */
        margin: 19px auto 68px auto;                                       /* 上(領域間)に「19px」、下(領域間)に「68px」のスペースを空ける */
        width: 445px;                                                      /* 幅を「445px」に指定 */
        max-width: 100%;                                                   /* テーブルの幅の最大値を「100%」に制限 */
}
/*==============================================================================
	World Mapへの入り口ロゴ
==============================================================================*/
h2 {
        display: table-row;                                                /* 表示形式を「table-row」に指定 */
}
h2 span {
        display: table-cell;                                               /* 表示形式を「table-cell」に指定 */
        border: inset thin gray;                                           /* ボーダーのスタイルを「inset」、太さを「thin」、色を「gray」に指定 */
        line-height: 0;                                                    /* 行の高さを「0」に指定 */
        height: 45px;                                                      /* 高さを「45px」に指定 */
        padding-top: 2px;                                                  /* 上(領域内)に「2px」のスペースを空ける */
}
/*==============================================================================
	入り口
==============================================================================*/
#entrance p {
        display: table-row;                                                /* 表示形式を「table-row」に指定 */
}
#entrance p span {
        display: table-cell;                                               /* 表示形式を「table-cell」に指定 */
        border: inset thin gray;                                           /* ボーダーのスタイルを「inset」、太さを「thin」、色を「gray」に指定 */
        line-height: 0;                                                    /* 行の高さを「0」に指定 */
        height: 83px;                                                      /* 高さを「83px」に指定 */
        padding-top: 1px;                                                  /* 上(領域内)に「1px」のスペースを空ける */
}
/*==============================================================================
	メール
==============================================================================*/
footer {
        margin: 17px auto auto auto;                                       /* 上(領域間)に「17px」のスペースを空ける */
        line-height: 0;                                                    /* 行の高さを「0」に指定 */
}