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

[class^="bcon-"],
[class$="-bcon"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1920px;
  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=Noto+Serif+KR:200,300'); */
/* @import url('https://fonts.googleapis.com/css?family=Lato:700,900'); */
/* 오버레이 */
/* background-image */
/* 원형 박스 */
/* transform */
/* 쇼핑몰 뷰어 */
input[id="item-1"] + label.label-box {
  left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

.board-sec {
  background-color: #ffffff !important;
  padding-bottom: 0px;
  margin-bottom: 30px;
}

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

.board-sec .con-board .search-bx {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 7px;
}

.board-sec .con-board .search-bx > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.board-sec .con-board .search-bx > form > input {
  display: block;
  width: 195px;
  height: 34px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -webkit-transition: border-color,ease-in-out,.15s , ease-in-out,.15s,-webkit-box-shadow;
  transition: border-color,ease-in-out,.15s , ease-in-out,.15s,-webkit-box-shadow;
  transition: border-color,ease-in-out,.15s , box-shadow,ease-in-out,.15s;
  transition: border-color,ease-in-out,.15s , box-shadow,ease-in-out,.15s,-webkit-box-shadow;
  border-style: solid;
  border-top: 1px solid #dadee5;
  border-bottom: 1px solid #e7ebf2;
  border-left: 1px solid #dadee5;
  border-right: 1px solid #dadee5;
  margin-right: .5rem !important;
}

.board-sec .con-board .search-bx > form > button {
  position: relative;
  top: 1px;
  left: 0;
  width: 77px;
  height: 32px;
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border-radius: 4px;
  clear: both;
  border: 1px solid rgba(49, 51, 55, 0.19);
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #3c4048;
  color: #ffffff;
}

.board-sec .con-board .pagenav-bx {
  padding: 30px 0;
}

.board-sec .con-board .pagenav-bx p {
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.board-sec .con-board .pagenav-bx p:last-child {
  font-weight: 400;
  color: #47494d !important;
}

.board-sec .con-board .pagenav-bx span {
  font-size: 8px;
  font-weight: 300;
  line-height: 15px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
  margin: 0 5px;
}

.board-sec .con-board .title-box {
  width: 100%;
  height: 70px;
  padding: 30px 0 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.board-sec .con-board .title-box .left-box {
  width: 50%;
  height: 100%;
}

.board-sec .con-board .title-box .left-box h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
}

.board-sec .con-board .title-box .right-box {
  width: 50%;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.board-sec .con-board .title-box .right-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 30px;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff !important;
  background-color: #2f3033 !important;
}

.board-sec .con-board .board-box {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.board-sec .con-board .board-box .tit-box {
  width: 100%;
}

.board-sec .con-board .board-box .tit-box > ul {
  width: 100%;
}

.board-sec .con-board .board-box .tit-box > ul > li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
  border-top: 2px solid #17181a !important;
  border-bottom: 1px solid #939599 !important;
  height: 50px;
}

.board-sec .con-board .board-box .tit-box > ul > li .num-bx, .board-sec .con-board .board-box .tit-box > ul > li .tit-bx, .board-sec .con-board .board-box .tit-box > ul > li .date-bx, .board-sec .con-board .board-box .tit-box > ul > li .user-bx, .board-sec .con-board .board-box .tit-box > ul > li .count-bx {
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #17181a !important;
}

.board-sec .con-board .board-box .tit-box > ul > li .num-bx {
  width: 5%;
}

.board-sec .con-board .board-box .tit-box > ul > li .tit-bx {
  width: 70%;
}

.board-sec .con-board .board-box .tit-box > ul > li .date-bx {
  width: 10%;
}

.board-sec .con-board .board-box .tit-box > ul > li .user-bx {
  width: 10%;
}

.board-sec .con-board .board-box .tit-box > ul > li .count-bx {
  width: 5%;
}

.board-sec .con-board .board-box .cont-box {
  width: 100%;
}

.board-sec .con-board .board-box .cont-box > ul {
  width: 100%;
}

.board-sec .con-board .board-box .cont-box > ul > li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
  border-bottom: 1px solid #f2f2f5 !important;
  height: 50px;
}

.board-sec .con-board .board-box .cont-box > ul > li .num-bx, .board-sec .con-board .board-box .cont-box > ul > li .tit-bx, .board-sec .con-board .board-box .cont-box > ul > li .date-bx, .board-sec .con-board .board-box .cont-box > ul > li .user-bx, .board-sec .con-board .board-box .cont-box > ul > li .count-bx {
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.board-sec .con-board .board-box .cont-box > ul > li .num-bx {
  width: 5%;
}

.board-sec .con-board .board-box .cont-box > ul > li .tit-bx {
  overflow: hidden;
  width: 70%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.board-sec .con-board .board-box .cont-box > ul > li .tit-bx::after {
  width: 100%;
  height: 1px;
  background-color: #b81717;
  bottom: 0;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
}

.board-sec .con-board .board-box .cont-box > ul > li .tit-bx:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.board-sec .con-board .board-box .cont-box > ul > li .tit-bx > a {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.board-sec .con-board .board-box .cont-box > ul > li .date-bx {
  width: 10%;
}

.board-sec .con-board .board-box .cont-box > ul > li .user-bx {
  width: 10%;
}

.board-sec .con-board .board-box .cont-box > ul > li .count-bx {
  width: 5%;
}

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

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

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

.board-sec .con-pagenav .list-nav > li > a > img {
  position: relative;
  top: 2px;
}

.board-sec .con-pagenav .list-nav > li > span {
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
}

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

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

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

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

@media (max-width: 767.99px) and (min-width: 576px) {
  .board-sec {
    background-color: #ffffff !important;
    padding-bottom: 0px;
    margin-bottom: 0;
  }
  .board-sec .con-board {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0;
  }
  .board-sec .con-board .pagenav-bx {
    padding: 30px 0;
  }
  .board-sec .con-board .pagenav-bx p {
    font-size: 12px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .board-sec .con-board .pagenav-bx p:last-child {
    font-weight: 400;
    color: #47494d !important;
  }
  .board-sec .con-board .pagenav-bx span {
    font-size: 8px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
    margin: 0 5px;
  }
  .board-sec .con-board .title-box {
    width: 100%;
    height: 70px;
    padding: 30px 0 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .board-sec .con-board .title-box .left-box {
    width: 50%;
    height: 100%;
  }
  .board-sec .con-board .title-box .left-box h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .board-sec .con-board .title-box .right-box {
    width: 50%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .board-sec .con-board .title-box .right-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100px;
    height: 30px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff !important;
    background-color: #2f3033 !important;
  }
  .board-sec .con-board .board-box {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .board-sec .con-board .board-box .tit-box {
    width: 100%;
  }
  .board-sec .con-board .board-box .tit-box > ul {
    width: 100%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    border-top: 2px solid #17181a !important;
    border-bottom: 1px solid #939599 !important;
    height: 50px;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .num-bx, .board-sec .con-board .board-box .tit-box > ul > li .tit-bx, .board-sec .con-board .board-box .tit-box > ul > li .date-bx, .board-sec .con-board .board-box .tit-box > ul > li .user-bx, .board-sec .con-board .board-box .tit-box > ul > li .count-bx {
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a !important;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .date-bx, .board-sec .con-board .board-box .tit-box > ul > li .user-bx, .board-sec .con-board .board-box .tit-box > ul > li .count-bx {
    display: none;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .num-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .tit-bx {
    width: 90%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .date-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .user-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .count-bx {
    width: 5%;
  }
  .board-sec .con-board .board-box .cont-box {
    width: 100%;
  }
  .board-sec .con-board .board-box .cont-box > ul {
    width: 100%;
  }
  .board-sec .con-board .board-box .cont-box > ul > li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #f2f2f5 !important;
    height: 50px;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .num-bx, .board-sec .con-board .board-box .cont-box > ul > li .tit-bx, .board-sec .con-board .board-box .cont-box > ul > li .date-bx, .board-sec .con-board .board-box .cont-box > ul > li .user-bx, .board-sec .con-board .board-box .cont-box > ul > li .count-bx {
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .date-bx, .board-sec .con-board .board-box .cont-box > ul > li .user-bx, .board-sec .con-board .board-box .cont-box > ul > li .count-bx {
    display: none;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .num-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .tit-bx {
    overflow: hidden;
    width: 90%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .tit-bx::after {
    width: 100%;
    height: 1px;
    background-color: #b81717;
    bottom: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .tit-bx:hover::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .board-sec .con-board .board-box .cont-box > ul > li .tit-bx > a {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .date-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .user-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .count-bx {
    width: 5%;
  }
  .board-sec .con-pagenav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 50px;
  }
  .board-sec .con-pagenav .list-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .board-sec .con-pagenav .list-nav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .board-sec .con-pagenav .list-nav > li > span {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .board-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .board-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .board-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .board-sec .con-pagenav .list-nav > li:first-child, .board-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}

@media (max-width: 575.99px) {
  .board-sec {
    background-color: #ffffff !important;
    padding-bottom: 0px;
    margin-bottom: 0;
  }
  .board-sec .con-board {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0;
  }
  .board-sec .con-board .pagenav-bx {
    padding: 30px 0;
  }
  .board-sec .con-board .pagenav-bx p {
    font-size: 12px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .board-sec .con-board .pagenav-bx p:last-child {
    font-weight: 400;
    color: #47494d !important;
  }
  .board-sec .con-board .pagenav-bx span {
    font-size: 8px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
    margin: 0 5px;
  }
  .board-sec .con-board .title-box {
    width: 100%;
    height: 70px;
    padding: 30px 0 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .board-sec .con-board .title-box .left-box {
    width: 50%;
    height: 100%;
  }
  .board-sec .con-board .title-box .left-box h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .board-sec .con-board .title-box .right-box {
    width: 50%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .board-sec .con-board .title-box .right-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100px;
    height: 30px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff !important;
    background-color: #2f3033 !important;
  }
  .board-sec .con-board .board-box {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .board-sec .con-board .board-box .tit-box {
    width: 100%;
  }
  .board-sec .con-board .board-box .tit-box > ul {
    width: 100%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    border-top: 2px solid #17181a !important;
    border-bottom: 1px solid #939599 !important;
    height: 50px;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .num-bx, .board-sec .con-board .board-box .tit-box > ul > li .tit-bx, .board-sec .con-board .board-box .tit-box > ul > li .date-bx, .board-sec .con-board .board-box .tit-box > ul > li .user-bx, .board-sec .con-board .board-box .tit-box > ul > li .count-bx {
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a !important;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .date-bx, .board-sec .con-board .board-box .tit-box > ul > li .user-bx, .board-sec .con-board .board-box .tit-box > ul > li .count-bx {
    display: none;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .num-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .tit-bx {
    width: 90%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .date-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .user-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .tit-box > ul > li .count-bx {
    width: 5%;
  }
  .board-sec .con-board .board-box .cont-box {
    width: 100%;
  }
  .board-sec .con-board .board-box .cont-box > ul {
    width: 100%;
  }
  .board-sec .con-board .board-box .cont-box > ul > li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    border-bottom: 1px solid #f2f2f5 !important;
    height: 50px;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .num-bx, .board-sec .con-board .board-box .cont-box > ul > li .tit-bx, .board-sec .con-board .board-box .cont-box > ul > li .date-bx, .board-sec .con-board .board-box .cont-box > ul > li .user-bx, .board-sec .con-board .board-box .cont-box > ul > li .count-bx {
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .date-bx, .board-sec .con-board .board-box .cont-box > ul > li .user-bx, .board-sec .con-board .board-box .cont-box > ul > li .count-bx {
    display: none;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .num-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .tit-bx {
    overflow: hidden;
    width: 90%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .tit-bx::after {
    width: 100%;
    height: 1px;
    background-color: #b81717;
    bottom: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .tit-bx:hover::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .board-sec .con-board .board-box .cont-box > ul > li .tit-bx > a {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .date-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .user-bx {
    width: 10%;
  }
  .board-sec .con-board .board-box .cont-box > ul > li .count-bx {
    width: 5%;
  }
  .board-sec .con-pagenav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 50px;
  }
  .board-sec .con-pagenav .list-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .board-sec .con-pagenav .list-nav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .board-sec .con-pagenav .list-nav > li > span {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .board-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .board-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .board-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .board-sec .con-pagenav .list-nav > li:first-child, .board-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}

@media (max-width: 575.99px) {
  .board-sec .con-board .search-bx {
    margin-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
    top: -10px;
    left: -5px;
  }
  .board-sec .con-board .search-bx > form {
    width: 80%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .board-sec .con-board .search-bx > form > input {
    width: 118.25px;
    margin-right: 7px !important;
  }
  .board-sec .con-board .board-box {
    position: relative;
    top: -5px;
  }
}
/*# sourceMappingURL=board.css.map */