@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #e9ecef;
	font-family: 'Malgun Gothic', sans-serif;
}

a {
	text-decoration: none;
	color: inherit;
}

/* 모바일 해상도 기준 래퍼 */
.mobile-wrapper {
	position: relative;
	width: 100%;
/* 	max-width: 480px; */
	max-width: 640px;
	min-height: 100vh;
	margin: 0 auto;
	background-color: #ffffff;
	overflow-x: hidden; /* 사이드 메뉴가 바깥으로 나가는 것을 방지 */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.bg-blue {
    background-color: #3b6dee !important;
}

/* --- 상단 헤더 영역 --- */
.header {
	display: flex;
	align-items: center;
	justify-content: center; /* 타이틀 중앙 정렬 */
	height: 60px;
	background-color: #ffffff;
	border-bottom: 1px solid #ddd;
	position: relative;
	z-index: 5; /* 헤더를 최상단에 고정 */
}

.header-title {
	margin: 0;
	padding: 0;
}

.header-title a {
	display: block;
	width: 150px;
	height: 40px;
	background-image: url('../images/header_logo.jpg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	
	text-indent: -9999px;
	overflow: hidden;
}

.btn-hamburger {
	position: absolute;
	left: 15px; /* 좌측에 고정 */
	font-size: 26px;
	background: none;
	border: none;
	cursor: pointer;
	color: #333;
	padding: 5px;
}

.header-title {
	font-size: 18px;
	font-weight: 800;
	color: #333;
	letter-spacing: -0.5px;
}