@charset "utf-8";
@import url(./reset.css);

body,th,td,input,select,big,button,textarea,div {font-size:19px;line-height:170%;font-family:"NanumBarunGothic", applegothic, "돋움",dotum,sans-serif;color:#222222; letter-spacing:0.05em; word-spacing:0.07em;}

a{
	text-decoration: none;
	color: #222222;
}

.font_bold
{
	font-family:'NanumBarunGothicBold';
}

.font_light
{
	font-family:'NanumBarunGothicLight';
}

/* 메세지 팝업 */
#popup_msg
{
	position: absolute;
	width: 92%; /* 팝업 너비 설정 */
	max-height: 90vh;
	background-color: #fff; /* 팝업 배경 색상 설정 */
	border-radius: 2vmin; /* 팝업 모서리 둥글게 설정 */
	display: flex;
	max-width:700px;
}

/* 팝업창 불투명 배경(메세지 팝업) */
#popup_msg_mask {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.5); /* 배경 색상 및 투명도 설정 */
}

/* 팝업창 타이틀 */
#msg_title {
	font-size:20px;
	font-weight:bold;
	padding-bottom:20px;
}

/* 팝업창 내용 */
#msg_content {
	overflow:auto;
	max-height:calc(90vh - 220px); /* 팝업 높이에서 제목과 버튼, 패딩 높이를 제외 */
}

/* 메세지 팝업 확인 버튼 */
.msg_done
{
	-moz-appearance:none; /* 브라우저 기본 속성 해제(Firefox) */
	-webkit-appearance:none; /* 브라우저 기본 속성 해제(Safari and Chrome) */
	background-color:#216aad;
	padding: 15px 10px;
	font-size: 20px;
	text-align: center;
	border: none;
	border-radius: 1vmin;
	cursor:pointer;
	color:#ffffff;
	width:100%;
}

.msg_content_title1
{
	font-size:20px;
	font-weight:bold;
	padding-bottom:20px;
	padding-top:30px;
}

.msg_content_content1
{
	color:#003cff;
}

.msg_content_content2
{
	padding-bottom:10px;
}

.msg_content_content3
{
	color:#9d29e6;
}

/* 팝업창 불투명 배경 */
#popup_mask_menu1 {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.5); /* 배경 색상 및 투명도 설정 */
}

#popup_name_menu1
{
	position: absolute;
	width: 92%; /* 팝업 너비 설정 */
	height: 87%;
	background-color: #fff; /* 팝업 배경 색상 설정 */
	border-radius: 2vmin; /* 팝업 모서리 둥글게 설정 */
	max-width:700px;
}

.pop_menu1
{
	margin-top:25px;
	margin-bottom:25px;
	margin-left:15px;
	margin-right:15px;
}

.pop_menu1_title
{
	font-size: 20px;
	color:#ffffff;
	padding:20px 20px;
	vertical-align:middle;
	border-radius: 2vmin 2vmin 0vmin 0vmin;
}

.pop_menu1_content
{
	font-family:'NanumBarunGothicLight';
	padding:17px 15px;
	border-radius: 0vmin 0vmin 2vmin 2vmin;
	border: 1px solid #DDDDDD;
}

.top_button1
{
	-moz-appearance:none; /* 브라우저 기본 속성 해제(Firefox) */
	-webkit-appearance:none; /* 브라우저 기본 속성 해제(Safari and Chrome) */
	background-color:#ededed;
	padding: 7px 25px;
	text-align: center;
	color: #ffffff;
	border: none;
	border-radius: 1vmin;
	cursor:pointer;
	font-size: 20px;
}

.top_button2
{
	-moz-appearance:none; /* 브라우저 기본 속성 해제(Firefox) */
	-webkit-appearance:none; /* 브라우저 기본 속성 해제(Safari and Chrome) */
	background-color:#ededed;
	padding: 15px 10px;
	text-align: center;
	color: #000000;
	border: none;
	border-radius: 1vmin;
	cursor:pointer;
}