@charset "utf-8";

/*画面左部メニューの帯*/

header {
    width: 100%;
    background-color: #000000;
    color: #f88000;
    position: fixed;
    top: 0;
    left: 0;
    font-family: 'elder';
    border-bottom: 3px solid #f88000;
}

/*メニュー共通設定*/

nav {
    /*text-align: center;*/
    font-size: 120%;
}

/*サイト名*/

#sitename {
    font-size: 180%;
    text-shadow: 0px 0px 20px #f88000, 0px 0px 20px #f88000;
}

#menu_button {
    display: none;
}

#menulist {
    /*margin: 20px 0px;*/
}

.smenu, .nsmenu {
    font-size: 100%;
    /*margin: 20px 0px;*/

}

/*選択されたメニュー*/

a.smenu, a.smenu:link, a.smenu:visited, a.smenu:hover {
    cursor: default;
    color: #f88000;
    text-shadow: 0px 0px 10px #f88000, 0px 0px 10px #f88000;
}

/*選択されていないメニュー*/

a.nsmenu:link, a.nsmenu:visited {
    color: #ffffff;
    transition: color 0.2s ease-out, text-shadow 0.2s ease-out;
    -webkit-transition: color 0.2s ease-out, text-shadow 0.2s ease-out;
    -moz-transition: color 0.2s ease-out, text-shadow 0.2s ease-out;
    -ms-transition: color 0.2s ease-out, text-shadow 0.2s ease-out;
    -o-transition: color 0.2s ease-out, text-shadow 0.2s ease-out;
}

a.nsmenu:hover {
    color: #808080;
    text-shadow: 0px 0px 10px #808080, 0px 0px 10px #808080, 0px 0px 10px #808080;
}
@media screen and (min-width: 769px){
    #menulist {
        display: block;
    }
    /*～以下、画面の横幅が768pxまでの場合のスタイル記入～*/
}
@media screen and (max-width: 768px) {
    nav {
        text-align: center;
    }

    #menu_button {
        display: block;
    }

    #menulist {
        display: none;
    }

    .smenu, .nsmenu {
        display: block;
        border: solid 2px #ff8000;
        padding: 5px 0;
        margin: 5px;
    }

    /*～以下、画面の横幅が640pxまでの場合のスタイル記入～*/
}