@charset "utf-8";

#btn_pageTop {
    position: fixed;
    bottom: 55px;
    right: 15px;
    z-index: 9999;
}

#btn_pageTop a {
    display: block;
    background: var(--c_blk);
    color: #fff;
    width: 37px;
    height: 37px;
    padding: 11px 0;
    text-align: center;
    text-decoration: none;
    border-radius: 7px;
    z-index: 99;
    box-shadow: 0px 0px 0px 1px #ffffff;
}

#btn_pageTop a:hover {
    background: var(--c_blk);
    text-decoration: none;
}

#btn_pageTop .arrow--top {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 14px solid var(--c_white);
    position: relative;
    top: -22px;
}