@charset "utf-8";
/* pagetop */
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    width: 46px;
    height: 46px;
    background-color: #7BC41C;
    color: #fff;
    text-decoration: none;
    text-align: center;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
}
#pageTop::before {
    content: "\f077";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 11px;
}
#pageTop:hover {
    text-decoration: none;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}
/* ------ 900px ---------------------------------------------------------------------------------- */
@media print, screen and (max-width:900px) {
    #pageTop {
        bottom: 0px;
        filter: alpha(opacity=70);
        -moz-opacity: 0.7;
        opacity: 0.7;
    }
} /* max-width:900p */