* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans KR', 'Nanum Gothic', Arial, Times, sans-serif;
}

html, body {
	width: 100%;
	height: 100%;
}

html, body, main, header{
	/*min-width: 800px;*/
	color: #37404c;
}

ol, ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: #000;
}

img {
	vertical-align: top;
	border-style: none;

}

button {
	outline: none;
	border: none;
	background: transparent;
}

input, textarea {
	outline: none;
	border: none;
}



.flex_between {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.flex_start {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.flex_end {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

.flex_center {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

/*변수*/
:root {
	/*--main--color: #4ad295;*/
	--main--color: #0095d3;
}






/*레이아웃*/

header {
	position: fixed;
	width: 100%;
	height: auto;

	z-index: 9999;
}

#header_top {
	width: 100%;
	/*height: 67px;*/
	height: 95px;
	background-color: #fff;

	padding: 5px 40px 8px;

	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

#header_top .header_top_left {
	width: 200px;
	height: 64px;
}

#header_top .logo {
	width: 100%;
	height: 100%;
}

#header_top .header_top_left img {
	width: 100%;
	height: 100%;
}

#header_top .header_top_center {
	/*margin: 0 auto;*/
}

#header_top .header_top_center .slogan {
	font-family: 'Nanum Myeongjo', serif;
	font-size: 18px;
	font-weight: 700;
	color: #00542b;

	margin-top: 10px;
}

#header_top .header_top_right {
	margin-top: 10px;
}

/*
#header_top .header_top_right img {
	margin-left: 20px;
}
*/

#header_top .header_top_right .new_login {
	font-size: 14px;
	margin-left: 10px;
}

#header_top .header_top_right .new_login li a {
	color: #37404c;
}

#header_top .header_top_right .new_login li a:hover {
	color: var(--main--color);
}

#header_top .header_top_right .new_login li:first-child:after {
	display: inline-block;
	content: '';
	width: 1px;
	height: 14px;
	background-color: #e5e5e5;
	margin: 0 8px;
	vertical-align: -2px;
}





/*구글 스크립트*/
#google_translate_element > div > div {
	position: relative;
	min-width: 160px;
}

#google_translate_element > div > div:after {
	position: absolute;
    content: '<>'; /* 목록 펼침 아이콘 */
    font: 17px "Consolas", monospace;
    color: #333;

    right: 11px;
    top: 13px;
    padding: 0 0 2px;

    transform: rotate(90deg);
    border-bottom: 1px solid #999;
    pointer-events: none;
}

#google_translate_element > div > div > select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    display: block;
    width: 100%;
    max-width: 160px;
    height: 40px;

    float: right;
    padding: 0px 24px;

    font-size: 14px;
    color: #333;
    line-height: 1.75;
    border: 1px solid #cccccc;
    border-radius: 10px;

    -ms-word-break: normal;
    word-break: normal;
}

#google_translate_element > div > div > select:focus {
	/*outline: none;*/
}

#google_translate_element .goog-te-gadget .goog-te-combo {
    margin: 0px;
}






/* gnb */
#gnb {
	width: 100%;
	height: auto;
	background-color: #7986cc;

	padding: 5px 0;
	box-shadow: 0 1px 3px 0 rgb(0 0 0 / 12%);

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#gnb .gnb_menu {
  	position: relative;
}

#gnb .gnb_menu ul {
  	padding: 0;
  	margin: 0;

  	list-style: none;
  	line-height: 1;
}

#gnb .gnb_menu .depths_1 {
  	position: relative;
  	display: block;

 	width: 100%;
  	z-index: 500;
}

#gnb .gnb_menu .depths_1 li {
	position: relative;
  	display: inline-block;

  	margin: 0;
  	padding: 0;
}

#gnb .gnb_menu ul li a {
  	display: block;
  	font-size: 16px;
  	font-weight: 700;
  	color: #000;

  	padding: 15px 30px;
}

#gnb .gnb_menu ul ul {
  	position: absolute;
  	left: -9999px;
  	top: 70px;
  	opacity: 0;
  	transition: opacity .3s ease, top .25s ease;
  	z-index: 1000;
}

#gnb .gnb_menu > ul > li:hover > ul {
  	left: auto;
  	top: 44px;
  	opacity: 1;
}

#gnb .gnb_menu ul ul li:hover > ul {
  	left: 170px;
  	top: 0;
  	opacity: 1;
}

#gnb .gnb_menu ul ul li a {
  	width: 165px;
  	background-color: #fff;
  	border-bottom: solid 1px #eee;
  	box-shadow: 0 1px 3px 0 rgb(0 0 0 / 12%);

  	font-size: 14px;
  	font-weight: 300;
  	color: #37404c;
  	padding: 10px 20px;

  	transition: all .35s ease;
}

#gnb .gnb_menu ul ul li:hover > a {
  	background: #f2f2f2;
  	color: #000;
  	font-weight: 500;
}

#gnb .gnb_menu ul ul li:last-child > a, 
#gnb .gnb_menu ul ul li.last > a {
  	border-bottom: 10px;
}

/**/
#gnb .gnb_menu > ul > li > ul::after {
  	position: absolute;
  	content: "";
  	border: 6px solid transparent;
  	width: 0;
  	height: 0;
  	border-bottom-color: #fff;

  	top: -12px;
  	left: 30px;
}



#gnb .gnb_menu li.sub::after {
	position: absolute;
  	display: block;
  	content: "";
  	width: 0;
  	height: 0;
}

#gnb .gnb_menu li.sub::after {
  	right: 10px;
  	top: 20px;
  	border: 5px solid transparent;
  	border-top-color: #7a8189;
}

#gnb .gnb_menu ul ul li.sub::after {
  	border: 4px solid transparent;
  	border-left-color: #9ea2a5;
  	right: 10px;
  	top: 12px;
  	transition: all .2s ease;
}

#gnb .gnb_menu ul ul li.sub:hover::after {
  	border-left-color: #fff;
  	right: -5px;
  	transform: rotateY(180deg);
}


#menuMobile input {
	position: absolute;
	opacity: 0;

	top: -7px;
  	left: -5px;
}





/* gnb 미디어쿼리 */

@media (max-width: 850px) {
	header {
		min-width: 750px;
	}

	#header_top {
		padding: 5px 25px 8px;
	}

	#header_top .header_top_center .slogan {
		font-size: 13px;
	}

	/*#header_top .header_top_right {
		position: absolute;
		top: 0;
		right: 10px;
	}*/

	#gnb .gnb_menu ul li a {
	  	padding: 15px 15px;
	}


}





@media (min-width: 320px) and (max-width: 539px) {

	body {
		overflow-x: hidden;
	}

	body, main, header {
		min-width: 320px;
	}

	header {
		position: absolute;
		box-shadow: 0 1px 3px 0 rgb(0 0 0 / 12%);
	}

	#header_top {
		position: initial;
		padding: 10px 15px 100px;
	}

	#header_top .header_top_left {
		width: 182px;
		height: 58px;
		margin: 0 auto;
	}

	#header_top .translation_wrap {
		position: absolute;
		top: 157px;
		right: 15px;
	}

	#header_top .new_login {
		position: absolute;
		width: 160px;
		top: 120px;
		right: 15px;
	}

	#header_top .header_top_right .new_login li a:hover {
		color: #fff;
	}

	#header_top .header_top_right .new_login li:first-child:after {
		background-color: #5c68a9;
	}

	#header_top .header_top_center {
		width: 300px;
	}

	#header_top .header_top_center .slogan {
		position: relative;
		font-size: 16px;
		top: 2px;
		left: 60px;
		margin-left: 0;
	}

	.header_bottom {
		width: 100%;
		height: 53px;
	}

	#google_translate_element > div > div > select {
		max-width: 500px;
		min-width: 340px;
		background-color: #fff;
	}

	.mobile_bar {
		width: 100%;
		height: 42px;
		background-color: #7986cc;
	}




	/**/
	#gnb {
		display: block;
		height: 1px;
		/*background-color: transparent;*/

		padding: 0;
		margin-top: 0;
		box-shadow: none;

		top: 0;
	}

	#menuMobile {
	  display: block;
	  position: relative;
	  height: 1px;

	  top: 10px;
	  /*top: -35px;*/
	  left: 15px;
	  
	  z-index: 1;
	  
	  -webkit-user-select: none;
	  user-select: none;
	}

	#menuMobile a {
	  text-decoration: none;
	  color: #232323;
	  
	  transition: color 0.3s ease;
	}

	#menuMobile input {
	  display: block;
	  
	  width: 40px;
	  height: 32px;
	  
	  cursor: pointer;
	  z-index: 2;
	  
	  -webkit-touch-callout: none;
	}

	#menuMobile span {
	  display: block;
	  width: 33px;
	  height: 4px;
	  margin-bottom: 5px;
	  position: relative;
	  
	  background-color: #fff;
	  border-radius: 3px;
	  
	  z-index: 1;
	  
	  transform-origin: 4px 0px;
	  
	  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	              opacity 0.55s ease;
	}

	#menuMobile span:first-child {
	  transform-origin: 0% 0%;
	}

	#menuMobile span:nth-last-child(2) {
	  transform-origin: 0% 100%;
	}

	#menuMobile input:checked ~ span {
	  opacity: 1;
	  transform: rotate(45deg) translate(-2px, -1px);
	  background: #232323;
	}

	#menuMobile input:checked ~ span:nth-last-child(3) {
	  opacity: 0;
	  transform: rotate(0deg) scale(0.2, 0.2);
	}

	#menuMobile input:checked ~ span:nth-last-child(2) {
	  transform: rotate(-45deg) translate(0, -1px);
	}

	#topMenu {
	  position: absolute;
	  width: 100%;
	  /*margin: -100px 0 0 -50px;*/
	  /*padding: 50px;*/
	  
	  list-style-type: none;
	  -webkit-font-smoothing: antialiased;
	  
	  /*transform-origin: 0% 0%;*/
	  transform: translate(-110%, 0);	  
	  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	}

	#topMenu li {
		
	}

	#menuMobile input:checked ~ ul {
	  transform: none;
	}

	#gnb .gnb_menu .depths_1 li {
		/*position: static;*/
	  	display: block;
	  	width: 100%;
	  	background-color: #fff;
	  	border-bottom: solid 1px #f2f2f2;

	  	left: -15px;
	}

	#gnb .gnb_menu .depths_1 .first_child {
		padding-top: 20px;
		/*border-top: solid 3px #f2f2f2;*/
	}

	#gnb .gnb_menu .depths_1 .last_child {
		padding-bottom: 30px;
	}


	#gnb .gnb_menu ul ul {
	  	/*position: static;*/
	  	/*opacity: 1;*/
	  	transition: initial;

	  	padding-left: 15px;	
	}

	#gnb .gnb_menu ul li a {
		font-size: 17px;
		padding: 13px 25px;
	}

	#gnb .gnb_menu > ul > li:hover > ul,
	#gnb .gnb_menu ul ul li:hover > ul {
		position: static;
		left: 0;
		top: 0;
		opacity: 1;
	}

	#gnb .gnb_menu > ul > li:checked > ul,
	#gnb .gnb_menu ul ul li:checked > ul {
		position: static;
	  left: 0;
	  top: 0;
	  opacity: 1;
	}

	#gnb .gnb_menu ul ul li a {
	  	width: 100%;
	  	border-bottom: none;
	  	box-shadow: none;

	  	font-size: 16px;
	  	/*font-weight: 300;*/
	  	color: #37404c;
	  	padding: 8px 50px;

	  	transition: initial;
	}

	#gnb .gnb_menu .depths_2 li a {
		font-weight: 500;
	}

	#gnb .gnb_menu .depths_3 li a {
		font-weight: 300;
		padding-left: 70px;
	}	

	#gnb .gnb_menu ul ul li:hover > a {
	  	/*background: #fff;*/
	  	color: #000;
	  	font-weight: 500;
	}

	#gnb .gnb_menu ul ul li:last-child, 
	#gnb .gnb_menu ul ul li.last {
	  	border-bottom: 0;
	  	padding-bottom: 10px;
	}

	#gnb .gnb_menu > ul > li > ul::after,
	#gnb .gnb_menu li.sub::after {
	  	content: none;
	}

}









/* 메인 */
#main {
	padding-top: 123px;
}

#main_body_wrap {
	overflow-x: hidden;
}

.main_container {
	width: 80%;
	height: 100%;
	margin: 0 auto;
}



/* 메인 미디어쿼리 */
@media (max-width: 850px) {
	#main {
	padding-top: 105px;
	}
}


@media (min-width: 320px) and (max-width: 539px) {
	#main {
	/*padding-top: 161px;*/
	padding-top: 205px;
	}
}







/* footer */
footer {
	width: 100%;
	background-color: #ffb64d;
}

footer .footer_menu {
	height: 50px;
}

footer .footer_menu ul {
	
}

footer .footer_menu li {
	display: flex;
	height: 50px;
	font-size: 15px;
}

footer .footer_menu li:before {
	position: relative;
	display: inline-block;
	content: '';
	width: 1px;
	height: 18px;
	background-color: #ffcf8b;
	margin: 0 20px;
	top: 15px;
}

footer .footer_menu li:first-child:before {
	content: none;
}

footer .footer_menu li a {
	display: block;
	height: 50px;
	color: #fff;
	padding-top: 13px;
}

footer .footer_menu li a:hover {
	color: #37404c;
}

footer .footer_hr {
	width: 100%;
	height: 1px;
	background-color: #ffcf8b;
}

footer .footer_info {
	width: 80%;
	height: 250px;
	align-items: flex-start;

	margin: 0 auto;
	padding-top: 80px;

}

footer .footer_info .footer_info_left {
	width: 30%;
}

footer .footer_info .footer_info_left img {
	width: 200px;
	height: 64px;
}

footer .footer_info .footer_info_right {
	/*width: 850px;*/

	font-size: 14px;
	font-weight: 300;
	line-height: 25px;
}






/* 푸터 미디어쿼리 */
@media (max-width: 850px) {
	footer .footer_info {
		padding-top: 0;
	}

	footer .footer_info .footer_info_left {
		padding-top:  30px;
	}

	footer .footer_info .footer_info_right {

	}
}



@media (min-width: 320px) and (max-width: 539px) {

	footer .footer_menu li:before {
		content: none;
	}

	footer .footer_menu li {
		margin: 0 5px;
	}


	footer .footer_menu li a {
		font-size: 13px;
		font-weight: 500;
	}


	footer .footer_info {
		width: 80%;
		height: auto;
		align-items: flex-start;

		margin: 0 auto;
		padding: 0 0 30px;

	}

	footer .footer_info .footer_info_left img {
		margin-bottom: 20px;
	}

	footer .footer_info .footer_info_right {
		text-align: center;
		font-size: 12px;
		line-height: 20px;
	}


}






#board_list {
	width: 80%;
	margin: 0 auto;
}

.register_container {
	width: 80%;

	margin: 0 auto;
	padding: 150px 0 100px;
}


@media (min-width: 320px) and (max-width: 539px) {

	.register_container {
		width: 100%;
		padding-top: 202px;
	}

}