
/*******  画面共通ＣＳＳ  *********/

* {
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1px;
    border: none;
    text-align: left;
}

html {
    height: 100%;
}

body {
    height: 100%;
    background-image: url("wall.gif");
    background-color: #fcc;
    color: #000;
}

p {
    margin-top: 20px;
}

b {
    font-weight: bold;
}

/*  IEバグ対策 ： letter-spacing: 1px; と指定した時、 */
/*                brタグを２回続けても改行が１回しか  */
/*                行われない。                        */
br { letter-spacing: 0px; }


div#container {
    width: 800px;
    background-color: #fff;
    margin: 0px auto;
}

a { text-decoration: none; }
a:link    { color: #44f;}
a:visited { color: #44f;}
a:active  { color: #44f;}
a:hover   { color: #f22;}



/*********** ヘッダー（トップ画面以外） *************/

#header {
    height: 60px;
    background-color: #888;
    background-image: url(header.jpg);
}



/******************** メニュー **********************/

#menu {
    height: 40px;
    background-color: #888888;
    background-image: url(menu_wall.gif);
}


#menu a {
    background-image: url(main_menu.gif);
    background-color: #444;
    display: block;
    float: left;
    height: 40px;
    width: 90px;
}

#menu a.sitemap, #menu a.contact {
    float: right;
    width: 80px;
}

#menu a.home    { background-position:    0px 0px; }
#menu a.profile { background-position: -100px 0px; }
#menu a.blog    { background-position: -200px 0px; }
#menu a.bbs     { background-position: -300px 0px; }
#menu a.gallery { background-position: -400px 0px; }
#menu a.result  { background-position: -500px 0px; }
#menu a.sitemap { background-position: -603px 0px; }
#menu a.contact { background-position: -703px 0px; }

#menu a.home:hover    { background-position:    0px -40px; }
#menu a.profile:hover { background-position: -100px -40px; }
#menu a.blog:hover    { background-position: -200px -40px; }
#menu a.bbs:hover     { background-position: -300px -40px; }
#menu a.gallery:hover { background-position: -400px -40px; }
#menu a.result:hover  { background-position: -500px -40px; }
#menu a.sitemap:hover { background-position: -603px -40px; }
#menu a.contact:hover { background-position: -703px -40px; }



/************** フッター ***************/

#footer{
    height: 50px;
    width: 100%;
    background-image: url(footer.jpg);
    background-repeat: no-repeat;
    overflow:hidden;
}

/* 著作権 */

#copyright{
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 9pt;
    font-weight: bold;
    color: #fff;
}

/* 制作 */

#workaholic{
    margin: 0px;
    width: 100%;
    text-align: center;
    font-size: 9pt;
    color: #fff;
}

#workaholic a{
    font-size: 9pt;
}

#workaholic a:link    { color: #fff;}
#workaholic a:visited { color: #fff;}
#workaholic a:active  { color: #fff;}
#workaholic a:hover   { color: #ccc;}


