body {
	font-family: 'GmarketSansMedium', sans-serif; background-color: #f8fafc;
}
button { /*outline: none;*/ }
nav.bottom-mobile-nav > div > a.active * {
	color: rgba(79, 70, 229, 1);
}

html, body {
    /*width: 100%; height: 100%;*/
    overflow-y: auto; /* 세로 스크롤 활성화 */
    -webkit-overflow-scrolling: touch; /* iOS에서 관성 스크롤 유지 (매우 중요) */
    
    /* 타 브라우저(Firefox, IE)용 스크롤바 숨김 처리 */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none; /* 스크롤바 영역 자체를 없앰 */
    width: 0; background: transparent;
}