/* navi.css */
.body {
    position: relative;
}

#navi {
    width: 102px;
    position: fixed;
    right: 15px;
    top: 20px;
    /* margin: -74px 0px 0px auto; */
    z-index: 100;
}
#navi ul {
    padding: 0;
}
#navi li:hover {
    opacity: 0.8;
}

#navi .navi_btn li {
    width: 103px;
    height: 103px;
}
.live_btn {
    background: url(../images/live_pc.svg) no-repeat center;
}
.replay_btn {
    background: url(../images/replay_pc.svg) no-repeat center;
}
.vote_btn {
    background: url(../images/vote_pc.svg) no-repeat center;
}


/***********************************************************************
「★PC版 CSS★」ブラウザの幅が751px以上ならここの記述が有効になる
**********************************************************************/
@media all and (min-width: 751px) {

#navi ul {
    margin: 108px 0 0;
}

#navi .navi_btn li {
    margin-bottom: 10px;
}


}


/***********************************************************************
「★SP版 CSS★」ブラウザの幅が750px以下ならここの記述が有効になる
**********************************************************************/
@media only all and (max-width: 750px) {

#navi {
    width: 750px;
    min-height: 100%;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
}

#menu {
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: all;
}
#menu ul {
    padding-left: 50px;
}

  #navi .navi_btn,
  #page_top {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
  }
  
#navi .navi_btn {
    position: fixed;
    width: 750px;
    left: 0;
    bottom: 0;
    display: flex;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);;
}

#navi .navi_btn li {
    width: 216px;
    height: 147px;
    pointer-events: all;
    margin-right: -3px;
}

.live_btn {
    background: url(../images/live_sp.svg) no-repeat center;
}
.replay_btn {
    background: url(../images/replay_sp.svg) no-repeat center;
}
.vote_btn {
    background: url(../images/vote_sp.svg) no-repeat center;
}

.page_top {
    background: url(../images/page_top.png) no-repeat;
    width: 110px;
    height: 186px;
    position: fixed;
    bottom: 0;
    right: 0;
    display: block;
    pointer-events: all;
}

    
#navi .navi_btn.show,
#page_top.show {
opacity: 1 !important;
transform: translateY(0);
pointer-events: all;
}

}

/***********************************************************************
Key frame
**********************************************************************/

