@charset "utf-8";
/* 追従リンク */
.floatingNav{
display: none;
}
@media (min-width: 740px){
.floatingNav{
    background-color: #fff;
    border-bottom: 3px solid #CC0000;
    display: block;
    top: -100px;
    transition: all .4s;
}
.floatingNav .navInr{
    width: 950px;
    height: 70px;
    margin: auto;
    display: flex;
}
.floatingNav .navInr li{
    width: calc(100% / 4);
    text-align: center;
    border-left: 1px solid #EAEAEA;
}
.floatingNav .navInr li:last-child{
    border-right: 1px solid #EAEAEA;
}
.floatingNav .navInr li a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.floatingNav .navInr li a span{
    line-height: 1.5;
}
.floatingNav.JS_floating{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 9999;
}
}

/* 追従アンカーリンク */
.floatingAnchor{
    position: fixed;
    z-index: 30;
    right: 20px;
    bottom: 80px;
}
.floatingElm{
    width: 100px;
    margin: 0 0 0 auto;
}
.floatingElm:hover img{
    opacity: 0.7;
}
@media (min-width: 740px){
    .floatingAnchor{
        right: 30px;
        bottom: 30px;
    }
    .floatingElm{
        width: 140px;
    } 
}