

pre {
	font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

/* 스크롤 top bar */
.scroll-top-btn{
	position: fixed;
	bottom: 40px;

	right: max(16px, calc((100vw - 1440px - 100px) / 2));

	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid #ddd;
	background: white;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	opacity: 0;
	pointer-events: none;

	font-size: 12px;
	color: #666;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	cursor: pointer;
	z-index: 9999;
}
.scroll-top-btn:hover{
	background: #C22098;
	color: white;
	border-color: #C22098;
}

/* 모바일에서는 숨김 */
@media (max-width: 767px){
	.scroll-top-btn{
		display: none !important;
	}
}