@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
[class^="con-"],
[class$="-con"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

[class^="bcon-"],
[class$="-bcon"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1400px;
  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: '';
}

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=Lato:700,900'); */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.scroll-none {
  overflow-y: hidden;
  -webkit-transition: all 1s ease 1s;
  transition: all 1s ease 1s;
}

body.scroll-auto {
  overflow-y: auto;
  -webkit-transition: all 2s ease 1s;
  transition: all 2s ease 1s;
}

/* 오버레이 */
body.modal-open {
  overflow: hidden;
}

body.scbar {
  -ms-overflow-style: none;
}

body.scbar::-webkit-scrollbar {
  display: none !important;
}

.scroll-icon {
  position: absolute;
  z-index: 2000;
  cursor: pointer;
}

.scroll-icon.down {
  left: 50%;
  top: auto;
  bottom: 50px;
}

.scroll-icon.up {
  left: 50%;
  top: 50px;
  bottom: auto;
}

.scroll-icon .icon img {
  width: calc(53px * 0.2);
  height: calc(100px * 0.2);
  -webkit-animation: arrowicon 2s ease infinite;
          animation: arrowicon 2s ease infinite;
}

/* background-image */
/* 원형 박스 */
/* transform */
/* 쇼핑몰 뷰어 */
input[id="item-1"] + label.label-box {
  left: 0;
}

input[id="item-1"] + label.label-box .pic-box {
  left: 0;
}

/* 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;
}

@-webkit-keyframes top-down {
  0% {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes top-down {
  0% {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes bot-up {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bot-up {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes left-in {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes left-in {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes right-in {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes right-in {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes zoomout {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomout {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.main-visu-sec {
  margin-top: 80px;
  position: relative;
  height: 700px;
}

.main-visu-sec.vdn {
  margin-top: 80px;
  -webkit-transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
  transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
}

.main-visu-sec.vup {
  margin-top: 105px;
  -webkit-transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
  transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
}

.main-visu-sec #slider {
  width: 100%;
  height: 700px;
  position: absolute;
  overflow: hidden;
  float: left;
  padding: 0;
}

.main-visu-sec #slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.main-visu-sec #slider .slide .container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow: hidden;
}

.main-visu-sec #slider .slide .container .left-over {
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: color;
  -webkit-animation: fadein 10s ease forwards 1s;
          animation: fadein 10s ease forwards 1s;
}

.main-visu-sec #slider .slide .container div {
  position: absolute;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-visu-sec #slider .slide .con-content .content {
  position: absolute;
  z-index: 99;
  width: 100%;
}

.main-visu-sec #slider .slide .con-content .content.three-content {
  width: 100%;
  height: 900px;
}

.main-visu-sec #slider .slide .con-content .content.three-content h1 {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  opacity: 0;
  -webkit-animation: left-in 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1.5s;
          animation: left-in 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1.5s;
}

.main-visu-sec #slider .slide .con-content .content.three-content h3.tit-h3 {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  opacity: 0;
  -webkit-animation: left-in 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1.8s;
          animation: left-in 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1.8s;
}

.main-visu-sec #slider .slide .con-content .content.three-content .visu-btn__box {
  cursor: pointer;
}

.main-visu-sec #slider .slide .con-content .content.three-content .visu-btn__box--one {
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  opacity: 0;
  -webkit-animation: top-down 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1s;
          animation: top-down 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1s;
}

.main-visu-sec #slider .slide .con-content .content.three-content .visu-btn__box--two {
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  opacity: 0;
  -webkit-animation: bot-up 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1s;
          animation: bot-up 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1s;
}

.main-visu-sec #slider .slide .con-content .content.three-content .visu-btn__box--three {
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  opacity: 0;
  -webkit-animation: top-down 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1s;
          animation: top-down 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1s;
}

.main-visu-sec #slider .slide .con-content .content.three-content .visu-btn__box--four {
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  opacity: 0;
  -webkit-animation: bot-up 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1s;
          animation: bot-up 1.7s cubic-bezier(0.09, 0.69, 0.03, 0.97) forwards 1s;
}

.main-visu-sec #slider .slide .con-content .content h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -380px;
  margin-top: -190px;
  font-size: 46px;
  font-weight: 500;
  line-height: 46px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
}

.main-visu-sec #slider .slide .con-content .content h3.tit-h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -380px;
  margin-top: -130px;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
}

.main-visu-sec #slider .slide .con-content .content .visu-btn {
  position: absolute;
  width: 760px;
  height: 150px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  left: 50%;
  top: 50%;
  margin-left: -380px;
  margin-top: -75px;
}

.main-visu-sec #slider .slide .con-content .content .visu-btn__box {
  overflow: hidden;
  width: calc(25% - 4px);
  height: 100%;
  background-color: #fff;
  margin: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-visu-sec #slider .slide .con-content .content .visu-btn__box::after {
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-visu-sec #slider .slide .con-content .content .visu-btn__box img {
  width: calc(100px * 0.6);
  height: calc(100px * 0.6);
}

.main-visu-sec #slider .slide .con-content .content .visu-btn__box h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

.main-visu-sec #slider .slide .con-content .content .visu-btn__box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

.main-visu-sec #slider .slide .con-content .content .visu-btn.one-effect .visu-btn__box--two::after, .main-visu-sec #slider .slide .con-content .content .visu-btn.one-effect .visu-btn__box--three::after, .main-visu-sec #slider .slide .con-content .content .visu-btn.one-effect .visu-btn__box--four::after {
  opacity: 0.7;
}

.main-visu-sec #slider .slide .con-content .content .visu-btn.two-effect .visu-btn__box--one::after, .main-visu-sec #slider .slide .con-content .content .visu-btn.two-effect .visu-btn__box--three::after, .main-visu-sec #slider .slide .con-content .content .visu-btn.two-effect .visu-btn__box--four::after {
  opacity: 0.7;
}

.main-visu-sec #slider .slide .con-content .content .visu-btn.three-effect .visu-btn__box--two::after, .main-visu-sec #slider .slide .con-content .content .visu-btn.three-effect .visu-btn__box--one::after, .main-visu-sec #slider .slide .con-content .content .visu-btn.three-effect .visu-btn__box--four::after {
  opacity: 0.7;
}

.main-visu-sec #slider .slide .con-content .content .visu-btn.four-effect .visu-btn__box--two::after, .main-visu-sec #slider .slide .con-content .content .visu-btn.four-effect .visu-btn__box--three::after, .main-visu-sec #slider .slide .con-content .content .visu-btn.four-effect .visu-btn__box--one::after {
  opacity: 0.7;
}

.main-visu-sec #prev, .main-visu-sec #next {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 1000;
  background: #141414;
  height: 50px;
  width: 50px;
  top: 50%;
  margin-top: -25px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.main-visu-sec #next {
  opacity: 0;
  right: 0;
}

.main-visu-sec #next .arrow-right {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 13px solid #ffffff;
  position: relative;
}

.main-visu-sec:hover #prev, .main-visu-sec:hover #next {
  opacity: 1;
}

.main-visu-sec #prev {
  opacity: 0;
  left: 0;
}

.main-visu-sec #prev .arrow-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 13px solid #ffffff;
  position: relative;
}

#slider .slide#three .container .three-bg {
  background-image: url("../imgs/visu-3.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: zoomout 3.5s ease forwards;
          animation: zoomout 3.5s ease forwards;
}

#slider .slide#two .container .two-bg {
  background-image: url("../imgs/visu-2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: zoomout 3.5s ease forwards;
          animation: zoomout 3.5s ease forwards;
}

#slider .slide#one .container .one-bg {
  background-image: url("../imgs/visu-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: zoomout 3.5s ease forwards;
          animation: zoomout 3.5s ease forwards;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .main-visu-sec {
    margin-top: 80px;
    height: 550px;
  }
  .main-visu-sec.vdn {
    margin-top: 80px;
  }
  .main-visu-sec.vup {
    margin-top: 105px;
  }
  .main-visu-sec #slider {
    height: 550px;
  }
  .main-visu-sec #slider .slide .con-content .content h1 {
    left: 50%;
    top: 50%;
    margin-left: -380px;
    margin-top: -300px;
    font-size: 46px;
    font-weight: 500;
    line-height: 46px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content h3.tit-h3 {
    left: 50%;
    top: 50%;
    margin-left: -380px;
    margin-top: -240px;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn {
    width: 700px;
    height: 140px;
    margin: 0 auto;
    left: 50%;
    top: 50%;
    margin-left: -380px;
    margin-top: -155px;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box {
    width: calc(25% - 4px);
    height: 100%;
    margin: 2px;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box img {
    width: calc(100px * 0.45);
    height: calc(100px * 0.45);
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .main-visu-sec #prev, .main-visu-sec #next {
    background: #141414;
    height: 50px;
    width: 50px;
    top: 50%;
    margin-top: -25px;
  }
  .main-visu-sec #next .arrow-right {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 13px solid #ffffff;
  }
  .main-visu-sec #prev .arrow-left {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 13px solid #ffffff;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .main-visu-sec {
    margin-top: 80px;
    height: 450px;
  }
  .main-visu-sec.vdn {
    margin-top: 80px;
  }
  .main-visu-sec.vup {
    margin-top: 105px;
  }
  .main-visu-sec #slider {
    height: 450px;
  }
  .main-visu-sec #slider .slide .con-content .content h1 {
    left: 10%;
    top: 120px;
    margin-left: 0;
    margin-top: 0;
    font-size: 34px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content h3.tit-h3 {
    left: 10%;
    top: 160px;
    margin-left: 0;
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn {
    width: 550px;
    height: 110px;
    margin: 0 auto;
    left: 10%;
    top: 220px;
    margin-left: 0;
    margin-top: 0;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box {
    width: calc(25% - 4px);
    height: 100%;
    margin: 2px;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box img {
    width: calc(100px * 0.35);
    height: calc(100px * 0.35);
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box h3 {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .main-visu-sec #prev, .main-visu-sec #next {
    background: #141414;
    height: 50px;
    width: 50px;
    top: 50%;
    margin-top: -25px;
  }
  .main-visu-sec #next .arrow-right {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 13px solid #ffffff;
  }
  .main-visu-sec #prev .arrow-left {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 13px solid #ffffff;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .main-visu-sec {
    margin-top: 40px;
    height: 350px;
  }
  .main-visu-sec.vdn {
    margin-top: 40px;
  }
  .main-visu-sec.vup {
    margin-top: 40px;
  }
  .main-visu-sec #slider {
    height: 350px;
  }
  .main-visu-sec #slider .slide .con-content .content h1 {
    left: 5%;
    top: 80px;
    margin-left: 0;
    margin-top: 0;
    font-size: 34px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content h3.tit-h3 {
    left: 5%;
    top: 120px;
    margin-left: 0;
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn {
    width: 510px;
    height: 110px;
    margin: 0 auto;
    left: 5%;
    top: 180px;
    margin-left: 0;
    margin-top: 0;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box {
    width: calc(25% - 4px);
    height: 100%;
    margin: 2px;
    padding: 10px;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box img {
    width: calc(100px * 0.28);
    height: calc(100px * 0.28);
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: center;
  }
  .main-visu-sec #prev, .main-visu-sec #next {
    background: #141414;
    height: 50px;
    width: 50px;
    top: 50%;
    margin-top: -25px;
  }
  .main-visu-sec #next .arrow-right {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 13px solid #ffffff;
  }
  .main-visu-sec #prev .arrow-left {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 13px solid #ffffff;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .main-visu-sec {
    margin-top: 40px;
    height: 350px;
  }
  .main-visu-sec.vdn {
    margin-top: 40px;
  }
  .main-visu-sec.vup {
    margin-top: 40px;
  }
  .main-visu-sec #slider {
    height: 350px;
  }
  .main-visu-sec #slider .slide .con-content .content h1 {
    left: 5%;
    top: 40px;
    margin-left: 0;
    margin-top: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content h3.tit-h3 {
    left: 5%;
    top: 70px;
    margin-left: 0;
    margin-top: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn {
    width: 310px;
    height: 90px;
    margin: 0 auto;
    left: 5%;
    top: 130px;
    margin-left: 0;
    margin-top: 0;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box {
    width: calc(50% - 7px);
    height: 100%;
    margin: 2px;
    padding: 10px;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box img {
    width: calc(100px * 0.25);
    height: calc(100px * 0.25);
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: center;
  }
  .main-visu-sec #prev, .main-visu-sec #next {
    background: #141414;
    height: 50px;
    width: 50px;
    top: 50%;
    margin-top: -25px;
  }
  .main-visu-sec #next .arrow-right {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 13px solid #ffffff;
  }
  .main-visu-sec #prev .arrow-left {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 13px solid #ffffff;
  }
}

@media (max-width: 419.99px) {
  .main-visu-sec {
    margin-top: 40px;
    height: 330px;
  }
  .main-visu-sec.vdn {
    margin-top: 40px;
  }
  .main-visu-sec.vup {
    margin-top: 40px;
  }
  .main-visu-sec #slider {
    height: 330px;
  }
  .main-visu-sec #slider .slide .con-content .content h1 {
    left: 5%;
    top: 40px;
    margin-left: 0;
    margin-top: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content h3.tit-h3 {
    left: 5%;
    top: 70px;
    margin-left: 0;
    margin-top: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn {
    width: 310px;
    height: 80px;
    margin: 0 auto;
    left: 5%;
    top: 130px;
    margin-left: 0;
    margin-top: 0;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box {
    width: calc(50% - 7px);
    height: 100%;
    margin: 2px;
    padding: 10px;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box img {
    width: calc(100px * 0.25);
    height: calc(100px * 0.25);
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .main-visu-sec #slider .slide .con-content .content .visu-btn__box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: center;
  }
  .main-visu-sec #prev, .main-visu-sec #next {
    background: #141414;
    height: 50px;
    width: 50px;
    top: 50%;
    margin-top: -25px;
  }
  .main-visu-sec #next .arrow-right {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 13px solid #ffffff;
  }
  .main-visu-sec #prev .arrow-left {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 13px solid #ffffff;
  }
}

.header {
  overflow: hidden;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
  transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
}

.header .logo-sec {
  width: 100%;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #575348;
}

.header .logo-sec .con-logobox {
  padding-right: 50px;
}

.header .logo-sec .con-logobox .left-top-box {
  width: 50%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .logo-sec .con-logobox .left-top-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  height: 100%;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
}

.header .logo-sec .con-logobox .right-top-box {
  width: 50%;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header .logo-sec .con-logobox .right-top-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
}

.header .logo-sec .con-logobox .right-top-box .contac-bt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  background-color: transparent;
  cursor: pointer;
}

.header .head {
  z-index: 1000;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #f5f3ed;
  background-color: white;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.header .head .con-header {
  height: 80px;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.header .head .con-header .header-box {
  width: 100%;
  height: 100%;
}

.header .head .con-header .header-box .logo-bx {
  width: 30%;
  height: 100%;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  cursor: pointer;
}

.header .head .con-header .header-box .logo-bx img {
  width: calc(241px * 0.4);
  height: calc(74px * 0.4);
}

.header .head .con-header .header-box .menu-bx {
  width: 70%;
  background-color: #fff;
}

.header .head .con-header .header-box .menu-bx ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.header .head .con-header .header-box .menu-bx ul .header-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20%;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  cursor: pointer;
}

.header .head .con-header .header-box .menu-bx ul .header-li.mover {
  background-color: #312f2d;
  color: #ffffff;
}

.header .head .con-header .header-box .menu-bx ul .header-li.open {
  background-color: #53504d;
}

.header.up {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: -25px;
}

.header.up .con-header {
  height: 60px;
}

.header.down {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
}

.header.down .con-header {
  height: 80px;
}

.headersub-sec {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 5000;
  top: 105px;
  left: 0;
  right: 0;
  background-color: #f8f7f7;
  -webkit-transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
  transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
}

.headersub-sec.up {
  top: 60px;
}

.headersub-sec.down {
  top: 105px;
}

.headersub-sec .con-headersub {
  margin-top: -350px;
  -webkit-transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
  transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
}

.headersub-sec .con-headersub .headersub-box {
  width: 100%;
}

.headersub-sec .con-headersub .headersub-box .left-cont-bx {
  width: 30%;
  padding: 20px;
}

.headersub-sec .con-headersub .headersub-box .left-cont-bx .bg-img-bx {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.headersub-sec .con-headersub .headersub-box .right-menu-bx {
  width: 70%;
}

.headersub-sec .con-headersub .headersub-box .right-menu-bx ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.headersub-sec .con-headersub .headersub-box .right-menu-bx ul .headersub-li {
  width: 20%;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.headersub-sec .con-headersub .headersub-box .right-menu-bx ul .headersub-li .sub-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 20px 0 30px;
}

.headersub-sec .con-headersub .headersub-box .right-menu-bx ul .headersub-li .sub-ul .sub-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 32px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  cursor: pointer;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.headersub-sec .con-headersub .headersub-box .right-menu-bx ul .headersub-li .sub-ul .sub-li:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.headersub-sec .con-headersub .headersub-box .right-menu-bx ul .headersub-li.mover {
  background-color: #53504d;
}

.headersub-sec .con-headersub .headersub-box .right-menu-bx ul .headersub-li.mover .sub-ul .sub-li {
  color: #ffffff;
}

.headersub-sec .con-headersub.open-box {
  margin-top: 0px;
}

.headersub-sec .con-headersub.close-box {
  margin-top: -350px;
}

.headersub-sec .con-headersub.subopen {
  margin-top: 0;
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .headersub-sec {
    top: 105px;
  }
  .headersub-sec.up {
    top: 60px;
  }
  .headersub-sec.down {
    top: 105px;
  }
  .headersub-sec .con-headersub {
    margin-top: -350px;
  }
  .headersub-sec .con-headersub .headersub-box {
    width: 100%;
  }
  .headersub-sec .con-headersub .headersub-box .left-cont-bx {
    width: 30%;
    padding: 20px;
    -webkit-transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
    transition: all 0.8s cubic-bezier(0.05, 0.68, 0.16, 1);
  }
  .headersub-sec .con-headersub .headersub-box .right-menu-bx {
    width: 70%;
  }
  .headersub-sec .con-headersub .headersub-box .right-menu-bx ul .headersub-li {
    width: 20%;
  }
  .headersub-sec .con-headersub .headersub-box .right-menu-bx ul .headersub-li .sub-ul {
    padding: 20px 0 30px;
  }
  .headersub-sec .con-headersub .headersub-box .right-menu-bx ul .headersub-li .sub-ul .sub-li {
    font-size: 14px;
    font-weight: 300;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .headersub-sec .con-headersub.open-box {
    margin-top: 0px;
  }
  .headersub-sec .con-headersub.close-box {
    margin-top: -350px;
  }
  .headersub-sec .con-headersub.subopen {
    margin-top: 0;
  }
  .headersub-sec.note-head .con-headersub .headersub-box .left-cont-bx {
    width: 0;
    padding: 0;
    margin: 0;
  }
  .headersub-sec.note-head .con-headersub .headersub-box .right-menu-bx {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header, .quick-bt, .headersub-sec {
    display: none;
  }
}

body.hide {
  overflow: hidden;
}

.momenu-sec {
  position: fixed;
  z-index: 2000;
  height: auto;
}

.momenu-sec .momenu-top-bg {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  background-color: #312f2d;
}

.momenu-sec .momenu-logo {
  position: fixed;
  top: 9px;
  left: 20px;
}

.momenu-sec .momenu-logo img {
  width: calc(241px * 0.3);
  height: calc(74px * 0.3);
}

.mo-over-sec {
  width: 100%;
  overflow: hidden;
}

.mo-over-sec .momenu-bt {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 10px;
  width: 50px;
  height: 40px;
  cursor: pointer;
}

.mo-over-sec .momenu-bt span {
  position: absolute;
  width: 35px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.mo-over-sec .momenu-bt span.mospan-1 {
  margin-top: -8px;
}

.mo-over-sec .momenu-bt span.mospan-2 {
  margin-top: 0;
}

.mo-over-sec .momenu-bt span.mospan-3 {
  margin-top: 8px;
}

.mo-over-sec .momenu-bt.open {
  right: 30px;
}

.mo-over-sec .momenu-bt.open span.mospan-1 {
  margin-top: 0;
  margin-left: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.mo-over-sec .momenu-bt.open span.mospan-2 {
  margin-top: 0;
  margin-left: 0;
  opacity: 0;
}

.mo-over-sec .momenu-bt.open span.mospan-3 {
  margin-top: 0;
  margin-left: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.mo-over-sec .over-bg {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #312f2d;
  margin-left: -110%;
  -webkit-transition: all 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: all 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.mo-over-sec .over-bg .mo-box {
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 200px;
  left: 50%;
  top: 50%;
  margin-left: -110%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: all 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.mo-over-sec .over-bg .mo-box .mmo-menubox {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #F4F7F6;
}

.mo-over-sec .over-bg .mo-box .mmo-menubox dl {
  width: 100%;
}

.mo-over-sec .over-bg .mo-box .mmo-menubox dl dt {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  background-color: #53504d;
  cursor: pointer;
}

.mo-over-sec .over-bg .mo-box .mmo-menubox dl dt.modt-2 {
  background-color: #888482;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mo-over-sec .over-bg .mo-box .mmo-menubox dl dt.modt-2:hover {
  background-color: #8c8582;
}

.mo-over-sec .over-bg .mo-box .mmo-menubox dl dd {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #e1e3e5;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mo-over-sec .over-bg .mo-box .mmo-menubox dl dd:hover {
  background-color: #e1e3e5;
}

.mo-over-sec .over-bg .mo-box .smo {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: -0%;
  background-color: #F4F7F6;
}

.mo-over-sec .over-bg .mo-box .smo dl {
  width: 100%;
}

.mo-over-sec .over-bg .mo-box .smo dl dt {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  background-color: #53504d;
}

.mo-over-sec .over-bg .mo-box .smo dl dt.modt-2 {
  cursor: pointer;
  background-color: #888482;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mo-over-sec .over-bg .mo-box .smo dl dt.modt-2:hover {
  background-color: #8c8582;
}

.mo-over-sec .over-bg .mo-box .smo dl dd {
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: center;
  padding: 9px 0;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mo-over-sec .over-bg .mo-box .smo dl dd:hover {
  background-color: #e1e3e5;
}

.mo-over-sec .over-bg.open {
  margin-left: 0;
}

.mo-over-sec .over-bg.open .mo-box {
  margin-left: 0;
  -webkit-transition: all 1.3s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: all 1.3s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
}

@media (min-width: 768px) {
  .momenu-sec, .mo-over-sec {
    display: none;
  }
}

.foot-sec.item_open {
  display: none;
}

.foot-sec .foot-map {
  background-color: #fff;
  border-top: 1px solid #edf3f1;
  border-bottom: 1px solid #edf3f1;
}

.foot-sec .foot-map .con-map {
  height: 50px;
}

.foot-sec .foot-map .con-map .left-box {
  width: 50%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.foot-sec .foot-map .con-map .left-box p {
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

.foot-sec .foot-map .con-map .left-box p span {
  font-weight: 500;
}

.foot-sec .foot-map .con-map .right-box {
  width: 50%;
  height: 100%;
}

.foot-sec .foot-map .con-map .right-box ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.foot-sec .foot-map .con-map .right-box ul li.tmap {
  width: 20%;
}

.foot-sec .foot-map .con-map .right-box ul li.tmap a.topmap-link-bx {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

.foot-sec .foot-add {
  background-color: #fff;
}

.foot-sec .foot-add .con-add {
  padding: 30px 0;
}

.foot-sec .foot-add .con-add .left-add-box {
  width: 40%;
}

.foot-sec .foot-add .con-add .left-add-box dl dd.add-dd {
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266;
}

.foot-sec .foot-add .con-add .center-add-box {
  width: 40%;
}

.foot-sec .foot-add .con-add .center-add-box dl dd.add-dd {
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266;
}

.foot-sec .foot-add .con-add .right-add-box {
  width: 20%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.foot-sec .foot-add .con-add .right-add-box img {
  width: calc(241px * 0.5);
  height: calc(74px * 0.5);
}

.foot-sec .foot-add .con-add .right-add-box ul {
  margin-top: 30px;
}

.foot-sec .foot-add .con-add .right-add-box ul li.add-li {
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266;
  text-align: right;
}

.foot-sec .foot-copy {
  border-top: 1px solid #edf3f1;
  background-color: #fff;
}

.foot-sec .foot-copy .con-copy {
  height: 45px;
  -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: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266;
  text-align: center;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .foot-sec .foot-map {
    background-color: #fff;
    border-top: 1px solid #edf3f1;
    border-bottom: 1px solid #edf3f1;
  }
  .foot-sec .foot-map .con-map {
    height: 50px;
    padding: 0 10px;
  }
  .foot-sec .foot-map .con-map .left-box {
    width: 50%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .foot-sec .foot-map .con-map .left-box p {
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-map .con-map .left-box p span {
    font-weight: 500;
  }
  .foot-sec .foot-map .con-map .right-box {
    width: 50%;
    height: 100%;
  }
  .foot-sec .foot-map .con-map .right-box ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap {
    width: 20%;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap a.topmap-link-bx {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-add {
    background-color: #fff;
  }
  .foot-sec .foot-add .con-add {
    padding: 30px 10px;
  }
  .foot-sec .foot-add .con-add .left-add-box {
    width: 40%;
  }
  .foot-sec .foot-add .con-add .left-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-add .con-add .center-add-box {
    width: 40%;
  }
  .foot-sec .foot-add .con-add .center-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-add .con-add .right-add-box {
    width: 20%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .foot-sec .foot-add .con-add .right-add-box img {
    width: calc(241px * 0.5);
    height: calc(74px * 0.5);
  }
  .foot-sec .foot-add .con-add .right-add-box ul {
    margin-top: 30px;
  }
  .foot-sec .foot-add .con-add .right-add-box ul li.add-li {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: right;
  }
  .foot-sec .foot-copy {
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-copy .con-copy {
    height: 45px;
    -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: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .foot-sec .foot-map {
    background-color: #fff;
    border-top: 1px solid #edf3f1;
    border-bottom: 1px solid #edf3f1;
  }
  .foot-sec .foot-map .con-map {
    height: auto;
    padding: 0 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .foot-sec .foot-map .con-map .left-box {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #edf3f1;
  }
  .foot-sec .foot-map .con-map .left-box p {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 15px 0;
    text-align: center;
  }
  .foot-sec .foot-map .con-map .left-box p span {
    font-weight: 500;
  }
  .foot-sec .foot-map .con-map .right-box {
    width: 100%;
    height: 100%;
  }
  .foot-sec .foot-map .con-map .right-box ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap {
    width: 20%;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap a.topmap-link-bx {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-add {
    background-color: #fff;
  }
  .foot-sec .foot-add .con-add {
    padding: 30px 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .foot-sec .foot-add .con-add .left-add-box {
    width: 50%;
    padding-left: 10px;
  }
  .foot-sec .foot-add .con-add .left-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-add .con-add .center-add-box {
    width: 50%;
  }
  .foot-sec .foot-add .con-add .center-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-add .con-add .right-add-box {
    width: 100%;
    padding-top: 30px;
    padding-left: 10px;
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-add .con-add .right-add-box img {
    width: calc(241px * 0.5);
    height: calc(74px * 0.5);
    margin-right: 20px;
  }
  .foot-sec .foot-add .con-add .right-add-box ul {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .foot-add .con-add .right-add-box ul li.add-li {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    margin: 0 10px;
  }
  .foot-sec .foot-copy {
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-copy .con-copy {
    height: 45px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .foot-sec .foot-map {
    background-color: #fff;
    border-top: 1px solid #edf3f1;
    border-bottom: 1px solid #edf3f1;
  }
  .foot-sec .foot-map .con-map {
    height: auto;
    padding: 0 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .foot-sec .foot-map .con-map .left-box {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #edf3f1;
  }
  .foot-sec .foot-map .con-map .left-box p {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 15px 0;
    text-align: center;
  }
  .foot-sec .foot-map .con-map .left-box p span {
    font-weight: 500;
  }
  .foot-sec .foot-map .con-map .right-box {
    width: 100%;
    height: 100%;
  }
  .foot-sec .foot-map .con-map .right-box ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap {
    width: 20%;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap a.topmap-link-bx {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-add {
    background-color: #fff;
  }
  .foot-sec .foot-add .con-add {
    padding: 30px 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .foot-sec .foot-add .con-add .left-add-box {
    width: 100%;
    padding-left: 0px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 20px;
  }
  .foot-sec .foot-add .con-add .left-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
  .foot-sec .foot-add .con-add .center-add-box {
    width: 100%;
    padding-top: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-add .con-add .center-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
  .foot-sec .foot-add .con-add .right-add-box {
    width: 100%;
    padding-top: 30px;
    padding-left: 10px;
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-add .con-add .right-add-box img {
    width: calc(241px * 0.5);
    height: calc(74px * 0.5);
    margin-right: 20px;
  }
  .foot-sec .foot-add .con-add .right-add-box ul {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .foot-add .con-add .right-add-box ul li.add-li {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    margin: 0 10px;
  }
  .foot-sec .foot-copy {
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-copy .con-copy {
    height: 45px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .foot-sec .foot-map {
    background-color: #fff;
    border-top: 1px solid #edf3f1;
    border-bottom: 1px solid #edf3f1;
  }
  .foot-sec .foot-map .con-map {
    height: auto;
    padding: 0 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .foot-sec .foot-map .con-map .left-box {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #edf3f1;
  }
  .foot-sec .foot-map .con-map .left-box p {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 15px 0;
    text-align: center;
  }
  .foot-sec .foot-map .con-map .left-box p span {
    font-weight: 500;
  }
  .foot-sec .foot-map .con-map .right-box {
    width: 100%;
    height: 100%;
  }
  .foot-sec .foot-map .con-map .right-box ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #f2f2f5;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap {
    width: calc(100% / 3);
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap a.topmap-link-bx {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap:nth-of-type(1), .foot-sec .foot-map .con-map .right-box ul li.tmap:nth-of-type(2), .foot-sec .foot-map .con-map .right-box ul li.tmap:nth-of-type(3) {
    border-bottom: 1px solid #ffffff;
  }
  .foot-sec .foot-add {
    background-color: #fff;
  }
  .foot-sec .foot-add .con-add {
    padding: 30px 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .foot-sec .foot-add .con-add .left-add-box {
    width: 100%;
    padding-left: 0px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 20px;
  }
  .foot-sec .foot-add .con-add .left-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
  .foot-sec .foot-add .con-add .center-add-box {
    width: 100%;
    padding-top: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-add .con-add .center-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
  .foot-sec .foot-add .con-add .right-add-box {
    width: 100%;
    padding-top: 30px;
    padding-left: 10px;
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-add .con-add .right-add-box img {
    width: calc(241px * 0.5);
    height: calc(74px * 0.5);
    margin-right: 20px;
  }
  .foot-sec .foot-add .con-add .right-add-box ul {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .foot-add .con-add .right-add-box ul li.add-li {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    margin: 0 10px;
  }
  .foot-sec .foot-copy {
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-copy .con-copy {
    height: 45px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
}

@media (max-width: 419.99px) {
  .foot-sec .foot-map {
    background-color: #fff;
    border-top: 1px solid #edf3f1;
    border-bottom: 1px solid #edf3f1;
  }
  .foot-sec .foot-map .con-map {
    height: auto;
    padding: 0 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .foot-sec .foot-map .con-map .left-box {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #edf3f1;
  }
  .foot-sec .foot-map .con-map .left-box p {
    width: 240px;
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 15px 0;
    text-align: center;
  }
  .foot-sec .foot-map .con-map .left-box p span {
    font-weight: 500;
  }
  .foot-sec .foot-map .con-map .right-box {
    width: 100%;
    height: 100%;
  }
  .foot-sec .foot-map .con-map .right-box ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #f2f2f5;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap {
    width: calc(100% / 3);
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap a.topmap-link-bx {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .foot-sec .foot-map .con-map .right-box ul li.tmap:nth-of-type(1), .foot-sec .foot-map .con-map .right-box ul li.tmap:nth-of-type(2), .foot-sec .foot-map .con-map .right-box ul li.tmap:nth-of-type(3) {
    border-bottom: 1px solid #ffffff;
  }
  .foot-sec .foot-add {
    background-color: #fff;
  }
  .foot-sec .foot-add .con-add {
    padding: 30px 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .foot-sec .foot-add .con-add .left-add-box {
    width: 100%;
    padding-left: 0px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 20px;
  }
  .foot-sec .foot-add .con-add .left-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    letter-spacing: -0.5px;
  }
  .foot-sec .foot-add .con-add .center-add-box {
    width: 100%;
    padding-top: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-add .con-add .center-add-box dl dd.add-dd {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    letter-spacing: -0.5px;
  }
  .foot-sec .foot-add .con-add .right-add-box {
    width: 100%;
    padding-top: 30px;
    padding-left: 10px;
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid #edf3f1;
  }
  .foot-sec .foot-add .con-add .right-add-box img {
    width: calc(241px * 0.5);
    height: calc(74px * 0.5);
    margin-right: 0;
  }
  .foot-sec .foot-add .con-add .right-add-box ul {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .foot-add .con-add .right-add-box ul li.add-li {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    margin: 0 10px;
  }
  .foot-sec .foot-copy {
    border-top: 1px solid #edf3f1;
    padding: 7px 0;
  }
  .foot-sec .foot-copy .con-copy {
    width: 250px;
    height: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
}

.quick-bt {
  z-index: 100;
  position: fixed;
  right: 10px;
  top: 120px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.quick-bt .quick-open-bt {
  position: absolute;
  right: -100px;
  top: calc(50% - (114px * 0.4) / 2);
  padding: 7px 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.quick-bt .quick-open-bt img {
  width: calc(50px * 0.4);
  height: calc(114px * 0.4);
}

.quick-bt .qbt-box ul {
  border: 1px solid #f2f2f5;
}

.quick-bt .qbt-box ul li.qbt a.link-bx {
  width: 80px;
  height: 75px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: center;
  border-bottom: 1px solid #f2f2f5;
}

.quick-bt .qbt-box ul li.qbt a.link-bx img {
  width: calc(70px * 0.4);
  height: calc(70px * 0.4);
  margin-bottom: 7px;
}

.quick-bt .qbt-box ul li.qbt a.link-bx p {
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

.quick-bt .qbt-box ul li.qbt:nth-of-type(1) a.link-bx {
  height: 100px;
}

.quick-bt .qbt-box ul li.qbt:nth-of-type(4) a.link-bx {
  border-bottom: none;
}

.quick-bt.up {
  top: 70px;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .quick-bt {
    right: 5px;
    top: 110px;
  }
  .quick-bt .quick-open-bt {
    right: -100px;
    top: calc(50% - (114px * 0.4) / 2);
    padding: 7px 10px;
  }
  .quick-bt .quick-open-bt img {
    width: calc(50px * 0.4);
    height: calc(114px * 0.4);
  }
  .quick-bt .qbt-box ul {
    border: 1px solid #f2f2f5;
  }
  .quick-bt .qbt-box ul li.qbt a.link-bx {
    width: 80px;
    height: 75px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .quick-bt .qbt-box ul li.qbt a.link-bx img {
    width: calc(70px * 0.4);
    height: calc(70px * 0.4);
    margin-bottom: 7px;
  }
  .quick-bt .qbt-box ul li.qbt a.link-bx p {
    font-size: 13px;
    font-weight: 300;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .quick-bt .qbt-box ul li.qbt:nth-of-type(1) a.link-bx {
    height: 100px;
  }
  .quick-bt .qbt-box ul li.qbt:nth-of-type(4) a.link-bx {
    border-bottom: none;
  }
  .quick-bt.up {
    top: 110px;
    right: -100px;
  }
  .quick-bt.up .quick-open-bt {
    right: 110px;
  }
  .quick-bt.up .quick-open-bt:hover {
    background-color: #e1e3e5;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .quick-bt {
    right: 5px;
    top: 110px;
  }
  .quick-bt .quick-open-bt {
    right: -100px;
    top: calc(50% - (114px * 0.4) / 2);
    padding: 7px 10px;
  }
  .quick-bt .quick-open-bt img {
    width: calc(50px * 0.4);
    height: calc(114px * 0.4);
  }
  .quick-bt .qbt-box ul {
    border: 1px solid #f2f2f5;
  }
  .quick-bt .qbt-box ul li.qbt a.link-bx {
    width: 80px;
    height: 75px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .quick-bt .qbt-box ul li.qbt a.link-bx img {
    width: calc(70px * 0.4);
    height: calc(70px * 0.4);
    margin-bottom: 7px;
  }
  .quick-bt .qbt-box ul li.qbt a.link-bx p {
    font-size: 13px;
    font-weight: 300;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .quick-bt .qbt-box ul li.qbt:nth-of-type(1) a.link-bx {
    height: 100px;
  }
  .quick-bt .qbt-box ul li.qbt:nth-of-type(4) a.link-bx {
    border-bottom: none;
  }
  .quick-bt.up {
    top: 110px;
    right: -100px;
  }
  .quick-bt.up .quick-open-bt {
    right: 110px;
  }
  .quick-bt.up .quick-open-bt:hover {
    background-color: #e1e3e5;
  }
}

@-webkit-keyframes error {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  10% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  20% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  30% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  40% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  60% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  70% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  80% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes error {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  10% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  20% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  30% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  40% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  60% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  70% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  80% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

#wrapper {
  display: none;
  overflow: hidden;
  position: absolute;
  z-index: 1000;
  width: 100%;
  max-width: 470px;
  height: auto;
  top: 150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #e1e3e5;
  background-color: #ffffff;
}

#wrapper .sucesbox {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.5s ease 0.4s;
  transition: all 0.5s ease 0.4s;
}

#wrapper .sucesbox h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  margin-bottom: 20px;
}

#wrapper .sucesbox h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: center;
}

#wrapper .sucesbox .login-bt {
  width: 180px;
  height: 40px;
  margin-top: 30px;
  background-color: #2f3033;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper .sucesbox .login-bt:hover {
  background-color: #606266;
}

#wrapper .sucesbox.success {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1s ease 0.5s;
  transition: all 1s ease 0.5s;
}

#wrapper .failbox {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper .failbox h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  margin-bottom: 20px;
}

#wrapper .failbox h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: center;
}

#wrapper .failbox .lost-bt {
  width: 180px;
  height: 40px;
  margin-top: 30px;
  background-color: #2f3033;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper .failbox .lost-bt:hover {
  background-color: #606266;
}

#wrapper .failbox.fail {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1s ease 0.5s;
  transition: all 1s ease 0.5s;
}

#wrapper .btn-box {
  width: 100%;
  height: 50px;
}

#wrapper .btn-box .btn_style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  cursor: pointer;
}

#wrapper .btn-box .btn_style#login_btn {
  background-color: #4acec3;
}

#wrapper .btn-box .btn_style#signup_btn {
  background-color: #d9d9d9;
}

#wrapper #form-box {
  width: 100%;
  height: 100%;
  padding: 30px 20px;
}

#wrapper #form-box #login h2 {
  font-size: 21px;
  font-weight: 600;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  margin-bottom: 5px;
}

#wrapper #form-box #login h4 {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  margin-bottom: 10px;
}

#wrapper #form-box #login form {
  margin-top: 20px;
}

#wrapper #form-box #login form .field-box {
  width: 100%;
  margin-bottom: 10px;
}

#wrapper #form-box #login form .field-box input {
  z-index: 10;
  padding: 5px 10px;
  border: 1px solid #e1e3e5;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  background-color: transparent;
  outline: none;
}

#wrapper #form-box #login form .field-box input.fields {
  width: 100%;
  height: 45px;
}

#wrapper #form-box #login form .field-box input::-webkit-input-placeholder {
  color: #adafb3;
}

#wrapper #form-box #login form .field-box input:-ms-input-placeholder {
  color: #adafb3;
}

#wrapper #form-box #login form .field-box input::-ms-input-placeholder {
  color: #adafb3;
}

#wrapper #form-box #login form .field-box input::placeholder {
  color: #adafb3;
}

#wrapper #form-box #login form .field-box input[type="submit"] {
  width: 50%;
  height: 45px;
  border: none;
  outline: none;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  background-color: #17a2b8;
  cursor: pointer;
}

#wrapper #form-box #login form .field-box input[type="button"] {
  width: 50%;
  height: 45px;
  border: none;
  outline: none;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  background-color: #606266;
  cursor: pointer;
}

#wrapper #form-box #login form .field-box input.form-error {
  border: 1px solid #e83e8c;
  -webkit-animation: error 0.5s ease 0s both;
  animation: error 0.5s ease 0s both;
}

#wrapper #form-box #signup {
  display: none;
}

#wrapper #form-box #signup h2 {
  font-size: 21px;
  font-weight: 600;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  margin-bottom: 5px;
}

#wrapper #form-box #signup h4 {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  margin-bottom: 10px;
}

#wrapper #form-box #signup form {
  margin-top: 20px;
}

#wrapper #form-box #signup form .field-box {
  width: 100%;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#wrapper #form-box #signup form .field-box#radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #e1e3e5;
}

#wrapper #form-box #signup form .field-box#radio span {
  width: 50px;
}

#wrapper #form-box #signup form .field-box#radio.form-error {
  border: 1px solid #e83e8c;
  -webkit-animation: error 0.5s ease 0s both;
  animation: error 0.5s ease 0s both;
}

#wrapper #form-box #signup form .field-box#check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #e1e3e5;
  height: 45px;
}

#wrapper #form-box #signup form .field-box#check span {
  width: 50px;
}

#wrapper #form-box #signup form .field-box#check.form-error {
  border: 1px solid #e83e8c;
  -webkit-animation: error 0.5s ease 0s both;
  animation: error 0.5s ease 0s both;
}

#wrapper #form-box #signup form .field-box span {
  width: 80px;
  font-size: 14px;
  font-weight: 300;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

#wrapper #form-box #signup form .field-box input {
  z-index: 10;
  padding: 5px 10px;
  border: 1px solid #e1e3e5;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  background-color: transparent;
  outline: none;
}

#wrapper #form-box #signup form .field-box input.fields {
  width: 100%;
  height: 45px;
}

#wrapper #form-box #signup form .field-box input::-webkit-input-placeholder {
  color: #adafb3;
}

#wrapper #form-box #signup form .field-box input:-ms-input-placeholder {
  color: #adafb3;
}

#wrapper #form-box #signup form .field-box input::-ms-input-placeholder {
  color: #adafb3;
}

#wrapper #form-box #signup form .field-box input::placeholder {
  color: #adafb3;
}

#wrapper #form-box #signup form .field-box input[type="radio"] {
  width: 13px;
  height: 13px;
  margin-right: 7px;
  background-color: #fff;
}

#wrapper #form-box #signup form .field-box input[type="checkbox"] {
  width: 13px;
  height: 13px;
  margin-right: 7px;
  background-color: #fff;
}

#wrapper #form-box #signup form .field-box inputspan {
  width: 80px;
  font-size: 14px;
  font-weight: 300;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

#wrapper #form-box #signup form .field-box input[type="submit"] {
  width: 50%;
  height: 45px;
  border: none;
  outline: none;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  background-color: #17a2b8;
  cursor: pointer;
}

#wrapper #form-box #signup form .field-box input[type="button"] {
  width: 50%;
  height: 45px;
  border: none;
  outline: none;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  background-color: #606266;
  cursor: pointer;
}

#wrapper #form-box #signup form .field-box input.form-error {
  border: 1px solid #e83e8c;
  -webkit-animation: error 0.5s ease 0s both;
  animation: error 0.5s ease 0s both;
}

#wrapper #form-box #signup form .field-box .error {
  position: absolute;
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
  background-color: #ca7272;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

@media (max-width: 575.99px) {
  #wrapper .sucesbox h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 15px;
  }
  #wrapper .sucesbox h5 {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: center;
  }
  #wrapper .sucesbox .login-bt {
    width: 150px;
    height: 32px;
    margin-top: 30px;
    font-size: 13px;
    font-weight: 300;
    line-height: 19px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  #wrapper .sucesbox .login-bt:hover {
    background-color: #606266;
  }
  #wrapper .failbox h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 15px;
  }
  #wrapper .failbox h5 {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: center;
  }
  #wrapper .failbox .lost-bt {
    width: 150px;
    height: 32px;
    margin-top: 30px;
    font-size: 13px;
    font-weight: 300;
    line-height: 19px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  #wrapper .failbox .lost-bt:hover {
    background-color: #606266;
  }
  #wrapper .btn-box {
    width: 100%;
    height: 50px;
  }
  #wrapper .btn-box .btn_style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    height: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    cursor: pointer;
  }
  #wrapper .btn-box .btn_style#login_btn {
    background-color: #4acec3;
  }
  #wrapper .btn-box .btn_style#signup_btn {
    background-color: #d9d9d9;
  }
  #wrapper #form-box {
    width: 100%;
    height: 100%;
    padding: 30px 20px;
  }
  #wrapper #form-box #login h2 {
    font-size: 21px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 5px;
  }
  #wrapper #form-box #login h4 {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 10px;
  }
  #wrapper #form-box #login form {
    margin-top: 20px;
  }
  #wrapper #form-box #login form .field-box {
    width: 100%;
    margin-bottom: 10px;
  }
  #wrapper #form-box #login form .field-box input {
    z-index: 10;
    padding: 5px 10px;
    border: 1px solid #e1e3e5;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    background-color: transparent;
    outline: none;
  }
  #wrapper #form-box #login form .field-box input.fields {
    width: 100%;
    height: 35px;
  }
  #wrapper #form-box #login form .field-box input::-webkit-input-placeholder {
    color: #adafb3;
  }
  #wrapper #form-box #login form .field-box input:-ms-input-placeholder {
    color: #adafb3;
  }
  #wrapper #form-box #login form .field-box input::-ms-input-placeholder {
    color: #adafb3;
  }
  #wrapper #form-box #login form .field-box input::placeholder {
    color: #adafb3;
  }
  #wrapper #form-box #login form .field-box input[type="submit"] {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    background-color: #17a2b8;
  }
  #wrapper #form-box #login form .field-box input.form-error {
    border: 1px solid #e83e8c;
    -webkit-animation: error 0.5s ease 0s both;
    animation: error 0.5s ease 0s both;
  }
  #wrapper #form-box #signup {
    display: none;
  }
  #wrapper #form-box #signup h2 {
    font-size: 21px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 5px;
  }
  #wrapper #form-box #signup h4 {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    margin-bottom: 10px;
  }
  #wrapper #form-box #signup form {
    margin-top: 20px;
  }
  #wrapper #form-box #signup form .field-box {
    width: 100%;
    margin-bottom: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #wrapper #form-box #signup form .field-box#radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #e1e3e5;
  }
  #wrapper #form-box #signup form .field-box#radio span {
    width: 50px;
  }
  #wrapper #form-box #signup form .field-box#radio.form-error {
    border: 1px solid #e83e8c;
    -webkit-animation: error 0.5s ease 0s both;
    animation: error 0.5s ease 0s both;
  }
  #wrapper #form-box #signup form .field-box#check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #e1e3e5;
    height: 35px;
  }
  #wrapper #form-box #signup form .field-box#check span {
    width: 50px;
  }
  #wrapper #form-box #signup form .field-box#check.form-error {
    border: 1px solid #e83e8c;
    -webkit-animation: error 0.5s ease 0s both;
    animation: error 0.5s ease 0s both;
  }
  #wrapper #form-box #signup form .field-box span {
    width: 80px;
    font-size: 14px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  #wrapper #form-box #signup form .field-box input {
    z-index: 10;
    padding: 5px 10px;
    border: 1px solid #e1e3e5;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    background-color: transparent;
    outline: none;
  }
  #wrapper #form-box #signup form .field-box input.fields {
    width: 100%;
    height: 35px;
  }
  #wrapper #form-box #signup form .field-box input::-webkit-input-placeholder {
    color: #adafb3;
  }
  #wrapper #form-box #signup form .field-box input:-ms-input-placeholder {
    color: #adafb3;
  }
  #wrapper #form-box #signup form .field-box input::-ms-input-placeholder {
    color: #adafb3;
  }
  #wrapper #form-box #signup form .field-box input::placeholder {
    color: #adafb3;
  }
  #wrapper #form-box #signup form .field-box input[type="radio"] {
    width: 13px;
    height: 13px;
    margin-right: 7px;
    background-color: #fff;
  }
  #wrapper #form-box #signup form .field-box input[type="checkbox"] {
    width: 13px;
    height: 13px;
    margin-right: 7px;
    background-color: #fff;
  }
  #wrapper #form-box #signup form .field-box inputspan {
    width: 80px;
    font-size: 14px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  #wrapper #form-box #signup form .field-box input[type="submit"] {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    background-color: #17a2b8;
    cursor: pointer;
  }
  #wrapper #form-box #signup form .field-box input.form-error {
    border: 1px solid #e83e8c;
    -webkit-animation: error 0.5s ease 0s both;
    animation: error 0.5s ease 0s both;
  }
  #wrapper #form-box #signup form .field-box .error {
    position: absolute;
    width: calc(100% - 80px);
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
    background-color: #ca7272;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

#loading {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  background-color: black;
  z-index: 9900;
  text-align: center;
}

#loading #loading-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  max-width: 50%;
  -webkit-animation: topIn 1.5s ease-out 0s both;
          animation: topIn 1.5s ease-out 0s both;
}

@-webkit-keyframes topIn {
  0% {
    opacity: 0;
    margin-top: -250px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes topIn {
  0% {
    opacity: 0;
    margin-top: -250px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes error {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  10% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  20% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  30% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  40% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  60% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  70% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  80% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.main-post {
  margin-top: 30px;
  margin-bottom: 50px;
}

.main-post .con-main-post .main-post__board {
  width: calc((100% /3) - 10px);
  height: 400px;
  margin-right: 15px;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
  padding-right: 20px;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl {
  padding: 5px;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #417dc0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #417dc0;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt span {
  float: right;
  margin-top: 5px;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  background-color: #417dc0;
  cursor: pointer;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd {
  padding: 10px 0;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .tit-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .tit-box p:hover {
  background-color: #f4f4f8;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box {
  margin-top: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e3e5;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box:nth-last-of-type() {
  border-bottom: 0px solid #e1e3e5;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 22px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #939599;
}

.main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p span {
  margin-left: 20px;
}

.main-post .con-main-post .main-post__board .mCSB_scrollTools {
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
  direction: ltr;
}

.main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
  position: absolute;
  min-height: 30px;
  display: block;
  height: 114px !important;
  max-height: 566px;
  top: 0px;
  cursor: pointer;
  width: 100%;
  height: 30px;
  z-index: 1;
}

.main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
  position: relative;
  width: 2px;
  height: 50px;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
  background-color: #6176d4 !important;
  background-color: rgba(97, 118, 212, 0.5);
}

.main-post .con-main-post .main-post__board2 {
  width: calc((100% /3) - 7px);
  height: 400px;
  margin-right: 15px;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
  padding-right: 20px;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl {
  padding: 5px;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #417dc0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #417dc0;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt span {
  float: right;
  margin-top: 5px;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  background-color: #417dc0;
  cursor: pointer;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd {
  padding: 10px 0;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .tit-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .tit-box p:hover {
  background-color: #f4f4f8;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box {
  margin-top: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e3e5;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box:nth-last-of-type() {
  border-bottom: 0px solid #e1e3e5;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 22px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #939599;
}

.main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p span {
  margin-left: 20px;
}

.main-post .con-main-post .main-post__board2 .mCSB_scrollTools {
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
  direction: ltr;
}

.main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
  position: absolute;
  min-height: 30px;
  display: block;
  height: 114px !important;
  max-height: 566px;
  top: 0px;
  cursor: pointer;
  width: 100%;
  height: 30px;
  z-index: 1;
}

.main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
  position: relative;
  width: 2px;
  height: 50px;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
  background-color: #6176d4 !important;
  background-color: rgba(97, 118, 212, 0.5);
}

.main-post .con-main-post .main-post__gallery {
  width: calc((100% /3) - 7px);
  height: 400px;
  margin-right: 15px;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
  padding-right: 20px;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl {
  padding: 5px;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #417dc0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #417dc0;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt span {
  float: right;
  margin-top: 5px;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  background-color: #417dc0;
  cursor: pointer;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd {
  padding: 10px 0;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .img-box {
  width: 100%;
  height: 100px;
  margin-bottom: 15px;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .img-box__img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .tit-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .tit-box p:hover {
  background-color: #f4f4f8;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box {
  margin-top: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e3e5;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 22px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #939599;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p span {
  margin-left: 20px;
}

.main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd:last-of-type .write-box {
  border-bottom: 0px solid #e1e3e5;
}

.main-post .con-main-post .main-post__gallery .mCSB_scrollTools {
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
  direction: ltr;
}

.main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
  position: absolute;
  min-height: 30px;
  display: block;
  height: 114px !important;
  max-height: 566px;
  top: 0px;
  cursor: pointer;
  width: 100%;
  height: 30px;
  z-index: 1;
}

.main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
  position: relative;
  width: 2px;
  height: 50px;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
  background-color: #6176d4 !important;
  background-color: rgba(97, 118, 212, 0.5);
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .main-post {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .main-post .con-main-post {
    padding-left: 10px;
  }
  .main-post .con-main-post .main-post__board {
    width: calc((100% /3) - 10px);
    height: 400px;
    margin-right: 15px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__board2 {
    width: calc((100% /3) - 7px);
    height: 400px;
    margin-right: 15px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__gallery {
    width: calc((100% /3) - 7px);
    height: 400px;
    margin-right: 15px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .img-box {
    margin-bottom: 15px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .main-post {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .main-post .con-main-post {
    padding-left: 10px;
  }
  .main-post .con-main-post .main-post__board {
    width: calc((100% /3) - 10px);
    height: 400px;
    margin-right: 15px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__board2 {
    width: calc((100% /3) - 7px);
    height: 400px;
    margin-right: 15px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__gallery {
    width: calc((100% /3) - 7px);
    height: 400px;
    margin-right: 15px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .img-box {
    margin-bottom: 15px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .main-post {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .main-post .con-main-post {
    padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main-post .con-main-post .main-post__board {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__board2 {
    width: 100%;
    height: 400px;
    margin-right: 0;
    margin-top: 30px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt {
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__gallery {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox {
    padding-right: 20px;
    margin-top: 30px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .img-box {
    margin-bottom: 15px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .main-post {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .main-post .con-main-post {
    padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main-post .con-main-post .main-post__board {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__board2 {
    width: 100%;
    height: 400px;
    margin-right: 0;
    margin-top: 30px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt {
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__gallery {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox {
    padding-right: 20px;
    margin-top: 30px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .img-box {
    margin-bottom: 15px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (max-width: 419.99px) {
  .main-post {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .main-post .con-main-post {
    padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main-post .con-main-post .main-post__board {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__board .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__board2 {
    width: 100%;
    height: 400px;
    margin-right: 0;
    margin-top: 30px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox {
    padding-right: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt {
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__board2 .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
  }
  .main-post .con-main-post .main-post__board2 .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
  }
  .main-post .con-main-post .main-post__gallery {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox {
    padding-right: 20px;
    margin-top: 30px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl {
    padding: 5px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dt span {
    margin-top: 5px;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd {
    padding: 10px 0;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .img-box {
    margin-bottom: 15px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .tit-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box {
    margin-top: 3px;
    padding-bottom: 10px;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .main-post .con-main-post .main-post__gallery .mCustomScrollBox .mCSB_container dl dd .write-box p span {
    margin-left: 20px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools {
    width: 16px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger {
    min-height: 30px;
    height: 114px !important;
    height: 30px;
  }
  .main-post .con-main-post .main-post__gallery .mCSB_scrollTools .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    height: 50px;
    border-radius: 16px;
  }
}
/*# sourceMappingURL=main.css.map */