@charset "utf-8";
/* CSS Document */
/*sidenavi --------------------------------------------- */
#btn_menu {
    width: 50px;
    height: 50px;
    max-width: 60px;
    max-height: 60px;
    border: none;
    position: fixed;
    top: 5px;
    right: 15px;
    background: #36b9ec;
    z-index: 50002;
    outline: none;
    border-radius: 50%;
}
body.top #btn_menu {
    top: 20px;
    right: 20px;
}
#btn_menu span {
    display: block;
    width: 60%;
    height: 2px;
    background: #ffffff;
    /* margin: 10px 0 0; */
    transition: 0.5s all ease 0s;
    position: absolute;
    left: 20%;
}
#btn_menu span:nth-child(1) {
    top: 25%;
}
#btn_menu span:nth-child(2) {
    top: calc(50% - 1px);
}
#btn_menu span:nth-child(3) {
    bottom: 25%;
}
#btn_menu:hover {
    opacity: 0.7;
}
#btn_menu.open {
    background: none;
}
#btn_menu.open span {
    position: absolute;
}
#btn_menu.open span:nth-child(1) {
    transform: rotate(-45deg);
    top: 47%;
    /* left:0; */
}
#btn_menu.open span:nth-child(2) {
    opacity: 0;
}
#btn_menu.open span:nth-child(3) {
    transform: rotate(45deg);
    top: 47%;
    /* left:0; */
}
#btn_menu:hover {
    opacity: 0.7;
}
#drawer_menu {
    position: fixed;
    right: -500px;
    top: 0;
    height: 100%;
    background: rgb(27 28 128);
    z-index: 50001;
    width: 330px;
    padding-top: 60px;
    opacity: 0;
    transition: 0.5s all ease 0s;
}
#drawer_menu.open {
    right: 0px;
    opacity: 1;
}
#drawer_menu ul {
    width: 100%;
    padding: 0 10px 0 10px;
}
#drawer_menu li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
#drawer_menu li.sitetop {
    border-top: solid 1px rgba(255, 255, 255, 0.1);
}
#drawer_menu li.feature {
    padding: 20px;
    padding-right: 0;
}
#drawer_menu li.feature h4 {
    text-indent: -20px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}
#drawer_menu li a {
    display: block;
    color: #fff;
    padding: 10px 0;
    margin-bottom: 0;
    font-size: 14px;
}
#drawer_menu li.feature a {
    padding: 5px 0;
    margin-bottom: 5px;
}
#drawer_menu li a:hover {
    opacity: 0.7;
}
#drawer_menu li a img.dp_image {
    margin-top: 10px;
    width: 50%;
}
/*howto*/
#drawer_menu li.sns {
    display: flex;
    justify-content: space-around;
    padding: 30px 0 0;
    border-bottom: none;
}
#drawer_menu li.sns a {
    display: block;
    width: 30px;
    padding: 0;
}
#drawer_menu li.sns a img {
    width: 100%;
}
#drawer_menu li.movie {
    margin-top: 50px;
    border: none;
}
#drawer_menu li a#movieplay {
    border: solid 1px #fff;
    text-align: center;
    padding: 10px;
    font-family: Oswald;
    font-size: 20px;
    letter-spacing: 0.05em;
}
#drawer_menu li#navi_akiwaku_link {
    border-bottom: none;
}
#drawer_menu li#navi_akiwaku_link a {
    padding-bottom: 0;
    display: block;
}
#drawer_menu li#navi_akiwaku_link a img {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 640px) {
    /*sidenavi --------------------------------------------- */
    #btn_menu {
        width: 10vw;
        height: 10vw;
        top: 2vw;
        right: 2vw;
    }
    body.top #btn_menu {
        top: 3vw;
        right: 3vw;
    }
    body#top #btn_menu.display {
        opacity: 1;
    }
    #btn_menu span {
        display: block;
        width: 70%;
        background: #ffffff;
        /* margin: 10px 0 0; */
        transition: 0.5s all ease 0s;
        position: absolute;
        left: 15%;
    }
    #btn_menu:hover {
        opacity: 1;
    }
    #drawer_menu {
        width: 60vw;
        padding-top: 14vw;
    }
    #drawer_menu ul {
        width: 100%;
        padding: 0 2vw 0 2vw;
    }
    #drawer_menu li a {
        font-size: 3.2vw;
    }
    #drawer_menu li a:hover {
        opacity: 1;
    }
}