/* 폰트 */
@font-face {
	font-family: 'Arita-buri-SemiBold';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Arita-buri-SemiBold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/* 변수 */
:root {
	--hd-height : 100px;
	--sub-background : #f8f5f0;
}

.arita {font-family: 'Arita-buri-SemiBold';}

/* 관리자 */
.superadm {position: fixed; bottom: 0; left:0; z-index: 999;}
.superadm > ul {display: flex;}
.superadm > ul > li {padding: 4px;}
.superadm > ul > li:first-child {background-color: #555;}
.superadm > ul > li:last-child {background-color: #999;}
.superadm > ul > li > a {color: #fff;}
.superadm > span {display: flex; font-size: 8px;}
.superadm > span > sup {margin-top: 4px;margin-right: 1px;}

html.fixed {position: fixed;}
.br_pc {display: block;}
.br_mob {display: none;}

.container_fix {width: 1630px;}

@media (max-width:991px) {
	.br_mob {display: block;}
	.br_pc {display: none;}
}

/* 헤더 높이 조절 */
.pc_header .container_fix {height: var(--hd-height);}