▶
▶
P - K
P - K
/* back-to-top button */
#backToTop{
position: fixed;
right: 24px;
bottom: 24px;
width: 44px; height: 44px;
border-radius: 999px;
border: 1px solid rgba(0,0,0,.12);
background: rgba(255,255,255,.9);
backdrop-filter: blur(8px);
box-shadow: 0 6px 18px rgba(0,0,0,.12);
cursor: pointer;
font-size: 18px;
line-height: 44px;
text-align: center;
z-index: 9999;
opacity: 0; pointer-events: none;
transition: opacity .25s ease, transform .25s ease;
transform: translateY(8px);
}
#backToTop.show{
opacity: 1; pointer-events: auto;
transform: translateY(0);
}
/* 다크 배경 대비 */
html.dark #backToTop{ background: rgba(30,30,30,.9); color:#fff; border-color: rgba(255,255,255,.2); }
/* 모바일 위치 */
@media (max-width: 767px){
#backToTop{ right: 16px; bottom: 16px; width: 40px; height: 40px; line-height: 40px; }
}