* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
		width:100%;
	max-width:600px;
	margin:0 auto;
	background-color: #f2f4f7;
	font-family: 'MinSans-Regular','Pretendard', Arial, sans-serif;
	font-size:16px;
}
 /* 헤더 */
.header {
	width: 100%;
	max-width: 600px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 998; /* 헤더는 가장 낮은 우선순위 */
}

.logo {
	width: 124px;
	height: 30px;
	/*background: url('../img/logo.png') no-repeat center/contain;*/
}

/* 햄버거 버튼 */
.menu-btn {
	font-size: 24px;
	cursor: pointer;
	z-index: 999;
	background: none;
	border: none;
	color:#000;
}

/* 오버레이 (배경) */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	z-index: 999; /* 두 번째 우선순위 */
}

/* 사이드 메뉴 */
.side-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 70%;
	max-width: 400px;
	height: 100vh;
	background: #fff;
	transition: transform 0.3s ease-in-out;	
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	z-index: 1000; /* 가장 우선순위 */
	transform: translateX(100%); /* 초기에는 화면 밖에 위치 */
}

.menu-close {
	align-self: flex-end;
	font-size: 24px;
	cursor: pointer;
	background: none;
	border: none;
	color:#000;
	padding-right:20px;
}

/* 메뉴 리스트 */
.side-menuList {
	list-style: none;
	padding: 10px 0px;
	margin: 0px;
	font-size:18px;
	border-bottom:1px solid #f2f2f2;
}
.mg_t20 {
	margin-top:20px;
}

.side-menuList li {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	cursor: pointer;
	transition: background 0.2s;
}

.side-menuList li:hover {
	background: #f1f1f1;
}

.side-menuList li i {
	font-size: 18px;
	color: #555;
	margin-right: 16px; /* 아이콘과 텍스트 사이 간격 */
}

/* 활성화 상태 */
.overlay.active {
	visibility: visible;
	opacity: 1;
}

.side-menu.active {
	transform: translateX(0); /* 메뉴 활성화 시 나타나도록 설정 */
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
/* header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: white;
	padding: 10px 15px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index:99998 !important;
}*/
    /* 헤더 스타일 
    header.header {
        position: fixed;
        top: 0;
        left: 50%;
		 transform: translateX(-50%);
        width: 100%;
        height: 60px;
        background: white;
        
        display: flex;
        align-items: center;
        justify-content: center;
		border-bottom:1px solid #d7d7d7;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
	.header-button {
		background: none;
		border: none;
		font-size: 18px;
		cursor: pointer;
		color: #333;
		width:50px;
		height:50px;
		z-index:99;
	}
	.header-button:hover {
		color: #000;
	}
.hlb {
	position:fixed;
	left:20px;
	font-size:24px;
	color:#25282b;
}
.hrb {
	position:fixed;
	right:20px;
	font-size:24px;
	color:#25282b;
}
.menu-btn {
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
}
.logo {
	font-size: 28px;
	font-weight: normal;
	display: flex;
	align-items: center;
	font-family: 'DungGeunMo', Arial, sans-serif;
}
.logo img {
	height: 24px;
	margin-right: 5px;
}
.header-right {
	display: flex;
	align-items: center;
}
.header-right button {
	background: none;
	border: none;
	font-size: 16px;
	margin-left: 10px;
	cursor: pointer;
}
*/
.hidden-menu {
	position: fixed;
	left: -250px;
	top: 0;
	width: 250px;
	height: 100vh;
	background: white;
	/*
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
	transition: left 0.3s;
	*/
	padding: 20px;
	z-index:9999999;
}
.hidden-menu.active {
	left: 0;
}
.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
}
main {
	margin-top:60px;
	background: white;
	padding: 15px;
    /*box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12);*/
}
footer {
	text-align: center;
	padding: 30px 0;
	border-top:1px solid #d7d7d7;
	margin-top:50px;
	color:#666;
	/*background: white;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
	*/
}

.btn {
	background: #fff;
	border: 1px solid #000;
	color: #000;
	font-size: 16px;
	margin-left: 10px;
	cursor: pointer;
	padding: 5px 10px;
	transition: background-color 0.3s, color 0.3s;
	text-decoration: none;
	display: inline-block;
}
.btn:hover {
	background-color: #000;
	color: #fff;
}
.contents {
    display: flex;
    justify-content: center;
    align-items: center;
	padding:50px 0 100px;
}
.cB::after {display:block; content:''; clear:both;}
.taL {text-align:left !important;}
.taR {text-align:right !important;}
.taC {text-align:center !important;}

/* PC 화면에서는 사이드 메뉴 크기 조정 */
@media screen and (min-width: 768px) {
    .side-menu {
        width: 400px; /* PC에서는 고정된 너비 */
    }
}