@charset "UTF-8";
* {
  --fff: #fff;
  --f55: #f5f5f5;
  --b22: #222;
  --b20: #202020;
  --b33: #333;
  --b55: #555;
  --g77: #777;
  --ccc: #ccc;
  --cc7: #c7c7c7;
  --eee: #eee;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-family: "pretendard", AppleGothic, dotum, sans-serif;
  background: #fff;
  overflow: hidden;
}

html, h1, h2, h3, h4, h5, h6, form, fieldset, img {
  margin: 0;
  padding: 0;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-family: "pretendard", AppleGothic, dotum, sans-serif;
  word-break: keep-all;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

label, input, button, select, img {
  vertical-align: middle;
  font-size: 1em;
}

input, button {
  margin: 0;
  padding: 0;
  font-family: "pretendard", AppleGothic, dotum, sans-serif;
  font-size: 1em;
}

input[type=submit] {
  cursor: pointer;
}

button {
  cursor: pointer;
}

textarea, select {
  font-family: "pretendard", AppleGothic, dotum, sans-serif;
  font-size: 1em;
}

select {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
  word-break: keep-all;
}

hr {
  display: none;
}

pre {
  overflow-x: scroll;
  font-size: 1.1em;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

input[type=text], input[type=password], textarea {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
  height: 40px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ddd;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus {
  -webkit-box-shadow: 0 0 5px #377cb3;
  box-shadow: 0 0 5px #377cb3;
  border: 1px solid #377cb3;
}

.placeholdersjs {
  color: #aaa !important;
}

/* 레이아웃 크기 지정 s*/
.layout--init {
  width: 70vw;
  margin: 0 auto;
}

/* 레이아웃 크기 지정 f*/
/* 공통 레이아웃 s*/
.layout--btn {
  display: inline-block;
  font-size: 1.8rem;
  color: var(--b33);
  padding: 15px;
  border: 1px solid var(--g77);
  margin: 100px 0 0;
  background-image: linear-gradient(45deg, var(--b55) 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.layout--btn::before {
  content: "";
  display: inline-block;
  width: 130px;
  height: 1px;
  background: var(--b33);
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.layout--btn:hover {
  background-position: 0;
  color: var(--fff);
}
.layout--btn:hover::before {
  background: var(--fff);
}

.layout--line {
  display: inline-block;
  position: relative;
  padding: 0 0 30px;
  margin: 0 0 30px;
  overflow: hidden;
}
.layout--line::before {
  content: "";
  display: block;
  width: 20%;
  height: 1px;
  background: var(--b55);
  position: absolute;
  bottom: 0;
  -webkit-animation: linemove 2s linear infinite;
          animation: linemove 2s linear infinite;
}
.layout--line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cc7);
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.submit--btn {
  display: inline-block;
  font-size: 1.8rem;
  color: var(--b33);
  padding: 15px;
  border: 1px solid var(--cc7);
  height: 50px;
  max-width: 200px;
  width: 100%;
  background-image: linear-gradient(45deg, #377cb3 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.submit--btn:hover {
  background-position: 0;
  color: var(--fff);
}

.exit--btn {
  display: inline-block;
  font-size: 1.8rem;
  color: var(--b33);
  padding: 15px;
  border: 1px solid var(--g77);
  height: 50px;
  max-width: 200px;
  width: 100%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: linear-gradient(45deg, var(--b33) 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.exit--btn:hover {
  background-position: 0;
  color: var(--fff);
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flexBox li {
  padding: 5px 10px;
}

.floatBox ::after {
  display: block;
  clear: both;
  content: "";
}

.hoverImg {
  overflow: hidden;
}
.hoverImg img {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.hoverImg img:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.cursor {
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--b55);
  border-radius: 50%;
  position: absolute;
  z-index: 1002;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-property: background, -webkit-transform;
  transition-property: background, -webkit-transform;
  transition-property: background, transform;
  transition-property: background, transform, -webkit-transform;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-backdrop-filter: sepia(20%);
          backdrop-filter: sepia(20%);
  background-size: cover;
}
.cursor.cursor-grow {
  -webkit-transform: scale(2);
          transform: scale(2);
  background-color: rgba(85, 85, 85, 0.8);
}
.cursor.cursor-grow::before {
  content: "+";
  display: block;
  font-size: 2rem;
  color: var(--fff);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  vertical-align: middle;
  font-weight: 400;
}

.msg_sound_only, .sound_only {
  display: inline-block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
  border: 0 !important;
  overflow: hidden !important;
}

#hd_login_msg {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.hiddenName {
  font-size: 0;
}

/* 공통 레이아웃 f*/
@-webkit-keyframes linemove {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}
@keyframes linemove {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}
@-webkit-keyframes bocate {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bocate {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes galRotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotateX(-80deg);
            transform: translate(-50%, -50%) rotateX(-80deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotateX(0deg);
            transform: translate(-50%, -50%) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes galRotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotateX(-80deg);
            transform: translate(-50%, -50%) rotateX(-80deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotateX(0deg);
            transform: translate(-50%, -50%) rotateX(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes td {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes td {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes pf {
  from {
    left: 100%;
  }
  to {
    left: -170%;
  }
}
@keyframes pf {
  from {
    left: 100%;
  }
  to {
    left: -170%;
  }
}
@-webkit-keyframes page {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes page {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* 메인슬라이드 s */
@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes timebar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes timebar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes titleAnimation {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
  }
}
@keyframes titleAnimation {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0%);
  }
}
@-webkit-keyframes imgAnimation {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes imgAnimation {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
.scale-list {
  opacity: 0;
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  -webkit-transform: translate(0px, 33%) scale(1, 1.5);
          transform: translate(0px, 33%) scale(1, 1.5);
  -webkit-transition: 0.6s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.6s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scale-list.visible {
  opacity: 1;
  visibility: inherit;
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  transform: translate3d(0px, 0%, 0px);
  -webkit-transform: translate3d(0px, 0%, 0px);
  -moz-transform: translate3d(0px, 0%, 0px);
  -ms-transform: translate3d(0px, 0%, 0px);
  -o-transform: translate3d(0px, 0%, 0px);
}

.block-left {
  opacity: 0;
}
.block-left.visible {
  opacity: 1;
  -webkit-animation: fade-in-left 0.6s 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.drop-text {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  opacity: 0;
}
.drop-text.visible {
  -webkit-animation: titleAnimation 1.6s ease both;
          animation: titleAnimation 1.6s ease both;
}

.slide-top {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
}
.slide-top.visible {
  -webkit-animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-top-hidden {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* 팝업레이어 */
#hd_pop {
  z-index: 1000;
  position: relative;
  margin: 0 auto;
  height: 0;
}

#hd_pop h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.hd_pops {
  position: absolute;
  border: 1px solid #e9e9e9;
  background: #fff;
}

.hd_pops img {
  max-width: 100%;
}

.hd_pops_footer {
  padding: 0;
  background: #000;
  color: #fff;
  text-align: left;
  position: relative;
}

.hd_pops_footer:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

.hd_pops_footer button {
  padding: 10px;
  border: 0;
  color: #fff;
}

.hd_pops_footer .hd_pops_reject {
  background: #000;
  text-align: left;
}

.hd_pops_footer .hd_pops_close {
  background: #393939;
  position: absolute;
  top: 0;
  right: 0;
}

/* 공용폰트 */
.m-title {
  font-size: 2rem;
  text-transform: capitalize;
  color: var(--b33);
  padding: 0 0 50px 0;
}
.m-title a {
  color: #377cb3;
  display: inline-block;
}

.sbt {
  font-size: 5rem;
  text-transform: capitalize;
}

/* 공용폰트 */
/* body scrolled */
body.scrolled #hd {
  position: fixed;
  top: 0;
  background: var(--b22);
}
body.scrolled #hd #logo img {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
body.scrolled #hd #gnb {
  width: 60% !important;
}

/* body scrolled */
/* 상단 레이아웃 s */
#hd {
  height: 80px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  z-index: 20;
  padding: 10px 0;
}
#hd.hd_zindex .gnb_liOn .gnb_2dul {
  max-height: 300px !important;
  background: var(--b22);
}
#hd #hd_h1 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
#hd #hd_wrapper {
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#hd #hd_wrapper #logo {
  max-width: 200px;
  height: 100%;
}
#hd #hd_wrapper #logo img {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -o-object-fit: contain;
     object-fit: contain;
}
#hd #hd_wrapper #gnb {
  width: 65%;
  text-transform: uppercase;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}
#hd #hd_wrapper #gnb .gnb_wrap {
  height: 100%;
}
#hd #hd_wrapper #gnb #gnb_1dul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
#hd #hd_wrapper #gnb #gnb_1dul li {
  padding: 0;
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli {
  text-align: center;
  width: 20%;
  position: relative;
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--fff);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.2;
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli:hover > a {
  color: #377cb3 !important;
  -webkit-transition: background-color 2s ease-out;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli .gnb_2dul {
  position: absolute;
  left: 0;
  width: 100%;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  top: 60px;
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli .gnb_2dul .gnb_2dul_box {
  padding: 10px 0;
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli .gnb_2dul .gnb_2dul_box .gnb_2dli {
  width: 100%;
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli .gnb_2dul .gnb_2dul_box .gnb_2dli .gnb_2da {
  line-height: 35px;
  font-size: 1.5rem;
  color: var(--cc7);
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli .gnb_2dul .gnb_2dul_box .gnb_2dli .gnb_2da:hover {
  color: #377cb3 !important;
  -webkit-transition: background-color 2s ease-out;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli.gnb_liOn {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli.gnb_liOn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 15px solid var(--b22);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 45px;
}

#gnb_all {
  background: rgba(51, 51, 51, 0.8);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: -100%;
  z-index: 9999;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#gnb_all .gnb_al_ul {
  width: 90%;
  margin: 0 auto;
  height: 100%;
  padding: 50px 0;
  position: relative;
}
#gnb_all .gnb_al_ul .gnb_al_li .gnb_al_a {
  border-bottom: 1px solid #ddd;
  font-size: 30px;
  color: #377cb3;
  padding: 10px 0;
  display: block;
  font-weight: 600;
}
#gnb_all .gnb_al_ul .gnb_al_li .gnb_al_ul2 {
  padding: 20px 10px;
}
#gnb_all .gnb_al_ul .gnb_al_li .gnb_al_ul2 .gnb_al_li2 {
  line-height: 40px;
}
#gnb_all .gnb_al_ul .gnb_al_li .gnb_al_ul2 .gnb_al_li2 .gnb_al_a2 {
  color: #cccccc;
  display: block;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#gnb_all .gnb_al_ul .gnb_al_li .gnb_al_ul2 .gnb_al_li2 .gnb_al_a2:hover {
  color: #fff;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: background-color 2s ease-out;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
#gnb_all .gnb_al_ul .gnb_close_btn {
  position: absolute;
  top: 60px;
  right: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  z-index: 9999;
}
#gnb_all .gnb_al_ul .gnb_close_btn i {
  color: #fff;
  font-size: 2.4rem;
}

.hd_sch_wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hd_sch_wr li {
  padding: 5px 10px;
}
.hd_sch_wr #hd_sch {
  display: none;
}
.hd_sch_wr #hd_sch #sch_stx {
  height: 40px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 0.8rem;
  padding: 0 15px;
}
.hd_sch_wr #hd_sch #sch_submit {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.hd_sch_wr #hd_sch #sch_submit i {
  color: #ccc;
  padding: 5px;
  font-size: 1.4rem;
}
.hd_sch_wr #hd_sch #gnb_allBtn {
  display: inline-block;
}
.hd_sch_wr #hd_sch #gnb_allBtn .gnb_menu_btn {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.hd_sch_wr #hd_sch #gnb_allBtn .gnb_menu_btn i {
  color: #ccc;
  padding: 5px;
  font-size: 2rem;
}
.hd_sch_wr #hd_sch_open i {
  color: var(--fff);
  padding: 5px;
  font-size: 3rem;
  cursor: pointer;
}
.hd_sch_wr #hd_op_btn {
  margin: 0 5px 0;
}
.hd_sch_wr #hd_op_btn i {
  color: var(--fff);
  padding: 5px;
  font-size: 3rem;
  cursor: pointer;
}
.hd_sch_wr #web_global {
  font-size: 1.6rem;
  display: inline-block;
  padding: 3px 2px 0;
  cursor: pointer;
  position: relative;
}
.hd_sch_wr #web_global .web_global_btn {
  font-size: 3rem;
  color: var(--fff);
}
.hd_sch_wr #web_global .web_global_box {
  position: absolute;
  background: var(--fff);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -70px;
  padding: 10px;
  display: none;
}
.hd_sch_wr #web_global .web_global_box::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 15px solid var(--fff);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -10px;
}
.hd_sch_wr #web_global a {
  color: var(--g77);
}
.hd_sch_wr #web_global a:hover {
  color: var(--b20);
}
.hd_sch_wr #web_global.web--on .web_global_box {
  display: block;
}
.hd_sch_wr #right-open {
  display: none;
}
.hd_sch_wr #right-open i {
  color: var(--fff);
  padding: 5px;
  font-size: 3rem;
  cursor: pointer;
}

#sch_slide {
  position: fixed;
  width: 100vw;
  height: 30vh;
  top: -30vh;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
}
#sch_slide #hd_sch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50vw;
  height: 8vh;
}
#sch_slide #hd_sch form {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sch_slide #hd_sch form #sch_stx {
  width: 90%;
  height: 100%;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  font-size: 2.5rem;
  color: var(--fff);
  border-bottom: 1px solid #ddd;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#sch_slide #hd_sch form #sch_stx::-webkit-input-placeholder {
  color: inherit;
}
#sch_slide #hd_sch form #sch_stx::-moz-placeholder {
  color: inherit;
}
#sch_slide #hd_sch form #sch_stx:-ms-input-placeholder {
  color: inherit;
}
#sch_slide #hd_sch form #sch_stx::-ms-input-placeholder {
  color: inherit;
}
#sch_slide #hd_sch form #sch_stx::placeholder {
  color: inherit;
}
#sch_slide #hd_sch form #sch_submit {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  width: 10%;
  font-size: 4rem;
  color: var(--cc7);
}
#sch_slide .sch_slide_close {
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2.5rem;
  color: var(--eee);
  cursor: pointer;
}
#sch_slide.on .sch_slide_modal {
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.all-serch {
  padding: 200px 0 100px;
  font-size: 1.8rem;
}
.all-serch #sch_res_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: none;
}
.all-serch #sch_res_detail select {
  width: 20%;
}
.all-serch #sch_res_detail .sch_wr {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.all-serch #sch_res_detail .sch_wr .frm_input {
  width: 70%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.all-serch #sch_res_detail .sch_wr .btn_submit {
  width: 30%;
  background: var(--b20);
}
.all-serch #sch_res_detail .switch_field {
  width: 15%;
}
.all-serch #sch_res_detail .switch_field input:checked + label {
  background-color: #377cb3;
}
.all-serch #sch_result #sch_res_ov {
  border: none;
  background: none;
}
.all-serch #sch_result #sch_res_ov h2 {
  padding: 0 10px;
  color: var(--g77);
  font-size: 1.6rem;
}
.all-serch #sch_result #sch_res_ov h2 strong {
  color: var(--b20);
  font-size: 1.5em;
  padding: 0 5px 0 0;
}
.all-serch #sch_result #sch_res_ov ul li {
  font-size: 1.4rem;
  color: var(--g77);
}
.all-serch #sch_result #sch_res_board {
  margin: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.all-serch #sch_result #sch_res_board li {
  margin: 0 10px 0 0;
  padding: 10px;
}
.all-serch #sch_result #sch_res_board li a, .all-serch #sch_result #sch_res_board li button {
  text-transform: uppercase;
  color: var(--ccc);
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.all-serch #sch_result #sch_res_board li a.sch_on, .all-serch #sch_result #sch_res_board li button.sch_on {
  mix-blend-mode: difference;
}
.all-serch #sch_result #sch_res_board li a.sch_on::before, .all-serch #sch_result #sch_res_board li button.sch_on::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: var(--b22);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  -webkit-animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.all-serch #sch_result #sch_res_board li a:hover, .all-serch #sch_result #sch_res_board li button:hover {
  mix-blend-mode: difference;
}
.all-serch #sch_result #sch_res_board li a:hover::before, .all-serch #sch_result #sch_res_board li button:hover::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: var(--b22);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  -webkit-animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.all-serch #sch_result #sch_res_board li button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.all-serch #sch_result #sch_res_board li.list-on {
  mix-blend-mode: difference;
  position: relative;
}
.all-serch #sch_result #sch_res_board li.list-on::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: var(--b22);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  -webkit-animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.all-serch #sch_result .sch_res_list .search_board_result h2 a {
  text-transform: capitalize;
}
.all-serch #sch_result .sch_res_list .search_board_result .sch_more {
  font-size: 1.5rem;
  color: var(--g77);
}

#rightMenu {
  position: fixed;
  width: 400px;
  right: -400px;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  height: 100vh;
  z-index: 1001;
  overflow-y: auto;
}
#rightMenu #gnb_side {
  padding: 50px 20px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#rightMenu #gnb_side .gnb_side_title {
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--b55);
  margin: 0 0 20px;
}
#rightMenu #gnb_side .tnb {
  margin: 0 0 20px;
}
#rightMenu #gnb_side .tnb #hd_qnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#rightMenu #gnb_side .tnb #hd_qnb li {
  padding: 0;
}
#rightMenu #gnb_side .tnb #hd_qnb li {
  margin: 0 15px 0 0;
  font-size: 1.4rem;
}
#rightMenu #gnb_side .tnb #hd_qnb li a {
  font-size: 1.4rem;
  color: var(--cc7);
}
#rightMenu #gnb_side .tnb a {
  font-size: 0.8rem;
  color: #fff;
}
#rightMenu #gnb_side .gnb_side_ul {
  padding: 20px 0;
  margin: 50px 0 0;
}
#rightMenu #gnb_side .gnb_side_ul .gnb_side_li {
  margin: 0 0 30px 0;
}
#rightMenu #gnb_side .gnb_side_ul .gnb_side_li .gnb_side_a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid var(--b55);
  display: block;
  padding: 0 0 10px 0;
  margin: 0 0 15px 0;
}
#rightMenu #gnb_side .gnb_side_ul .gnb_side_li .gnb_side_ul2 {
  margin: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#rightMenu #gnb_side .gnb_side_ul .gnb_side_li .gnb_side_ul2 li {
  padding: 5px 10px;
}
#rightMenu #gnb_side .gnb_side_ul .gnb_side_li .gnb_side_ul2 .gnb_side_li2 {
  border: 1px solid var(--b55);
  border-radius: 20px;
  margin: 0 10px 10px 0;
}
#rightMenu #gnb_side .gnb_side_ul .gnb_side_li .gnb_side_ul2 .gnb_side_li2 .gnb_side_a2 {
  font-size: 1.4rem;
  color: var(--ccc);
  text-transform: capitalize;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#rightMenu #gnb_side .gnb_side_ul .gnb_side_li .gnb_side_ul2 .gnb_side_li2 .gnb_side_a2:hover {
  color: var(--eee);
}
#rightMenu #gnb_side .gnb_side_close_btn {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  font-size: 30px;
  color: #fff;
  float: right;
}
#rightMenu #gnb_side .gnb_side_close_btn ::after {
  display: block;
  clear: both;
  content: "";
}

/* 상단 레이아웃 f */
.sub_visual {
  width: 85%;
  height: 50vh;
  position: relative;
  margin-left: 15%;
  background: var(--g77);
  overflow: hidden;
}
.sub_visual .cover {
  position: relative;
  width: 100%;
  height: 100%;
}
.sub_visual .cover::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}
.sub_visual .bg {
  width: 100%;
  height: 100%;
}
.sub_visual.visual03 {
  display: none;
}
.sub_visual .fakeBg {
  display: none;
}

.category-wrap {
  margin: 0 auto 100px;
}
.category-wrap .loca-area {
  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;
  font-size: 1.6rem;
  padding: 15px 0;
  color: var(--g77);
}
.category-wrap .loca-area i {
  font-size: 2rem;
}
.category-wrap .loca-area > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 250px;
  text-align: center;
}
.category-wrap .loca-area > ul li {
  padding: 5px 10px;
}
.category-wrap .loca-area > ul li {
  padding: 0;
  text-transform: uppercase;
}
.category-wrap .loca-area > ul li button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  text-transform: uppercase;
  color: var(--g77);
}
.category-wrap .loca-area > ul li button span.location--here {
  font-weight: bold;
  color: var(--b33);
}
.category-wrap .loca-area > ul li .next-depth {
  position: absolute;
  left: 0;
  width: 100%;
  top: 40px;
  display: none;
}
.category-wrap .loca-area > ul li .next-depth ul li {
  padding: 5px 0;
}
.category-wrap .loca-area > ul li .next-depth ul li a {
  font-size: 1.4rem;
  color: var(--g77);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.category-wrap .loca-area > ul li .next-depth ul li a:hover {
  color: var(--b33);
}
.category-wrap .loca-area > ul > li {
  width: 50%;
  position: relative;
}
.category-wrap .loca-area > ul > li:nth-child(1)::after {
  content: ">";
  display: block;
  font-size: 2rem;
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.category-wrap .loca-area > ul > li.location--on .next-depth {
  display: block;
}
.category-wrap.category--portfolio {
  display: none;
}

/* 본문 바로가기 */
#skip_to_container a {
  z-index: 100000;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

#skip_to_container a:focus, #skip_to_container a:active {
  width: 100%;
  height: 75px;
  background: #21272e;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 3.3em;
}

/* 푸터 s */
#ft {
  background: var(--b20);
}
#ft #ft_wr {
  padding: 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#ft .ft-info--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 30px 0;
}
#ft .ft-info--top h5 {
  font-size: 2.8rem;
  color: var(--cc7);
  text-transform: uppercase;
}
#ft .ft-info--bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#ft .ft-info--bot .ft-info--label h6 {
  font-size: 1.6rem;
  color: var(--cc7);
  margin: 0 0 5px;
  font-weight: 400;
}
#ft .ft-info--bot .ft-info--label h6 p {
  display: inline-block;
}
#ft .ft-info--bot .ft-info--label h6 p::before {
  content: "/";
  display: inline-block;
  margin: 0 5px;
}
#ft .ft-info--bot .ft-info--label span {
  font-size: 1.4rem;
  color: #727070;
}
#ft .ft-info--bot #ft_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  font-size: 1.4rem;
}
#ft .ft-info--bot #ft_link li {
  padding: 5px 10px;
}
#ft .ft-info--bot #ft_link a {
  display: inline-block;
  color: var(--cc7);
  font-weight: 400;
  margin-left: 25px;
}
#ft #top_btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  z-index: 100;
  background: #377cb3;
  border-radius: 100%;
  border: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#ft #top_btn:hover {
  background: rgba(55, 124, 179, 0.7);
  bottom: 23px;
}

/* 페이징 */
.pg_wrap {
  clear: both;
  float: left;
  display: inline-block;
  margin: 50px 0 0;
}

.pg_wrap:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

.pg {
  text-align: center;
}

.pg_page, .pg_current {
  display: inline-block;
  vertical-align: middle;
  background: #eee;
  border: 1px solid #eee;
}

.pg a:focus, .pg a:hover {
  text-decoration: none;
}

.pg_page {
  color: #959595;
  font-size: 1.083em;
  height: 30px;
  line-height: 28px;
  padding: 0 5px;
  min-width: 30px;
  text-decoration: none;
  border-radius: 3px;
}

.pg_page:hover {
  background-color: #fafafa;
}

.pg_start {
  text-indent: -999px;
  overflow: hidden;
  background: url("../img/btn_first.gif") no-repeat 50% 50% #eee;
  padding: 0;
  border: 1px solid #eee;
}

.pg_prev {
  text-indent: -999px;
  overflow: hidden;
  background: url("../img/btn_prev.gif") no-repeat 50% 50% #eee;
  padding: 0;
  border: 1px solid #eee;
}

.pg_end {
  text-indent: -999px;
  overflow: hidden;
  background: url("../img/btn_end.gif") no-repeat 50% 50% #eee;
  padding: 0;
  border: 1px solid #eee;
}

.pg_next {
  text-indent: -999px;
  overflow: hidden;
  background: url("../img/btn_next.gif") no-repeat 50% 50% #eee;
  padding: 0;
  border: 1px solid #eee;
}

.pg_start:hover, .pg_prev:hover, .pg_end:hover, .pg_next:hover {
  background-color: #fafafa;
}

.pg_current {
  display: inline-block;
  background: #377cb3;
  border: 1px solid #377cb3;
  color: #fff;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  min-width: 30px;
  border-radius: 3px;
}

/* 푸터 f */
/* import */
.page-indicator {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  z-index: 99;
}
.page-indicator ul li {
  text-align: right;
  position: relative;
}
.page-indicator ul li a {
  font-size: 1.4rem;
  color: var(--ccc);
  display: block;
  padding: 15px;
  font-weight: 300;
}
.page-indicator ul li.active::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--b33);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-animation: page 0.8s linear both;
          animation: page 0.8s linear both;
}
.page-indicator ul li.active a {
  color: var(--b33);
  font-weight: 600;
}
.page-indicator.out {
  opacity: 0;
  pointer-events: none;
}

.secode_mainSlide {
  position: fixed;
  width: 100%;
  height: 100%;
}

.contents-wrap {
  -webkit-transform: translate(0%, 100vh);
          transform: translate(0%, 100vh);
  background: var(--fff);
  padding-bottom: 100vh;
}

.mainSlide {
  width: 100%;
  height: 100vh;
}
.mainSlide .mainSlide_wrap {
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.mainSlide .mainSlide_wrap .slick-list {
  height: 100%;
}
.mainSlide .mainSlide_wrap .slick-track {
  height: 100%;
}
.mainSlide .mainSlide_wrap .slick-slide {
  height: 100%;
  float: left;
}
.mainSlide .mainSlide_wrap .slick-slide ::after {
  display: block;
  clear: both;
  content: "";
}
.mainSlide .mainSlide_wrap .slick-slide .mainSlide_list {
  height: 100vh;
  position: relative;
}
.mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
}
.mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  line-height: 50px;
  bottom: 100px;
}
.mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt h2 {
  font-size: 8rem;
  opacity: 0;
  line-height: 1.2;
}
.mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt p {
  font-size: 2.4rem;
  padding: 10px 0 30px 0;
  opacity: 0;
}
.mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt .time_bar {
  width: 200px;
  height: 7px;
  background: rgba(242, 242, 242, 0.8);
  margin: 0 auto;
  position: relative;
}
.mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt .time_bar.time_barOn::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  -webkit-animation: timebar 7s ease both;
          animation: timebar 7s ease both;
  background: #377cb3;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainSlide .mainSlide_wrap .slick-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2.4rem;
}
.mainSlide .mainSlide_wrap .slick-dots li {
  position: absolute;
  opacity: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.mainSlide .mainSlide_wrap .slick-dots li.slick-active {
  opacity: 1;
}
.mainSlide .mainSlide_wrap .slick-dots button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: #fff;
}
.mainSlide .set_link {
  position: absolute;
  top: 90px;
  right: 20px;
  -webkit-animation: circle 4s infinite;
          animation: circle 4s infinite;
}
.mainSlide .set_link i {
  color: red;
  font-size: 2rem;
}
.mainSlide .slide--op {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 50px;
}
.mainSlide .slide--op .slide_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 20px 0 0;
}
.mainSlide .slide--op .slide_btn li {
  padding: 5px 10px;
}
.mainSlide .slide--op .slide_btn i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.mainSlide .slide--op .slide_btn .slide_prev {
  margin: 0 20px 0 0;
}
.mainSlide .slide--op .slide_btn .slide_prev i {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.mainSlide .slide--op .slide_btn .slide_next i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.mainSlide .slide--op .slick-dots li {
  display: inline-block;
  margin: 0 10px;
}
.mainSlide .slide--op .slick-dots li button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
}
.mainSlide .slide--op .slick-dots li.slick-active button {
  opacity: 1;
}

/* 메인슬라이드 f */
/* mainabout s */
.mainAbout-wrap {
  padding: 200px 0;
}
.mainAbout-wrap .mainAbout-top h2 {
  font-size: 4rem;
  color: var(--b33);
  padding: 0 0 50px 0;
}
.mainAbout-wrap .mainAbout-top p {
  font-size: 1.8rem;
  color: var(--b33);
  line-height: 1.5;
  font-weight: 600;
  padding: 0 0 5px 0;
}
.mainAbout-wrap .mainAbout-bt p {
  font-size: 2.2rem;
  color: var(--b55);
  line-height: 1.5;
  font-weight: 300;
}

/* mainabout f */
/* maincampus s */
.secode_maincampus .maincampus-wrap {
  position: relative;
  margin: 0 0 200px;
}
.secode_maincampus .maincampus-wrap .swiper {
  overflow: hidden;
}
.secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide {
  height: 70vh;
}
.secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide .swiper-slidebg {
  position: relative;
  position: absolute;
  width: 100%;
  height: 100%;
}
.secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide .swiper-slidebg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide .swiper-slide-link a {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide .swiper-slide-link a img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.secode_maincampus .maincampus-wrap .swiper .swiper-wrapper iframe {
  width: 100%;
  height: 100%;
}
.secode_maincampus .maincampus-wrap .swiper-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 80vw;
  font-size: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--ccc);
  cursor: pointer;
  z-index: -1;
}

/* maincampus f */
/* mainarchive s */
.secode_mainarchive .mainarchive-wrap {
  padding: 0 0 200px 0;
}
.secode_mainarchive .mainarchive-wrap .swiper-cover .swiper-wrapper .swiper-slide {
  width: 300px !important;
  overflow: hidden;
}
.secode_mainarchive .mainarchive-wrap .swiper-cover .swiper-wrapper .swiper-slide .swiper-cover-img {
  border: 1px solid #ddd;
}
.secode_mainarchive .mainarchive-wrap .swiper-cover .swiper-wrapper .swiper-slide .swiper-cover-text {
  margin: 20px 0 0;
}
.secode_mainarchive .mainarchive-wrap .swiper-cover .swiper-wrapper .swiper-slide .swiper-cover-text span {
  font-size: 1.6rem;
  color: var(--g77);
}
.secode_mainarchive .mainarchive-wrap .swiper-cover .swiper-wrapper .swiper-slide .swiper-cover-text h3 {
  font-size: 1.8rem;
  color: var(--b33);
}

/* mainarchive f */
/* mainNotice s */
.secode_mainNotice .mainnotice-wrap {
  padding: 0 0 200px 0;
}
.secode_mainNotice .mainnotice-wrap .mainNotice ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.secode_mainNotice .mainnotice-wrap .mainNotice ul li {
  padding: 5px 10px;
}
.secode_mainNotice .mainnotice-wrap .mainNotice ul li {
  width: 32%;
  border: 1px solid #ddd;
  margin: 0 0.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 20px;
  height: 30vh;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.secode_mainNotice .mainnotice-wrap .mainNotice ul li a h2 {
  font-size: 2rem;
  padding: 0 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.secode_mainNotice .mainnotice-wrap .mainNotice ul li a h2 i {
  color: #377cb3;
  font-size: 2.5rem;
}
.secode_mainNotice .mainnotice-wrap .mainNotice ul li a p {
  font-size: 1.6rem;
  color: var(--g77);
  font-weight: 300;
  line-height: 1.7;
  word-break: break-all;
}
.secode_mainNotice .mainnotice-wrap .mainNotice ul li:hover {
  border: 1px solid #377cb3;
  border-radius: 10px;
  width: 39%;
}

/* mainNotice f */
/* maingallery s */
.secode_maingallery .maingallery-wrap {
  width: 100%;
  padding: 0 0 300px 0;
}
.secode_maingallery .maingallery-wrap .maingallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list {
  width: calc(25% - 20px);
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list .gallery-list--img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list .gallery-list--img img {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list .gallery-list--img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list .gallery-list--img:hover::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list .gallery-list--img:hover::after {
  content: "+";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  color: var(--fff);
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  border: 1px solid #ddd;
  text-align: center;
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list .gallery-list--text {
  padding: 20px 0;
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list .gallery-list--text h3 {
  font-size: 1.6rem;
  color: var(--g77);
  font-weight: 400;
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list:nth-child(even) {
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}
.secode_maingallery .maingallery-wrap .maingallery .gallery-list:nth-child(even) a .gallery-list--img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* maingallery f */
/* mainportfolio s */
.secode_mainPortfolio .portfolio--wrap {
  width: 90vw;
  margin: 0 auto 200px;
  position: relative;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery {
  padding: 0 0 50px 0;
  -webkit-transition: 0.8s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.8s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li {
  width: 25%;
  margin: 0 20px 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li .pf-info {
  width: 100%;
  height: 100%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li .pf-info a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li .pf-info a .pf-info--text {
  font-size: 2rem;
  color: var(--fff);
  padding: 15px 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li .pf-info a .pf-info--text h4 {
  display: inline-block;
  margin-right: 5px;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li .pf-info a .pf-info--text span {
  font-size: 1.8rem;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li .pf-info a::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  height: 100%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last {
  background: var(--b33);
  position: relative;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info {
  width: 85%;
  height: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info a {
  font-size: 2rem;
  color: var(--fff);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  text-transform: uppercase;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info a span {
  color: var(--fff);
  font-size: 1.8rem;
  display: block;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info a::after {
  display: none;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info::before {
  content: "";
  display: block;
  border-left: 1px solid var(--fff);
  border-top: 1px solid var(--fff);
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 30%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info::after {
  content: "";
  display: block;
  border-left: 1px solid var(--fff);
  border-bottom: 1px solid var(--fff);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 30%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info .pf-info--box {
  width: 100%;
  height: 100%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info .pf-info--box::before {
  content: "";
  display: block;
  border-right: 1px solid var(--fff);
  border-top: 1px solid var(--fff);
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 30%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info .pf-info--box::after {
  content: "";
  display: block;
  border-right: 1px solid var(--fff);
  border-bottom: 1px solid var(--fff);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 30%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery:nth-child(odd) {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 0;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery:nth-child(even) {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery.visible:nth-child(odd) {
  -webkit-transform: translateX(15%);
          transform: translateX(15%);
  opacity: 1;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery.visible:nth-child(even) {
  -webkit-transform: translateX(5%);
          transform: translateX(5%);
  opacity: 1;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery.visible li:nth-child(1) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 0.2s ease both;
          animation: imgAnimation 0.8s 0.2s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery.visible li:nth-child(2) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 0.4s ease both;
          animation: imgAnimation 0.8s 0.4s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery.visible li:nth-child(3) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 0.6s ease both;
          animation: imgAnimation 0.8s 0.6s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery.visible li:nth-child(4) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 0.8s ease both;
          animation: imgAnimation 0.8s 0.8s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo {
  padding: 0 0 50px 0;
  -webkit-transition: 0.8s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.8s all cubic-bezier(0.075, 0.82, 0.165, 1);
  display: none;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li {
  width: 25%;
  margin: 0 20px 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li .pf-info {
  width: 100%;
  height: 100%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li .pf-info a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li .pf-info a .pf-info--text {
  font-size: 2rem;
  color: var(--fff);
  padding: 15px 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li .pf-info a .pf-info--text h4 {
  display: inline-block;
  margin-right: 5px;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li .pf-info a .pf-info--text span {
  font-size: 1.8rem;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li .pf-info a::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  height: 100%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last {
  background: var(--b33);
  position: relative;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last .pf-info {
  width: 85%;
  height: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last .pf-info a {
  font-size: 2rem;
  color: var(--fff);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  text-transform: uppercase;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last .pf-info a span {
  color: var(--fff);
  font-size: 1.8rem;
  display: block;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last .pf-info a::after {
  display: none;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last .pf-info::before {
  content: "";
  display: block;
  border-left: 1px solid var(--fff);
  border-top: 1px solid var(--fff);
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 30%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last .pf-info::after {
  content: "";
  display: block;
  border-left: 1px solid var(--fff);
  border-bottom: 1px solid var(--fff);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 30%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last .pf-info .pf-info--box {
  width: 100%;
  height: 100%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last .pf-info .pf-info--box::before {
  content: "";
  display: block;
  border-right: 1px solid var(--fff);
  border-top: 1px solid var(--fff);
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 30%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--last .pf-info .pf-info--box::after {
  content: "";
  display: block;
  border-right: 1px solid var(--fff);
  border-bottom: 1px solid var(--fff);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 30%;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo:nth-child(odd) {
  -webkit-transform: translateX(25%);
          transform: translateX(25%);
  opacity: 0;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible:nth-child(odd) {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible li:nth-child(1) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 0.2s ease both;
          animation: imgAnimation 0.8s 0.2s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible li:nth-child(2) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 0.4s ease both;
          animation: imgAnimation 0.8s 0.4s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible li:nth-child(3) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 0.6s ease both;
          animation: imgAnimation 0.8s 0.6s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible li:nth-child(4) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 0.8s ease both;
          animation: imgAnimation 0.8s 0.8s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible li:nth-child(5) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 1s ease both;
          animation: imgAnimation 0.8s 1s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible li:nth-child(6) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 1.2s ease both;
          animation: imgAnimation 0.8s 1.2s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible li:nth-child(7) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 1.4s ease both;
          animation: imgAnimation 0.8s 1.4s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible li:nth-child(8) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 1.6s ease both;
          animation: imgAnimation 0.8s 1.6s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-gallery--mo.visible li:nth-child(9) {
  -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
  opacity: 0;
  -webkit-animation: imgAnimation 0.8s 1.8s ease both;
          animation: imgAnimation 0.8s 1.8s ease both;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.secode_mainPortfolio .portfolio--wrap .pf-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20rem;
  color: var(--b33);
  opacity: 0.1;
  font-weight: 800;
  letter-spacing: -10px;
  white-space: nowrap;
  left: 100%;
  opacity: 0;
}
.secode_mainPortfolio .portfolio--wrap .pf-text.visible {
  -webkit-animation: pf 8s linear infinite;
          animation: pf 8s linear infinite;
  opacity: 0.1;
}

/* mainportfolio f */
/* article s*/
.secode_article {
  height: 250px;
  position: relative;
}
.secode_article .article-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.secode_article .article-wrap .article-txt {
  position: relative;
  z-index: 3;
}
.secode_article .article-wrap .article-txt span {
  font-size: 2rem;
  color: #b5b5b5;
  display: block;
}
.secode_article .article-wrap .article-txt h4 {
  font-size: 2.2rem;
  color: var(--eee);
}
.secode_article .article-wrap .article-txt .layout--btn {
  margin: 50px 0 0;
  color: var(--eee);
  border: 1px solid var(--ccc);
}
.secode_article .article-wrap .article-txt .layout--btn::before {
  background: var(--eee);
}
.secode_article .article-wrap .guide, .secode_article .article-wrap .curr {
  width: 50%;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.secode_article .article-wrap .guide::before, .secode_article .article-wrap .curr::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.secode_article .article-wrap .guide:hover::before, .secode_article .article-wrap .curr:hover::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(55, 124, 179, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.secode_article .article-wrap .guide .article-txt {
  text-align: right;
}
.secode_article .article-bg {
  background: url("../img/article.jpg") no-repeat center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}

/* article f*/
.hd-sub #hd_wrapper #gnb #gnb_1dul .gnb_1dli a {
  color: var(--b33) !important;
}
.hd-sub #hd_wrapper #gnb #gnb_1dul .gnb_1dli.gnb_liOn {
  background: none !important;
}
.hd-sub #hd_wrapper .hd_sch_wr #hd_sch_open i {
  color: var(--b33) !important;
}
.hd-sub #hd_wrapper #hd_op_btn .hd_op__login i {
  color: var(--b33) !important;
}
.hd-sub #hd_wrapper #web_global .web_global_btn {
  color: var(--b33) !important;
}
.hd-sub.hd_zindex #hd_wrapper #gnb #gnb_1dul .gnb_2dli a {
  color: var(--cc7) !important;
}

body.scrolled .hd-sub #hd_wrapper #gnb #gnb_1dul .gnb_1da, body.scrolled .hd-sub #hd_wrapper .hd_sch_wr #hd_sch_open i, body.scrolled .hd-sub #hd_wrapper #hd_op_btn .hd_op__login i, body.scrolled .hd-sub #hd_wrapper #web_global .web_global_btn {
  color: var(--fff) !important;
}
body.scrolled .hd-sub .gnb_2dul {
  background: var(--eee) !important;
  top: 65px !important;
}
body.scrolled .hd-sub #hd_wrapper #gnb #gnb_1dul .gnb_2dli a {
  color: var(--b55) !important;
}

.sub-page, .board--area {
  padding: 200px 0 100px;
  overflow: hidden;
}

.sub-page.contact-area .siteguide--change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 50px;
}
.sub-page.contact-area .siteguide--change a {
  width: 50%;
  height: 50px;
  line-height: 50px;
  display: block;
  font-size: 1.8rem;
  text-align: center;
  border: 1px solid #ddd;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sub-page.contact-area .siteguide--change a:hover {
  background: var(--b33);
  color: var(--fff);
  border: none;
}
.sub-page.contact-area .siteguide--change a.active {
  background: var(--b33);
  color: var(--fff);
  border: none;
}
.sub-page.contact-area .siteguide--privacy, .sub-page.contact-area .siteguide--emailno {
  display: none;
}
.sub-page.contact-area .siteguide--privacy pre, .sub-page.contact-area .siteguide--emailno pre {
  font-size: 1.6rem;
  line-height: 1.5;
  white-space: pre-line;
  font-family: "pretendard", AppleGothic, dotum, sans-serif !important;
  overflow-x: hidden;
}
.sub-page.contact-area .siteguide--privacy.active, .sub-page.contact-area .siteguide--emailno.active {
  display: block;
}

.content-area .content-wrap h2 {
  font-size: 5rem;
}
.content-area .content-wrap p {
  font-size: 2rem;
  line-height: 1.5;
  color: var(--b33);
  font-weight: 300;
}
.content-area .content-wrap .content-div {
  margin: 30px 0 150px 0;
}
.content-area .content-wrap h3 {
  font-size: 2.4rem;
  margin: 0 0 20px;
}
.content-area .content-wrap .drop-text2 {
  font-size: 1.8rem;
  margin: 20px 0 10px 0;
}
.content-area .content-wrap .content-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 70px 0;
}
.content-area .content-wrap .content-img figure {
  width: calc(33.3333333333% - 25px);
  margin: 0 25px 50px 0;
}
.content-area .content-wrap .content-img figure img {
  overflow: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.content-area .content-wrap .content-img figure img:hover {
  border-radius: 30px;
}
.content-area .content-wrap .content-img figure figcaption {
  font-size: 1.6rem;
  padding: 10px;
}
.content-area .content-wrap .content-flex-depth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content-area .content-wrap .content-flex-depth .content-flex-left {
  width: 60%;
  padding: 0 70px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.content-area .content-wrap .content-flex-depth .content-flex-right {
  width: 40%;
}
.content-area .content-wrap .content-flex-depth .content-flex-right figure {
  margin: 0;
}
.content-area .content-wrap .content-flex-depth .content-flex-right figure img {
  overflow: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.content-area .content-wrap .content-flex-depth .content-flex-right figure img:hover {
  border-radius: 30px;
}
.content-area .content-wrap .content-flex-depth .content-flex-right figure figcaption {
  font-size: 1.6rem;
  padding: 10px;
}
.content-area .content-wrap .content-flex-img .content-flex-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-left, .content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-right {
  width: 50%;
}
.content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-left figure, .content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-right figure {
  margin: 0;
}
.content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-left figure img, .content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-right figure img {
  overflow: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-left figure img:hover, .content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-right figure img:hover {
  border-radius: 30px;
}
.content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-left figure figcaption, .content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-right figure figcaption {
  font-size: 1.6rem;
  padding: 10px;
}
.content-area .content-wrap .sub-tab .sub-tab-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 100px 0;
}
.content-area .content-wrap .sub-tab .sub-tab-area .sub-tab--link {
  display: block;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-size: 2rem;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.content-area .content-wrap .sub-tab .sub-tab-area .sub-tab--link.act {
  background: #377cb3;
  color: var(--fff);
}
.content-area .content-wrap .sub-tab--obj {
  display: none;
}
.content-area .content-wrap .sub-tab--obj.act {
  display: block;
}
.content-area .content-wrap .program-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 100px 0 0;
  height: 50vh;
}
.content-area .content-wrap .program-info .program-info--img {
  width: 60%;
}
.content-area .content-wrap .program-info .program-info--list-wrap {
  width: 40%;
}
.content-area .content-wrap .program-info .program-info--list {
  text-align: center;
}
.content-area .content-wrap .program-info .program-info--list img {
  height: 75%;
  border-bottom: 1px solid var(--b55);
}
.content-area .content-wrap .program-info .program-info--list .program-info--list-txt {
  padding: 20px 10px;
}
.content-area .content-wrap .program-info .program-info--list .program-info--list-txt span {
  font-size: 2rem;
  margin: 0 0 20px;
  display: block;
}
.content-area .content-wrap .program-info .program-info--list .program-info--list-txt p {
  font-size: 1.6rem;
  color: var(--b55);
}
.content-area .content-wrap table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  font-size: 1.6rem;
  word-break: keep-all;
  margin: 70px 0 140px;
  line-height: 1.5;
}
.content-area .content-wrap table th {
  padding: 15px 15px;
  border: 1px solid #ddd;
  background: rgba(55, 124, 179, 0.6);
  color: var(--fff);
  font-weight: 500;
}
.content-area .content-wrap table td {
  padding: 10px;
  border: 1px solid #ddd;
}
.content-area .content-wrap table .min180 {
  width: 180px;
  min-width: 180px;
}
.content-area .content-wrap table .center {
  text-align: center;
}
.content-area .content-wrap .content-img-nomal {
  margin: 50px 0 70px;
}
.content-area .content-wrap .content-img-popup {
  position: relative;
}
.content-area .content-wrap .content-img-popup img {
  width: 80%;
  display: block;
  margin: 150px auto 0;
  cursor: pointer;
}
.content-area .content-wrap .content-img-popup span {
  display: block;
  width: 100%;
  padding: 10px 0;
  width: 100%;
  background: #377cb3;
  color: var(--fff);
  text-align: center;
  font-size: 1.6rem;
  border-radius: 5px;
}
.content-area .content-wrap .content-img-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content-area .content-wrap .content-img-flex .content-img-flex--info {
  width: 40%;
  padding: 0 30px;
  height: 30vh;
  position: sticky;
  top: 120px;
}
.content-area .content-wrap .content-img-flex .content-img-flex--info h4 {
  font-size: 2rem;
  margin: 0 0 50px 0;
}
.content-area .content-wrap .content-img-flex .content-img-flex--info a, .content-area .content-wrap .content-img-flex .content-img-flex--info span {
  display: block;
  width: 100%;
  padding: 10px 0;
  width: 100%;
  background: #377cb3;
  color: var(--fff);
  text-align: center;
  font-size: 1.6rem;
  border-radius: 5px;
}
.content-area .content-wrap .content-img-flex .content-img-flex--info a {
  margin: 0 0 20px;
  background: var(--b22);
}
.content-area .content-wrap .content-img-flex img {
  width: 50% !important;
}
.content-area .content-wrap .content-kaab--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  height: 30vh;
}
.content-area .content-wrap .content-kaab--list li {
  width: calc(20% - 20px);
  margin: 0 10px;
  position: relative;
  background: var(--f55);
}
.content-area .content-wrap .content-kaab--list li .content-kaab--list-info {
  text-align: center;
  font-size: 2rem;
  word-break: keep-all;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.content-area .content-wrap .content-kaab--list li .content-kaab--list-info i {
  display: block;
  font-size: 2em;
  margin: 0 0 30px;
  color: var(--cc7);
}
.content-area .content-wrap .content-kaab--list li:nth-child(even) {
  background: #377cb3;
  color: var(--fff);
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  border-radius: 5px 100px 5px 5px;
}
.content-area .content-wrap .content-kaab--list li:nth-child(even) .content-kaab--list-info i {
  color: var(--eee);
}
.content-area .content-wrap .content-download-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding: 20px 0 50px;
}
.content-area .content-wrap .content-download-list a {
  display: block;
  padding: 20px;
  font-size: 1.6rem;
  min-width: 150px;
  word-break: keep-all;
  margin: 0 20px 0 0;
  border-radius: 0 40px 0 0;
  background: var(--f55);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.content-area .content-wrap .content-download-list a:hover {
  background: #377cb3;
  color: var(--fff);
}
.content-area .content-wrap .content-download-list a i {
  display: block;
  font-size: 3rem;
  margin: 0 0 50px;
}
.content-area .content-wrap .content-download-list::-webkit-scrollbar {
  height: 10px;
}
.content-area .content-wrap .content-download-list::-webkit-scrollbar-thumb {
  background-color: var(--b55);
  border-radius: 30px;
}
.content-area .content-wrap .content-download-list::-webkit-scrollbar-track {
  background-color: #ddd;
}
.content-area .program-info--table {
  text-align: center;
}
.content-area .program-info--table .edge {
  background: var(--f55);
}
.content-area .program-info--table td {
  min-height: 30px;
}

.about-wrap h2 {
  font-size: 5rem;
}
.about-wrap p {
  font-size: 2rem;
  line-height: 1.5;
  color: var(--b33);
  font-weight: 300;
}
.about-wrap div {
  margin: 0 0 70px 0;
}
.about-wrap h3 {
  font-size: 2.4rem;
  margin: 0 0 20px;
}
.about-wrap img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.history-wrap table {
  width: 100%;
  font-size: 1.6rem;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
.history-wrap table td, .history-wrap table th {
  padding: 15px;
  border: 1px solid #ddd;
}
.history-wrap table th {
  background: var(--f55);
}
.history-wrap table td:nth-child(1) {
  text-align: center;
}
.history-wrap p {
  font-size: 2rem;
  line-height: 1.5;
  color: var(--b33);
  font-weight: 300;
}
.history-wrap div {
  margin: 0 0 70px 0;
}
.history-wrap h3 {
  font-size: 2.4rem;
  margin: 0 0 20px;
}
.history-wrap img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.contact-wrap iframe {
  width: 100%;
  margin: 30px 0 5px;
}
.contact-wrap .contact-2depth {
  font-size: 2rem;
  background: #333;
  color: var(--fff);
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}
.contact-wrap .contact-3depth {
  padding: 50px 0;
  margin: 50px 0;
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-wrap .contact-3depth h3 {
  font-size: 2.4rem;
  width: 20%;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-wrap .contact-3depth .contact-3depth--infoWrap {
  width: 80%;
}
.contact-wrap .contact-3depth .contact-3depth--infoWrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact-wrap .contact-3depth .contact-3depth--infoWrap ul li {
  width: 50%;
  margin: 0 0 20px 0;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 2.2rem;
  font-weight: 500;
}
.contact-wrap .contact-3depth .contact-3depth--infoWrap ul li p {
  font-size: 1.6rem;
  color: var(--b55);
  font-weight: 300;
  line-height: 1.5;
  padding: 10px 0 20px;
}
.contact-wrap .contact-4depth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 70px 0 0;
}
.contact-wrap .contact-4depth h3 {
  font-size: 2.4rem;
  width: 20%;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-wrap .contact-4depth .contact-4depth--infoWrap {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.8rem;
}
.contact-wrap .contact-4depth .contact-4depth--infoWrap .contact-4depth--info {
  width: 50%;
  margin: 0 0 20px 0;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-wrap .contact-4depth .contact-4depth--infoWrap .contact-4depth--info .contact-4depth--icon i {
  display: block;
  font-size: 3.4rem;
  color: var(--g77);
}
.contact-wrap .contact-4depth .contact-4depth--infoWrap .contact-4depth--info .contact-4depth--icon p {
  font-size: 2.2rem;
  font-weight: 500;
  padding: 10px 0 20px;
}
.contact-wrap .contact-4depth .contact-4depth--infoWrap .contact-4depth--info .contact-4depth--icon p span {
  font-size: 0.8em;
  color: var(--g77);
  font-weight: 400;
}
.contact-wrap .contact-4depth .contact-4depth--infoWrap .contact-4depth--info .contact-4depth--txt p {
  font-size: 1.6rem;
  color: var(--b55);
  font-weight: 300;
  line-height: 1.5;
}

.board--area {
  font-size: 1.6rem;
}
.board--area #bo_btn_top .btn_bo_user li button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: var(--g77);
}
.board--area #bo_btn_top .btn_bo_user li a {
  color: var(--g77);
}
.board--area #bo_v_share {
  display: none;
}
.board--area #bo_v_top ul li button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: var(--g77);
}
.board--area #bo_v_top ul li a {
  color: var(--g77);
}
.board--area #bo_cate {
  margin: 0 0 50px 0;
}
.board--area #bo_cate #bo_cate_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board--area #bo_cate #bo_cate_ul li {
  margin: 0 10px 0 0;
  padding: 10px;
}
.board--area #bo_cate #bo_cate_ul li a, .board--area #bo_cate #bo_cate_ul li button {
  text-transform: uppercase;
  color: var(--cc7);
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.board--area #bo_cate #bo_cate_ul li a#bo_cate_on, .board--area #bo_cate #bo_cate_ul li button#bo_cate_on {
  mix-blend-mode: difference;
}
.board--area #bo_cate #bo_cate_ul li a#bo_cate_on::before, .board--area #bo_cate #bo_cate_ul li button#bo_cate_on::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: var(--b22);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  -webkit-animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.board--area #bo_cate #bo_cate_ul li a:hover, .board--area #bo_cate #bo_cate_ul li button:hover {
  mix-blend-mode: difference;
}
.board--area #bo_cate #bo_cate_ul li a:hover::before, .board--area #bo_cate #bo_cate_ul li button:hover::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: var(--b22);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  -webkit-animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.board--area #bo_cate #bo_cate_ul li button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.board--area #bo_cate #bo_cate_ul li.list-on {
  mix-blend-mode: difference;
  position: relative;
}
.board--area #bo_cate #bo_cate_ul li.list-on::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: var(--b22);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  -webkit-animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: bocate 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.board--area #bo_gall.people .people-cate--wrap {
  margin: 50px 0 70px;
}
.board--area #bo_gall.people .people-cate--wrap .sbt {
  display: inline-block;
}
.board--area #bo_gall.people .people-cate--wrap .people-cate-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board--area #bo_gall.people .people-cate--wrap .people-cate-list {
  width: calc(25% - 21px);
  padding: 0;
  margin: 0 20px 50px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.board--area #bo_gall.people .people-cate--wrap .people-cate-list .gall_text_href {
  position: relative;
  padding: 25px;
  text-align: center;
}
.board--area #bo_gall.people .people-cate--wrap .people-cate-list .gall_text_href .bo_cate_link {
  position: absolute;
  right: 20px;
  width: 100px;
  top: -65px;
  background: #377cb3;
  border-radius: 50%;
  color: var(--fff);
  text-transform: uppercase;
  font-weight: bold;
  display: none;
}
.board--area #bo_gall.people .people-cate--wrap .people-cate-list .gall_text_href .bo_cate_link span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.board--area #bo_gall.people .people-cate--wrap .people-cate-list .gall_text_href .bo_cate_link::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.board--area #bo_gall.people .people-cate--wrap .people-cate-list .gall_text_href h3 {
  font-size: 2rem;
  margin: 0 0 5px;
}
.board--area #bo_gall.people .people-cate--wrap .people-cate-list .gall_text_href p {
  color: var(--g77);
}
.board--area #bo_gall.people .people-cate-list-wrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board--area #bo_gall.people .people-cate-list2 {
  width: calc(25% - 21px);
  padding: 0;
  margin: 0 20px 50px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.board--area #bo_gall.people .people-cate-list2 .gall_text_href {
  position: relative;
  padding: 25px;
  text-align: center;
}
.board--area #bo_gall.people .people-cate-list2 .gall_text_href .bo_cate_link {
  position: absolute;
  right: 20px;
  width: 100px;
  top: -65px;
  display: none;
  background: #377cb3;
  border-radius: 50%;
  color: var(--fff);
  text-transform: uppercase;
  font-weight: bold;
}
.board--area #bo_gall.people .people-cate-list2 .gall_text_href .bo_cate_link span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.board--area #bo_gall.people .people-cate-list2 .gall_text_href .bo_cate_link::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.board--area #bo_gall.people .people-cate-list2 .gall_text_href h3 {
  font-size: 2rem;
  margin: 0 0 5px;
}
.board--area #bo_gall.people .people-cate-list2 .gall_text_href p {
  color: var(--g77);
}
.board--area #bo_gall.event #gall_ul .gall_li {
  margin: 0 0 50px;
  padding: 50px 0;
  border-bottom: 1px solid #ddd;
}
.board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gal_num {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 3rem;
  color: var(--ccc);
}
.board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_img {
  width: 30%;
}
.board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_img a {
  display: block;
  width: 100%;
  height: 100%;
}
.board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_img a img {
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_text_href {
  width: 70%;
  padding: 15px 0;
}
.board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_text_href span {
  font-size: 2rem;
  color: var(--g77);
}
.board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_text_href .bo_tit {
  position: absolute;
  bottom: 15px;
  font-size: 2.2rem;
  color: var(--b33);
  right: 20px;
  text-align: right;
  font-weight: bold;
}
.board--area #bo_gall.studio .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.board--area #bo_gall.studio .grid .grid--item {
  width: calc(33.3333333333% - 20px);
  margin: 0 0 50px 0;
}
.board--area #bo_gall.studio .grid .grid--item .gall_box {
  position: relative;
  height: 100%;
}
.board--area #bo_gall.studio .grid .grid--item .gall_box .gall_chk {
  position: absolute;
  z-index: 2;
}
.board--area #bo_gall.studio .grid .grid--item .gall_box .gall_con {
  height: 100%;
}
.board--area #bo_gall.studio .grid .grid--item .gall_box .gall_con .gall_img {
  height: 100%;
}
.board--area #bo_gall.studio .grid .grid--item .gall_box .gall_con .gall_img a {
  height: 100%;
}
.board--area #bo_gall.studio .grid .grid--item .gall_box .gall_con .gall_text_href {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: rgba(51, 51, 51, 0.8);
  opacity: 0;
  color: var(--fff);
}
.board--area #bo_gall.studio .grid .grid--item .gall_box .gall_con .gall_text_href a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: var(--fff);
  font-size: 2rem;
}
.board--area #bo_gall.studio .grid .grid--item .gall_box .gall_con .gall_text_href p {
  text-transform: capitalize;
  margin: 0 0 5px 0;
  position: absolute;
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.board--area #bo_gall.studio .grid .grid--item .gall_box .gall_con .gall_text_href span {
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.board--area #bo_gall.studio .grid .grid--item .gall_box .gall_con.gall--on .gall_text_href {
  -webkit-animation: galRotate 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: galRotate 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.board--area #bo_gall.studio .bo_cate_wr {
  padding: 20px;
  line-height: 1.5;
  letter-spacing: -0.5px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.board--area #bo_gall.studio .bo_cate_wr.is_wr {
  background: var(--f55);
  margin: 0 0 50px;
  border-radius: 10px;
}
.board--area #bo_list table {
  width: 100%;
  border-collapse: collapse;
}
.board--area #bo_list table caption {
  font-size: 0;
}
.board--area #bo_list table td {
  padding: 15px;
}
.board--area #bo_list table th {
  padding: 15px;
}
.board--area #bo_list.notice table td, .board--area #bo_list.campus table td {
  border-bottom: 1px solid #ddd;
  padding: 20px;
}
.board--area #bo_list.notice table td .bo_tit, .board--area #bo_list.campus table td .bo_tit {
  display: inline-block;
}
.board--area #bo_list.notice table td .bo_tit a, .board--area #bo_list.campus table td .bo_tit a {
  font-size: 2rem;
  display: inline-block;
  position: relative;
}
.board--area #bo_list.notice table td.td_num2, .board--area #bo_list.notice table td.td_datetime, .board--area #bo_list.campus table td.td_num2, .board--area #bo_list.campus table td.td_datetime {
  color: var(--g77);
}
.board--area #bo_list.notice table tbody tr:hover .td_subject a::before, .board--area #bo_list.campus table tbody tr:hover .td_subject a::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #377cb3;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: td 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
          animation: td 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
  z-index: -1;
  opacity: 0.5;
}
.board--area #bo_list.achievement table thead th {
  background: var(--f55);
  border-bottom: 1px solid var(--b55);
}
.board--area #bo_list.achievement table .td_center {
  text-align: center;
}
.board--area #bo_list.graduate table {
  border: 1px solid #ddd;
  font-size: 1.8rem;
  text-align: center;
}
.board--area #bo_list.graduate table th, .board--area #bo_list.graduate table td {
  border: 1px solid #ddd;
}
.board--area #bo_list.graduate table thead th {
  background: var(--f55);
}
.board--area #bo_list.graduate table tr.borbt td {
  border-bottom: 2px solid var(--b33);
}
.board--area #bo_list.graduate .tab-area .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 50px 0;
}
.board--area #bo_list.graduate .tab-area .tab a {
  width: 50%;
  text-align: center;
  font-size: 2rem;
  padding: 20px;
  background: var(--eee);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.board--area #bo_list.graduate .tab-area .tab a.tab-on {
  background: #377cb3;
  color: var(--fff);
  font-weight: 600;
}
.board--area #bo_w .write_div input[type=text] {
  width: 100%;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ddd;
  padding: 0 10px;
}
.board--area #bo_w .write_div textarea {
  border: 1px solid #ddd;
}
.board--area #bo_w .write_div .cke_sc {
  display: none;
}
.board--area #bo_w .bo_w_tit .frm_input {
  padding: 0 120px 0 10px !important;
}
.board--area #bo_w .bo_w_flie .lb_icon {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.board--area #bo_w .btn_confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.board--area #bo_w .btn_confirm button {
  margin-right: 15px;
}
.board--area #bo_w .more-write {
  padding: 20px 0;
}
.board--area #bo_w .more-write h2 {
  font-size: 1.8rem;
  padding: 0 0 10px 0;
}
.board--area #bo_w .more-write .more-clone {
  display: none;
}
.board--area #bo_w .more-write .more-clone.plus--area0 {
  display: block;
}
.board--area #bo_w .more-write .more-clone iframe {
  height: 400px !important;
}
.board--area #bo_v.people #bo_v_info {
  border-bottom: none;
}
.board--area #bo_v.people #bo_v_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 50vh;
  overflow: unset;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_left {
  width: 30%;
  height: 60vh;
  position: sticky;
  top: 10%;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile {
  padding: 20px;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile .people--profile-img a img {
  width: 100%;
  height: auto;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile .people--profile-text {
  text-align: center;
  position: relative;
  padding: 25px;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile .people--profile-text span {
  text-transform: uppercase;
  position: absolute;
  right: 20px;
  top: -60px;
  display: none;
  background: #377cb3;
  color: var(--fff);
  width: 100px;
  border-radius: 50%;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile .people--profile-text span b {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile .people--profile-text span::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile .people--profile-text h2 {
  font-size: 2rem;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile .people--profile-text p {
  color: var(--g77);
}
.board--area #bo_v.people #bo_v_con #bo_v_con_right {
  width: 70%;
  padding: 20px;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_right .people--info {
  margin: 0 0 50px 0;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_right .people--info h2 {
  font-size: 2rem;
  padding: 10px 0;
  margin: 0 0 10px;
  border-bottom: 1px solid #ddd;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_right .people--info ul {
  padding: 15px 20px;
  background: var(--f55);
}
.board--area #bo_v.people #bo_v_con #bo_v_con_right .people--info ul li {
  margin: 0 0 5px 0;
  color: var(--g77);
}
.board--area #bo_v.people #bo_v_con #bo_v_con_right .people--info ul li span {
  font-weight: 500;
  min-width: 100px;
  display: inline-block;
  color: var(--b55);
  font-weight: 600;
}
.board--area #bo_v.people #bo_v_con #bo_v_con_right .people--info .people--info-pre {
  font-family: "pretendard", AppleGothic, dotum, sans-serif;
  font-size: 1.6rem;
  overflow: hidden;
  padding: 15px 20px;
  background: var(--f55);
  color: var(--g77);
}
.board--area #bo_v.people #bo_v_con #bo_v_con_right .people--info .people--info-pre p, .board--area #bo_v.people #bo_v_con #bo_v_con_right .people--info .people--info-pre span {
  font-family: "pretendard", AppleGothic, dotum, sans-serif !important;
  font-size: 1.6rem !important;
  color: var(--g77) !important;
}
.board--area #bo_v.notice #bo_v_img {
  max-width: 20vw;
}
.board--area #bo_v.notice #bo_v_atc {
  padding: 50px 0 0;
}
.board--area #bo_v.studio header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.board--area #bo_v.studio header #bo_v_title .bo_v_cate {
  color: var(--cc7);
  font-size: 1.6rem;
  display: block;
  text-transform: capitalize;
}
.board--area #bo_v.studio header #bo_v_title .bo_v_tit {
  font-size: 3rem;
}
.board--area #bo_v.studio header .back_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.board--area #bo_v.studio header .back_btn a {
  font-size: 5rem;
  display: block;
  position: relative;
  margin: 0 5px;
}
.board--area #bo_v.studio header .back_btn a.history--back {
  margin: 0 15px 0 0;
}
.board--area #bo_v.studio #bo_v_atc {
  border-top: 1px solid var(--b20);
  margin: 50px 0;
}
.board--area #bo_v.studio #bo_v_file.bo_v_file_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.board--area #bo_v.studio #bo_v_file.bo_v_file_top ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 220px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.board--area #bo_v.studio #bo_v_file.bo_v_file_top ul li i {
  font-size: 2rem;
  float: unset;
}
.board--area #bo_v.studio #bo_v_file.bo_v_file_top ul li a {
  float: unset;
}
.board--area #bo_v.studio .bo_v_nb {
  height: 50px;
  position: relative;
  border-top: 1px solid var(--b22);
  margin: 50px 0 0;
  padding: 50px 0 0;
}
.board--area #bo_v.studio .bo_v_nb .btn_prv {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.board--area #bo_v.studio .bo_v_nb .btn_next {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.board--area #bo_v.studio .bo_v_nb a {
  font-size: 6rem;
}
.board--area #bo_v.achievement #bo_v_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  word-break: keep-all;
  overflow: unset;
}
.board--area #bo_v.achievement #bo_v_con .bo_v_con_left {
  width: 60%;
}
.board--area #bo_v.achievement #bo_v_con .bo_v_con_right {
  width: 40%;
  position: sticky;
  top: 10%;
  min-height: 40vh;
  height: 100%;
}
.board--area #bo_v.achievement #bo_v_con .bo_v_con_right .bo_v_con_right_txt {
  padding: 40px;
}
.board--area #bo_v.achievement #bo_v_con .bo_v_con_right .bo_v_con_right_txt h3 {
  font-size: 2rem;
  padding: 10px 0 20px;
}
.board--area #bo_v.achievement #bo_v_con .bo_v_con_right .bo_v_con_right_txt span {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 0 0 5px;
}
.board--area #bo_v.achievement #bo_v_con .bo_v_con_right .bo_v_con_right_txt p {
  line-height: 1.5;
}

/* mbskin s */
#mb_login {
  width: 100%;
  position: relative;
  height: 100vh;
  background: #f7f7f7;
  font-size: 1.6rem;
}
#mb_login .mb_login_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 50vw;
  height: 75vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 5px 5px rgba(221, 221, 221, 0.8);
          box-shadow: 0 5px 5px rgba(221, 221, 221, 0.8);
  overflow: hidden;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#mb_login .mb_login_flex li {
  padding: 5px 10px;
}
#mb_login .mb_login_flex .mbskin-img {
  width: 100%;
  height: 30%;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#333), to(#6f6f6f));
  background: linear-gradient(to right, #333, #6f6f6f);
}
#mb_login .mb_login_flex .mbskin-img .mb_logo {
  max-width: 250px;
  position: absolute;
  top: 50%;
  right: 70px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#mb_login .mb_login_flex .mbskin-img .mb_logo img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
#mb_login .mb_login_flex .mbskin-img .mb_logo .tt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#mb_login .mb_login_flex .mbskin-img .mb_txt {
  padding: 80px;
  text-align: center;
}
#mb_login .mb_login_flex .mbskin-img .mb_txt h2 {
  font-size: 3.4rem;
  color: #fff;
}
#mb_login .mb_login_flex .mbskin-img .mb_txt p {
  padding: 20px 0 0;
  color: #f7f7f7;
  line-height: 1.5;
}
#mb_login .mb_login_flex .mbskin_box {
  width: 100%;
  position: relative;
}
#mb_login .mb_login_flex .mbskin_box .mb_log_cate {
  text-align: right;
}
#mb_login .mb_login_flex .mbskin_box .mb_log_cate a {
  margin: 0 5px;
  color: #333;
  font-size: 1.4rem;
}
#mb_login .mb_login_flex .mbskin_box .mbskin_box_layout {
  width: 60%;
  margin: 0 auto;
}
#mb_login .mb_login_flex .mbskin_box .mbskin_box_layout .mbskin_box_txt {
  padding: 0 0 50px 0;
}
#mb_login .mb_login_flex .mbskin_box .mbskin_box_layout .mbskin_box_txt h1 {
  font-size: 3rem;
  color: #333;
}
#mb_login .mb_login_flex .mbskin_box .mbskin_box_layout .mbskin_box_txt p {
  color: #777;
  padding: 20px 0 0;
  line-height: 1.5;
}
#mb_login .mb_login_flex .mbskin_box .mbskin_box_layout #login_fs #login_id, #mb_login .mb_login_flex .mbskin_box .mbskin_box_layout #login_fs #login_pw {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  padding: 0 10px;
  margin: 5px 0;
  font-size: 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}
#mb_login .mb_login_flex .mbskin_box .mbskin_box_layout #login_fs .btn_submit {
  width: 100%;
  height: 40px;
  background: var(--b33);
  border: none;
  color: #fff;
  margin: 30px 0 20px;
  border-radius: 5px;
}
#mb_login .mb_login_flex .mbskin_box .mbskin_box_layout #login_fs #login_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#profile {
  width: 70vw;
  margin: 0 auto;
  padding: 150px 0 50px;
}
#profile #win_title {
  display: none;
}
#profile img {
  width: auto;
  height: auto;
}
#profile .profile_name p {
  font-size: 3rem;
}
#profile .profile_name p span {
  color: #377cb3;
}
#profile .profile_name .my_profile_img {
  margin: 0 0 45px;
}
#profile .profile_name .my_profile_img img {
  width: 260px;
}
#profile .profile_name .sv_wrap {
  display: none;
}
#profile .lost_pass {
  width: 100%;
  display: block;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background: #377cb3;
  text-align: center;
  margin: 30px 0 0;
}
#profile .lost_pass a {
  color: #fff;
  font-size: 2rem;
  display: block;
  width: 100%;
  height: 100%;
}

.mbskin .btn_submit {
  background: #377cb3;
  border: none;
  color: #fff;
}

#mb_confirm {
  font-size: 1.4rem;
}

.register {
  padding: 200px 0 60px;
  font-size: 1.4rem;
}
.register #captcha img {
  width: 200px;
}
.register .btn_confirm .btn_submit {
  border: none;
  background: #377cb3;
  color: #fff;
}
.register .btn_close {
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 50px;
  text-align: center;
}
.register p {
  background: var(--b33);
}
.register textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.register #register_form h2 {
  background: var(--b33);
  color: var(--fff);
  font-size: 1.8rem;
}
.register #register_form .register_form_inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.register #register_form .register_form_inner ul li {
  width: calc(33.3333333333% - 20px);
}
.register #register_form .register_form_inner ul li input {
  width: 100%;
}
.register #register_form .register_form_inner ul.other_set {
  display: block;
}
.register #register_form .register_form_inner ul.other_set li {
  width: auto;
}
.register #register_form .register_form_inner ul.other_set li.is_captcha_use {
  margin: 20px 0 0;
}
.register #register_form .register_form_inner ul.other_set li.is_captcha_use b {
  font-size: 1.6rem;
  margin: 0 0 10px;
  display: block;
}
.register #register_form .register_form_inner ul.other_set li.is_captcha_use #captcha input {
  width: auto;
  min-width: 250px;
}
.register #register_form .register_form_inner ul.other_set li.is_captcha_use #captcha img {
  display: block;
}
.register #register_form .register_form_inner ul.other_set li.is_captcha_use #captcha button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  height: 40px;
  line-height: 40px;
  border: 1px solid #ddd;
  padding: 0 10px;
}
.register .reg_result_p {
  background: var(--fff);
}
.register .result_txt {
  background: var(--fff);
}

/* mbskin f */
/* 반응형 화면 크기 */
@media screen and (max-width: 1919px) and (min-width: 1441px) {
  .layout--init {
    width: 75vw;
  }
  #hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli a {
    font-size: 1.55rem;
  }
}
@media screen and (max-width: 1440px) {
  .layout--init {
    width: 75vw;
  }
  #hd #hd_wrapper #gnb #gnb_1dul .gnb_1dli a {
    font-size: 1.5rem;
  }
  .hd_sch_wr #hd_sch_open i, .hd_sch_wr #hd_op_btn i, .hd_sch_wr #web_global .web_global_btn {
    font-size: 2.5rem;
  }
  .mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt h2 {
    font-size: 7rem;
  }
  .mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt p {
    font-size: 2.2rem;
  }
  .mainAbout-wrap .mainAbout-top h2 {
    font-size: 3.6rem;
  }
  .mainAbout-wrap .mainAbout-bt p {
    font-size: 2rem;
  }
  .board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_text_href {
    padding: 15px;
  }
}
@media screen and (max-width: 1280px) {
  body.scrolled #hd {
    height: 60px;
  }
  body.scrolled #hd #hd_wrapper {
    height: 60px;
  }
  #right-open {
    display: block !important;
  }
  #hd_wrapper #hd_sch_open, #hd_wrapper #hd_op_btn, #hd_wrapper #web_global {
    display: none !important;
  }
  #hd #hd_wrapper #gnb {
    display: none !important;
  }
  .secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap {
    width: 85%;
  }
  .secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide {
    height: 60vh;
  }
  .secode_maincampus .maincampus-wrap .swiper-nav {
    min-width: 90vw;
  }
  .secode_mainNotice .mainnotice-wrap .mainNotice ul li a h2 {
    font-size: 1.9rem;
  }
  .secode_mainNotice .mainnotice-wrap .mainNotice ul li a p {
    font-size: 1.5rem;
  }
  .secode_article .article-wrap .article-txt span {
    font-size: 1.8rem;
  }
  .secode_article .article-wrap .article-txt h4 {
    font-size: 2rem;
  }
  .layout--btn {
    font-size: 1.6rem;
  }
  .page-indicator ul li a {
    font-size: 1.3rem;
    padding: 10px;
  }
  .hd-sub .hd_sch_wr #right-open i {
    color: var(--b22);
  }
  body.scrolled .hd-sub .hd_sch_wr #right-open i {
    color: var(--fff);
  }
  .board--area #bo_gall.people .people-cate--wrap .people-cate-list, .board--area #bo_gall.people .people-cate-list2 {
    width: calc(33.3333333333% - 21px);
  }
  .content-area .content-wrap .sub-tab {
    overflow-x: auto;
    white-space: nowrap;
  }
  .content-area .content-wrap .sub-tab .sub-tab-area {
    min-width: 960px;
    margin: 0 0 20px 0;
  }
  .content-area .content-wrap .sub-tab .sub-tab-area .sub-tab--link {
    font-size: 1.8rem;
  }
  .table-wrap {
    overflow-x: auto;
    padding: 40px 0;
    overflow-y: hidden;
    margin: 40px 0;
  }
  .table-wrap table {
    min-width: 960px;
    margin: 0 !important;
    padding: 0;
  }
  .board--area #bo_gall.studio .grid .grid--item {
    width: calc(50% - 20px);
  }
  .board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_img a img {
    width: 100%;
  }
  .product-list .gall_row .col-gn-3 {
    width: 50%;
  }
}
@media screen and (max-width: 1180px) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 59%;
  }
  .mainAbout-wrap .mainAbout-bt p {
    font-size: 1.8rem;
  }
  .secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li .pf-info a .pf-info--text, .secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap li.pf-gallery--last .pf-info a {
    font-size: 1.8rem;
  }
  .secode_mainPortfolio .portfolio--wrap .pf-gallery .pf-gallery--wrap {
    width: 95%;
  }
  .secode_mainPortfolio .portfolio--wrap .pf-gallery.visible:nth-child(even) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .secode_mainPortfolio .portfolio--wrap .pf-gallery.visible:nth-child(odd) {
    -webkit-transform: translateX(7%);
            transform: translateX(7%);
  }
  .secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide {
    height: 50vh;
  }
  .secode_mainarchive .mainarchive-wrap .swiper-cover .swiper-wrapper .swiper-slide {
    width: 250px !important;
  }
  .secode_mainNotice .mainnotice-wrap .mainNotice ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .secode_mainNotice .mainnotice-wrap .mainNotice ul li {
    height: auto;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .secode_mainNotice .mainnotice-wrap .mainNotice ul li a p {
    display: none;
  }
  .secode_mainNotice .mainnotice-wrap .mainNotice ul li a h2 {
    padding: 0;
  }
  .secode_mainNotice .mainnotice-wrap .mainNotice ul li:hover {
    width: 100%;
  }
  .contents-wrap {
    padding-bottom: 100vh;
  }
  .secode_maingallery .maingallery-wrap .maingallery {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .secode_maingallery .maingallery-wrap .maingallery .gallery-list {
    width: calc(50% - 20px);
    margin: 0 0 20px 0;
  }
  .secode_maingallery .maingallery-wrap .maingallery .gallery-list:nth-child(even) a .gallery-list--img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #ft .ft-info--top h5 {
    font-size: 2.4rem;
  }
  #ft .ft-info--bot .ft-info--label h6 {
    font-size: 1.4rem;
  }
  #ft .ft-info--bot .ft-info--label span {
    font-size: 1.2rem;
  }
  #ft .ft-info--bot #ft_link {
    font-size: 1.3rem;
  }
  .content-area .content-wrap .content-flex-depth {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content-area .content-wrap .content-flex-depth .content-flex-left {
    width: 100%;
    padding: 0;
  }
  .content-area .content-wrap .content-flex-depth .content-flex-right {
    width: 100%;
    margin: 30px 0 0;
  }
  .content-area .content-wrap .content-img-nomal img {
    margin-bottom: 150px !important;
  }
  .content-area .content-wrap .content-kaab--list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .content-area .content-wrap .content-kaab--list li {
    width: calc(33.3333333333% - 20px);
    margin: 10px;
  }
  .content-area .content-wrap .content-kaab--list li:nth-child(even) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .content-area .content-wrap .content-kaab--list li .content-kaab--list-info {
    font-size: 1.6rem;
    padding: 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 960px) {
  .mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt h2 {
    font-size: 6rem;
  }
  .mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt p {
    font-size: 2rem;
    padding: 0 0 30px 0;
  }
  .layout--init {
    width: 85vw;
  }
  .page-indicator {
    display: none;
  }
  .secode_mainPortfolio .portfolio--wrap .pf-text {
    font-size: 18rem;
  }
  .secode_mainPortfolio .portfolio--wrap .pf-gallery {
    display: none;
  }
  .secode_mainPortfolio .portfolio--wrap .pf-gallery--mo {
    display: block;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap {
    width: 100% !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li {
    width: calc(33.3333333333% - 20px) !important;
    margin: 0 10px 20px !important;
    opacity: 0;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.visible:nth-child(1) {
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    opacity: 0;
    -webkit-animation: imgAnimation 0.8s 0.2s ease both;
            animation: imgAnimation 0.8s 0.2s ease both;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.visible:nth-child(2) {
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    opacity: 0;
    -webkit-animation: imgAnimation 0.8s 0.4s ease both;
            animation: imgAnimation 0.8s 0.4s ease both;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.visible:nth-child(3) {
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    opacity: 0;
    -webkit-animation: imgAnimation 0.8s 0.6s ease both;
            animation: imgAnimation 0.8s 0.6s ease both;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.visible:nth-child(4) {
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    opacity: 0;
    -webkit-animation: imgAnimation 0.8s 0.8s ease both;
            animation: imgAnimation 0.8s 0.8s ease both;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.visible:nth-child(5) {
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    opacity: 0;
    -webkit-animation: imgAnimation 0.8s 1s ease both;
            animation: imgAnimation 0.8s 1s ease both;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.visible:nth-child(6) {
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    opacity: 0;
    -webkit-animation: imgAnimation 0.8s 1.2s ease both;
            animation: imgAnimation 0.8s 1.2s ease both;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.visible:nth-child(7) {
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    opacity: 0;
    -webkit-animation: imgAnimation 0.8s 1.4s ease both;
            animation: imgAnimation 0.8s 1.4s ease both;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.visible:nth-child(8) {
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    opacity: 0;
    -webkit-animation: imgAnimation 0.8s 1.6s ease both;
            animation: imgAnimation 0.8s 1.6s ease both;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.visible:nth-child(9) {
    -webkit-clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    clip-path: polygon(50% 54%, 61% 49%, 55% 59%, 45% 65%);
    opacity: 0;
    -webkit-animation: imgAnimation 0.8s 1.8s ease both;
            animation: imgAnimation 0.8s 1.8s ease both;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .pf-gallery--mo.visible:nth-child(even) {
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
  }
  .pf-gallery--mo:nth-child(even) {
    -webkit-transform: translate(0) !important;
            transform: translate(0) !important;
    opacity: 1 !important;
  }
  .secode_maincampus .maincampus-wrap .swiper-nav {
    min-width: 85vw;
  }
  .secode_article {
    height: 220px;
  }
  .contact-wrap .contact-3depth {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact-wrap .contact-3depth h3 {
    width: 100%;
    margin: 0 0 30px;
  }
  .contact-wrap .contact-3depth .contact-3depth--infoWrap {
    width: 100%;
  }
  .contact-wrap .contact-4depth {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact-wrap .contact-4depth h3 {
    width: 100%;
    margin: 0 0 30px;
  }
  .contact-wrap .contact-4depth .contact-4depth--infoWrap {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  html {
    font-size: 55%;
  }
  .mainSlide .mainSlide_wrap .slick-slide .mainSlide_list .slide_txt {
    line-height: 1.4;
  }
  .mainAbout-wrap {
    padding: 150px 0;
  }
  .layout--btn {
    margin: 80px 0 0;
  }
  .layout--btn::before {
    width: 100px;
  }
  .secode_mainPortfolio .portfolio--wrap {
    margin: 0 auto 150px;
  }
  .secode_maincampus .maincampus-wrap {
    margin: 0 0 150px;
  }
  .secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide {
    height: 45vh;
  }
  .secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide .swiper-slide-link a {
    max-width: 100px;
    width: 100%;
  }
  .secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide .swiper-slide-link a img {
    width: 100%;
  }
  .secode_mainarchive .mainarchive-wrap .swiper-cover .swiper-wrapper .swiper-slide {
    width: 200px !important;
  }
  .secode_mainarchive .mainarchive-wrap, .secode_mainNotice .mainnotice-wrap {
    padding: 0 0 150px 0;
  }
  .secode_maingallery .maingallery-wrap .maingallery .gallery-list:nth-child(3), .secode_maingallery .maingallery-wrap .maingallery .gallery-list:nth-child(4) {
    display: none;
  }
  .secode_maingallery .maingallery-wrap {
    padding: 0 0 250px 0;
  }
  .secode_article {
    height: auto;
  }
  .secode_article .article-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .secode_article .article-wrap .guide, .secode_article .article-wrap .curr {
    width: 100%;
    padding: 20px 30px;
  }
  .secode_article .article-wrap .guide .article-txt .layout--btn, .secode_article .article-wrap .curr .article-txt .layout--btn {
    margin: 30px 0 0;
  }
  #ft .ft-info--top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
  }
  #ft .ft-info--top h5 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin: 10px 0 0;
  }
  #ft .ft-info--bot {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #ft .ft-info--bot .ft-info--label {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #ft .ft-info--bot #ft_link {
    margin: 20px 0;
  }
  #ft .ft-info--bot #ft_link a {
    margin-left: 0;
    margin-right: 20px;
  }
  .sub_visual {
    height: 30vh;
  }
  .history-wrap table td, .history-wrap table th {
    padding: 10px;
  }
  .board--area #bo_gall.people .people-cate--wrap .people-cate-list, .board--area #bo_gall.people .people-cate-list2 {
    width: calc(50% - 21px);
  }
  .board--area #bo_gall.people .people-cate--wrap .people-cate-list .gall_text_href, .board--area #bo_gall.people .people-cate-list2 .gall_text_href {
    padding: 10px;
  }
  .board--area #bo_v.people #bo_v_con {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .board--area #bo_v.people #bo_v_con #bo_v_con_left {
    width: 100%;
    position: static;
    height: auto;
  }
  .board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 300px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile .people--profile-img {
    width: 50%;
  }
  .board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile a img {
    height: 100% !important;
  }
  .board--area #bo_v.people #bo_v_con #bo_v_con_right {
    width: 100%;
  }
  .content-area .content-wrap .content-img figure {
    width: calc(50% - 25px);
  }
  .content-area .content-wrap .program-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
  }
  .content-area .content-wrap .program-info .program-info--img {
    width: 100%;
    margin: 0 0 30px;
  }
  .content-area .content-wrap .program-info .program-info--list-wrap {
    width: 100%;
  }
  .content-area .content-wrap .content-img-flex img {
    display: none;
  }
  .content-area .content-wrap .content-img-flex .content-img-flex--info {
    width: 100%;
    position: static;
    height: auto;
  }
  .content-area .content-wrap .content-img-flex .content-img-flex--info span {
    display: none;
  }
  .content-area .content-wrap h2 {
    font-size: 4rem;
  }
  .content-area .content-wrap .content-img-nomal img {
    margin-bottom: 100px !important;
  }
  .content-area .content-wrap .content-kaab--list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
  .content-area .content-wrap .content-kaab--list li {
    width: 100%;
  }
  .content-area .content-wrap .content-kaab--list li .content-kaab--list-info {
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .board--area #bo_list.notice table td.td_num2 {
    display: none;
  }
  .board--area #bo_list.notice table td.td_subject {
    text-align: left;
  }
  .board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_text_href .bo_tit {
    position: static;
    display: block;
    margin: 20px 0 0;
    text-align: left;
    font-size: 1.6rem;
  }
  .board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #bo_gall.product-list .bo_tit {
    font-size: 2rem;
  }
  #sch_res_ov ul {
    display: none !important;
  }
  .all-serch {
    padding: 100px 0;
  }
  .all-serch #sch_res_detail {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .all-serch #sch_res_detail .switch_field {
    width: 40%;
    margin: 0 auto;
  }
  .all-serch #sch_res_detail select {
    width: 25%;
  }
  .all-serch #sch_res_detail .sch_wr {
    width: 50%;
  }
  .all-serch #sch_res_detail .sch_wr .btn_submit {
    width: 40%;
  }
  #bo_list.achievement .td_datetime {
    display: none;
  }
  #bo_list.achievement table thead th:nth-child(4) {
    display: none;
  }
  #bo_list.achievement table td, #bo_list.achievement table th {
    padding: 10px;
  }
  #bo_list.achievement table .td_center {
    min-width: 40px;
  }
  .board--area #bo_v.achievement #bo_v_con {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .board--area #bo_v.achievement #bo_v_con .bo_v_con_left {
    width: 100%;
  }
  .board--area #bo_v.achievement #bo_v_con .bo_v_con_right {
    width: 100%;
    position: static;
    min-height: auto;
    height: auto;
  }
  .board--area #bo_v.achievement #bo_v_con .bo_v_con_right .bo_v_con_right_txt {
    padding: 20px 0;
  }
  #hd #hd_wrapper #logo {
    max-width: 160px;
  }
  #hd_pop {
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    position: absolute;
  }
  #hd_pop .hd_pops {
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
  }
}
@media screen and (max-width: 515px) {
  .pf-gallery--mo .pf-gallery--mo--wrap li {
    width: calc(50% - 20px) !important;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--mo-list:nth-child(8) {
    display: none;
  }
  .secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide {
    height: 35vh;
  }
  .secode_maincampus .maincampus-wrap .swiper-nav {
    font-size: 4rem;
    min-width: 80vw;
  }
  .secode_mainarchive .mainarchive-wrap .swiper-cover .swiper-wrapper .swiper-slide {
    width: 160px !important;
  }
  .mainAbout-wrap {
    padding: 120px 0;
  }
  .secode_mainPortfolio .portfolio--wrap {
    margin: 0 auto 120px;
  }
  .secode_mainarchive .mainarchive-wrap, .secode_mainNotice .mainnotice-wrap {
    padding: 0 0 120px 0;
  }
  #ft .ft-info--bot .ft-info--label h6 p {
    display: block;
    margin: 3px 0;
  }
  #ft .ft-info--bot .ft-info--label h6 p::before {
    display: none;
  }
  #ft .ft-info--bot .ft-info--label h6 {
    margin: 0 0 7px;
  }
  #rightMenu {
    width: 100%;
    right: -100%;
  }
  #rightMenu #gnb_side {
    padding: 50px 25px;
  }
  .content-area .content-wrap .content-flex-img .content-flex-img-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-left, .content-area .content-wrap .content-flex-img .content-flex-img-wrap .content-flex-right {
    width: 100%;
    margin: 15px 0 0;
  }
  .contact-wrap .contact-4depth .contact-4depth--infoWrap .contact-4depth--info {
    width: 100%;
  }
  .content-area .content-wrap h2 {
    font-size: 3rem;
  }
  .board--area #bo_gall.studio .grid .grid--item {
    width: 100%;
  }
  .board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_img {
    width: 50%;
    margin: 0 auto;
  }
  .board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_text_href {
    width: 100%;
    text-align: center;
  }
  .board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_text_href .bo_tit {
    text-align: center;
  }
  .all-serch #sch_res_detail .switch_field {
    width: 100%;
    margin: 0 auto;
  }
  .all-serch #sch_res_detail select {
    width: 50%;
  }
  .all-serch #sch_res_detail .sch_wr {
    width: 100%;
    margin: 5px 0;
  }
  .all-serch #sch_res_detail .sch_wr .btn_submit {
    width: 30%;
  }
  .board--area #bo_list.graduate .tab-area .tab a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 414px) {
  html {
    font-size: 50%;
  }
  .secode_mainPortfolio .portfolio--wrap .pf-text.visible {
    -webkit-animation: pf 24s linear infinite;
            animation: pf 24s linear infinite;
  }
  @-webkit-keyframes pf {
    from {
      left: 100%;
    }
    to {
      left: -600%;
    }
  }
  @keyframes pf {
    from {
      left: 100%;
    }
    to {
      left: -600%;
    }
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--mo-list:nth-child(7), .pf-gallery--mo .pf-gallery--mo--wrap li.pf-gallery--mo-list:nth-child(6) {
    display: none;
  }
  .secode_mainPortfolio .portfolio--wrap {
    margin: 0 auto 80px;
  }
  .mainAbout-wrap {
    padding: 100px 0;
  }
  .secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide .swiper-slide-link a {
    max-width: 80px;
  }
  .secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide {
    height: 30vh;
  }
  .secode_maincampus .maincampus-wrap {
    margin: 0 0 120px;
  }
  .secode_maingallery .maingallery-wrap {
    padding: 0 0 200px 0;
  }
  .sub-page, .board--area {
    padding: 150px 0 100px;
  }
  .about-wrap h2 {
    font-size: 4rem;
  }
  .category-wrap {
    margin: 0 auto 70px;
  }
  .sub_visual {
    height: 25vh;
  }
  .sbt {
    font-size: 4rem;
  }
  .board--area #bo_v.people #bo_v_con #bo_v_con_left .people--profile {
    height: 250px;
  }
  .contact-wrap .contact-3depth .contact-3depth--infoWrap ul li {
    width: 100%;
    margin: 0;
  }
  .content-area .content-wrap .content-img-nomal img {
    margin-bottom: 50px !important;
  }
  .board--area #bo_gall.event #gall_ul .gall_li .gall_box .gall_con .gall_img {
    width: 70%;
  }
  .product-list .gall_row .col-gn-3 {
    width: 100%;
  }
  #hd #hd_wrapper #logo {
    max-width: 140px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 48%;
  }
  .mainAbout-wrap .mainAbout-top h2 {
    padding: 0 0 30px 0;
  }
  .layout--btn {
    margin: 60px 0 0;
  }
  .pf-gallery--mo .pf-gallery--mo--wrap li {
    width: 100% !important;
  }
  .secode_maincampus .maincampus-wrap .swiper .swiper-wrapper .swiper-slide {
    height: 25vh;
  }
  .secode_maingallery .maingallery-wrap .maingallery .gallery-list {
    width: calc(50% - 10px);
  }
}
/* import  */