@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700,900");
[class^="con-"],
[class$="-con"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  /*height: 100%;*/
  margin: 0 auto;
}

[class*="con-"]::after {
  clear: both;
}

[class^="box-"],
[class$="-box"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[class^="bx-"],
[class$="-bx"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 톱 버튼 */
.top {
  position: fixed;
  z-index: 500;
  width: 35px;
  height: 35px;
  background-color: #323388;
  right: 10px;
  bottom: 20px;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  line-height: 35px;
  color: white;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.top:hover {
  background-color: #e2645a;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

/*  */
button {
  border: none;
  outline: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::after,
::before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: '';
}

img, iframe, video, object {
  max-width: 100%;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, li {
  list-style-type: none;
}

section {
  position: relative;
  width: 100%;
  height: 100%;
}

section::after {
  clear: both;
}

.bgsize {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* @import url('https://fonts.googleapis.com/css?family=Noto+Serif+KR:200,300'); */
/* @import url('https://fonts.googleapis.com/css?family=Lato:700,900'); */
/* 오버레이 */
/* background-image */
/* 원형 박스 */
/* transform */
/* 쇼핑몰 뷰어 */
input[id="item-1"] + label.label-box {
  left: 0;
}

input[id="item-1"] + label.label-box .pic-box {
  left: 0;
}

/* 텍스트 이펙트 */
.visu-top {
  -webkit-animation: top 1s ease-out 0s both;
          animation: top 1s ease-out 0s both;
}

.visu-top2 {
  -webkit-animation: top2 1s ease-out 0s both;
          animation: top2 1s ease-out 0s both;
}

.visu-top3 {
  -webkit-animation: top3 1s ease-out 0s both;
          animation: top3 1s ease-out 0s both;
}

@-webkit-keyframes top {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes top {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@-webkit-keyframes top2 {
  0% {
    opacity: 0;
    margin-top: -180px;
  }
  100% {
    opacity: 1;
    margin-top: -60px;
  }
}

@keyframes top2 {
  0% {
    opacity: 0;
    margin-top: -180px;
  }
  100% {
    opacity: 1;
    margin-top: -60px;
  }
}

@-webkit-keyframes top3 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

@keyframes top3 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

/* 끝 */
/* 슬라이드 */
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: black;
  opacity: 0.9;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
}

.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}

.sl-wrapper button:hover {
  opacity: 0.7;
}

.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: white;
  font-size: 55px;
}

.sl-wrapper .sl-close:focus {
  outline: none;
}

.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1060;
  color: white;
  font-size: 16px;
}

.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}

.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  background-color: rgba(250, 235, 215, 0);
  display: block;
  z-index: 10060;
}

.sl-wrapper .sl-navigation button.sl-next {
  height: 30px;
  width: 30px;
  right: 5px;
  font-size: 0;
  background-image: url("../img/icon/right-arrow.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sl-wrapper .sl-navigation button.sl-prev {
  height: 30px;
  width: 30px;
  left: 5px;
  font-size: 0;
  background-image: url("../img/icon/left-arrow.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sl-wrapper .sl-navigation button:focus {
  outline: none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    height: 40px;
    width: 40px;
    font-size: 0;
    background-image: url("../img/icon/right-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    height: 40px;
    width: 40px;
    font-size: 0;
    background-image: url("../img/icon/left-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    height: 50px;
    width: 50px;
    font-size: 0;
    background-image: url("../img/icon/right-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    height: 50px;
    width: 50px;
    font-size: 0;
    background-image: url("../img/icon/left-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.sl-wrapper .sl-image {
  position: fixed;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 10000;
}

.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}

.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}

.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #ffffff !important;
  background: #bf9105 !important;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-wrapper .sl-image .sl-download {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: white;
  z-index: 1060;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: -webkit-transform ease 200ms;
  -webkit-transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
  transition: transform ease 200ms, -webkit-transform ease 200ms;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

.content-sec {
  position: relative;
  z-index: 1;
  background-color: white;
}

.content-sec .con-cont {
  padding: 0 10px 10px;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content-sec .con-cont .topnav-box {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content-sec .con-cont .topnav-box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.content-sec .con-cont .topnav-box span {
  font-size: 9px;
  color: #606266 !important;
  margin-top: 5px;
  padding: 0 10px;
}

.content-sec .con-cont .tit-bx h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #2f3033 !important;
  margin-top: 35px;
}

.content-sec .con-cont .items-box {
  width: 100%;
  margin-top: 0px;
}

.content-sec .con-cont .items-box.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content-sec .con-cont .items-box.gallery .tem-box {
  width: 32%;
  height: 300px;
  background-color: white;
  margin-right: 2%;
  margin-bottom: 2%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-sec .con-cont .items-box.gallery .tem-box:nth-of-type(3n) {
  margin-right: 0;
}

.content-sec .con-cont .items-box.gallery .tem-box .top-box {
  width: 100%;
  height: calc(100% - 50px);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #95DC41;
}

.content-sec .con-cont .items-box.gallery .tem-box .top-box > a {
  width: 100%;
  height: 100%;
}

.content-sec .con-cont .items-box.gallery .tem-box .top-box > a > img {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.content-sec .con-cont .items-box.gallery .tem-box .tex-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
}

.content-sec .con-cont .items-box.gallery .tem-box .tex-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
}

.content-sec .con-pagenav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.content-sec .con-pagenav .list-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-sec .con-pagenav .list-nav > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #e1e3e5 !important;
  margin: 1px;
  cursor: pointer;
}

.content-sec .con-pagenav .list-nav > li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
}

.content-sec .con-pagenav .list-nav > li:hover {
  background-color: #e1e3e5 !important;
}

.content-sec .con-pagenav .list-nav > li.active {
  background-color: #939599 !important;
}

.content-sec .con-pagenav .list-nav > li.active span {
  color: #ffffff !important;
}

.content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
  background-color: #17181a !important;
  border: 1px solid #17181a !important;
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .content-sec {
    position: relative;
    z-index: 1;
    background-color: white;
  }
  .content-sec .con-cont {
    padding: 0 10px 10px;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .topnav-box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .topnav-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .con-cont .topnav-box span {
    font-size: 9px;
    color: #606266 !important;
    margin-top: 5px;
    padding: 0 10px;
  }
  .content-sec .con-cont .tit-bx h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #2f3033 !important;
    margin-top: 35px;
  }
  .content-sec .con-cont .items-box {
    width: 100%;
    margin-top: 0px;
  }
  .content-sec .con-cont .items-box.gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .items-box.gallery .tem-box {
    width: 32%;
    height: 240px;
    background-color: white;
    margin-right: 2%;
    margin-bottom: 2%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-cont .items-box.gallery .tem-box:nth-of-type(3n) {
    margin-right: 0;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .top-box {
    width: 100%;
    height: calc(100% - 50px);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #95DC41;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .top-box > a {
    width: 100%;
    height: 100%;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .top-box > a > img {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .tex-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 50px;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .tex-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .content-sec .con-pagenav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
  }
  .content-sec .con-pagenav .list-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-pagenav .list-nav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .content-sec .con-pagenav .list-nav > li > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .content-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}

@media (max-width: 575.99px) {
  .content-sec {
    position: relative;
    z-index: 1;
    background-color: white;
  }
  .content-sec .con-cont {
    padding: 0 10px 10px;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .topnav-box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .topnav-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .con-cont .topnav-box span {
    font-size: 9px;
    color: #606266 !important;
    margin-top: 5px;
    padding: 0 10px;
  }
  .content-sec .con-cont .tit-bx h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #2f3033 !important;
    margin-top: 35px;
  }
  .content-sec .con-cont .items-box {
    width: 100%;
    margin-top: 0px;
  }
  .content-sec .con-cont .items-box.gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .items-box.gallery .tem-box {
    width: 49%;
    height: 240px;
    background-color: white;
    margin-right: 2%;
    margin-bottom: 2%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-cont .items-box.gallery .tem-box:nth-of-type(3n) {
    margin-right: 2%;
  }
  .content-sec .con-cont .items-box.gallery .tem-box:nth-of-type(2n) {
    margin-right: 0;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .top-box {
    width: 100%;
    height: calc(100% - 50px);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #95DC41;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .top-box > a {
    width: 100%;
    height: 100%;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .top-box > a > img {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .tex-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 50px;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .tex-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .content-sec .con-pagenav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
  }
  .content-sec .con-pagenav .list-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-pagenav .list-nav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .content-sec .con-pagenav .list-nav > li > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .content-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}

@media (max-width: 419.99px) {
  .content-sec {
    position: relative;
    z-index: 1;
    background-color: white;
  }
  .content-sec .con-cont {
    padding: 0 10px 10px;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .topnav-box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .topnav-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .con-cont .topnav-box span {
    font-size: 9px;
    color: #606266 !important;
    margin-top: 5px;
    padding: 0 10px;
  }
  .content-sec .con-cont .tit-bx h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #2f3033 !important;
    margin-top: 35px;
  }
  .content-sec .con-cont .items-box {
    width: 100%;
    margin-top: 0px;
  }
  .content-sec .con-cont .items-box.gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .items-box.gallery .tem-box {
    width: 49%;
    height: 200px;
    background-color: white;
    margin-right: 2%;
    margin-bottom: 2%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-cont .items-box.gallery .tem-box:nth-of-type(3n) {
    margin-right: 2%;
  }
  .content-sec .con-cont .items-box.gallery .tem-box:nth-of-type(2n) {
    margin-right: 0;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .top-box {
    width: 100%;
    height: calc(100% - 50px);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #95DC41;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .top-box > a {
    width: 100%;
    height: 100%;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .top-box > a > img {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .tex-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 50px;
  }
  .content-sec .con-cont .items-box.gallery .tem-box .tex-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .content-sec .con-pagenav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
  }
  .content-sec .con-pagenav .list-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-pagenav .list-nav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .content-sec .con-pagenav .list-nav > li > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .content-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}
/*# sourceMappingURL=gallery.css.map */