#go_top{
    position: fixed;
    /* width: 3.46006rem;
    height: 3.5295rem; */
    width: 3.46006rem;
    height: 3.5295rem;
    right: 25px;
    bottom: 25px;
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s ease; /* 부드러운 페이드 인 트랜지션 */
}

#go_top.show{
    opacity: 0.7; /* 스크롤 위치가 20 이상이면 투명도를 1로 설정하여 나타냄 */
}

#go_top img:hover{
    filter: opacity(60%);
    transition: filter 0.3s linear;
}