@charset "UTF-8";

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

@font-face {
	font-family: 'Gmarket Sans';    font-style: normal;    font-weight: 700;
	src: local('Gmarket Sans Bold'), local('GmarketSans-Bold'),
	url('http://script.gmarket.com/fonts/GmarketSansBold.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('http://script.gmarket.com/fonts/GmarketSansBold.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
	font-family: 'Gmarket Sans';    font-style: normal;    font-weight: 500;
	src: local('Gmarket Sans Medium'), local('GmarketSans-Medium'),
	url('http://script.gmarket.com/fonts/GmarketSansMedium.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('http://script.gmarket.com/fonts/GmarketSansMedium.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
	font-family: 'Gmarket Sans';    font-style: normal;    font-weight: 300;
	src: local('Gmarket Sans Light'), local('GmarketSans-Light'),
	url('http://script.gmarket.com/fonts/GmarketSansLight.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('http://script.gmarket.com/fonts/GmarketSansLight.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes bgAniWidth {
  0% {
    width: 60%;
    left: calc(50% - 30%);
    opacity: 0;
  }
  to {
    width: 100%;
    left: 0;
    opacity: 1;
  }
}

@-webkit-keyframes bgAniWidth {
  0% {
    width: 60%;
    left: calc(50% - 30%);
  }
  to {
    width: 100%;
    left: 0;
  }
}

.bgAniWidth {
  -webkit-animation-name: bgAniWidth;
  animation-name: bgAniWidth;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInBig {
  from {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

@keyframes fadeInBig {
  from {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

.fadeInBig {
  -webkit-animation-name: fadeInBig;
  animation-name: fadeInBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes brAni {
  0% {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  to {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}

@media screen and (max-width: 768px) {
  @-webkit-keyframes brAni {
    0% {
      border-top-left-radius: 0;
      border-bottom-right-radius: 0;
    }
    to {
      border-top-left-radius: 50px;
      border-bottom-right-radius: 50px;
    }
  }
  @keyframes brAni {
    0% {
      border-top-left-radius: 0;
      border-bottom-right-radius: 0;
    }
    to {
      border-top-left-radius: 50px;
      border-bottom-right-radius: 50px;
    }
  }
}

@-webkit-keyframes brAni {
  0% {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  to {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}

@media screen and (max-width: 768px) {
  0% {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  to {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}

.brAni {
  -webkit-animation-name: brAni;
  animation-name: brAni;
}

@-webkit-keyframes scaleDown {
  from {
    transform: scale(0.9);
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    transform: scale(1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scaleDown {
  from {
    transform: scale(0.9);
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    transform: scale(1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.scaleDown {
  -webkit-animation-name: scaleDown;
  animation-name: scaleDown;
}

/* Font */
/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
tablet : 980px ~
mobile : 767px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/
/* Reset
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
html {font-size: 62.5%;}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

/* ex) 폰트사이즈 16px은 1.6rem */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  font-family:'Roboto','Noto Sans KR',AppleGothic,Arial,Helvetica,sans-serif;	
}

dl,
ul,
ol,
menu,
li {
  list-style: none;
  color: #444;
}

body {
   font-size: 1.6rem;
    font-weight: 300;
    color: #444;
    letter-spacing: -1px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

:focus {
  outline: 0 !important;
}

iframe {
  border: none;
  width: 100%;
}

a {
  color: inherit;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

a:hover,
a:focus,
a:active,
a:link {
  text-decoration: none !important;
  color: inherit;
}

img {
  max-width: 100%;
}

textarea {
  max-width: 100%;
  resize: none;
}

body {
  overflow-x: hidden;
}

@media only screen and (min-width: 320px) {
  body {
    overflow-x: hidden;
  }
}

.hidden {
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

/* 변수선언
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
:root {
  --blue: #243bad;
  --blue2: #181b78;
  --blue3: #4256b9;
  --blue4: #0200a2;
  --blue5: #0623b2;
  --blue6: #0051e4;
  --sky_blue: #4bb8b5;
  --sky_blue2: #54c3f1;
  --sky_blue3: #00b894;
  --yellow: #ffee00;
  --black: #333;
  --black2: #000027;
  --gray: #888;
  --gray2: #666;
  --br_color: #d8dee5;
  --green1: #35b597;
  --white1 :#fff;
}

.xi-icon:after {
  font-family: 'xeicon' !important;
}

/* Parallax
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.parallax {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
}

/* Preloader
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.animationload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

.loader {
  width: 200px;
  height: 200px;
  font-size: 24px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(/images/basic_resp/img/preloader.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

/* Back to top (탑 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.back-to-top {
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 140px;
  right: 20px;
  display: none;
  text-align: center;
  z-index: 10000;
  border-radius: 23px;
  background: #fff;
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.03);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--br_color);
}

.back-to-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #303030;
  font-size: 25px;
}

@media screen and (max-width: 768px) {
  .back-to-top {width: 45px; height: 45px; border-radius: 17px;}
  .back-to-top i {font-size: 22px;}
  html.hide-backtotop .back-to-top {display: none !important;}
}
@media only screen and (max-width: 360px) {
     html.hide-backtotop .back-to-top {display: none !important;}
    }
}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
  position: relative;
  width: 100%;
  min-width: 340px;
  height: 100%;
  overflow-x: hidden;
}

.login-bar {
  padding: 21px 0;
  text-align: center;
  z-index: 999;
  position: relative;
}

.login-bar li {
  display: inline-block;
  position: relative;
  margin-left: 10px;
  border-left: 1px solid #ddd;
  height: 23px;
  border: 1px solid #525353;
  border-radius: 11px;
  margin-bottom: 10px;
}

.login-bar li a {
  font-size: 12px;
  line-height: 23px;
  padding: 0 14px;
  color: #525353;
  font-weight: 500;
}

.login-bar .material-icons {
  display: block;
  position: absolute;
  right: 6px;
  top: 2px;
  font-size: 18px;
  color: #fff;
}

.login-bar li:first-child {
  padding-right: 12px;
  background-color: #0b7c02;
  border: 1px solid #1c9e75;
}

.login-bar li:first-child a {
  display: block;
  width: 55px;
  color: #fff;
}

.login-bar li ul {
  position: absolute;
  left: -11px;
  top: 31px;
}

.login-bar li ul li {
  padding-right: 12px;
}

.login-bar li ul li a {
  display: block;
  margin-bottom: 38px;
  width: 55px;
}

.login-bar .lang_list {
  display: none;
  position: absolute;
  background-color: #000;
  width: 71px;
  left: -3px;
  border-radius: 10px;
  padding: 5px 0;
  top: -1px;
}

.login-bar .lang_list dd a {
  color: #fff;
  font-weight: 400;
  position: relative;
  line-height: 26px;
}

.login-bar .lang_list dd a i {
  color: #fff !important;
  right: -8px !important;
  top: 5px !important;
}



/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#header {position: fixed; top: 0; left: 0; height: 65px; width: 100%; z-index: 1000; padding: 0;}
#header > div.inner {position: relative; width: 94%; height: 65px; margin: 0 auto;}
#header #L_SITE_LOGO {width:129px; height:14px; position: absolute; top: 28px; left: 0;}
#header #L_SITE_LOGO h1 a img {display: none;}
#header #L_SITE_LOGO h1 a {width:129px; height:14px; display: block; background: url('/images/kor16r-22-0457/common/logo_g_129x14_26.png') no-repeat 0 0;} /* 현재 보이는 로고 ************************************/
#header #nav {width: 1000px; height: 65px; margin: 0 auto; z-index: 1000;}/*#header #nav {width: 1260px; height: 80px; margin: 0 auto; z-index: 1000;}*/
#header #nav .navigation {width: 66.66%; margin: 0 auto; opacity: 1; display: block; -webkit-transition: all 1s; transition: all 1s;}
#header #nav .navigation:after {content: ''; display: inline-block; clear: both;}
#header #nav .navigation li {position: relative; float: left; text-align: center; -webkit-transition: all 0.3s; transition: all 0.3s; width: 16%;}

/* 출연연 오픈소스 협의체 */
#header #nav .navigation li.gnb2, #header #nav .navigation li.gnb3, #header #nav .navigation li.gnb4 {width:21%;} /* 메뉴 노출 */
/*#header #nav .navigation li.gnb2, #header #nav .navigation li.gnb3, #header #nav .navigation li.gnb4 {width:33.33%;} 메뉴 숨김*/

#header #nav .navigation li.gnb5 {display:none;}
#header #nav .navigation li.gnb6 {width:36%;}
#header #nav .navigation li > a {position: relative; display: inline-block; width: 100%; line-height: 65px;}
#header #nav .navigation li > a span {position: relative; display: inline-block; font-size: 1.4rem; font-weight: 500;}

#header.layout_main #nav .navigation li > a span {color: #fff;} /* 메인 상단메뉴 흰색 */
#header.layout_main #nav .util-menu .icon a {color:#fff;} /* 메인 - 아이콘*/
#header.layout_main.scroll_on #nav .util-menu .icon a {color:var(--black);}


/*#header .util-menu .icon a {color:#212121;}*/
/*#header.scroll_on .util-menu .icon a {color:#212121;}*/
/*#header.layout_submenu .util-menu .icon a, #header.layout_submenu.scroll_on .util-menu .icon a {color:#212121;}
#header.layout_subbbs .util-menu .icon a, #header.layout_subbbs.scroll_on .util-menu .icon a {color:#212121;}
#header.layout_subcom .util-menu .icon a, #header.layout_subcom.scroll_on .util-menu .icon a {color:#212121;}*/


@media screen and (max-width: 2500px) {
	#header > div.inner {width: 91%;}
}
@media screen and (max-width: 1400px) {
	#header #nav {width: 100%;}
	#header #nav .navigation {width: 50%;}
	#header #nav .navigation li > a span {font-size:1.8rem; /*font-weight:600;*/}
}
@media screen and (max-width: 1338px) {
	#header #nav .navigation li > a span {font-size:1.6rem;}
}

#header #nav .navigation li > a:hover {
  text-decoration: none;
  color:var(--green1);
}

#header #nav .navigation li > a:hover span:after {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#header #nav .navigation li .sub-menu {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0s 0s;
  transition: all 0s 0s;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  padding-top: 15px;
}

#header #nav .navigation li .sub-menu li {
  position: relative;
  width: 100%;
  float: none;
  padding: 3px 0;
  text-align: center;
}



#header #nav .navigation > li:hover:before{content:''; display:block; width:100%; height:1px; background: var(--green1); position: absolute; bottom: 0;}
#header #nav .navigation li .sub-menu a {display: block; width: 100%; font-size: 1.3rem; color: var(--gray2); font-weight: 500; line-height: 2rem; word-break: keep-all;}
#header #nav .navigation li .sub-menu a:hover {color: var(--green1);}
#header.sub_page #L_SITE_LOGO h1 a {background: url('/images/kor16r-22-0457/common/logo_g_129x14_26.png') no-repeat 0 0;}/* 마우스 오버시 보이는 로고 ************************************/
#header.sub_page #nav .navigation li.gnb1, 
#header.sub_page #nav .navigation li.gnb2, 
#header.sub_page #nav .navigation li.gnb3, 
#header.sub_page #nav .navigation li.gnb4, 
#header.sub_page #nav .navigation li.gnb5, 
/*#header.sub_page #nav .navigation li.gnb6*/ {width: 16%;}
#header.sub_page #nav .navigation li.gnb6 {width: 36%;}

#header.sub_page #nav .navigation li > a span {color: var(--black);}  /* 메인 상단메뉴 마우스오버시  흰색 ---> 검정색으로 */
#header.sub_page #nav .navigation li .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
  transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
}

#header.sub_page:before {
  content: '';
  display: block;
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e5e5e5;  /* 상단메뉴 회색 라인 ************************************/
}

#header .nav-bg {
  position: absolute;
  top: -440px;
  left: -6%;
  width: 112%;
  height: 180px;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .5;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#header.scroll_on {
  background: #fff;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

#header.scroll_on #L_SITE_LOGO h1 a {
  background: url('/images/kor16r-22-0457/common/logo_g_129x14_26.png') no-repeat 0 0;
}

/*#header.scroll_on #nav .navigation li > a span {color: var(--black);}
#header.layout_submenu.scroll_on #nav .navigation li > a span {color:var(--black);}*/

#header.sub_page #nav .util-menu .icon a {color: var(--black);} /* 홈아이콘 : 메인 상단메뉴 마우스오버시  흰색 ---> 검정색으로 */


#header.scroll_on .util-menu ul > li:first-child {
  /*border-right: 0px solid #e5e5e5;*/
}

#header.scroll_on .util-menu ul > li:first-child a:before {
  color: var(--gray2);
}

#header.scroll_on .util-menu ul > li a {
  /*color: var(--gray2);*/
}

#header.sub_page .nav-bg {
  top: 0;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

#header .util-menu {position: absolute; top:21px; right:32px;}
#header .util-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #212121;
  border-radius: 15px;
}

#header .util-menu ul > li {padding:2px 5px; border-left: 1px solid rgba(255,255,255,0.3);}
#header .util-menu ul > li:first-child {border-left:0;}
#header .util-menu ul > li a {position: relative; display: inline-block; font-size: 1.2rem; color: #fff; font-weight: 400; line-height: 1; margin: 5px 12px 6px 12px;}
#header .util-menu ul > li:last-child a {padding-right:0;}
#header .util-menu ul > li a:hover {text-decoration: none;}
#header .util-menu ul > li a.i_h:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 2.6rem;
  color: #fff;
  font-family: 'xeicon';
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#header .util-menu ul > li a.i_l:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 2.6rem;
  /*color: #fff;*/
  font-family: 'xeicon';
  /*content: "\e9f5";*/
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#header.sub_page .util-menu ul > li:first-child {border-right: 1px solid #e5e5e5;}
#header.sub_page .util-menu ul > li:first-child a:before {color: var(--gray2);}
#header.sub_page .util-menu ul > li:last-child a:before {color: var(--gray2); /* 상단 홈 아이콘*/}
#header.sub_page .util-menu ul > li a {color: var(--white1); /* 상단 홈 텍스트*/}
#header .nav-btn {display: none;}


@media screen and (max-width: 1200px) {
	#header #L_SITE_LOGO {top: 40px;}
	#header #nav {position: fixed; top: 0; right: -100%; width: 80%; height: 100%; background: #fff;}
	#header #nav .navigation {width: 100%; padding-top: 100px; display: none; opacity: 0;}
	#header #nav .navigation.navigation-open {opacity: 1; display: block;}
	#header #nav .navigation li {float: none; width: 100% !important; text-align: left; border-top: 1px solid #e7e7e7;}
	#header #nav .navigation li:last-child {border-bottom: 1px solid #e7e7e7;}
	#header #nav .navigation li > a {position: relative; padding: 20px 30px; line-height: 1;}
	#header #nav .navigation li > a span {font-size: 1.8rem; color: var(--black);}
	#header.layout_main #nav .navigation li > a span {color: var(--black);}
	#header #nav .navigation li > a span:after {display: none;}
	#header #nav .navigation li > a.main-menu:before {font-size: 2rem; font-family: 'xeicon'; /*content: "\e914";*/ position: absolute; top: 50%; right: 30px; -webkit-transform: translateY(-50%); transform: translateY(-50%); font-weight: 400; color: var(--white1);}
	#header #nav .navigation li.active > a.main-menu:before {/*content: "\e91b";*/ }
	#header #nav .navigation li.active .sub-menu {position: relative; top: unset; padding: 10px 0; background: #f2f2f2; opacity: 1; visibility: visible;}
	#header #nav .navigation li.active .sub-menu li {border: 0 !important; text-align: left;}
	#header #nav .navigation li.active .sub-menu li a {padding: 5px 32px;}
	#header .util-menu {display: block; top: 25px; right: unset; left: 60px;}
	#header .util-menu ul > li:first-child {border-right: 1px solid #263b5a;}
	#header .util-menu ul > li:first-child a:before {color: var(--gray2);}
	#header .util-menu ul > li:last-child a:before {color: var(--gray2);}
	#header .util-menu ul > li a {color: var(--white1);}
	#header .nav-btn {display: block; position: fixed; top: 36px; right: 5%; z-index: 10000; height: 30px; -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715); transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715); cursor: pointer;}
	#header .nav-btn span {display: block; width: 35px; height: 3px; background: #00b894; margin: 4px auto; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; border-radius:3px;}
	#header .nav-btn.nav-close {right: 30px;}
	#header .nav-btn.nav-close span {background: var(--black);}
	#header .nav-btn.nav-close span:first-child {-webkit-transform: translateY(7px) rotate(45deg); transform: translateY(6px) rotate(45deg);}
	#header .nav-btn.nav-close span:nth-child(2) {opacity: 0;}
	#header .nav-btn.nav-close span:last-child {-webkit-transform: translateY(-7px) rotate(-45deg); transform: translateY(-8px) rotate(-45deg);}
	#header .nav-bg {position: fixed; width: 100%; height: 100%; top: 0; left: 0; background: rgba(0, 0, 0, 0.7); opacity: 1; -webkit-box-shadow: none; box-shadow: none; z-index: 50; display: none;}
	#header.scroll_on {height:100px;}
	#header.scroll_on .nav-btn span {background: var(--black);}
}


/* 2단계 : 검정 반투명 + 흰글씨 */
#header.layout_main.scroll_dark {
  background: rgba(0, 0, 0, 0.6);
  box-shadow: none;
}
#header.layout_main.scroll_dark #L_SITE_LOGO h1 a {
  background: url('/images/kor16r-22-0457/common/logo_g_129x14_26.png') no-repeat 0 0;
}
#header.layout_main.scroll_dark #nav .navigation li > a span {
  /*color: #fff;  마우스 오버시, 스크롤하면, 상단메뉴 1차 메뉴가 흰색으로 나오는 문제로 숨김*************************************************************** 260825 */
}
/*#header.layout_main.scroll_dark .util-menu .icon a {
  color: #fff;
}*/

/* 3단계 : 흰색 반투명 + 검정글씨 */
#header.layout_main.scroll_light {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
#header.layout_main.scroll_light #L_SITE_LOGO h1 a {
  background: url('/images/kor16r-22-0457/common/logo_g_129x14_26.png') no-repeat 0 0;
}
#header.layout_main.scroll_light #nav .navigation li > a span {
  color: var(--black);
}
#header.layout_main.scroll_light #nav .util-menu .icon a {
  color: var(--black);
}



/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.btn {
  text-transform: uppercase;
  border-radius: 0;
  line-height: 20px;
}

.btn:focus,
.btn:active {
  outline: none;
  color: #fff;
}

.btn-custom {
  border-radius: 3px;
  padding: 0.8em 1.8em;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  text-transform: uppercase;
  background-color: #509591;
  border-color: #509591;
  color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
  background-color: #447774;
  border-color: #447774;
  color: #fff;
}

.btn-custom-outline {
  border-radius: 3px;
  padding: 0.8em 1.8em;
  color: #fff;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  text-transform: uppercase;
  background-color: transparent;
  border-color: #fff;
}

.btn-custom-outline:hover,
.btn-custom-outline:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
}

.btn-bar a {
  margin-right: 10px;
}

.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 3px;
  /*height: 38px;*/
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-color: #333;
}

/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
  position: relative;
  width: 100%;
  margin: 7em 0 0 0;
  background: #111;
  /*border-top-left-radius: 30px;*/
  padding:3.5rem 0 3.8rem 0;
}

#footer .footer-area {
  position: relative;
  width: 94%;
  /*width: 1260px;*/
  margin: 0 auto;
}

#footer .foot-agree {
  margin-bottom: 6rem;
}

#footer .foot-agree ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footer .foot-agree ul li {
  padding: 0 1.5rem;
}

#footer .foot-agree ul li:not(:last-child) {
  border-right: 1px solid #fff;
}

#footer .foot-agree ul li:first-child {
  padding-left: 0;
}

#footer .foot-agree ul li:last-child {
  padding-right: 0;
}

#footer .foot-agree ul li a {
  display: block;
  font-size: 1.7rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

#footer .foot-sns {
  position: absolute;
  top: 0;
  right: 0;
}

#footer .foot-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*#footer .foot-sns ul li:not(:last-child) {
  margin-right: 1rem;
}*/

#footer .foot-sns ul li a {
  display: block;
  /*width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  line-height: 40px;*/
  text-align: center;
  font-size: 1.2rem;
  color:#fff;
}

#footer .foot-sns ul li a i {
  font-size: 2.4rem;
  line-height: 40px;
  color: #6d6e70;
}

#footer .foot-logo {
  margin-bottom: 1.5rem;
}

#footer .foot-info p, #footer .foot-info li, #footer .foot-info a {
  font-size: 1rem;
  color:#878686;
  font-weight: 300;
  /*line-height: 2.4rem;*/
}

#footer .foot-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footer .foot-info ul li {
  position: relative;
}

#footer .foot-info ul li:not(:last-child):after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  right: 1rem;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
}

#footer .foot-info ul li:not(:last-child) {
  padding-right: 2rem;
}

@media screen and (max-width: 1320px) {
  #footer {
    width: 100%;
    margin: 7rem 0 0 0;
    padding: 9rem 5%;
  }
  #footer .footer-area {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #footer .foot-sns {
    position: relative;
    margin-bottom: 2rem;
  }
}


/* Main Visual (메인이미지)  230816  추가 수정
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*.main-visual {position: relative; background:#0200a2 url('/images/kor16r-22-0457/main/m_bg_object.png') no-repeat center bottom/cover; width: 100%;  height:100vh; }*/
.main-visual {position: relative; background:url('/images/kor16r-22-0457/main/26_mv_bg_sajeon.jpg') no-repeat center top/cover; width: 100%;  height:100vh; }
/*.main-visual {position: relative; background:#021237; width: 100%;  height:100vh; } 단색 바탕*/
/*.main-visual .swiper-container {width:100%; height:100%; position:relative; margin:0 auto; background-image:url('/images/kor16r-22-0457/main/main_bg_left_top.png'), url('/images/kor16r-22-0457/main/main_bg_left_bottom.png'); 
background-repeat: no-repeat, no-repeat, no-repeat; background-position:top left, bottom left;} 250831*/
.main-visual .swiper-container {height:100vh;}

.main-visual .swiper-container .swiper-slide {overflow: hidden;}
.main-visual .swiper-container .swiper-slide .slogan {position: absolute;}

/*.main-visual .swiper-container .event_tit {width:95%; position: relative; height:100%; color:#fff; margin:0 auto; top: 16vh; text-align:center;} 250831 */
.main-visual .swiper-container .event_tit {width:100%; position:absolute; color:#fff; margin:0 auto; top:24%; text-align:center;}
.main-visual .swiper-container .event_tit > p {padding:20px 0 0 0;}

.main-visual .swiper-container .event_tit h2 {font-size:6.3rem; font-family: 'Gmarket Sans'; font-weight:700; /*margin-top:15.5vh;*/ white-space: pre-line; word-break: keep-all; }
.main-visual .swiper-container .event_tit h2 > span {color:#04c9c0; }
.main-visual .swiper-container h3 {font-size:3.2rem; font-family: 'Gmarket Sans'; font-weight:400;}
.main-visual .swiper-container h3 > strong {font-size:3.5rem;color:#04c9c0; vertical-align: middle; padding-top: 0.2em;}
.main-visual .swiper-container .event_tit h3 {margin:1vh 0 4vh 0;}
.main-visual .swiper-container .event_tit h3.mtit {font-size:3.5rem;}

.main-visual .swiper-container .event_tit02 {width:100%; position:absolute; color:#fff; margin:0 auto; bottom:18%; text-align:center;}
.main-visual .swiper-container .event_tit02 h3 {position: absolute; bottom: 10%; width: 100%; font-size: 2.5rem; line-height: 1.6; font-weight: 300;}


@media screen and (max-width: 1920px) {
	/*.main-visual {background-position:center bottom -40px;} 250831*/
	/*.main-visual .swiper-container .event_tit {top: 14vh;} 250831*/
	.main-visual .swiper-container .event_tit h2 {font-size:6.5rem;}
	.main-visual .swiper-container .event_tit h3 {font-size:2.7rem;}
	.main-visual .swiper-container .event_tit h3.mtit {font-size:3rem;}
	.main-visual .swiper-container .event_tit h3 > strong {font-size:3.8rem;}
}
@media screen and (max-width: 1440px) {
	/*.main-visual {background-position:center bottom -100px;} 250831 */
	/*.main-visual .swiper-container {background-size: 100%, 50%;}
	.main-visual .swiper-container .event_tit {top: 18vh;} 250831*/
	.main-visual .swiper-container .event_tit h2 {font-size:6.5rem;}
	.main-visual .swiper-container .event_tit h3 {font-size:2.7rem;}
	.main-visual .swiper-container .event_tit h3.mtit {font-size:3rem;}
	.main-visual .swiper-container .event_tit h3 > strong {font-size:3.8rem;}
}
@media screen and (max-width: 768px) {
	/*.main-visual .swiper-container {background-size: 200%, 0%;} 250831 */
	/*.main-visual .swiper-container .event_tit {top: 20vh;}*/
	/*.main-visual .swiper-container .event_tit {top: 15vh;} 250831*/
	.main-visual .swiper-container .event_tit h2 {font-size:5.8rem;}
	.main-visual .swiper-container .event_tit h3 {line-height:3vh; font-size:2.4rem;}
	.main-visual .swiper-container .event_tit h3.mtit {font-size:2.6rem;}
	.main-visual .swiper-container .event_tit h3 > strong {font-size:3.2rem;}
}
@media screen and (max-width: 480px) {
	/*.main-visual .swiper-container .event_tit {top:50%;}*/
	.main-visual .swiper-container .event_tit h2 {font-size:5rem;}
	.main-visual .swiper-container .event_tit h3 {font-size:2rem;}
	.main-visual .swiper-container .event_tit h3.mtit {font-size:2.4rem;}
	.main-visual .swiper-container .event_tit h3 > strong {font-size:2.8rem;}
}
@media screen and (max-width: 412px) {
	.main-visual .swiper-container .event_tit h2 {font-size:4.5rem;}
	.main-visual .swiper-container .event_tit h3 {font-size:2rem;}
	.main-visual .swiper-container .event_tit h3.mtit {font-size:2.2rem;}
	.main-visual .swiper-container .event_tit h3 > strong {font-size:2.8rem;}
}
@media screen and (max-width: 360px) {
	/*.main-visual .swiper-container .event_tit {top:50%;}*/
	.main-visual .swiper-container .event_tit h2 {font-size:3.8rem;}
	.main-visual .swiper-container .event_tit h3 {font-size:2.2rem; line-height:3vh;}
	.main-visual .swiper-container .event_tit h3.mtit {font-size:2rem;}
	.main-visual .swiper-container .event_tit h3 > strong {font-size:3.1rem;}
	.main-visual .swiper-container .event_tit02 h3 {font-size:2rem;}
}
@media screen and (max-width: 320px) {
	.main-visual .swiper-container .event_tit h2 {font-size:3.6rem;}
	.main-visual .swiper-container .event_tit h3 {font-size:2rem; line-height:3vh;}
}

@media screen and (max-device-height : 480px) {
	.main-visual {height: 150vh;}
	.main-visual .swiper-container .event_tit {top: 30vh;}
	.main-visual .swiper-container .event_tit h2 {font-size:5rem;}
	.main-visual .swiper-container .event_tit h3 {font-size:1.8rem; line-height:2.5rem; margin: 3rem 0 1.5rem 0;}
	.main-visual .swiper-container .event_tit h3.mtit {font-size:2.5rem;}
	.main-visual .swiper-container .event_tit h3 > strong {font-size:3rem;}
}

/* Main Visual (메인이미지)  230816 까지
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual .swiper-container .swiper-slide .slide-inner.visual_02 {
  background-image: url("/images/kor16r-22-0457/main/visual_2.png");
}

.main-visual .visual-btn > div {
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-visual .visual-btn > div:hover {
  background: white;
}

.main-visual .visual-btn > div:after {
  color: var(--blue);
  font-size: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.main-visual .visual-btn > div.swiper-button-prev {
  top: unset;
  bottom: 0;
  left: 40%;
  -webkit-transform: translateX(-37px);
          transform: translateX(-37px);
}

.main-visual .visual-btn > div.swiper-button-prev:after {
  content: "\e93d";
}

.main-visual .visual-btn > div.swiper-button-next {
  top: unset;
  bottom: 0;
  left: 40%;
  -webkit-transform: translateX(37px);
          transform: translateX(37px);
}

.main-visual .visual-btn > div.swiper-button-next:after {
  content: "\e940";
}

.main-visual .slogan {
  position: absolute;
  bottom: 0;
  right: 60%;
  -webkit-transform: translateX(-37px);
          transform: translateX(-37px);
  width: calc(50% - 37px);
  height: 280px;
  background: var(--green1);
  border-top-right-radius: 150px;
  z-index: 100;
  display:none;
}

.main-visual .slogan .slogan_inner {
  position: absolute;
  top: 50%;
  right: 100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main-visual .slogan span {
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
}

.main-visual .slogan p {
  font-size: 2.5rem;
  line-height: 3.5rem;
  color: #fff;
  font-weight: 700;
  word-break: keep-all;
  margin: 2rem 0 4rem 0;
}

.main-visual .slogan a {
  display: inline-block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 3rem;
  padding: 1.5rem 6rem;
}

.main-visual .slogan a:hover {
  background: #fff;
  color: var(--sky_blue);
}

@media screen and (max-width: 1220px) {
  .main-visual .visual-btn > div.swiper-button-prev {
    left: 0;
    bottom: 350px;
    -webkit-transform: none;
            transform: none;
  }
  .main-visual .visual-btn > div.swiper-button-next {
    left: 74px;
    bottom: 350px;
    -webkit-transform: none;
            transform: none;
  }
  .main-visual .slogan {
    right: unset;
    left: 0;
    -webkit-transform: none;
            transform: none;
    width: 55%;
    height: 280px;
    background: var(--green1);
  }
  .main-visual .slogan .slogan_inner {
    right: unset;
    left: 10%;
  }
}

@media screen and (max-width: 768px) {
  .main-visual .visual-btn > div {
    width: 54px;
    height: 54px;
    bottom: 280px;
  }
  .main-visual .visual-btn > div.swiper-button-prev {
    bottom: 280px;
  }
  .main-visual .visual-btn > div.swiper-button-next {
    left: 54px;
    bottom: 280px;
  }
  .main-visual .slogan {
    width: 65%;
    height: 280px;
  }
}

@media screen and (max-width: 586px) {
  .main-visual .slogan {
    width: 75%;
	height:35%;
  }
}

/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-container > section {
  padding:70px 0;
}

.main-container > section .inner {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.main-container .m_tit {
  margin-bottom: 30px;
}
.main-container .m_tit dt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.main-container .m_tit dd {
  font-size: 5.3rem;
  line-height: 6rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -2px;
}
.main-container .m_tit p {
  font-size: 2.2rem;
  font-weight: 300;
  color: #55585b;
  margin-top: 2rem;
  line-height:1.5;
}

@media screen and (max-width: 980px) {
	.main-container .m_tit dd {font-size: 4rem; line-height: 4rem;}
}
@media screen and (max-width: 768px) {
	.main-container .m_tit dd {font-size: 3.5rem; line-height: 3.5rem; font-weight:600;}
}
@media screen and (max-width: 500px) {
	.main-container .m_tit dd {font-size: 3rem; line-height: 3rem; letter-spacing: -1px;}
	.main-container .m_tit p {font-size: 2rem;}
}



.main-container .m_tit.m_tit_w * {
  color: #fff;
}

.main-container .m_tit.alignC {
  text-align: center;
  margin-bottom:0;
}

@media screen and (max-width: 1320px) {
  .main-container > section .inner {
    width: 100%;
    padding: 0 30px;
  }
}

@media screen and (max-width: 980px) {
  .main-container > section {padding: 70px 0;}
  .main-container .m_tit {margin-bottom: 20px;}
}
@media screen and (max-width: 500px) {
  .main-container .m_tit {margin-bottom: 15px;}
}


.main-container > section.service .inner {z-index: 10;}
section.service {
	width:100%;
    margin: 0 auto;
    background:url('/images/kor16r-22-0457/main/service_bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
	position:relative;
}
section.service:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.92);
    z-index: 1;
}
.section.service .inner {
    margin: 0 auto;
    position: relative;
}


section.service .service-bg {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 160px);
  background: #f7fafc;
  z-index: -1;
  border-radius: 100px;
  display:none;
}

section.service .inner_con {
  padding:0 140px;
}

section.service .ser_btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.service .ser_btn div {
  width: calc((100% - 60px) / 4);
}

section.service .ser_btn div a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #fff;
  -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 2px solid #fff;
  padding: 10px 10px 25px 10px;
}

section.service .ser_btn div a:hover {
  border: 2px solid var(--sky_blue2);
}

section.service .ser_btn div a:hover span {
  background: var(--sky_blue2);
  border: 1px solid var(--sky_blue2);
}

section.service .ser_btn div a:hover span i {
  color: #fff;
}

/*section.service .ser_btn div p {
  margin-bottom: 30px;
}*/

section.service .ser_btn div p img {
  width: auto;
  height: auto;
  border-radius: 25px;
}

section.service .ser_btn div dt {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

section.service .ser_btn div dd {
  font-size: 1.6rem;
  color: var(--gray);
}

section.service .ser_btn div span {
  display: inline-block;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid var(--gray);
  margin-top: 25px;
}

section.service .ser_btn div span i {
  font-size: 2rem;
  color: var(--gray);
  line-height: 39px;
}

@media screen and (max-width: 1320px) {
  section.service .inner_con {
    padding: 0 5%;
  }
  section.service .inner:before {
    left: 15px;
  }
}

@media screen and (max-width: 980px) {
  section.service .ser_btn div {
    width: calc((100% - 20px) / 2);
  }
  section.service .ser_btn div:nth-child(3), section.service .ser_btn div:last-child {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  section.service .inner:before {
    top: 60px;
    left: 15px;
    height: calc(100% - 120px);
  }
  section.service .ser_btn div a {
    padding: 50px 20px 30px 20px;
    border-radius: 20px;
  }
  section.service .ser_btn div p {
    margin-bottom: 20px;
  }
  section.service .ser_btn div p img {
    /*height: 50px;*/
  }
  section.service .ser_btn div dt {
    margin-bottom: 5px;
  }
  section.service .ser_btn div span {
    margin-top: 15px;
  }

}

@media screen and (max-width: 480px) {
  section.service .ser_btn div {
    width: 100%;
  }
  section.service .ser_btn div:nth-child(2) {
    margin-top: 20px;
  }

}

/* 갤러리게시판 */
section.gallery {
  background: url(/images/kor16r-22-0457/main/bg_gallery.png) no-repeat center center/cover;
  height: 900px;
  margin-bottom: 50px;
}

section.gallery .inner {
  height: 800px;
}

section.gallery .m_tit {
  text-align: right;
}

section.gallery .module_gal {
  width: 1750px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  border-top-right-radius: 100px;
  padding: 120px 120px 0 0;
}

section.gallery .swiper-gallery {
  width: 100%;
}

section.gallery .swiper-gallery .swiper-slide {
  overflow: hidden;
  border-radius: 30px;
  height: 380px;
}

section.gallery .swiper-gallery .swiper-slide a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

section.gallery .swiper-gallery .swiper-slide a img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: unset;
  border-radius: 30px;
}

section.gallery .gall-btn {
  position: absolute;
  top: 60px;
  right: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

section.gallery .gall-btn > div {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f8f8;
  border: 1px solid #e8eaed;
  text-align: center;
}

section.gallery .gall-btn > div i {
  font-size: 2rem;
  color: var(--blue);
  margin-top: 7px;
}

section.gallery .gall-btn > div.gall-btn-next {
  margin-right: 10px;
}

@media screen and (max-width: 1320px) {
  section.gallery .module_gal {
    right: 20px;
    padding: 120px 80px 0 0;
  }
}

@media screen and (max-width: 980px) {
  section.gallery {
    height: 830px;
  }
}

@media screen and (max-width: 768px) {
  section.gallery {
    height: 480px;
  }
  section.gallery .inner {
    height: 450px;
  }
  section.gallery .module_gal {
    width: calc(100% - 20px);
    padding: 80px 40px 0 0;
    border-top-right-radius: 50px;
  }
  section.gallery .swiper-gallery .swiper-slide {
    height: 190px;
  }
  section.gallery .gall-btn {
    top: 30px;
    right: 60px;
  }
  section.gallery .gall-btn > div i {
    margin-top: 9px;
  }
}

/* 공지 - 뉴스형게시판 */
.module_notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.module_notice .item {
  width: calc((100% - 90px) / 4);
  border-radius: 30px;
  -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}

.module_notice .item .pic {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.module_notice .item .pic img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: unset;
}

.module_notice .item .txt_area {
  padding: 20px 40px 30px 40px;
  width: 100%;
}

.module_notice .item .txt_area dt a {
  display: block;
  font-size: 2.2rem;
  color: var(--black);
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.module_notice .item .txt_area dt a:hover {
  color: var(--blue);
}

.module_notice .item .txt_area dd {
  font-size: 1.6rem;
  color: var(--gray);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 2.4rem;
  height: 7.2rem;
  margin: 15px 0;
}

.module_notice .item .txt_area .date {
  font-size: 1.6rem;
  color: var(--gray);
  line-height: 1;
}

.module_notice .btn_notice {
  width: 100%;
  text-align: center;
  margin-top: 70px;
}

.module_notice .btn_notice a {
  display: inline-block;
  width: 260px;
  height: 60px;
  line-height: 60px;
  background:var(--green1);
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-radius: 30px;
}

@media screen and (max-width: 1220px) {
  .module_notice .item {
    width: calc((100% - 60px) / 4);
  }
}

@media screen and (max-width: 980px) {
  .module_notice .item {
    width: calc((100% - 20px) / 2);
  }
  .module_notice .item:nth-child(3), .module_notice .item:nth-child(4) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .module_notice .item .txt_area {
    padding: 30px;
  }
  .module_notice .item .txt_area dd {
    margin: 10px 0 15px 0;
  }
  .module_notice .btn_notice {
    margin-top: 40px;
  }
  .module_notice .btn_notice a {
    width: 200px;
    height: 45px;
    line-height: 45px;
  }
}

@media screen and (max-width: 480px) {
  .module_notice .item {
    width: 100%;
  }
  .module_notice .item:nth-child(2) {
    margin-top: 20px;
  }
}

/* 공지 - 뉴스형게시판 */
section.review {
  position: relative;
}

section.review .review-bg {
  position: absolute;
  top: 220px;
  left: 0;
  width: 100%;
  height: 50%;
  background: #f7fafc;
}

section.review .module_review {
  border-radius: 100px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.02);
}

section.review .item_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

section.review .item_area > div:nth-child(3) {
  position: relative;
}

section.review .item_area > div:nth-child(3):before {
  content: '';
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  width: 1px;
  height: calc(100% - 160px);
  background: #dbdbdb;
}

section.review .item_area > div:nth-child(3):after {
  content: '';
  display: block;
  position: absolute;
  top: 80px;
  right: 0;
  width: 1px;
  height: calc(100% - 160px);
  background: #dbdbdb;
}

section.review .item_area .more_area {
  background: var(--sky_blue);
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.review .item_area .more_area a {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

section.review .item_area .more_area span {
  display: inline-block;
  width: 39px;
  height: 39px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  margin-top: 30px;
}

section.review .item_area .more_area span i {
  font-size: 1.8rem;
  color: #fff;
}

section.review .item_area .item {
  width: 25%;
  background: #fff;
  padding: 80px 30px;
  text-align: center;
}

section.review .item_area .item p {
  margin-bottom: 30px;
}

section.review .item_area .item p span {
  display: inline-block;
  width: 115px;
  line-height: 1;
  font-size: 1.6rem;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 2rem;
  padding: 1rem 2rem;
}

section.review .item_area .item dt, section.review .item_area .item dd {
  font-size: 1.6rem;
  color: var(--gray);
  line-height: 2.4rem;
  font-weight: 300;
}

section.review .item_area .item dt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 라인수 */
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 2.4rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 980px) {
  section.review .review-bg {
    top: 150px;
  }
}

@media screen and (max-width: 768px) {
  section.review .review-bg {
    top: 130px;
  }
  section.review .module_review {
    border-radius: 50px;
  }
  section.review .item_area > div:nth-child(3):before, section.review .item_area > div:nth-child(3):after {
    height: calc(100% - 80px);
    top: 40px;
  }
  section.review .item_area .more_area {
    width: 20%;
  }
  section.review .item_area .more_area span {
    width: 31px;
    height: 31px;
    margin-top: 20px;
    line-height: 25px;
  }
  section.review .item_area .item {
    width: 26.66%;
    padding: 40px 20px;
  }
  section.review .item_area .item p {
    margin-bottom: 15px;
  }
  section.review .item_area .item p span {
    width: 100px;
  }
  section.review .item_area .item dt {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  section.review .item_area .more_area {
    width: 100%;
    padding: 25px 0;
    text-align: center;
  }
  section.review .item_area .more_area span {
    margin-top: 10px;
  }
  section.review .item_area > div:nth-child(3):before {
    width: calc(100% - 40px);
    height: 1px;
    top: 0;
    left: 20px;
  }
  section.review .item_area > div:nth-child(3):after {
    width: calc(100% - 40px);
    height: 1px;
    top: unset;
    bottom: 0;
    left: 20px;
  }
  section.review .item_area .item {
    width: 100%;
    padding: 30px 20px;
  }
}
