/* 탑 버튼 스타일 */
.top-btn {
    display: none;
    position: fixed;
    right: 22px;
    bottom: 125px;
    z-index: 1000;
    background: #fff;
    color: #0C1536;
    /* border: 1.5px solid #0C1536; */
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
    box-shadow: 0 3px 15px rgba(10, 16, 50, 0.14);
    cursor: pointer;
    transition: background 0.16s, transform 0.2s;
}

/* 탑 버튼 스타일 */
@media (max-width: 600px) {
    /* 탑 버튼 스타일 */
    .top-btn {
        display: block;
        right: 25px;
        bottom: 70px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .top-btn .top-arrow-img {
        width: 23px !important;
    }

}