@charset "utf-8";

/* 헤더 */
@charset "utf-8";

/* header */
header{height: 100px; border-bottom: 1px solid #ccc; z-index: 100; position: fixed; top: 0; left: 50%; transform: translateX(-50%); background: #fff; width: 100%;}

/* sub_nav 인터넷뱅킹 */
.sub_nav > .inner > ul{display: flex; justify-content: flex-end; padding: 10px 0; margin-right: 40px;}
.sub_nav ul li a{display: block; font-size: 14px; color: #666; padding: 0 10px; border-left: 1px solid #ccc;}
.sub_nav ul li:first-child a{border: none;}

header > .inner{display: flex; justify-content: space-between; align-items: center; height: 100%; width: 1400px;}
.logo a{color: transparent; background: url(../../images/logo.svg) 50% no-repeat; width: 200px; height: 100px; display: block;}

/* nav */
nav{display: flex; align-items: center;}
.web_nav{
    display: flex;
    align-items: center;
}


/* 밑줄 효과 */
.web_nav > li::after{
    content: '';
    display: block;
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #0081CC;
    transition: 0.4s;
}
/* .web_nav > li.on::after{width: 100%;} */




/* 내비 밑 내용 */
.nav-bg{
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 445px;
    background: #fff;
	z-index: 200;
	border-bottom: 1px solid #ccc;
}


#header .h_nav .dep1 .dep1_li .dep1_a {position: relative;display: block;color: #fff;font-size: 20px;font-weight: 700;}

.web_nav > li{position: relative; text-align: center; padding: 35px 40px; height: 100px;}

.web_nav > li > a{position: relative;display: block; font-size: 20px; font-weight: 700; color: #333; text-align: center;  }


.web_nav > li > a span {display: inline-block; width: 100%; height: 100%; transform-origin: center top; transition: color .3s, transform .2s cubic-bezier(.76,0,.24,1); }
.web_nav > li > a span.front {position: relative;transform: rotateX(0deg);}
.web_nav > li > a span.back { position: absolute; top: 100%; left: 0; transform: rotateX(-90deg); }

.web_nav > li > a:hover span { color: #0081CC; }
.web_nav > li > a:hover span.front { transform: rotateX(90deg) translateY(-100%); }
.web_nav > li > a:hover span.back { transform: rotateX(0deg) translateY(-100%); }



.navbar_dropdown li a span::after{position: relative;transform: rotateX(0deg);}
  
.navbar_dropdown li a span{display: inline-block; position: relative; padding: 5px 0;}
.navbar_dropdown li a:hover span{
    color: #0081CC;
}
/* .navbar_dropdown li a span:hover::before{
    width:15px;
    height:100%;
} */
.navbar_dropdown li a span::after{
    content:'';
    position:absolute;
    display: inline-block;
    width:0;
    height: 2px;
    background-color:#0081CC;
    opacity: 0;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    transition: width .3s;
}
.navbar_dropdown li a:hover span::after{
    width: 100%;
    opacity: 1;
    visibility: visible;
}


.navbar_dropdown{display: none; position: absolute; top: 100px; left: 0; width: 100%; height: 445px; z-index: 200; border-right: 1px solid #ccc;}
.web_nav li:first-child .navbar_dropdown{
    border-left: 1px solid #ccc;
}
.web_nav li:hover .navbar_dropdown{background: #f7f7f7; border-bottom: 1px solid #ccc;}

.navbar_dropdown li{
    width: 100%;
    display: block;
}

.navbar_dropdown li a{
    display: block;
    font-size: 16px;
    color: #666;
    font-weight: normal;
    text-align: center;
    padding: 5px 0;
}


/* menu 버튼 */
header .btnmenu{display: none; overflow: hidden; position: absolute; top: 50%; right: 1vw; z-index: 300; width: 50px; height: 50px; transform: translateY(-50%);}
header .btnmenu span{position: absolute; left: 50%; top: 50%; width: 25px; height: 2px; font-size: 0; background: #333; transform: translate(-50%, -50%);}
header .btnmenu span::before{content: ''; display: block; position: absolute; top: 8px; right: 0; width: 100%; height: 2px; background: #333; transition: all .3s ease;}
header .btnmenu span::after{content: ''; display: block; position: absolute; top: -8px; right: 0; width: 100%; height: 2px; background: #333; transition: all .3s ease;}

header .btnmenu.on span{background: none;}
header .btnmenu.on span:before{top: 50%; width: 100%; left: 0; transform-origin:50% 50%; transform: translateY(-50%) rotate(-45deg);}
header .btnmenu.on span:after{top: 50%; transform-origin:50% 50%; transform:translateY(-50%) rotate(45deg);}

.dim{display: none; position: absolute; top: 0; left: 0; background: rgba(0, 0, 0, 0.8); height: 100vh; width: 100%;}

.m_menu{position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; z-index: 201; background: #fff; overflow-y: scroll;}

/* .b-close{cursor: pointer;} */
.m_menu::before{display: block; content: ''; width: 100%; height: 1px; position: absolute; top: 60px; right: 0; background: #ccc;}

.m_nav{overflow-y:auto; display: block; margin-top: 60px; /*  height:calc(100vh - 100px);  */}
.m_nav > li {padding: 20px;}
.m_nav > li > a{display: block; font-size: 18px; font-weight: 700; position: relative;}
.m_nav > li > a::after{content: ''; display: block; position: absolute;  top: 50%; right: 10px; width: 10px; height: 10px; margin-top: -7px; border: 1px solid #333; border-width: 0 1px 1px 0; transform: rotate(45deg); transition: all .3s ease;}
.m_nav > li.on >a:after{transform:rotate(-135deg); margin-top:-3px;}

.menu{
	border-top: 1px solid #ccc;
}
.menu>li {
	border-bottom: 1px solid #ccc;
	padding-top: 10px;
}

.submenu{display: none;}
.submenu li a{
	display: inline-block;
	width: 100%;
	height: 100%;
	padding-left: 20px;
    margin-top: 15px;
}

.menu-b{border-top: 5px solid #f3f3f3; display: flex; padding: 10px 20px 0;}
.menu-b ul{background: #fff; display: flex;}
.menu-b ul li a{display: flex; flex-direction: column; font-size: 14px;  align-items: center; position: relative; width: 100%; height: 100%; width: 85px; height: 60px; display: block; text-align: center;}

.menu-b ul li a figure{display: flex; align-items: center; justify-content: center; height: 40px;}
.menu-b ul li a figure img{display: flex; align-items: center; justify-content: center;}


main{position: relative;}
.main_title{padding: 50px 0;}
.main_title p{text-align: center; color: #555; font-size: 18px;}
h2{font-size: 40px; font-weight: 700; color: #333; text-align: center;}



/* 폰트 */
@font-face {
    font-family: 'GangwonEdu_OTFBoldA';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEdu_OTFBoldA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSansLight';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* header */
.main_header{height: 100px; border-bottom: 1px solid #ccc; z-index: 100; position: fixed; top: 0; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, 0.2); width: 100%; transition: 0.5s;}
header.scroll{background: #fff;}
header.scroll .logo a{background: url(../../images/logo.svg) 50% no-repeat; width: 250px; height: 60px; display: block; color: transparent;}
header:hover .logo a{background: url(../../images/logo.svg) 50% no-repeat; width: 250px; height: 60px; display: block; color: transparent;}
header.scroll .web_nav > li > a{color: #333;}
header.scroll .sub_nav ul li a{color: #666;}

header:hover{background: #fff; color: #333;}
header:hover .web_nav > li > a{color: #333;}
header:hover .sub_nav ul li a{color: #666;}

.main_header .logo a{color: transparent; background: url(../../images/logo_w.svg) 50% no-repeat; width: 250px; height: 60px; display: block;}
.main_header .web_nav > li > a{color: #fff;}
.main_header .sub_nav ul li a{color: #ccc;}

/* sec1 */
/* 메인 영상 */
.section1{position: relative; margin-top: 0;}
.visualvod{width:100%; margin:0 auto; overflow: hidden;}
/* .visualvod video{height: 100%;} */

/* sec2 */
.section2{margin-top: -30px; background-color: #F3F3F3; padding-bottom: 100px;}

/* 금융상품 바로가기 */
.section2{position: relative; overflow: hidden;}
.finance{z-index: 1;}
.finance ul{display: flex; justify-content: space-between;}
.finance ul li{width: 325px; height: 280px; text-align: center; transition: 0.3s; background: #fff url() 50% 40% no-repeat; border: 1px solid #ccc; z-index: 1;}

.finance ul li a{width: 100%; height: 100%; display: block;}
.finance strong{font-size: 24px; font-weight: 700; color: #0056A8; display: block; margin: 20px 0 10px;}
.finance ul li:hover strong{color: #fff;}
.finance ul li a p{margin-top: 50px; color: #fff; font-size: 20px;}

.mark img{position: absolute;}
.mark1{bottom: -150px; left: -20%; z-index: 0;}
.mark2{top: -50%; right: -40%; z-index: 0;}

/* 조합원가게 바로가기 */
.shop ul li{margin: 0 10px; position: relative;}
.shop ul li a figure{overflow: hidden; height: 220px;}
.shop ul li a img{width: 100%; height: 100%; transition: 0.5s;}
.shop ul li a:hover img{transform: scale(1.1);}

/* 마우스 오버 효과 */
.shop ul li a{width: 100%; display: block; border:1px solid #ccc; -webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1); transition: all 0.4s cubic-bezier(.5, .24, 0, 1);}
.shop ul li a::before{content: ''; position: absolute; left: 0px; bottom:0px; z-index:-1;
width: 0%;height:1px;background: #0081CC;box-shadow: inset 0px 0px 0px #0081CC; display: block;-webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1);transition: all 0.4s cubic-bezier(.5, .24, 0, 1)}
.shop ul li:hover a::before {width:100%; z-index: 1;}
.shop ul li a::after {content: ''; position: absolute; right: 0px; top:0px; z-index:-1; width: 0%; height:1px; background: #0081CC; -webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1); transition: all 0.4s cubic-bezier(.5, .24, 0, 1)}
.shop ul li:hover a::after {width:100%; z-index: 1;}
.shop ul li:hover a{border-left:1px solid #0081CC; border-right:1px solid #0081CC;}

.shop_info{padding: 10px 20px; background: #fff; font-size: 16px;}
.shop_info strong{display: block; color: #333; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.shop_info span{display: flex; align-items: center; font-size: 14px; color: #666; margin-top: 5px;}
.shop_info span::before{content: ''; display: block; width: 17px; height: 17px; margin-right: 10px; background: url(../../images/time.svg) 0 0 no-repeat;}


/* sec3 */
/* 공지사항 */
.section3{padding-bottom: 50px;}
.section3 .top_con{display: flex; justify-content: space-between;}
.section3 .top_notice{width: 684px; height: 390px;}
.section3 .top_notice .top_notice_con{display: flex; align-items: center; justify-content: space-between; padding: 17px 30px;}
.section3 .top_notice h3{font-weight: 700; font-size: 30px; color: #333;}
.section3 .top_notice .top_notice_con a{display: block;}
.section3 .top_notice .top_notice_con a:hover{animation:rotate-center .6s ease-in-out both;}
@keyframes rotate-center{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}
.section3 .top_notice ul{border-top: 5px solid #000; border-bottom: 5px solid #000; height: 310px;}
.section3 .top_notice ul li a{display: flex; justify-content: space-between; align-items: center; vertical-align: middle; height: 60px; padding: 0 30px; border-bottom: 1px dotted #ccc;}
.section3 .top_notice ul li:last-child a{border: none;}
.section3 .top_notice ul li a p{font-size: 20px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.section3 .top_notice ul li a span{display: flex; align-items: center; color: #666;}
.section3 .top_notice ul li a span::before{content: ''; display: block; width: 17px; height: 17px; margin-right: 10px; background: url(../../images/time.svg) 0 0 no-repeat;}

/* 포토갤러리 */
.bottom_con ul{display: flex; justify-content: space-between; margin-top: 30px;}
.bottom_con ul li{margin-left: 30px; position: relative; width: 327px;}
.bottom_con ul li:first-child {margin-left: 0;}

.bottom_con ul li a figure{overflow: hidden; height: 218px;}
.bottom_con ul li a img{width: 100%; height: 100%; transition: 0.5s;}
.bottom_con ul li a:hover img{transform: scale(1.1);}

/* 화살표 */
.shop .slick-arrow{background: #fff url() 50%/20% no-repeat; box-shadow: 3px 3px 10px rgba(0,0,0,0.3); border-radius: 0;}
.shop .slick-prev, .shop .slick-next{top: 50%; transform: translateY(-50%);}
.shop .slick-next{right: -15px; background-image: url(../../images/next.svg); width: 50px; height: 50px;}
.shop .slick-prev{left: -15px; background-image: url(../../images/perv.svg); width: 50px; height: 50px;}
.shop .slick-prev::before{content: '';}
.shop .slick-next:before{content: '';}

/* 마우스 오버 효과 */
.bottom_con ul li a{width: 100%; display: block; border:1px solid #ccc; -webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1); transition: all 0.4s cubic-bezier(.5, .24, 0, 1);}
.bottom_con ul li a::before{content: ''; position: absolute; left: 0px; bottom:0px; z-index:-1;
	width: 0%;height:1px;background: #0081CC;box-shadow: inset 0px 0px 0px #0081CC;display: block;-webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1);transition: all 0.4s cubic-bezier(.5, .24, 0, 1)}
.bottom_con ul li:hover a::before {width:100%; z-index: 1;}
.bottom_con ul li a::after {content: ''; position: absolute; right: 0px; top:0px; z-index:-1; width: 0%; height:1px; background: #0081CC; -webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1); transition: all 0.4s cubic-bezier(.5, .24, 0, 1)}
.bottom_con ul li:hover a::after {width:100%; z-index: 1;}
.bottom_con ul li:hover a{border-left:1px solid #0081CC; border-right:1px solid #0081CC;}

.bottom_con_info{padding: 10px 20px;}
.bottom_con_info strong{display: block; color: #333; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.bottom_con_info span{display: flex; align-items: center; font-size: 14px; color: #666; margin-top: 5px;}
.bottom_con_info span::before{content: ''; display: block; width: 17px; height: 17px; margin-right: 10px; background: url(../../images/time.svg) 0 0 no-repeat;}

/* 지점소개 */
.section4{background: #f3f3f3; padding-bottom: 100px;}
.sec4_slide{background: #fff;}
.sec4_slide_con a .point_img{width: 800px; overflow: hidden;}
.sec4_slide_con a .point_img img{transition: 0.4s;}
.sec4_slide_con:hover a img{transform: scale(1.1);}
.sec4_slide_con a{display: flex;}
.sec4_slide_con:hover .point_con{color: #333;}
.point_con{margin: 50px 0 0 50px; }
.point_con b{font-size: 20px; font-weight: 700; color: #0081CC;}
.point_con h3{font-size: 34px; font-weight: 700;}
.point_con dl{margin-top: 20px;}
.point_con dl dt{font-size: 20px; font-weight: 700;}
.point_con dl dd{font-size: 18px;}
.point_con button{margin-top: 20px; display: block; width: 470px; height: 60px; border: 1px solid #333; background: #fff; font-size: 18px;}
.sec4_slide_con:hover .point_con button{background: #0081CC; color: #fff;}


/* 화살표 */
.section4 .slick-arrow{background: #fff url() 50%/20% no-repeat; box-shadow: 3px 3px 10px rgba(0,0,0,0.3);}
.section4 .slick-prev, .section4 .slick-next{bottom: 50%; transform: translateY(50%); border-radius: 0;}
.section4 .slick-next{ background-image: url(../../images/next.svg); width: 50px; height: 50px; right: -25px;}
.section4 .slick-prev{ background-image: url(../../images/perv.svg); width: 50px; height: 50px;left: -25px;}
.section4 .slick-prev::before{content: ''; }
.section4 .slick-next:before{content: '';}

/* 마우스 오버 효과 */
.sec4_slide_con{position: relative;}
.sec4_slide_con a{-webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1); transition: all 0.4s cubic-bezier(.5, .24, 0, 1);}
.sec4_slide_con a::before{content: ''; position: absolute; left: 0px; bottom:0px; z-index:-1;
	width: 0%;height:1px;background: #0081CC;box-shadow: inset 0px 0px 0px #0081CC;display: block;-webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1);transition: all 0.4s cubic-bezier(.5, .24, 0, 1)}
.sec4_slide_con:hover a::before {width:100%; z-index: 1;}
.sec4_slide_con a::after {content: ''; position: absolute; right: 0px; top:0px; z-index:-1; width: 0%; height:1px; background: #0081CC; -webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1); transition: all 0.4s cubic-bezier(.5, .24, 0, 1)}
.sec4_slide_con:hover a::after {width:100%; z-index: 1;}
.sec4_slide_con:hover a{border-left:1px solid #0081CC; border-right:1px solid #0081CC;}
.sec4_slide_con:hover button{border: 1px solid #0081CC;}

/* 탑 버튼 */
.top_button{position: fixed; right: 30px; bottom: 15px; z-index: 20; opacity:0; transition:all 0.5s ease;}
.top_button button{display: block; width: 60px; height: 60px; border-radius: 50%; text-align: center; color: #fff; background: #0081CC; cursor: pointer; box-shadow: 0 0 0 rgb(88 120 243 / 40%); animation: pulseAnim 2s infinite; border: none; transition: 0.5s;}
.top_button button:hover{background: #1d50a2;}
.top_button.fixed { bottom:30px; opacity:1; }
@keyframes pulseAnim {
	0% {
		box-shadow: 0 0 0 0 rgb(88 120 243 / 40%);
	}
	70% {
		box-shadow: 0 0 0 10px rgb(88 120 243 / 0%);
	}
	100% {
		box-shadow: 0 0 0 0 rgb(88 120 243 / 0%);
	}
}
.top_button i{display: block; background: url(../../images/top_button.png) 50%/20% no-repeat; width: 60px; height: 60px;}

.onbank, .call{display: none;}

/* section5 */
/* 포토갤러리 */
.section5{padding-bottom: 80px;}

.section5 .inner{position: relative;}

.character1{position: absolute; bottom: -200px; right: 0; z-index: 10;  animation: slide-top 2s ease-out infinite alternate both; width: 200px;}
.character1 img{width: 100%;}
.character2{position: absolute; top: -10px; left: 0; z-index: 10;  animation: slide-top 1s ease-out infinite alternate both; width: 150px;}
.character2 img{width: 100%;}
@keyframes slide-top {
	0% {
	  transform: translateY(0);
	}
	100% {
	  transform: translateY(-50px);
	}
}

/* section6 */
/* 동영상갤러리 */
.section6{padding-bottom: 100px;}

/* section7 */
.section7{padding-bottom: 50px;}
.main_box{display: flex; justify-content: space-between;}
.main_box a{display: block; width: 100%; height: 389px;}
.main_box1:hover{box-shadow: 7px 7px 7px rgba(0,0,0,0.2); animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}
.main_box2:hover{box-shadow: 7px 7px 7px rgba(0,0,0,0.2); animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}

/* ebook */
.ebook{position: absolute; bottom: 30px; left: 0; width: 600px; height: 150px; background: linear-gradient(90deg, #FED4DE 0%, #CFF0FD 100%); border-radius: 0 50px 0 0; z-index: 100; transition: 0.3s; animation: bounce-in-left 1.5s both;}
.ebook:hover{background: linear-gradient(90deg, #CFF0FD 0%, #FED4DE 100%);}

@keyframes bounce-in-left {
	0% {
	  transform: translateX(-600px);
	  animation-timing-function: ease-in;
	  opacity: 0;
	}
	38% {
	  transform: translateX(0);
	  animation-timing-function: ease-out;
	  opacity: 1;
	}
	55% {
	  transform: translateX(-68px);
	  animation-timing-function: ease-in;
	}
	72% {
	  transform: translateX(0);
	  animation-timing-function: ease-out;
	}
	81% {
	  transform: translateX(-28px);
	  animation-timing-function: ease-in;
	}
	90% {
	  transform: translateX(0);
	  animation-timing-function: ease-out;
	}
	95% {
	  transform: translateX(-8px);
	  animation-timing-function: ease-in;
	}
	100% {
	  transform: translateX(0);
	  animation-timing-function: ease-out;
	}
}

.ebook{z-index: 1;}
.ebook a{display: block; width: 100%; height: 100%;}
.ebook a > img{width: 25%; position: absolute; left: 50px; bottom: 20px; border-radius: 10px;box-shadow: 3px 3px 10px rgba(0,0,0,0.3);}
.ebook a > img.pig{left: 400px; box-shadow: none; animation: slide-top 1s ease-out 2s infinite alternate both;}
@keyframes slide-top {
	0% {
	  transform: translateY(0);
	}
	100% {
	  transform: translateY(-50px);
	}
}

.ebook_calligraphy{display: none;}

.ebook_title{height: 100%; vertical-align: middle; padding: 35px 0; text-align: center; }

.ebook p{width: 100%; font-size: 24px; font-weight: 500;}
.ebook button{margin: 0 auto; border-radius: 20px; border: 1px solid #ccc; padding: 5px 20px; font-size: 16px; margin-top: 5px; color: #666; background: #fff;}


 /* 메인 배너 슬라이더 */
 .main-bn {
	width:100%;
	height:50vw;
	position:relative;
	background: #e4f2fa;
	/* margin-top: 100px; */
}

.main-bn > .slider > .slides > .bn {
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity:0;
	visibility:hidden;
	transition:opacity 1s, visibility 1s;
}

.main-bn > .slider > .slides > .bn.active {
	opacity:1;
	visibility:visible;
}

/* 슬라이더 페이지 버튼 */
.main-bn > .slider > .page-btns {
	position:absolute;
	left:50%;
	transform: translateX(-50%);
	bottom:80px;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 30px;
	width: 200px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-bn > .slider > .page-btns > .page-btn {
	color:#fff;
	display:inline-block;
	cursor:pointer;
	background: transparent;
}

.main-bn > .slider > .page-btns > .next-btn {
	margin-left:100px;
}

.main-bn > .slider > .page-btns > .page-btn > i {
	display:block;
	font-size:18px;
}

/* 슬라이더 페이지 번호 */
.main-bn > .slider > .page-btns > .page-no {
	position:absolute;
	top:5px;
	left:50%;
	transform:translateX(-50%);
}

.main-bn > .slider > .page-btns > .page-no > span {
	display:inline-block;
	color:#fff;
	font-size:16px;
}

.slider img{width: 100%;}
.slider img:last-child{display: none;}


.quick_img {text-align: center; padding: 10px 0;}
.quick_title { font-size: 24px; color:#1d50a2; text-align: center; padding-top: 30px; font-weight: 700;}
.quick_area {position: relative; }
.quick_area p {font-size:16px !important; text-align: center;}


.quick_img  img {
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1); 
    -o-transform:scale(1);  
    transform:scale(1);
    -webkit-transition:.3s;
    -moz-transition:.3s;
    -ms-transition:.3s;
    -o-transition:.3s;
    transition:.3s;
}

.finance ul{display: flex; justify-content: space-between;}
.finance ul li{transition: 0.5s;}
.finance ul li a{display: block; width: 320px; background: #fff;}
.finance ul li a button{width: 200px; height: 40px; display: block; border: 1px solid #ccc; margin: 15px auto 0; background: #fff; transition: 0.5s; font-size: 16px;}
.finance ul li:hover{box-shadow: 7px 7px 7px rgba(0,0,0,0.2); animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}
@keyframes slide-top {
	0% {
	  transform: translateY(0);
	}
	100% {
	  transform: translateY(-30px);
	}
}
.finance ul li:hover a button{background: #1d50a2; color: #fff;}

.notice_wrap {width: 684px; height: 389px; position: relative;}

.notice_wrap .notice_list {border-bottom: 3px solid #333;}

.notice_wrap .notice_list {display: flex; align-items: center;}		
.notice_wrap .notice_list li a{display:block; padding:20px 0; font-size: 24px; color: #666;}
.notice_wrap .notice_list li {padding:0;text-align:center;box-sizing:border-box; margin-right: 50px; position: relative;}
.notice_wrap .notice_list li::after{display: block; content: ''; width: 1px; height: 20px; position: absolute; background: #ccc; top: 30px; right: -25px;}
.notice_wrap .notice_list li:last-child::after{display: none;}
.notice_wrap .notice_list li:first-child { padding-left:20px;text-align:left; }
.notice_wrap .notice_list li.on a {color:#1d50a2; font-weight:600;}					
.notice_wrap .notice_ul {border-bottom: 3px solid #333;}					
.notice_wrap .notice_ul > li {display:none;}					
.notice_wrap .notice_ul > li.on {display:block;}					
.notice_wrap .notice_ul > li ul li {padding:0 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed #ccc;}		
.notice_wrap .notice_ul > li ul li:last-child{border: none;}			
.notice_wrap .notice_ul > li ul li a{ padding:24px 0px; font-size:18px; color:#333; width:75%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }	
.notice_wrap .notice_ul > li ul li:hover a{color: #1d50a2;}			
.notice_wrap .notice_ul > li ul li span {font-size: 16px; color:#666;}


/* footer */
.new_footer{background: #333;}
.foot_top ul{display: flex; padding: 30px 0; border-bottom: 1px solid #666;}
.foot_top a{display: block; color: #fff; font-size: 18px;}
.foot_top li:not(:first-of-type){padding-left: 30px;}
.foot_top li:hover a{color: #fff; text-decoration: underline;}
.foot_top .policy a{color: #00a0e9;}
.foot_top .policy:hover a{color: #00a0e9; text-decoration: underline;}
.foot_bottom {padding: 30px 0; display: flex; align-items: center;}
.foot_bottom .foot_logo{margin-right: 30px;}
.foot_bottom address{display: flex;}
.foot_bottom address p{font-size: 16px; color: #ddd; font-style: normal;}
.foot_bottom address p b{font-weight: 500; color: #ddd; margin-right: 5px; font-size: 16px;}
.foot_bottom address p a{font-size: 16px; color: #ddd;}
.foot_bottom address p a:hover{text-decoration: underline;}
.foot_bottom address p:not(:first-of-type){padding-left: 20px;}
.foot_bottom .foot_copy{font-size: 16px; color: #999;}
.foot_bottom .jam{font-size: 16px; color: #999; margin-top: 10px;}
.foot_bottom .jam a{font-size: 16px; color: #999;}
.foot_bottom .jam a:hover{text-decoration: underline;}

/* top */
.top_button{position: fixed; right: 30px; bottom: 15px; z-index: 20; opacity:0; transition:all 0.5s ease;}
.top_button button{display: block; width: 60px; height: 60px; border-radius: 50%; text-align: center; color: #fff; background: #00a0e9; cursor: pointer; box-shadow: 0 0 0 rgb(88 120 243 / 40%); animation: pulseAnim 2s infinite; border: none; transition: 0.5s;}
.top_button button:hover{background: #1d50a2;}
.top_button.fixed { bottom:30px; opacity:1; }
@keyframes pulseAnim {
	0% {
		box-shadow: 0 0 0 0 rgb(88 120 243 / 40%);
	}
	70% {
		box-shadow: 0 0 0 10px rgb(88 120 243 / 0%);
	}
	100% {
		box-shadow: 0 0 0 0 rgb(88 120 243 / 0%);
	}
}
.top_button i{display: block; background: url(../../images/top_button.png) 50%/20% no-repeat; width: 60px; height: 60px;}


.notice_wrap {
    position: relative;
}

.notice_more {
    position: absolute;
    right: 25px;
    top: 25px;
}

.notice_more a{display: block;}
.notice_more a:hover{animation:rotate-center .6s ease-in-out both;}
@keyframes rotate-center{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}