#container {
	margin-top: 170px;
    position: relative;
    min-width: 1280px;
}

#container .content {
	padding-top: 0;
	position: relative;
	z-index: 3;
}

#container .content h2 {
	text-align: center;
	font-size: 40px;
	color: #292929;
	font-weight: 500;
	padding: 73px 0 20px;
}

#container .content h3 {
	text-align: center;
	font-size: 16px;
	color: #666;
	padding: 0 0 50px;
}



/** 검색 메뉴 **/
#container .search_menu {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	padding: 20px 0;
}

#container .search_menu .search_form {
	width: 900px;
}

/* 검색 메뉴 (키워드 검색) */
#container .search_menu .search_form .search_keyword {
	display: flex;
	gap: 0 5px;
	justify-content: center;
	width: 100%;
}

#container .search_menu .search_form .search_keyword .search_field {
	border: 2px solid #ddd;
	width: 25%;
	height: 41px;
	color: #666;
	padding: 0 10px;
	position: relative;
	background: url(/images/drop_down_arrow.svg) no-repeat right 5px top 50%;
	cursor: pointer;
}

#container .search_menu .search_form .search_keyword .search_word {
	border: 2px solid #ddd;
	background: none;
	width: calc(75% - 41px);
	height: 41px;
	font-size: 16px;
}

#container .search_menu .search_form .search_keyword .search_btn {
	border: 2px solid #ddd;
	background: url(/images/search.svg) no-repeat 50% 50% / 80%;
	width: 41px;
	height: 41px;
	color: #666;
	cursor: pointer;
}



/** 지도 **/
.map_wrap {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 1170px;
	height: 600px;
	margin-bottom: 127px;
}

/* 지도에 사용자 컨트롤 올리기 */
.radius_border {
	border:1px solid #919191;
	border-radius:5px;
}

/* 확대 축소 */
.custom_zoomcontrol {
    position: absolute;
    top: 200px; 
    right: 10px; 
    width: 60px;
    height: auto;
    overflow: hidden; 
    z-index: 1; 
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.custom_zoomcontrol span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    cursor: pointer;
    border-bottom: 1px solid #bfbfbf;
    background: #fff;
    color: #000;
    text-align: center;
}
.custom_zoomcontrol span:last-child {
    border: none;
}
.custom_zoomcontrol span img {
    width: 20px; 
    height: 20px;
    border: none;
}
.custom_zoomcontrol span:hover {
    background: #f5f5f5;
}


/* 이미지 마커와 커스텀 오버레이 */
.overlay {
	position:relative;
	bottom:85px;
	border-radius: 15px;
	border: 1px solid #ccc;
	border-bottom:2px solid #ddd;
	float:left;
	background: #FFF;
}
.overlay .info {
	border:0;
}
.overlay a {
 	border-radius: 13px 13px 0 0;
	display:block;
	overflow:hidden;
	background: #005AD5 url(https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/arrow_white.png) no-repeat right 14px center;
}
.overlay .title {
	display:block;
	text-align:center;
	margin-right:35px;
	padding:10px 15px;
	font-size:14px;
	font-weight:bold;
	color: #fff;
}
.overlay:after {
	content:'';
	position:absolute;
	margin-left:-12px;
	left:50%;
	bottom:-12px;
	width:22px;
	height:12px;
	background:url('https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/vertex_white.png')
}
.info .detail {
	position: relative;
	overflow: hidden;
	margin: 10px;
	height: 55px;
}

.info .detail .department {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 5px;
}
.info .detail .tel, .info .detail .address {
	font-size: 14px;
	color: #888;
}



/* 다양한 이미지 마커 표시하기 */
.category {
   position: absolute;
   overflow: hidden;
   top: 10px;
   right: 10px;
   width: 60px;
   height: auto; /* 높이를 자동으로 조절 */
   z-index: 10;
   border: 1px solid #ccc; /* 테두리 스타일 */
   border-radius: 5px; /* 모서리 둥글게 */
   font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
   font-size: 12px;
   text-align: center;
   background-color: #fff; /* 배경색 */
   margin:0;
   padding:0;
   color:#666;
}
.category .menu_selected {
    background: #005AD5; /* 선택된 메뉴 배경색 */
    border-left: 1px solid #915B2F;
    border-right: 1px solid #915B2F;
    margin: 0 -1px; /* 경계선 스타일 통일 */
    color: #FFF;
}
.category ul {
    display: flex; /* 플렉스 박스로 아이템 정렬 */
    flex-direction: column; /* 세로 방향으로 정렬 */
    align-items: center; /* 수평 중앙 정렬 */
}
.category li {
    list-style: none; /* 리스트 스타일 제거 */
    width: 60px; /* 너비를 고정 */
    height: 60px; /* 높이를 늘려 아이콘과 텍스트가 들어갈 공간 확보 */
    border-bottom: 1px solid #ccc; /* 아이템 간 구분선 */
    cursor: pointer;
    display: flex; /* 플렉스 박스로 아이템 정렬 */
    flex-direction: column; /* 세로 방향으로 정렬 */
    align-items: center; /* 수평 중앙 정렬 */
    justify-content: center; /* 수직 중앙 정렬 */
    background-color: #fff; /* 기본 배경색 */
}
.category li:last-child {
    border-bottom: none; /* 마지막 아이템의 하단 경계선 제거 */
}
/* 아이콘과 텍스트의 조합 */
.category .ico_open {
	display: block;
	background: url('/images/open.svg') no-repeat;
    width: 22px; /* 아이콘의 너비 */
    height: 26px; /* 아이콘의 높이 */
    margin-bottom: 4px; /* 아이콘과 텍스트 사이의 여백 */
}
.category .open_selected {
	display: block;
	background: url('/images/open_white.svg') no-repeat;
    width: 22px; /* 아이콘의 너비 */
    height: 26px; /* 아이콘의 높이 */
    margin-bottom: 4px; /* 아이콘과 텍스트 사이의 여백 */
}
.category .ico_night {
	display: block;
	background: url('/images/night.svg') no-repeat;
    width: 22px; /* 아이콘의 너비 */
    height: 26px; /* 아이콘의 높이 */
    margin-bottom: 4px; /* 아이콘과 텍스트 사이의 여백 */
}
.category .night_selected {
	display: block;
	background: url('/images/night_white.svg') no-repeat;
    width: 22px; /* 아이콘의 너비 */
    height: 26px; /* 아이콘의 높이 */
    margin-bottom: 4px;
}
.category .ico_weekend {
	display: block;
    background: url('/images/weekend.svg') no-repeat;
    width: 22px; /* 아이콘의 너비 */
    height: 26px; /* 아이콘의 높이 */
    margin-bottom: 4px; /* 아이콘과 텍스트 사이의 여백 */
}
.category .weekend_selected {
	display: block;
	background: url('/images/weekend_white.svg') no-repeat;
    width: 22px; /* 아이콘의 너비 */
    height: 26px; /* 아이콘의 높이 */
    margin-bottom: 4px; /* 아이콘과 텍스트 사이의 여백 */
}
.category .menu_selected {
    border: none;
}

/* 교통정보 */
.traffic {
   position: absolute;
   overflow: hidden;
   top: 290px;
   right: 10px;
   width: 60px;
   height: auto;
   z-index: 10;
   border: 1px solid #ccc;
   border-radius: 5px;
   font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
   font-size: 12px;
   text-align: center;
   background-color: #fff;
   margin:0;
   padding:0;
   color:#666;
}
.traffic .menu_selected {
    background: #FFCE32; /* 선택된 메뉴 배경색 */
    border-left: 1px solid #915B2F;
    border-right: 1px solid #915B2F;
    margin: 0 -1px; /* 경계선 스타일 통일 */
}
.traffic ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.traffic li {
    list-style: none;
    width: 60px;
    height: 60px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.traffic .ico_traffic {
	display: block;
	background: url('/images/traffic.svg') no-repeat;
    width: 22px; /* 아이콘의 너비 */
    height: 26px; /* 아이콘의 높이 */
    margin-bottom: 4px; /* 아이콘과 텍스트 사이의 여백 */
}








