/* to_top */

#fixedTop a {
    line-height: 0.9em;
    display: block;
    text-decoration: none;
}

#fixedTop a:before {
   content: url(/img/arrow01.png);
    display: block;
    margin-top: 0.3em;
}
#fixedTop {
    right: 20px;
    bottom: 45px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 35px;
    color: #fff;
    font-size: 17px;
    text-align: center;
    background: rgba(8,31,81,0.8);
    position: fixed;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    transform: scale(0);
    text-decoration: none;
}

#fixedTop a:hover,
#fixedTop a:focus,
#fixedTop a:active {
    opacity: 0.8;
    text-decoration: none;
}

#fixedTop.show {
    transform: scale(1);
    -webkit-transform: translateZ(0);
}

#fixedTop a span {
    font-size: 0.8em;
    color: #fff;
}
