@charset "UTF-8";

/* [HOME]ボタン */
#home{
    font-family: "Helvetica Neue", "Verdana", "Arial", sans-serif;
    text-align: center;
    margin: 2em 0;
    font-size: 20px;
}
#home a{
    padding: 0.5em 0.8em;
    display: inline-block;
    border-radius: 9px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    box-shadow: 0px 1px 0px 1px #d37e00;
    text-shadow: 1px 1px 3px #555;
    background-color: orange;
    line-height: 1;
}

@media (hover:hover){
    #home a:hover{
        opacity: 0.7;
    }
}


