@charset "utf-8";

/*===== 폰트 설정 =====*/
@import url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css');

/* 
NanumSquare  font-weight
-----------------------
Light
font-weight:300;
Regular
font-weight:400;
Bold
font-weight:700;
Extra Bold
font-weight:800;
 */

 /* 구글 노토산스 고딕 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');


html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,
aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,
nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,
nav,section {
  display: block;
}
body {
	line-height: 1;
	padding: 0px;
	margin: 0px;
	background: #fff;
	font-family: 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input:focus {
	outline: none;
}
a {
	color: inherit;
	text-decoration: none;
}

.clearfix:after {
	content: ".";	/* the period is placed on the page as the last thing before the div closes */
	display: block;	/* inline elements don't respond to the clear property */ 
	height: 0;	/* ensure the period is not visible */
	clear: both;	/* make the container clear the period */
	visibility: hidden;		/* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */

/* Hides from IE-mac \*/

* html .clearfix {height: 1%;}

.clearfix {display: block;}

/* End hide from IE-mac */

/* end of "no-extra-markup" clearing method */

/* .clearfix {
	overflow: hidden;
} */

/*===== 폰트 두께 =====*/
.font_L {
	font-weight: 300 !important;
}

.font_R {
	font-weight: 400 !important;
}

.font_B {
	font-weight: 700 !important;
}

.font_EB {
	font-weight: 800 !important;
}


/*===== 폰트 컬러 =====*/
.font_white {
	color: #fff !important;
}

.font_black_01 {
	color: #171717 !important;
}

.font_blue_01 {
	color: #0064ac !important;
}

.font_blue_02 {
	color: #054dc1 !important;
}

.font_blue_03 {
	color: #accfff !important;
}

.font_blue_04 {
	color: #0096c8 !important;
}

.font_red_01 {
	color: #c20510 !important;
}

.font_red_02 {
	color: #d43d5c !important;
}

.font_pink_01 {
	color: #ff6b81 !important;
}

.font_pink_02 {
	color: #fd504a !important;
}

.font_orange_01 {
	color: #ef7c00 !important;
}

.font_orange_02 {
	color: #f68040 !important;
}

.font_yellow_01 {
	color: #f9be3e !important;
}

.font_gray_01 {
	color: #b2b2b2 !important;
}

.font_green_01 {
	color: #478500 !important;
}

.font_green_02 {
	color: #0a9fad !important;
}

.font_green_03 {
	color: #c1fcbb !important;
}

.font_purple_01 {
	color: #6305c3 !important;
}

/*===== 폰트 크기 =====*/
.font_12 {
	font-size: 12px !important;
}

.font_13 {
	font-size: 13px !important;
}

.font_15 {
	font-size: 15px !important;
}

.font_16 {
	font-size: 16px !important;
}

.font_17 {
	font-size: 17px !important;
}

.font_18 {
	font-size: 18px !important;
}

.font_20 {
	font-size: 20px !important;
}

.font_21 {
	font-size: 21px !important;
}

.font_23 {
	font-size: 23px !important;
}


.mt5 {
	margin-top: 5px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt50 {
	margin-top: 50px !important;
}

.mt100 {
	margin-top: 100px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}

.mb100 {
	margin-bottom: 100px !important;
}


#wrap {
	display: block;
	width: 100%;
	background: #fff;
}

.contents {
	width: 100%;
	margin: 0 auto;
}

.contents img {
	width: 100%;
	display: block;
}

.btn_area_01 {
	display: block;
	width: 896px;
	margin: 50px auto 100px; 
}

.btn_area_01 ul {
	display: flex; 
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 0;
}

.btn_area_01 ul li {
	width: 48%; 
}

/* 공통 버튼 스타일 */
.btn_participate a, .btn_download_lesson_plan a {
	display: flex;           /* 가로/세로 중앙정렬을 위해 flex 적용 */
	align-items: center;     /* 세로축 중앙정렬 */
	justify-content: center;  /* 가로축 중앙정렬 */
	height: 80px;
	background-color: #6d4d42;
	color: #fff;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	text-decoration: none;    /* a 태그 밑줄 제거 */

	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
	font-size: 25px;
	font-weight: 700;

	line-height: 60px; 
	text-indent: 0; 
	border: 1px solid #6c4a3f;
}

.btn_participate a:hover, .btn_download_lesson_plan a:hover {
	background-color: #51362e;
	color: #fff;
	border: 1px solid #6c4a3f;
}

/* 아이콘 공통 스타일 */
.icon_participate, .icon_download {
	display: inline-block;
	width: 20px;
	height: 26.7px;
	margin-left: 15px; /* 글자와 아이콘 사이 간격 */
	margin-top: -2px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	vertical-align: middle;
}

.icon_participate {
	background-image: url(https://yfgc.fgtv.com/etc/12basket/images/icon_participate.png);
}

.icon_download {
	background-image: url(https://yfgc.fgtv.com/etc/12basket/images/icon_download.png);
}

.contents_title {
	display: block;
	width: 900px;
	margin: 20px auto 15px;
	padding: 15px 10px 14px;
	
	font-family: 'NanumSquare' !important;
	font-size: 50px !important;
	font-weight: 600;
	color: #fff;
	text-align: center;

	background-color: #6d4d42;
	border-radius: 50px;
	-webkit-border-radius: 50px;
}

.contents_main_title {
	display: block;
	width: 340px;
	margin: 20px auto 15px;
	padding: 8px 10px 7px;
	
	font-family: 'NanumSquare' !important;
	font-size: 17px !important;
	font-weight: 600;
	color: #fff;
	text-align: center;

	background-color: #6d4d42;
	border-radius: 50px;
	-webkit-border-radius: 50px;
}

.contents_sub_title {
	display: block;
	margin: 0 auto 15px;
	padding: 0 15px;
	
	font-family: 'NanumSquare' !important;
	font-size: 50px !important;
	font-weight: 800 !important;
	color: #6d4d42;
	text-align: center;
}


.contents_box {
	margin: 20px auto;
	padding: 60px 180px;
	/* padding: 60px 200px; */
	background-color: #fff;
	border: 1px solid rgba(225, 225, 225, 1);
	border-radius: 8px;
	-webkit-border-radius: 8px;
	box-sizing: border-box;
}

.contents_desc {
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
	font-size: 17px;
	line-height: 28px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(225, 225, 225, 0.85);
	-webkit-text-size-adjust: none;  /* ios에서 가로모드로 회전시 글자 커지는 현상 방지 */
}

.contents_write {
	margin: 20px auto 0;
}


.contents_write ul {
    overflow: hidden;
    box-sizing: border-box;
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(225, 225, 225, 0.85);
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.contents_write ul:last-child {
	margin: 15px 0 0;
    border-bottom: none;
}

.contents_write ul li {
    float: left;
    font-size: 17px;
}

.contents_write ul:last-child .write_title_area_01 {
    margin-top: -15px !important;
}

.write_title_area_01 {
	width: 20%;
	font-size: 21px !important;
	font-family: 'NanumSquare' !important;
	font-weight: 800 !important;
	text-align: left;
	line-height: 22px;

	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: left;
}

.write_input_area_01 {
    width: 80%;
    text-align: left;
    background-color: #fff;
    font-size: 17px !important;
    line-height: 20px;
}

.m_input_w100per {
    width: 100%;
    padding: 19px 12px 20px;
    border: 1px solid rgba(178, 178, 178, 1);
    background-color: #fff;
    outline: 0;
    box-sizing: border-box;
    font-size: 19px !important;
    ime-mode: disabled !important;
}

.btn_area_02 {
	display: block;
	width: 72%;
	/* width: 70%; */
	margin: 50px auto; 
}


.btn_area_02 ul {
	display: flex; 
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 0;
}

.btn_area_02 ul li {
	width: 48%; 
}

/* 버튼 스타일 */
.btn_upload a {
	display: flex;           /* 가로/세로 중앙정렬을 위해 flex 적용 */
	align-items: center;     /* 세로축 중앙정렬 */
	justify-content: center;  /* 가로축 중앙정렬 */
	height: 80px;
	background-color: #6d4d42;
	color: #fff;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	text-decoration: none;    /* a 태그 밑줄 제거 */

	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
	font-size: 25px;
	font-weight: 700;

	line-height: 60px; 
	text-indent: 0; 
	border: 1px solid #6c4a3f;
}

.btn_upload a:hover {
	background-color: #51362e;
}

.btn_cancle a {
	display: flex;           /* 가로/세로 중앙정렬을 위해 flex 적용 */
	align-items: center;     /* 세로축 중앙정렬 */
	justify-content: center;  /* 가로축 중앙정렬 */
	height: 80px;
	background-color: #454545;
	color: #fff;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	text-decoration: none;    /* a 태그 밑줄 제거 */

	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
	font-size: 25px;
	font-weight: 700;

	line-height: 60px; 
	text-indent: 0; 
	border: 1px solid #222;
}

.btn_cancle a:hover {
	background-color: #222;
}

#photoInput {
    width: 83% !important;
	cursor: pointer;
	font-size: 16px !important;
}

.btn_find {
	display: inline-block;
	padding: 15px 28px 15px;
	text-align: center;
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	background: #0064ac;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	box-sizing: border-box;
	outline: none;
	cursor: pointer;
}


.write_input_area_01 button {
	outline: none !important;
	border: none !important;
}

.write_input_area_01 input::placeholder {
	color: #b2b2b2 !important;
	font-size:21px !important;
	position: absolute;
	top: 14px;
}

.write_input_area_01 span {
	display: block;
}


/*** 열두광주리 관리자 페이지 ***/
/* 헤더 */
#admin_12basket_header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 95px;
    margin: 0 auto;
    z-index: 9999;
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(218, 218, 218, 1);
    opacity: 1;
}

.yfgc_logo_wrap_ver2025 img {
    position: absolute;
    top: 14px;
    left: -9px;
}

.admin_12basket_title {
	position: absolute;
    top: 25px;
    left: 50%;
    margin-left: -250px;
    width: 500px;
    padding: 9px 10px 10px;
    font-family: 'NanumSquare' !important;
    font-size: 25px !important;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: #6d4d42;
    border-radius: 50px;
    -webkit-border-radius: 50px;
}

.admin_12basket_member {
	position: absolute;
    top: 36px;
    right: 0px;
}

.admin_12basket_member a {
	display: inline-block;
	font-family: 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    color: #000;
	cursor: pointer;
}

.admin_12basket_member a:hover {
	color: #0064ac;
	text-shadow: none !important;
}


#admin_12basket {
    width: 100%;
    margin: 120px auto 0;
}

#admin_12basket_wrap {
    display: block;
    width: 100%;
    height: 100%;
    margin: 20px auto 0px;
	padding-top: 20px;
    background: rgba(255, 255, 255, 1);
}

#admin_12basket_gray_wrap {
	display: block;
	width: 100%;
	height:100%;
	padding: 60px 0;
	margin: 50px auto 0;
	background: rgba(245,245,244,1);
}

.select_area_01 {
	text-align: center;
}

.select_area_01 .select_area_01_title {
	display: inline-block;
	font-size: 25px;
	vertical-align: top;
    margin-top: 26px;
    margin-right: 26px;
}

.select_area_01 ul {
	display: inline-block;
	box-sizing: border-box;
}

.select_area_01 ul li {
	position: relative;
    float: left;
	margin-right: 10px;
}

.select_area_01 ul li:last-child {
	margin-right: 27px;
}

/* 검색조건 선택 */
.select_box_kind_01 {
	position: relative;
	width: 200px;
	height: 70px;
	background: #fff;
	border: solid 1px rgba(178,178,178,1);
	box-sizing: border-box;
	font-size: 25px !important;
	font-family: 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	text-align: left;
}

.select_box_kind_01 select {
	display: none; /*hide original SELECT element:*/
}

.select-selected-kind-01 {
	background: #fff;
}

/*style the arrow inside the select element:*/
.select-selected-kind-01:after {
	position: absolute;
	content: "";
	top: 22px;
	right: 28px;
	width: 15px; /* 사이즈 */
    height: 15px; /* 사이즈 */
    border-top: 2px solid #181818; /* 선 두께 */
    border-right: 2px solid #181818; /* 선 두께 */
    display: inline-block;
	transform: rotate(135deg); /* 각도(화살표 아래로) */
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected-kind-01.select-arrow-active:after {
	position: absolute;
	content: "";
	top: 30px;
	right: 28px;
	width: 15px; /* 사이즈 */
    height: 15px; /* 사이즈 */
    border-top: 2px solid #181818; /* 선 두께 */
    border-right: 2px solid #181818; /* 선 두께 */
    transform: rotate(315deg); /* 각도(화살표 위로) */
}

/*style the items (options), including the selected item:*/
.select-items-kind-01 div, .select-selected-kind-01 {
	color: #171717;
	padding: 19px 28px 22px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	cursor: pointer;
	user-select: none;
}


/*style items (options):*/
.select-items-kind-01 {
	position: absolute;
	background: #fff;
	top: 100%;   /* options 아래로 펼쳐짐 */
	left: 0;
	right: 0;
	z-index: 99;
	width: 198px;
	height: 270px;
	/* height: 476px; */
	overflow-y: auto;
	border: 1px solid rgba(178,178,178,1);
    margin-left: -1px;
}

/*hide the items when the select box is closed:*/
.select-hide {
	display: none;
}

.select-items-kind-01 div:hover, .same-as-selected {
	color: #0064ac;
	background-color: rgba(255, 255, 255, 0.1);
}

.work_ing {
	display: inline-block;
	width: 59px;
	height: 26px;
	background: rgba(128,222,109,1);
	border-radius: 15px;
	-webkit-border-radius: 15px;
	margin-left: 12px;
	vertical-align: text-bottom;

	font-family: 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 24px;
}

.work_complete {
	display: inline-block;
	width: 59px;
	height: 26px;
	background: rgba(109,175,222,1);
	border-radius: 15px;
	-webkit-border-radius: 15px;
	margin-left: 12px;
	vertical-align: text-bottom;

	font-family: 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 24px;
}

.work_reply {
	display: inline-block;
	width: 59px;
	height: 26px;
	background: rgba(110,135,155,1);
	border-radius: 15px;
	-webkit-border-radius: 15px;
	margin-left: 12px;
	vertical-align: text-bottom;

	font-family: 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 24px;
}


.btn_admin_list_search {
    display: inline-block;
    height: 70px;
    line-height: 70px;
    padding: 0 60px;
    background-color: #0064ac;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    box-sizing: border-box;
    outline: none;
    vertical-align: top;
}


/*========== 페이징 ==========*/
.paging_area {
	display: block; 
	width: 1280px;
	margin: 0 auto;
	text-align: center;
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
}

.paging_area_02 {
	display: block; 
	width: 1280px;
	margin: 0 auto 100px;
	padding-top: 40px;
	/* border-top: 1px solid rgba(178,178,178,0.5); */
	text-align: center;
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
}

.paging_arrow_L {
	margin-right: 60px;
}

.paging_arrow_R {
	margin-left: 60px;
}

.paging_num_first {
	display: inline-block;
	width: 80px;
	height: 20px;
	text-align: center;
	line-height: 24px;
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size: 25px;
	color: #171717;
	margin-top: 2px;
	border-left: 1px solid rgba(178,178,178,1);
	border-right: 1px solid rgba(178,178,178,1);
}

.paging_num_mid {
	display: inline-block;
	width: 80px;
	height: 20px;
	text-align: center;
	line-height: 24px;
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size: 25px;
	color: #171717;
	margin-top: 2px;
	border-right: 1px solid rgba(178,178,178,1);
}

.paging_num_end {
	display: inline-block;
	width: 80px;
	height: 20px;
	text-align: center;
	line-height: 24px;
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size: 25px;
	color: #171717;
	margin-top: 2px;
	border-right: 1px solid rgba(178,178,178,1);
}

.paging_area a.on {	
	font-weight: 800;
	color: #0064ac;
}

.paging_area_02 a.on {
	font-weight: 800;
	color: #0064ac;
}


/* 열두광주리 관리자 로그인 페이지 */
#admin_12basket_member_wrap {
    width: 1280px;
    margin: 80px auto 0;
    position: relative;
}

.member_area {
    display: block;
    overflow: hidden;
    width: 640px;
    margin: 0 auto 200px;
    font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
    font-size: 25px !important;
}

.login_form {
	position: relative;
	width: 640px;
}

.blind{
	overflow: hidden;
	position: absolute;
	width: 0;
	height: 0;
	line-height: 0;
	text-indent: -9999px;
}

input {
	color: #171717;
	font-size: 25px !important;
}
input::placeholder {
	color: #b2b2b2;
	font-size:25px !important;
}
input::-webkit-input-placeholder {	
	color: #b2b2b2;
	font-size:25px !important;
}
/* IE */
input:-ms-input-placeholder {	
	color: #b2b2b2;
	font-size:25px !important;
}
/* Firefox */
input:-mos-input-placeholder {	
	color: #b2b2b2;
	font-size:25px !important;
}

input[type="id"]{
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size:25px !important;
}

input[type="password"]{
	font-family: 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size:25px !important;
}

::placeholder { 
	font-family: 'NanumSquare', sans-serif !important;
	opacity: 1; /* Firefox */ 
	font-size:25px !important;
} 

:-ms-input-placeholder { 
	/* Internet Explorer 10-11 */ 
	font-family: 'NanumSquare', sans-serif !important;
	font-size:25px !important;
} 

::-ms-input-placeholder { 
	/* Microsoft Edge */ 
	font-family: 'NanumSquare', sans-serif !important;
	font-size:25px !important;
}

.input_area {
	position: relative;
	width: 640px;
	height: 70px;
	margin-bottom: 20px;
	border: 1px solid rgba(192,192,192,1);
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size: 25px !important;
	background: #fff;
	box-sizing: border-box;
}

.input_area1 {
	position: relative;
	width: 640px;
	height: 70px;
	margin-bottom: 20px;
	border: 1px solid rgba(192,192,192,1);
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
	font-size: 25px !important;
	background: #fff;
	box-sizing: border-box;
}

.input_on {
	font-size: 25px !important;
	border: 1px solid rgba(0,100,172,1);
	background-color: #fff;
}

.input_area .text_st {
	display: block;
	width: 100%;
	padding: 19px 30px 20px;
	border: 0;
	font-size:25px !important;
	vertical-align: middle;
	color: #171717;
	background: #fff;
	outline: 0;
	box-sizing: border-box;
}

.input_area1 .text_st {
	display: block;
	width: 100%;
	padding: 16px 30px 15px;
	border: 0;
	font-size:25px !important;
	vertical-align: middle;
	color: #171717;
	background: #fff;
	outline: 0;
	box-sizing: border-box;
}

.txt_message {
    margin: 8px 0 14px;
    font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
    font-size: 20px;
    color: #dc321e;
    font-weight: 400;
	overflow: hidden;
}

/* 로그인 버튼 */
button {
    border: 0 none;
    background-color: transparent;
    cursor: pointer;
}

.btn_st {
    display: block;
    width: 100%;
    height: 80px;
    margin-top: 15px;
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
    font-size: 25px;
	font-weight: 700;
    text-align: center;
    color: #fff;
    background: #0064ac;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	box-sizing: border-box;
}

.btn_st:before {
    display: inline-block;
    width: 0;
    height: 103%;
    vertical-align: middle;
    content: '';
}


/* 아이디 저장, 보안접속 */
.chk_area {
	display: inline-block;
	width: 100%;
	margin: 10px 0 50px;
	font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
    font-size: 20px;
	color: #171717;
	overflow: hidden;
}

.login_check_box {
    position: relative;
    display: block;
    height: 25px;
}

/* .login_check_box input {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
} */

.login_check_box label {
	display: inline-block;
	height: 25px;
	line-height: 25px;
    padding-left: 10px;
}

.login_check_box input[type="checkbox"] + label:before {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(178,178,178,1);
    box-sizing: border-box;
	cursor: pointer;
}

.login_check_box input[type="checkbox"]:checked + label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background: #0064ac url(https://layout.fgtv.com/images/common/icon_check_01.png) no-repeat center 6px;
	cursor: pointer;
}



.btn_admin_login {
    display: block;
    width: 100%;
    height: 80px;
    text-align: center;
    font-family: 'NanumSquare', 'Noto Sans KR', "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif !important;
    font-size: 20px;
    color: #fff;
    line-height: 80px;
    background: #0064ac;
    border: solid 1px rgba(0, 100, 172, 1);
    box-sizing: border-box;
    outline: none;
}

.btn_admin_login:hover {
    color: #fff !important;
    background: #005a98;
    border: solid 1px rgba(0, 90, 152, 1);
}