body{
    font-family: "Hannari", serif;
    background: url(../../img/bg.png) repeat-x left top;
}

a{
    transition: ease .3s;
    text-decoration: none;
}
a:hover{
    opacity: .7;
}

.sp{
    display: none;
}

header{
    width: 240px;
    height: 100%;
    position: sticky;
    top: 0;
    padding-top: 30px;
}
header h1{
    text-align: center;
    line-height: 0;
    margin-bottom: 30px;
}
header ul li{
    text-align: center;
    margin-bottom: 10px;
}
header ul li a{
    display: inline-block;
    font-size: 18px;
    color: #140a0a;
}

footer{
    background: #140a0a;
    color: #fff;
    padding: 25px 0;
}
footer a{
    color: #fff;
}
footer .footer_wrap{
    width: 1000px;
    margin: auto;
}
footer .footer_wrap ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .footer_wrap .f_logo{
    line-height: 0;
}
footer .footer_wrap .f_nav{
    font-size: 18px;
}
footer .footer_wrap .f_nav span{
    padding: 0 12px;
}
footer .footer_wrap .f_nav span:first-of-type{
    padding-left: 0;
}
footer .footer_wrap .copyright{
    font-size: 16px;
}


@media screen and (max-width: 480px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}