@charset "utf-8";
*{margin: 0; padding: 0;}
a{text-decoration: none; color: #333;}
ul{list-style: none;}
body{
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	color: #333;
	line-height: 22px;
	background: #fff;
}

/*header*/
#header_wrap{
	width: 100%;
    height: 10%;
}
.header{
	height: 10%;
	width: 70%;
	margin: auto;
    z-index: 99;
}

/*---------------------------------------------------------------------------*/
/*PC LANGUAGE*/
@media screen and (min-width: 1200px){
.mheader_language_wrap{display: none;}
.header_language_wrap{
    width: 70%;
    height: 35px;
	position: absolute;
	top: 0;
	right: 0%;
}
.header_language{
    width: 55%;
    text-align: right;
    margin: auto;
}
.header_language p{
    display: inline-block;
    font-size: 14px;
    padding-top: 6px;
	font-family: 'Noto Sans KR', sans-serif;
}
.header_language>p>a{
    display: block;
    color: #114676;
    font-weight: 900;
    letter-spacing: 1px;
}
.header_language>p>a:hover{
	cursor: pointer;
    color:#021242;
    transition-duration: 0.3s;
}
}

/*Tablet Language*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.header_language_wrap{display: none;}
.mheader_language_wrap{
    width: 100%;
    height: 40px;
}
.header_language{
    width: 90%;
    text-align: right;
    margin: auto;
}
.header_language p{
    display: inline-block;
    font-size: 14px;
    padding-top: 6px;
	font-family: 'Noto Sans KR', sans-serif;
}
.header_language>p>a{
    display: block;
    color: #114676;
    font-weight: 900;
    letter-spacing: 1px;
}
.header_language>p>a:hover{
	cursor: pointer;
    color:#021242;
    transition-duration: 0.3s;
}
}

/*Mobile Language*/
@media screen and (max-width: 700px){
.header_language_wrap{display: none;}
.mheader_language_wrap{
	width: 100%;
	height: 40px;
}
.header_language{
	width: 90%;
	text-align: right;
	margin: auto;
}
.header_language p{
	display: inline-block;
	font-size: 14px;
	padding-top: 6px;
	font-family: 'Noto Sans KR', sans-serif;
}
.header_language>p>a{
	display: block;
	color: #114676;
	font-weight: 900;
	letter-spacing: 1px;
}
.header_language>p>a:hover{
	cursor: pointer;
	color:#021242;
	transition-duration: 0.3s;
}
}

/*------------------------------------------------------------------------------------*/
/*pc header*/
@media screen and (min-width: 1200px){
.mgnb{display: none;}
h1{
	float: left;
	width: 20%;
	padding: 3.5% 0;
}
.gnb{
	padding-top: 50px;
    float: right;
    width: 55%;
    display: flex;
    justify-content: flex-start; /* 왼쪽부터 쌓기 */
    gap: 7%; /* 메뉴 간 간격 조절 */
}
.gnb li{
	position: relative;
	float: none; /* float 제거 */
    width: auto; /* 글자 길이에 맞춤 */
}
.gnb li a{
	display: block;
    padding: 10px 0; /* 위아래 패딩 */
    font-size: 16px;
    font-weight: 500;
    color: #114676;
}
.gnb li:hover .submenu1{
	display: block;
	z-index: 1010;
}

/*submenu1*/
.submenu1{
	display: none;
	position: absolute;
	top: 100%;
	right: 60%;
	opacity: 0;
	visibility: hidden;
	
}
.submenu1>li{
	display: block;
	color: #114676;
	font-weight: 600;
	font-size: 14px;
	position: relative;
	text-align: center;
	width: 200%;
	padding: 0%;
	}
}
.gnb li:hover .submenu1{
	opacity: 1;
	visibility: visible;
}
.submenu1>li>a{
	display: block;
	padding: 10% 0%;
	background: #114676;
	color: #fff;    
	transition-property: background-color;
	transition-duration: 0.5s;
	/* 변하는 속도가 점점 빨라지는 패턴 */
	transition-timing-function: ease-out;
	/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
	transition-delay: 1ms;
}
.submenu1 li a:hover{
	background: #fff;
	color: #114676;    
	transition: 0.6s ease-out 20ms;
}

/*submenu2*/
.submenu2{
	display: none;
	position: absolute;
	top: 100%;
	right: 60%;
	opacity: 0;
	visibility: hidden;
}
.gnb li:hover .submenu2{
	opacity: 1;
	visibility: visible;
	z-index: 1010;
}
.submenu2>li{
	color: #114676;
	font-weight: 600;
	font-size: 14px;
	position: relative;
	text-align: center;
	width: 220%;
	padding: 0%;
	background: #114676;
	}
.submenu2>li>a{
	display: block;  
    padding: 9% 0%;
	background: #114676;
	color: #fff;  
	transition-duration: 0.5s;
	/* 변하는 속도가 점점 빨라지는 패턴 */
	transition-timing-function: ease-out;
	/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
	transition-delay: 1ms;
}
	.submenu2>li:last-child>a{
	background: #114676;
	color: #fff;
	font-size: 16px;
			padding: 11% 0%;
}
.submenu2 li a:hover{
	background: #fff;
	color: #114676;    
	transition: 0.6s ease-out 20ms;
}
.submenu2 li a:active{
	background-color: #fff;
	color: #114676;
	font-weight: 600;
}
	
.gnb li:hover .submenu2{
	display: block;
}

/*submenu3*/
.submenu3{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 4.5%;
	left: 100%;
}
.gnb>li>.submenu2>li:nth-child(1) .submenu3{
	opacity: 1;
	visibility: visible;
}
.submenu3>li{
	width: 550%;
	background: rgba(255, 255, 255, 0.8);
}
.submenu3>li>a{
	display: block;
	padding: 8.5% 0;
	color: #222222;    
	transition-property: background-color;
	transition-duration: 0.5s;
	/* 변하는 속도가 점점 빨라지는 패턴 */
	transition-timing-function: ease-out;
	/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
	transition-delay: 1ms;
}
.submenu3 li a:hover{
	color: #114676;    
	transition: 0.6s ease-out 20ms;
	z-index: 1010;
}

.submenu2 li:hover .submenu3{
	display: block;
}

/*submenu4*/
.submenu4{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0%;
	left: 100%;
}
.gnb>li>.submenu2>li:nth-child(2) .submenu4{
	opacity: 1;
	visibility: visible;
}
.submenu4>li{
	width: 300%;
	background: rgba(255, 255, 255, 0.8);
}
.submenu4>li>a{
	display: block;
	padding: 8.8% 0;
	color: #222222;    
	transition-property: background-color;
	transition-duration: 0.5s;
	/* 변하는 속도가 점점 빨라지는 패턴 */
	transition-timing-function: ease-out;
	/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
	transition-delay: 1ms;
}
.submenu4 li a:hover{
	color: #114676;    
	transition: 0.6s ease-out 20ms;
	z-index: 1010;
}


.submenu2 li:hover .submenu4{
	display: block;
	z-index: 1010;
}
	
/*submenu5*/
.submenu5{
	display: none;
	position: absolute;
	top: 100%;
	right: 60%;
	opacity: 0;
	visibility: hidden;
}
.submenu5>li{
	display: block;
	text-align: center;
	width: 260%;
	padding: 0%;
}
.gnb li:hover .submenu5{
	display: block;
	opacity: 1;
	visibility: visible;
	z-index: 1010;
}
.submenu5>li>a{
	display: block;
	padding: 11% 0;
	background: #114676;
	color: #fff;    
	transition-property: background-color;
	transition-duration: 0.5s;
	/* 변하는 속도가 점점 빨라지는 패턴 */
	transition-timing-function: ease-out;
	/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
	transition-delay: 1ms;
}
.submenu5 li a:hover{
	background: #fff;
	color: #114676;    
	transition: 0.6s ease-out 20ms;
}

/*submenu6*/
.submenu6{
	display: none;
	position: absolute;
	top: 100%;
	left: -30%;
	opacity: 0;
	visibility: hidden;
}
.submenu6>li{
	display: block;
	text-align: center;
	width: 100%;
}
.gnb li:hover .submenu6{
	display: block;
	opacity: 1;
	visibility: visible;
	z-index: 1010;
}
.submenu6>li>a{
	display: block;
	padding: 10% 0;
	background: #114676;
	color: #fff;    
	transition-property: background-color;
	transition-duration: 0.5s;
	/* 변하는 속도가 점점 빨라지는 패턴 */
	transition-timing-function: ease-out;
	/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
	transition-delay: 1ms;
}
.submenu6 li a:hover{
	background: #fff;
	color: #114676;    
	transition: 0.6s ease-out 20ms;
}


/*tablet header*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.gnb{display: none;}
.header{
	width: 100%;
}
h1{
	float: left;
	width: 30%;
	text-align:right;
	padding: 4%;
}
h1 img{
	width: 100%;
}
.mgnb{
	display: block;
}
.mgnb p{
	float: right;
	padding: 3% 0;
	width: 10%;
}
.mgnb p img{width:45%;}
}


/*mobile header*/
@media screen and (max-width: 700px){
.gnb{display: none;}
.header{
	width: 100%;
}
h1{
	float: left;
	width: 40%;
	text-align:right;
	padding: 4%;
}
h1 img{
	width: 100%;
}
.mgnb{
	display: block;
}
.mgnb p{
	float: right;
	padding: 15px 1%;
	width:10%;
}
.mgnb p img{width:70%;}
}

/*-----------------------------------------------------------------------------*/

/*banner*/
@media screen and (min-width: 1200px){
.mbanner{display: none;}
#banner_wrap{
	width: 100%;
	overflow: hidden;
}
.banner_slider{
	width: 100%;
}
.banner_slider img{
	width: 100%;
}
}

/*tablet banner*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.mbanner{display: none;}
#banner_wrap{
	width: 100%;
	overflow: hidden;
}
.banner_slider{
	width: 100%;
}
.banner_slider img{
	width: 100%;
}
}


/*mobile header*/
@media screen and (max-width: 700px){
.banner_slider{display: none;}
.mbanner{
	width: 100%;
	overflow: auto;
}
.mbanner img{
	width: 100%;
}
}	

/*-----------------------------------------------------------------------------*/

/*banner*/
@media screen and (min-width: 1200px){
.mbanner{display: none;}
#banner_wrap{
	width: 100%;
	overflow: hidden;
}
.banner_slider{
	width: 100%;
}
.banner_slider img{
	width: 100%;
}
}

/*tablet banner*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.mbanner{display: none;}
#banner_wrap{
	width: 100%;
	overflow: hidden;
}
.banner_slider{
	width: 100%;
}
.banner_slider img{
	width: 100%;
}
}

/*mobile header*/
@media screen and (max-width: 700px){
.banner_slider{display: none;}
.mbanner{
	width: 100%;
	overflow: auto;
}
.mbanner img{
	width: 100%;
}
}	

/*-----------------------------------------------------------------------------*/
/*section1*/
#section1_wrap{
    width: 100%;
    overflow: auto;
}

/*pc Section1*/
@media screen and (min-width: 1200px){
.msection1{display: none;}
.section1{
	width: 85%;
	margin: auto;
}
.section1_inner{
    width: 100%;
    margin: 7% auto;
}
.section1_title{
    font-size: 30px;
    color: #114676;
    text-align: center;
}
.jb-table {
    display: table;
    width: 100%;
    margin-top: 2.5%;
    border-top: 2px solid #114676;
    border-bottom: 1px solid #114676;
	padding-bottom: 1%;
}
.jb-table-row1{
    display: table-row;
    text-align: center;
    color: #114676;
    font-size: 15px;
    width: 100%;
}
.jb-table-cell1{
    display: table-cell;
    padding: 1.5% 4.5%;
    text-align: left;
    width: 10%;    
}
.jb-table-cell2{
    display: table-cell;
    padding: 1.5% 3%;
}
.jb-table-cell3{
    display: table-cell;
    padding: 1.5% 6.5%;
    width: 20%;
    text-align: right;
}
.jb-table-row2{
    display: table-row;
    text-align: center;
    color: #333333;
    font-size: 15px;
}
.jb-table-cell-no{
    display: table-cell;
    padding-left: 5%;
    text-align: left;
    width: 20%;
}
.jb-table-cell-title{
    display: table-cell;
    padding: 20px 0;
}
.jb-table-cell-title a:hover{
    color: #114676;
    font-weight: 600;
}
.jb-table-cell-date{
    display: table-cell;
    padding-right: 5%;
    width: 5%;
    text-align: right;
}
}
/*tablet banner*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.msection1{
	width: 85%;
	margin: 10% auto;
}
.section1{display: none;}
.section1_inner{
	width: 100%;
	margin: 7% auto;
}
.section1_title{
	font-size: 30px;
	color: #114676;
	text-align: center;
	padding-bottom: 3%;
}
.jb-table {
	display: table;
	width: 100%;
	margin-top: 2.5%;
	border-top: 2px solid #114676;
	border-bottom: 1px solid #114676;
	padding-bottom: 1%;
}
.jb-table-row1{
	display: table-row;
	text-align: center;
	color: #114676;
	font-size: 15px;
	width: 100%;
}
.jb-table-cell1{
	display: table-cell;
	padding: 1.5% 4.5%;
	text-align: left;
	width: 10%;    
}
.jb-table-cell2{
	display: table-cell;
	padding: 1.5% 3%;
}
.jb-table-cell3{
	display: table-cell;
	padding: 1.5% 4.5%;
	width: 20%;
}
.jb-table-row2{
	display: table-row;
	text-align: center;
	color: #333333;
	font-size: 15px;
}
.jb-table-cell-no{
	display: table-cell;
	padding-left: 5%;
	text-align: left;
	width: 20%;
}
.jb-table-cell-title{
	display: table-cell;
	padding: 20px 0;
}
.jb-table-cell-title a:hover{
	color: #114676;
	font-weight: 600;
}
.jb-table-cell-date{
	display: table-cell;
	width: 5%;
}
}
/*mobile Section1*/
@media screen and (max-width: 700px){
.msection1{
	width: 85%;
	margin: 10% auto;
}
.section1{display: none;}
.section1_inner{
    width: 100%;
    margin: 7% auto;
}
.section1_title{
    font-size: 30px;
    color: #114676;
    text-align: center;
	padding-bottom: 3%;
}
.jb-table {
    display: table;
    width: 100%;
    margin-top: 2.5%;
    border-top: 2px solid #114676;
    border-bottom: 1px solid #114676;
	padding-bottom: 1%;
}
.jb-table-row1{
    display: table-row;
    text-align: center;
    color: #114676;
    font-size: 15px;
    width: 100%;
}
.jb-table-cell1{
    display: table-cell;
    padding: 1.5% 4.5%;
    text-align: left;
    width: 10%;    
}
.jb-table-cell2{
    display: table-cell;
    padding: 1.5% 3%;
}
.jb-table-cell3{
    display: table-cell;
    padding: 1.5% 4.5%;
    width: 20%;
    text-align: right;
}
.jb-table-row2{
    display: table-row;
    text-align: center;
    color: #333333;
    font-size: 15px;
}
.jb-table-cell-no{
    display: table-cell;
    padding-left: 5%;
    text-align: left;
    width: 20%;
}
.jb-table-cell-title{
    display: table-cell;
    padding: 20px 0;
}
.jb-table-cell-title a:hover{
    color: #114676;
    font-weight: 600;
}
.jb-table-cell-date{
    display: table-cell;
    width: 5%;
    text-align: right;
}
}

/*-------------------------------------------------------------------------*/
/*Section4*/
#section4_wrap{
	width: 100%;
	overflow: hidden;
	background-color: #ddd;
}

/*PC Section4*/
@media screen and (min-width: 1200px){
.msection4{display: none;}
.section4{
	width: 70%;
	margin: auto;
	padding: 2% 0;
	overflow: auto;
}
.section4_inner li{
	float: left;
	display: flex;
	line-height: 30px;
	font-size: 16px;
	font-weight: 600;
	width: 33.3%;
}
.section4_inner li img{
	width: 35px;
	height: 35px;
	padding-right: 2%;
}
}

/*tablet Section3*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.section4{display: none;}
.msection4{
	width: 85%;
	margin: auto;
	padding: 5% 0;
}
table{
	font-weight: 600;
	border-spacing: 10px;
}
.table_text{
	padding-left: 3%;
}
}

/*mobile Section4*/
@media screen and (max-width: 700px){
.section4{display: none;}
.msection4{
	width: 85%;
	margin: auto;
	padding: 5% 0;
}
table{
	font-weight: 600;
	border-spacing: 10px;
}
.table_text{
	padding-left: 3%;
}
}

/*-------------------------------------------------------------------------*/
/*Footer*/
#footer_wrap{
	width: 100%;
	overflow: hidden;
	background-color: #114676;
}
/*PC footer*/
@media screen and (min-width: 1200px){
.mfooter{display: none;}
.footer{
	width: 70%;
	margin: auto;
	overflow: auto;
	padding: 3.5% 0;
	background-color: inherit;
	text-align: center;
}
.footer_inner{
	color: #fff;
	margin-top: 0.5%;
	font-size: 16px;
}
}

/*tablet footer*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.footer{display: none;}
.mfooter{
	width: 85%;
	margin: auto;
	overflow: auto;
	padding: 10% 0;
	background-color: inherit;
	text-align: center;
}
.footer_inner{
	color: #fff;
	margin-top: 0.5%;
	font-size: 16px;
}
}

/*mobile footer*/
@media screen and (max-width: 700px){
.footer{display: none;}
.mfooter{
	width: 85%;
	margin: auto;
	overflow: auto;
	padding: 10% 0;
	background-color: inherit;
	text-align: center;
}
.footer_inner{
	color: #fff;
	margin-top: 0.5%;
	font-size: 16px;
}
}