@charset "UTF-8";
@import url("normalize.css");
@import url("swiper.min.css");
@import url("animate.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,300,400,500,700,900&display=swap&subset=korean");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
.main .section02 .radio.blue button i {
  color: #4270e5;
}

.main .section02 .radio.blue p span {
  color: #4270e5;
}

.main .section02 .radio.blue button.on {
  background-image: url(/common/images/icon05_wh.png);
}

.main .section02 .radio.brown button i {
  color: #b6653d;
}

.main .section02 .radio.brown p span {
  color: #b6653d;
}

.main .section02 .radio.brown button.on {
  background-image: url(/common/images/icon05_wh.png);
}

.main .section02 .radio.white button i {
  color: #fff;
}

.main .section02 .radio.white p span {
  color: #fff;
}

.main .section02 .radio.white button.on {
  background-image: url(/common/images/icon05_wh.png);
}

@-webkit-keyframes marquee {
  from {
    transform: translate(0%);
  }
  99%, to {
    transform: translate(-100%);
  }
}

@keyframes marquee {
  from {
    transform: translate(0%);
  }
  99%, to {
    transform: translate(-100%);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  letter-spacing: -0.75px;
  color: #333333;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

img {
  vertical-align: middle;
}

select, input, button, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

select:focus, input:focus, button:focus, textarea:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

input[type=text],
input[type=number] {
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  border-radius: 0;
}

input[type=radio] {
  display: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

table {
  border-collapse: collapse;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 20px;
}

body {
  max-width: 1920px;
  min-width: 320px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #0d1022;
}

body.on header.on {
  transition: all 0s;
  transition-delay: 0s;
}

header {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 996;
  width: 100%;
  padding: 1.5rem 0;
  opacity: 0;
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
header .wrap .left {
  display: flex;
  align-items: center;
}
header .wrap .left .menu {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-right: 2rem;
  background-image: url("/common/images/menu.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  cursor: pointer;
}
header .wrap .left .menu > span {
  display: none;
}
header .wrap .left .logo {
  position: relative;
}
header .wrap .left .logo::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120%;
  height: 100%;
  background-image: url(/common/images/logo04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  transition: all 0.6s linear;
  transition-delay: 0;
  opacity: 0;
}
header .wrap .left .logo > img {
  display: block;
  max-width: 100%;
  transition: all 0.6s linear;
  transition-delay: 1s;
  opacity: 1;
}
header .wrap .left .logo.on::after {
  transition-delay: 1s;
  opacity: 1;
}
header .wrap .left .logo.on > img {
  transition-delay: 0s;
  opacity: 0;
}
header .wrap .right {
  position: relative;
}
header .wrap .right .this_month {
  position: relative;
  min-width: 240px;
  padding: 0 calc(11px + 1rem) 0 1rem;
  height: 57px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.35rem;
  line-height: 57px;
  color: #fff;
  cursor: pointer;
}
header .wrap .right .this_month::after {
  display: inline-block;
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  width: 11px;
  height: 9px;
  background-image: url("/common/images/select.png");
  background-size: 100%;
  transition: all 0.3s ease;
  z-index: 1;
}
header .wrap .right .this_month > small {
  margin-left: 0.25rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 70%;
  color: #fff;
}
header .wrap .right .this_month.on::after {
  transform: rotate(180deg);
}
header .wrap .right .last_month {
  display: none;
  position: absolute;
  left: 0;
  top: 57px;
  width: 100%;
  background-color: #000000;
  z-index: 2;
  overflow-y: scroll;
  max-height: 800px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
header .wrap .right .last_month > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.35rem;
  color: #fff;
}
header .wrap .right .last_month > li > a > small {
  margin-left: 0.25rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 70%;
  color: #fff;
}
header .wrap .right .last_month > li > a:hover {
  background-color: #373737;
}
header .wrap .right .last_month > li:last-child > a {
  font-size: 0.9rem;
}
header .wrap .right .last_month > li.on > a {
  background-color: #373737;
}
header .wrap .right .last_month::-webkit-scrollbar {
  display: none;
}

header.sub,
header.on {
  position: relative;
  height: 120px;
  border-bottom: 1px solid #aaa;
  background-color: #fff;
}
header.sub .wrap .left .logo,
header.on .wrap .left .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 220px;
}
header.sub .wrap .left .logo > img,
header.on .wrap .left .logo > img {
  -webkit-animation: none;
          animation: none;
  transition: none;
  opacity: 1;
}
header.sub .wrap .left .logo::after,
header.on .wrap .left .logo::after {
  opacity: 0;
  transition: none;
  transition-delay: none;
}
header.sub .wrap .left .menu,
header.on .wrap .left .menu {
  background-image: url(/common/images/close.png);
  background-size: contain;
  width: 28px;
  height: 28px;
}
header.sub .wrap .right .this_month,
header.on .wrap .right .this_month {
  color: #000;
}
header.sub .wrap .right .this_month::after,
header.on .wrap .right .this_month::after {
  background-image: url(/common/images/select02.png);
}
header.sub .wrap .right .this_month small,
header.on .wrap .right .this_month small {
  color: #000;
}

header.sub {
  position: fixed;
  border: none;
  transition: none !important;
  transition-delay: none !important;
  opacity: 1;
}
header.sub .wrap .left .menu {
  background-image: url(/common/images/menu02.png);
}

header.sub.on {
  border-bottom: 1px solid #aaa;
}
header.sub.on .wrap .left .menu {
  background-image: url(/common/images/close.png) !important;
}

header.sub ~ section {
  opacity: 1;
  transition: none !important;
  transition-delay: none !important;
  margin-top: 117px;
}

header.renewal .wrap .left .menu {
  position: relative;
  background-image: url(/common/images/menu_renewal02.png) !important;
}
header.renewal .wrap .left .menu::before {
  content: "콘텐츠 보러가기";
  position: absolute;
  display: inline-block;
  font-family: "WooridaumB";
  font-size: 1.3rem;
  color: #fff;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  white-space: nowrap;
  padding-left: calc(38px + 1rem);
}
header.renewal .wrap .left .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 130px;
}
header.renewal .wrap .left .logo::after {
  width: 170%;
  left: 50%;
  transform: translate(-50%, 0);
}

header.sub.renewal .wrap .left .menu,
header.on.renewal .wrap .left .menu {
  background-image: url(/common/images/close.png) !important;
  background-size: contain;
  width: 36px;
  height: 36px;
}
header.sub.renewal .wrap .left .menu::before,
header.on.renewal .wrap .left .menu::before {
  color: #333;
}
header.sub.renewal .wrap .left .logo,
header.on.renewal .wrap .left .logo {
  max-width: 220px;
}

header.sub.renewal .wrap .left .menu {
  background-image: url(/common/images/menu_renewal.png) !important;
}

header.on.renewal .wrap .left .menu::before {
  display: none;
}

header.sub.on.renewal .wrap .left .menu {
  background-image: url(/common/images/close.png) !important;
}
header.sub.on.renewal .wrap .left .menu::before {
  display: none;
}

nav {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: calc(120px + 4rem);
  background-color: #fff;
  z-index: 990;
  overflow: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
nav::-webkit-scrollbar {
  display: none;
}
nav .gnb {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
}
nav .gnb .division {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2rem;
  padding: 0 calc((100% - 1100px) / 2) 2.5rem;
}
nav .gnb .division .gnb_tit h4 {
  font-family: "Vitro_core";
  white-space: nowrap;
  padding-bottom: 1rem;
}
nav .gnb .division .gnb_tit h4 span {
  font-family: "Vitro_core";
  font-size: 1.3rem;
}
nav .gnb .division li {
  display: inline-block;
  width: 18.2%;
  padding-top: 48px;
  margin-right: 2.25%;
}
nav .gnb .division li a {
  display: block;
  position: relative;
  overflow: hidden;
}
nav .gnb .division li a:hover .img {
  transition: all 0.3s linear;
  border: 6px solid #87a0ff;
}
nav .gnb .division li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-color: #ddd;
  transform: rotate(45deg);
  transform-origin: center;
  top: -30px;
  left: -30px;
}
nav .gnb .division li .img {
  background-color: #87a0ff;
}
nav .gnb .division li .img img {
  display: block;
  width: 100%;
}
nav .gnb .division li .text span {
  display: block;
  padding: 1rem 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}
nav .gnb .division li .text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.25;
  word-break: keep-all;
}
nav .gnb .division li .text p b {
  font-size: 0.95rem;
  font-weight: 400;
  color: #87a0ff;
}
nav .gnb .division li.gnb_tit {
  padding-top: 0;
}
nav .gnb .division li:nth-child(5n) {
  margin-right: 0;
}
nav .gnb .division.pink h4 span {
  color: #f66;
}
nav .gnb .division.pink li a::after {
  background-color: #f66;
}
nav .gnb .division.pink li a:hover .img {
  border-color: #f66;
}
nav .gnb .division.blue h4 span {
  color: #647fe5;
}
nav .gnb .division.blue li a::after {
  background-color: #647fe5;
}
nav .gnb .division.blue li a:hover .img {
  border-color: #647fe5;
}
nav .gnb .division.green h4 span {
  color: #239987;
}
nav .gnb .division.green li a::after {
  background-color: #239987;
}
nav .gnb .division.green li a:hover .img {
  border-color: #239987;
}
nav .gnb .division.gray h4 span {
  color: #aaa;
}
nav .gnb .division.gray li a::after {
  background-color: #aaa;
}
nav .gnb .division.gray li a:hover .img {
  border-color: #aaa;
}
nav .gnb .reporters {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  background-color: #f9f9f9;
  padding: 1rem calc((100% - 1100px) / 2);
}
nav .gnb .reporters > span {
  width: 50%;
  margin-right: 1rem;
}
nav .gnb .reporters > span .title {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #777;
  padding-bottom: 0.5rem;
}
nav .gnb .reporters > span .names {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1rem;
}
nav .gnb .reporters > span .names div {
  width: calc(50% - 0.5rem);
  margin-right: 1rem;
  font-size: 0.7rem;
  font-weight: 300;
  color: #777;
  font-size: 0.65rem;
}
nav .gnb .reporters > span .names div b {
  font-size: 100%;
  line-height: 1.5;
  color: #777;
}
nav .gnb .reporters > span .names div:last-child {
  margin-right: 0;
}
nav .gnb .reporters > span .names:last-child {
  margin-bottom: 0;
}
nav .gnb .reporters > span:last-child {
  margin-right: 0;
}

nav.on {
  display: block;
}

footer {
  width: 100%;
  padding: 1.5rem 0;
  background-color: #333333;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  margin: 0 auto;
}
footer .wrap .info * {
  font-size: 0.65rem;
  color: #a1a2a2;
  line-height: 1.3;
}
footer .wrap .info .copy {
  padding-bottom: 0.25rem;
}
footer .wrap .sns {
  display: flex;
}
footer .wrap .sns a {
  display: inline-block;
  width: 49px;
  height: 49px;
  margin-right: 1.25rem;
  background-image: url(/common/images/sns01_gray.png);
  background-size: 100%;
  background-position: top center;
}
footer .wrap .sns a:nth-child(2) {
  background-image: url(/common/images/sns02_gray.png);
}
footer .wrap .sns a:nth-child(3) {
  background-image: url(/common/images/sns03_gray.png);
}
footer .wrap .sns a:nth-child(4) {
  background-image: url(/common/images/sns04_gray.png);
}
footer .wrap .sns a:hover {
  background-position: bottom center;
}
footer .wrap .sns a:last-child {
  margin-right: 0;
}

.old {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 6rem calc((100% - 1200px) / 2) 4rem;
}
.old > li {
  width: 33.33%;
  margin-bottom: 5rem;
  overflow: hidden;
}
.old > li .img {
  display: inline-block;
  float: left;
  padding: 0.5rem;
  border: 1px solid #333333;
}
.old > li .img img {
  display: block;
  width: 161px;
}
.old > li .text {
  display: inline-block;
  float: left;
  width: calc(100% - 183px);
  padding-left: 0.75rem;
}
.old > li .text p {
  font-size: 1rem;
  font-weight: 300;
}
.old > li .text p b {
  font-size: 1.1rem;
  font-weight: 600;
}
.old > li .link {
  display: block;
  margin-top: 3rem;
}
.old > li .link a {
  display: block;
  width: 119px;
  height: 36px;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  line-height: 34px;
  border-radius: 0.25rem;
  border: 1px solid #a0a0a0;
  text-align: center;
}
.old > li .link a:last-child {
  margin-bottom: 0;
}
.old > li .link a:hover {
  background-color: #313131;
  color: #fff;
}
.old > li:nth-last-child(3),
.old > li:nth-last-child(2),
.old > li:nth-last-child(1) {
  margin-bottom: 2rem;
}

/*Ipad Pro*/
@media (max-width: 1365px) {
  nav .gnb .division {
    width: 90%;
    margin: 0 auto;
    padding: 0 0 2.5rem;
  }
  nav .gnb .division li {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
  nav .gnb .division li a {
    display: flex;
    flex-wrap: wrap;
  }
  nav .gnb .division li a .img {
    width: 25%;
    margin-right: 5%;
    border: none !important;
    background-color: transparent;
  }
  nav .gnb .division li a .text {
    width: 70%;
  }
  nav .gnb .division li a .text span {
    padding: 0.5rem 0;
    font-size: 1rem;
  }
  nav .gnb .division li a .text p {
    font-size: 1.25rem;
  }
  nav .gnb .division li a .text p b {
    font-size: 1.25rem;
  }
  nav .gnb .reporters > span {
    margin-left: 5%;
    margin-right: 0.5rem;
  }
  nav .gnb .reporters > span .names div {
    width: calc(50% - 0.25rem);
    margin-right: 0.5rem;
  }
  nav .gnb .reporters > span:last-child {
    margin-left: 0;
    margin-right: 5%;
  }
  footer .wrap {
    width: 95%;
  }
  .old {
    padding: 8rem 5% 0;
  }
  .old > li {
    width: 50%;
    margin-bottom: 4rem;
  }
  .old > li:nth-last-child(3) {
    margin-bottom: 4rem;
  }
}
/*Ipad Pro*/
@media (max-width: 1024px) {
  header.sub .wrap .this_month {
    min-width: 200px;
  }
}
.br_h_768 {
  display: inline-block;
}

/*Ipad*/
@media (max-width: 991.98px) {
  header.sub .wrap .left .logo,
header.on .wrap .left .logo {
    position: relative;
    left: auto;
    transform: none;
  }
  header.sub .wrap .left .menu,
header.on .wrap .left .menu,
header .wrap .left .menu {
    margin-right: 2rem;
  }
  header.renewal .wrap .left .logo,
header.sub.renewal .wrap .left .logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
  }
  header.renewal .wrap .left .logo::after,
header.sub.renewal .wrap .left .logo::after {
    width: 170%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  header.renewal .wrap .left .menu,
header.sub.renewal .wrap .left .menu {
    margin-right: 1rem;
  }
  header.renewal .wrap .left .menu::before,
header.sub.renewal .wrap .left .menu::before {
    padding-left: calc(38px + 0.5rem);
  }
  nav .close {
    right: auto;
    left: 2%;
    top: 1.25rem;
    width: 48px;
    height: 48px;
    background-image: url(/common/images/close.png);
    background-color: transparent;
  }
  nav .wrap {
    width: 100%;
  }
}
@media (max-width: 1200px) and (max-height: 768px) {
  .br_h_768 {
    display: none;
  }
  header {
    padding: 0.75rem 0;
  }
}
@media (max-width: 800px) and (max-height: 768px) {
  .br_h_768 {
    display: inline-block;
  }
}
@media (max-width: 1024px) and (max-height: 425px) {
  header {
    padding: 0.75rem 0;
  }
  header.sub, header.on {
    height: auto;
  }
  nav.on {
    padding-top: 5rem;
  }
  header .wrap .right .this_month {
    font-size: 1.1rem;
    min-width: 180px;
    height: 35px;
    line-height: 35px;
  }
}
/*Tablet*/
@media (max-width: 767.98px) {
  nav .gnb .reporters {
    padding: 1rem 5%;
  }
  nav .gnb .reporters > span .names {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 0;
  }
  nav .gnb .reporters > span .names div {
    width: 100%;
  }
  header.renewal .wrap .left .logo,
header.sub.renewal .wrap .left .logo {
    position: relative;
    left: auto;
    transform: none;
  }
  header.renewal .wrap .left .logo::after,
header.sub.renewal .wrap .left .logo::after {
    transform: none;
    left: auto;
  }
  header.renewal .wrap .left .menu,
header.sub.renewal .wrap .left .menu {
    margin-right: 1rem;
  }
  header.renewal .wrap .left .menu::before,
header.sub.renewal .wrap .left .menu::before {
    display: none;
  }
  footer .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .wrap .info {
    margin-bottom: 0.5rem;
    text-align: center;
  }
  footer .wrap .sns {
    justify-content: center;
    width: 100%;
  }
  .old {
    padding-top: 4rem;
  }
}
/*Mobile*/
@media (max-width: 575.98px) {
  header {
    padding: 0.5rem 0;
  }
  header .wrap .left {
    flex-wrap: nowrap;
  }
  header .wrap .left .menu {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    background-size: contain;
  }
  header .wrap .left .logo > img {
    width: 120px;
  }
  header .wrap .right .this_month {
    font-size: 0.9rem;
    min-width: 0;
    height: 40px;
    line-height: 38px;
    padding: 0 calc(11px + 0.5rem) 0 1rem;
  }
  header .wrap .right .last_month {
    top: 40px;
    overflow-y: scroll;
    max-height: 500px;
  }
  header .wrap .right .last_month > li > a {
    font-size: 0.9rem;
  }
  header .wrap .right .last_month > li:last-child a {
    font-size: 0.75rem;
  }
  header.sub, header.on {
    height: auto;
  }
  header.sub .wrap .left .menu, header.on .wrap .left .menu {
    width: 24px !important;
    height: 24px !important;
    margin-right: 0.5rem;
  }
  header.sub ~ section {
    margin-top: 60px;
  }
  header.renewal .wrap .left .menu {
    width: 24px;
    height: 24px;
    background-size: contain;
    margin-right: 0.75rem !important;
  }
  header.renewal .wrap .left .logo {
    max-width: 100px;
  }
  header.renewal .wrap .left .logo::after {
    width: 120%;
  }
  nav {
    padding-top: calc(60px + 2rem);
  }
  nav .gnb .division {
    padding-bottom: 1rem;
  }
  nav .gnb .division li {
    margin: 0 0 1rem;
  }
  nav .gnb .division li h4 {
    font-size: 1rem;
  }
  nav .gnb .division li a::after {
    top: -30px;
    left: -40px;
  }
  nav .gnb .division li a .text span {
    padding: 0.25rem 0;
    font-size: 0.65rem;
  }
  nav .gnb .division li a .text p {
    font-size: 0.85rem;
  }
  nav .gnb .division li a .text p b {
    font-size: 0.85rem;
  }
  nav .gnb .division .gnb_tit h4 span {
    font-size: 1rem;
  }
  nav .gnb .reporters {
    padding: 1rem 2%;
  }
  nav .gnb .reporters > span {
    margin-left: 0;
    margin-right: 0.25rem;
  }
  nav .gnb .reporters > span:last-child {
    margin-right: 0;
  }
  footer {
    padding: 1rem 0;
  }
  footer .wrap .sns a, footer .wrap .sns button {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
  }
  .old {
    padding-top: 2rem;
  }
  .old > li {
    width: 100%;
    margin-bottom: 2rem !important;
  }
  .old > li .img img {
    width: 130px;
  }
  .old > li .text {
    width: calc(100% - 152px);
    padding-left: 1rem;
  }
  .old > li .text p {
    font-size: 1rem;
  }
  .old > li .text p b {
    font-size: 1rem;
  }
  .old > li .link {
    margin-top: 1.75rem;
  }
  .old > li .link a {
    width: 106px;
    height: 32px;
    font-size: 0.75rem;
    line-height: 30px;
  }
}
/*Mobile(minimum)*/
@media (max-width: 365px) {
  header .wrap .left .menu {
    width: 24px;
    height: 24px;
  }
  header .wrap .left .logo > img {
    width: 100px;
  }
  header.sub .wrap .left .logo > img {
    width: 100px;
  }
  header.renewal .wrap .left .menu {
    background-size: contain;
  }
}
@-webkit-keyframes FadeOut {
  to {
    opacity: 0;
  }
  from {
    opacity: 1;
  }
}
@keyframes FadeOut {
  to {
    opacity: 0;
  }
  from {
    opacity: 1;
  }
}
@-webkit-keyframes loading {
  to {
    -webkit-transform: translate(-50%, -50%) scale(50);
    -webkit-transform-transform: translate(-50%, -50%) scale(50);
  }
  from {
    -webkit-transform: translate(-50%, -50%) scale(0);
    -webkit-transform-transform: translate(-50%, -50%) scale(0);
  }
}
@keyframes loading {
  to {
    -webkit-transform: translate(-50%, -50%) scale(50);
    -webkit-transform-transform: translate(-50%, -50%) scale(50);
  }
  from {
    -webkit-transform: translate(-50%, -50%) scale(0);
    -webkit-transform-transform: translate(-50%, -50%) scale(0);
  }
}
.loading .loading_circle {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background-color: #000;
  -webkit-animation: loading 5s 1 ease;
          animation: loading 5s 1 ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 998;
}
.loading .loading_img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: FadeOut 1.4s 1 ease;
          animation: FadeOut 1.4s 1 ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 999;
}

section {
  opacity: 0;
}

body.on header {
  transition: all 0.6s ease;
  transition-delay: 0.75s;
  opacity: 1;
}

body.on section {
  transition: all 0.6s ease;
  transition-delay: 0.75s;
  opacity: 1;
}

.main {
  width: 100%;
  height: 100%;
}
.main .section01 {
  height: 100%;
}
.main .section01 video {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.main .section01 .bglayer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.main #iframe_bgVideo {
  max-height: 1080px !important;
  left: 50% !important;
  top: auto !important;
  bottom: 0;
  margin: 0 !important;
  transform: translateX(-50%);
}
.main #bgVideo {
  height: 100%;
}
.main .section02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 5.5%;
  z-index: 2;
  overflow: auto;
  background: rgba(0, 0, 0, 0.15);
}
.main .section02 .left {
  align-items: center;
  padding-left: 4.25rem;
  width: 100%;
}
.main .section02 .left .title {
  margin-right: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 9rem;
  line-height: 0.9;
  color: #fff;
  word-break: keep-all;
  white-space: nowrap;
}
.main .section02 .left .subtitle {
  padding-top: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
  word-break: keep-all;
}
.main .section02 .right {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 85%;
}
.main .section02 .right .viewmore {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 330px;
  height: 80px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 78px;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
}
.main .section02 .right .viewmore::after {
  display: inline-block;
  content: "";
  width: 101px;
  height: 14px;
  margin-left: 0.5rem;
  background-image: url("/common/images/arrow02.png");
  background-size: 100%;
}
.main .section02 .right .viewmore:hover {
  transition: all 0.3s linear;
  padding-left: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-color: #c9c9c9;
}
.main .section02 .address {
  position: absolute;
  bottom: 10%;
  right: 5%;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.25;
  text-align: right;
  color: #a4a4a4;
  font-family: "Spoqa Han Sans Neo", "sans-serif";
}
.main .section02 .radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  left: 2.5%;
  bottom: 1.25rem;
  min-width: 292px;
  z-index: 20;
}
.main .section02 .radio audio {
  position: absolute;
  left: -10000px;
  width: 0;
  height: 0;
  overflow: hidden;
}
.main .section02 .radio button {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 64px;
  cursor: pointer;
  z-index: 3;
}
.main .section02 .radio button i {
  display: block;
  color: #000000;
  margin-left: 5px;
}
.main .section02 .radio button.on {
  background-image: url("/common/images/icon05.png");
  background-position: center;
  background-repeat: no-repeat;
}
.main .section02 .radio button.on i {
  display: none;
}
.main .section02 .radio p {
  display: flex;
  align-items: center;
  width: 204px;
  height: 56px;
  padding: 0 28px 0 0;
  overflow: hidden;
}
.main .section02 .radio p span {
  flex: 0 0 auto;
  font-size: 0.85rem;
  padding-left: 100%;
  -webkit-animation-name: marquee;
          animation-name: marquee;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  color: #fff;
}

header.vol306 ~ .main .section02 .radio button i {
  color: #fff;
}

header.vol306 ~ .main .section02 .radio button.on {
  background-image: url(/common/images/icon05_wh.png);
}

/*Small PC*/
@media (max-width: 1600px) {
  .main .section02 .left {
    padding: 0;
  }
}
/*Ipad Pro*/
@media (max-width: 1200px) {
  .main .section02 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main .section02 .left {
    width: 100%;
  }
  .main .section02 .left .title {
    text-align: center;
    margin-right: 0;
    font-size: 6rem !important;
  }
  .main .section02 .left .subtitle {
    text-align: center;
  }
  .main .section02 .right {
    display: block;
    width: 100%;
    height: auto;
  }
  .main .section02 .right .viewmore {
    position: static;
    top: 0;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
  }
  .main .section02 .right .viewmore::after {
    width: 60px;
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
  }
  .main .section02 .address {
    text-align: center;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    width: 90%;
    height: auto;
    margin: 0 auto;
    word-break: keep-all;
  }
  .main .section02 .radio {
    position: static;
    transform: translate(0);
    min-width: 0;
  }
}
/*Ipad Pro*/
@media (max-width: 1024px) {
  .main #iframe_bgVideo {
    min-height: 100% !important;
    left: 70% !important;
  }
}
@media (max-height: 600px) {
  body {
    max-height: 600px;
  }
  .main .section02 .radio {
    position: static;
    transform: translate(0);
    min-width: 0;
  }
  .main .section02 .address {
    padding-bottom: 0;
    padding-left: 5%;
    padding-right: 5%;
    bottom: 5%;
    width: 100%;
  }
}
@media (max-width: 1920px) and (max-height: 768px) {
  .main .section02 .left .title {
    font-size: 7rem;
  }
}
@media (max-width: 1024px) and (max-height: 768px) {
  .main .section02 {
    padding: 0;
    padding-top: 70px;
    justify-content: center;
  }
  .main .section02 .left .title {
    font-size: 5rem !important;
    white-space: unset;
  }
  .main .section02 .left .subtitle {
    padding-top: 1.5rem;
  }
  .main .section02 .right .viewmore {
    margin: 1.25rem auto 0;
    width: 250px;
    height: 65px;
    line-height: 65px;
  }
  .main .section02 .address {
    font-size: 0.65rem;
  }
  .main .section02 .address br {
    display: none !important;
  }
}
@media (max-width: 1024px) and (max-height: 575.98px) {
  .main #iframe_bgVideo {
    left: 50% !important;
  }
  .main {
    position: relative;
  }
  .main .section02 {
    position: absolute;
    height: 100%;
    padding: 0 5%;
  }
  .main .section02 .left .title {
    font-size: 2.5rem !important;
  }
  .main .section02 .left .title br {
    display: none;
  }
  .main .section02 .left .subtitle {
    font-size: 0.85rem;
    padding-top: 0.5rem;
  }
  .main .section02 .right .viewmore {
    margin: 0.5rem auto 0;
    width: 180px;
    height: 50px;
    line-height: 50px;
    font-size: 0.7rem;
  }
  .main .section02 .radio button {
    height: 50px;
  }
  .main .section02 .radio p {
    height: 50px;
  }
  .main .section02 .radio p span {
    font-size: 0.75rem;
  }
}
/*Mobile*/
@media (max-width: 575.98px) {
  .main #iframe_bgVideo {
    height: 100% !important;
  }
  .main .section02 {
    justify-content: center;
    padding: 0;
  }
  .main .section02 .left .title {
    font-size: 3rem !important;
    padding-top: 0;
  }
  .main .section02 .left .subtitle {
    font-size: 0.8rem;
    padding-top: 1.25rem;
  }
  .main .section02 .right .viewmore {
    font-size: 0.8rem;
    width: 80%;
    max-width: 260px;
    height: 64px;
    line-height: 60px;
  }
  .main .section02 .address {
    font-size: 0.65rem;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 90%;
    height: auto;
    margin: 0 auto;
    word-break: keep-all;
  }
  .main .section02 .radio button {
    width: 48px;
    height: 48px;
  }
  .main .section02 .radio p span {
    font-size: 0.75rem;
  }
}
/*minimum*/
@media (max-width: 320px) {
  .main .section02 .address {
    font-size: 0.6rem;
  }
}
.function {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  width: 65px;
  height: 100%;
  border-left: 1px solid #cccccc;
  z-index: 2;
  background-color: #fff;
  opacity: 0;
}
.function .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 65px;
  height: 100%;
}
.function a, .function button {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 2rem;
  cursor: pointer;
}
.function a *, .function button * {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  width: 30px;
  height: auto;
  color: #cccccc;
}
.function .blog {
  background-image: url(/common/images/blog.png);
  background-size: contain;
}
.function a:hover *, .function button:hover * {
  color: #676768;
}
.function .blog:hover {
  background-image: url(/common/images/blog_hover.png);
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
.function.on {
  -webkit-animation: fadeIn 0.2s forwards;
          animation: fadeIn 0.2s forwards;
}

.movement {
  width: 100%;
  border-top: 1px solid #cccccc;
}
.movement .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}
.movement .wrap > a {
  display: flex;
  align-items: center;
  width: calc(50% - 132px);
}
.movement .wrap > a .text b {
  display: block;
  font-size: 0.85rem;
  padding-bottom: 0.5rem;
}
.movement .wrap > a .text span {
  display: block;
  font-size: 1rem;
}
.movement .wrap > a .arrow_prev {
  margin-right: 2rem;
}
.movement .wrap > a .arrow_next {
  margin-left: 2rem;
}
.movement .wrap .next {
  justify-content: end;
}
.movement .wrap .next .text {
  text-align: right;
}
.movement .wrap span img {
  max-width: 132px;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  z-index: 999;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal::-webkit-scrollbar {
  display: none;
}

.modal.on {
  display: block;
}

.modal_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 3rem 0;
}

.modal_close {
  cursor: pointer;
}

.eventstyle01 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
}
.eventstyle01 .modal_close {
  display: block;
  width: 51px;
  height: 52px;
  margin: 0 0.7rem 0.7rem 0;
  background-image: url("../images/close03.png");
  background-size: cover;
}
.eventstyle01 .modal_close span {
  display: none;
}
.eventstyle01 img {
  display: block;
  width: 100%;
  margin: 0 auto;
  box-shadow: 11px 12px 5px 0px rgba(0, 0, 0, 0.14);
}

.find_event {
  position: absolute;
  left: 60%;
  top: 45%;
}
.find_event .find_img {
  display: block;
  width: 150px;
  cursor: pointer;
}
.find_event .find_img img {
  display: block;
  width: 100%;
}
.find_event .find_input {
  display: none;
  overflow: hidden;
}
.find_event .find_input ul {
  display: inline-block;
  float: left;
  width: 441px;
  max-width: 90%;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background-color: #fff;
}
.find_event .find_input ul li {
  margin-bottom: 0.5rem;
}
.find_event .find_input ul li input {
  display: inline-block;
  width: 49%;
  padding: 0.35rem 0.5rem;
  font-size: 0.85rem;
  background-color: #eee;
  border: 1px solid #999;
}
.find_event .find_input ul li input[type=checkbox] {
  display: none;
}
.find_event .find_input ul li input[type=checkbox] + label {
  display: inline-block;
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
}
.find_event .find_input ul li input[type=checkbox] + label::before {
  display: inline-block;
  content: "";
  float: left;
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  border: 1px solid #959595;
  cursor: pointer;
}
.find_event .find_input ul li input[type=checkbox]:checked + label::before {
  background-image: url("/common/images/check.jpg");
  background-size: 100%;
}
.find_event .find_input ul li label {
  font-size: 0.85rem;
  cursor: pointer;
}
.find_event .find_input ul li p {
  padding: 0.5rem;
  font-size: 0.75rem;
  word-break: break-all;
  text-align: center;
}
.find_event .find_input ul li p.detail {
  background-color: #eee;
  border: 1px solid #999;
  text-align: justify;
}
.find_event .find_input ul li.input span {
  display: inline-block;
  margin-bottom: 0.25rem;
  width: 100%;
}
.find_event .find_input ul li.input span.oneInput input {
  width: 99%;
}
.find_event .find_input ul .btn_wrap {
  display: flex;
  justify-content: center;
}
.find_event .find_input ul .btn_wrap button {
  display: inline-block;
  width: 120px;
  height: 40px;
  margin-right: 0.5rem;
  font-size: 0.95rem;
  line-height: 40px;
  border-radius: 50px;
  background-color: #47a;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.find_event .find_input ul .btn_wrap button:last-child {
  margin: 0;
  background-color: #959595;
}
.find_event .find_input ul li:last-child {
  margin-bottom: 0;
}
.find_event .find_input .find_close {
  display: inline-block;
  float: left;
  width: 38px;
  height: 38px;
  margin-top: 0.75rem;
  background-image: url("/common/images/close06.png");
  background-size: 100%;
  cursor: pointer;
}
.find_event .find_input .find_close span {
  display: none;
}

.hide {
  display: none !important;
}

.mo {
  display: none !important;
}

.mo768 {
  display: none !important;
}

.mo1024 {
  display: none !important;
}

#sub {
  opacity: 1;
  background: #fff;
  position: relative;
  padding: 0 !important;
}
#sub .crawling-contents-top {
  width: 100%;
  text-align: left;
}
#sub .crawling-contents-top * {
  color: #fff;
}
#sub .crawling-contents-top .wrap {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  padding: 0 calc((100% - 1200px) / 2);
}
#sub .crawling-contents-top .wrap .left {
  position: relative;
  width: calc(50% - 2rem);
  height: 100%;
  padding: 7rem 0;
  margin: 0 2rem 0 0;
}
#sub .crawling-contents-top .wrap .left .navigation {
  display: inline-block;
  position: absolute;
  text-align: center;
  padding: 0.5rem 1.5rem 0.75rem;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  top: 0;
  left: 0;
}
#sub .crawling-contents-top .wrap .left .navigation * {
  color: #000;
}
#sub .crawling-contents-top .wrap .left .navigation::after {
  display: none;
}
#sub .crawling-contents-top .wrap .left .navigation .depth1 {
  position: relative;
  font-size: 0.85rem;
  font-weight: 300;
  padding-right: 1rem;
}
#sub .crawling-contents-top .wrap .left .navigation .depth1::after {
  content: ">";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.2rem;
  width: 12px;
}
#sub .crawling-contents-top .wrap .left .navigation .depth2 {
  font-size: 0.85rem;
  font-weight: 600;
}
#sub .crawling-contents-top .wrap .left .title {
  font-size: 3rem;
  word-break: keep-all;
  padding-bottom: 1.5rem;
  font-family: "Vitro_core";
}
#sub .crawling-contents-top .wrap .left .subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  padding-bottom: 3.5rem;
  font-family: "Vitro_core";
}
#sub .crawling-contents-top .wrap .left .text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
  word-break: keep-all;
  padding-bottom: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
#sub .crawling-contents-top .wrap .left .text * {
  font-size: 100%;
}
#sub .crawling-contents-top .wrap .left .text b {
  font-weight: 500;
}
#sub .crawling-contents-top .wrap .left .by {
  position: relative;
  font-size: 0.85rem;
  line-height: 1.45;
  overflow: hidden;
  padding: 0.25rem 0 0 1rem;
  min-height: 30px;
}
#sub .crawling-contents-top .wrap .left .by .triangle {
  display: block;
  position: absolute;
  top: -10px;
  left: -12px;
  width: 20px;
  height: 20px;
  background-color: #fffea8;
  transform: rotate(45deg);
  transform-origin: center;
}
#sub .crawling-contents-top .wrap .left .by span {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
}
#sub .crawling-contents-top .wrap .left .by span * {
  font-size: 100%;
}
#sub .crawling-contents-top .wrap .left .by span b {
  font-weight: 500;
}
#sub .crawling-contents-top .wrap .right {
  position: relative;
  width: 50%;
  top: 3rem;
  right: 0;
}
#sub .crawling-contents-top .wrap .right img {
  width: 100%;
}
#sub .crawling-contents-introduction {
  margin: 7rem calc((100% - 1200px) / 2) 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.45;
  word-break: break-all;
  text-align: justify;
}
#sub .crawling-contents-introduction * {
  font-size: 0.85rem;
}
#sub .crawling-contents-textbox {
  padding: 4rem calc((100% - 1200px) / 2) 0;
}
#sub .crawling-contents-textbox h3 {
  padding-bottom: 1.5rem;
  font-size: 1.35rem;
  line-height: 1.25;
  word-break: keep-all;
}
#sub .crawling-contents-textbox h4 {
  padding-bottom: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  word-break: keep-all;
  text-align: center;
}
#sub .crawling-contents-textbox h4 * {
  font-size: 1.25rem;
}
#sub .crawling-contents-textbox h4.quote {
  padding-bottom: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  font-weight: 400;
  line-height: 1.4;
  word-break: keep-all;
  text-align: center;
  color: #47a;
  font-style: italic;
  font-family: "Chosunilbo_myungjo", serif;
  font-weight: 500;
}
#sub .crawling-contents-textbox h5 {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}
#sub .crawling-contents-textbox h5 * {
  font-size: 0.95rem;
}
#sub .crawling-contents-textbox h5.epilogue {
  font-family: "Nanum Myeongjo", serif;
  font-weight: bold;
  line-height: 1.65;
  word-break: keep-all;
}
#sub .crawling-contents-textbox p {
  padding-bottom: 1.75rem;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  word-break: break-all;
  text-align: justify;
}
#sub .crawling-contents-textbox p * {
  font-size: 0.85rem;
}
#sub .crawling-contents-textbox a {
  display: inline-block;
}
#sub .crawling-contents-textbox b {
  font-weight: 500;
}
#sub .crawling-contents-textbox small {
  font-size: 80%;
}
#sub .crawling-contents-textbox img {
  display: block;
  max-width: 100%;
  width: 100%;
}
#sub .crawling-contents-textbox .img {
  text-align: center;
}
#sub .crawling-contents-textbox .img > span {
  display: inline-block;
}
#sub .crawling-contents-textbox .img > span small {
  display: block;
  padding: 0.5rem 3px 0 0;
  font-size: 0.75rem;
  font-weight: 300;
  font-style: oblique;
  color: #565656;
  text-align: right;
  word-break: keep-all;
}
#sub .crawling-contents-textbox .img > span .imgBottom {
  margin-bottom: 1rem;
}
#sub .crawling-contents-textbox .img.download > span {
  position: relative;
}
#sub .crawling-contents-textbox .img.download .download_btn {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 64px;
  padding: 14px 0;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  line-height: 1.25;
  color: #fff;
}
#sub .crawling-contents-textbox .img.download .download_btn i {
  color: #fff;
}
#sub .crawling-contents-textbox .img.download:hover .download_btn {
  display: inline-block;
}
#sub .crawling-contents-textbox .video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
#sub .crawling-contents-textbox .video iframe,
#sub .crawling-contents-textbox .video object,
#sub .crawling-contents-textbox .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#sub .crawling-contents-textbox .video:last-child {
  margin-bottom: 0;
}
#sub .crawling-contents-textbox .flex {
  display: flex;
  align-items: start;
  justify-content: center;
  max-width: 100%;
  padding-bottom: 1.75rem;
}
#sub .crawling-contents-textbox .flex > span {
  display: inline-block;
  margin-right: 1rem;
}
#sub .crawling-contents-textbox .flex > span:last-child {
  margin-right: 0;
}
#sub .crawling-contents-textbox .flex > span.flex_border,
#sub .crawling-contents-textbox .flex > span.flex_border02 {
  padding-right: 3%;
  border-right: 1px solid #333;
}
#sub .crawling-contents-textbox .flex02 {
  display: flex;
  align-items: start;
  justify-content: center;
  max-width: 100%;
  padding-bottom: 1.75rem;
}
#sub .crawling-contents-textbox .tit_border {
  padding-bottom: 1rem !important;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #333;
}
#sub .crawling-contents-textbox .text-left {
  text-align: left;
}
#sub .crawling-contents-textbox .text-center {
  text-align: center;
  word-break: keep-all;
}
#sub .crawling-contents-textbox .text-right {
  text-align: right;
}
#sub .crawling-contents-textbox .align-stretch {
  align-items: stretch;
}
#sub .crawling-contents-textbox .align-center {
  align-items: center;
}
#sub .crawling-contents-textbox .algin-end {
  align-items: flex-end;
}
#sub .crawling-contents-textbox .just-between {
  justify-content: space-between;
}
#sub .crawling-contents-textbox .just-start {
  justify-content: start;
}
#sub .crawling-contents-textbox .just-end {
  justify-content: flex-end;
}
#sub .crawling-contents-textbox .flex-wrap {
  flex-wrap: wrap;
}
#sub .crawling-contents-textbox .border {
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  background-color: #f7f8f8;
}
#sub .crawling-contents-textbox .border02 {
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  border: 1px solid #a1a1a1;
}
#sub .crawling-contents-textbox .border03 {
  padding: 2rem;
  margin-bottom: 1.75rem;
  background-color: #f7f8f8;
}
#sub .crawling-contents-textbox h3:last-child, #sub .crawling-contents-textbox h4:last-child, #sub .crawling-contents-textbox h5:last-child, #sub .crawling-contents-textbox p:last-child, #sub .crawling-contents-textbox .flex:last-child, #sub .crawling-contents-textbox .flex02:last-child {
  padding-bottom: 0;
}
#sub .crawling-contents-textbox .border:last-child,
#sub .crawling-contents-textbox .border02:last-child {
  margin-bottom: 0;
}
#sub .crawling-contents-textbox .location {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 5%;
  height: 5%;
  cursor: pointer;
  z-index: 2;
}
#sub .crawling-contents-textbox .box {
  padding: 0 1.5rem;
}
#sub .crawling-contents-textbox .modal_btn {
  display: block;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  margin-bottom: 2rem;
}
#sub .crawling-contents-textbox .marker {
  background: linear-gradient(to top, #ffee34 40%, transparent 30%);
}
#sub .crawling-contents-textbox .myeongjo {
  font-family: "Nanum Myeongjo", serif;
  font-weight: bold;
}
#sub .crawling-contents-textbox .hangeulnuriR {
  font-family: "HangeulNuri-Regular", serif;
  font-weight: 400;
}
#sub .crawling-contents-textbox .hangeulnuriB {
  font-family: "HangeulNuri-Bold", serif;
}
#sub .crawling-contents-textbox .Chosunmyungjo {
  font-family: "Chosunilbo_myungjo", serif;
}
#sub .crawling-contents-textbox .WooridaumB {
  font-family: "WooridaumB";
  font-weight: 700;
  color: #47a;
}
#sub .crawling-contents-textbox .italic {
  font-style: italic;
}
#sub .crawling-contents-textbox .underline {
  text-decoration: underline;
}
#sub .crawling-contents-textbox .keepall {
  word-break: keep-all;
}
#sub .crawling-contents-textbox .map {
  align-items: center;
  justify-content: start;
}
#sub .crawling-contents-textbox .map a {
  display: block;
  max-width: 74px;
  margin: 0 auto;
}
#sub .crawling-contents-textbox .tit01 {
  position: relative;
  font-size: 2.25rem;
  font-family: "HangeulNuri-Regular", serif;
  font-weight: 400;
  color: #014da1;
  word-break: keep-all;
  padding-left: 69.5px;
}
#sub .crawling-contents-textbox .tit01::before {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 62px;
  height: 12px;
  background-color: #014da1;
}
#sub .crawling-contents-textbox .tit02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#sub .crawling-contents-textbox .tit02 h3 {
  font-size: 1.8rem;
  margin-left: 1rem;
}
#sub .crawling-contents-textbox .tag01 {
  position: relative;
  width: 58px;
  height: 58px;
  font-weight: 500;
  line-height: 56px;
  border: 1px solid #333;
  text-align: center;
}
#sub .crawling-contents-textbox .tag01 span {
  position: absolute;
  left: 0;
  top: calc(-34px - 1rem);
  min-width: 129px;
  height: 34px;
  padding: 0 0.75rem;
  line-height: 34px;
  border-radius: 0.25rem;
  background-color: #4a9009;
  color: #fff;
}
#sub .crawling-contents-textbox .tag01 span::after {
  position: absolute;
  bottom: -18px;
  left: 17px;
  content: "";
  border-top: 9px solid #4a9009;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid transparent;
  z-index: 1;
}
#sub .crawling-contents-textbox .tag02 {
  display: inline-block;
  padding: 7px 15px 8px;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  text-align: center;
}
#sub .crawling-contents-textbox .tag03 {
  display: inline-block;
  padding: 0.5rem 1.5rem 0.5rem !important;
  margin-bottom: 0.5rem;
  border-radius: 20px;
  background-color: #4477aa;
  line-height: 1;
  color: #fff;
}
#sub .crawling-contents-textbox .tag04 {
  display: inline-block;
  padding: 0.25rem 0.5rem 0.25rem !important;
  border-radius: 20px;
  line-height: 1;
  color: #fff;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.65rem;
  background-color: red;
}
#sub .crawling-contents-textbox .btn01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 76px;
  padding: 0 0.75rem;
  margin: 0 auto;
  border-radius: 0.35rem;
  background-color: #3c49ab;
  box-shadow: inset -5px -5px #0f257c;
  cursor: pointer;
}
#sub .crawling-contents-textbox .btn01 > span {
  position: relative;
  top: -2.5px;
  font-size: 1rem;
  color: #fff;
}
#sub .crawling-contents-textbox .dot {
  display: block;
  position: relative;
  width: 28px;
  height: 11px;
  padding-bottom: 1.5rem;
}
#sub .crawling-contents-textbox .dot::after {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #6388b6;
}
#sub .crawling-contents-textbox .dot::before {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  right: 0;
  border-radius: 50%;
  background-color: #6388b6;
}
#sub .crawling-contents-textbox .quotes {
  position: relative;
  display: block;
  width: 28px;
  height: 20px;
  margin: 0 auto 1.5rem;
}
#sub .crawling-contents-textbox .quotes::after {
  position: absolute;
  display: block;
  content: "";
  width: 28px;
  height: 20px;
  background-image: url(/common/images/quotes.png);
  background-size: contain;
  background-repeat: no-repeat;
}
#sub .crawling-contents-textbox .swiper-container.swiperStyle01 .swiper-slide {
  display: inline-block;
  position: relative;
  width: 30.5%;
  margin-right: 4.25%;
  overflow: hidden;
}
#sub .crawling-contents-textbox .swiper-container.swiperStyle02 {
  max-width: 1200px;
}
#sub .crawling-contents-textbox .swiper-container.swiperStyle02 .swiper-slide {
  display: inline-block;
  position: relative;
  width: auto;
  overflow: hidden;
}
#sub .crawling-contents-textbox .swiper-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 48px;
  padding: 0 48px;
  margin: 0;
}
#sub .crawling-contents-textbox .swiper-box .swiper-button-prev {
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  margin: 0;
  background-image: url(/common/images/prev03.png);
  background-size: 100%;
}
#sub .crawling-contents-textbox .swiper-box .swiper-button-next {
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  margin: 0;
  background-image: url(/common/images/next03.png);
  background-size: 100%;
}
#sub .crawling-contents-textbox .swiper-box .swiper-pagination {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#sub .crawling-contents-textbox .swiper-box .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px 0 0;
}
#sub .crawling-contents-textbox .swiper-box .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #222;
}
#sub .crawling-contents-textbox:last-child {
  padding-bottom: 6rem;
}
#sub .comment01 {
  padding: 3rem 5% 0;
}
#sub .comment01 .comment_text {
  max-width: 822px;
  padding-bottom: 0.75rem;
  margin: 0 auto;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.45;
  text-align: left;
}
#sub .comment01 .comment_text.red {
  padding-bottom: 0.15rem !important;
  font-size: 0.8rem;
  color: #dc3434;
}
#sub .comment01 .comment_box01 {
  max-width: 822px;
  margin: 0 auto;
}
#sub .comment01 .comment_box01 > span {
  display: block;
  margin-top: 0.25rem;
  overflow: hidden;
}
#sub .comment01 .comment_box01 > span input {
  display: inline-block;
  float: left;
  width: calc((100% - 8px) / 2);
  height: 55px;
  padding: 0 1rem;
  font-size: 0.9rem;
  border: 1px solid #aaaaaa;
  background-color: #fff;
}
#sub .comment01 .comment_box01 > span input::-moz-placeholder {
  color: #8c8c8c;
}
#sub .comment01 .comment_box01 > span input:-ms-input-placeholder {
  color: #8c8c8c;
}
#sub .comment01 .comment_box01 > span input::placeholder {
  color: #8c8c8c;
}
#sub .comment01 .comment_box01 > span input:last-child {
  float: right;
}
#sub .comment01 .comment_box01 > span:frist-child {
  margin-top: 0;
}
#sub .comment01 .comment_box01 textarea {
  display: block;
  padding: 0.5rem 1rem;
  margin: 0.7rem 0 0;
  width: 100%;
  height: 150px;
  font-size: 0.9rem;
  border: 1px solid #aaaaaa;
  background-color: #fff;
  overflow: auto;
}
#sub .comment01 .comment_box01 textarea::-moz-placeholder {
  color: #dc3434;
}
#sub .comment01 .comment_box01 textarea:-ms-input-placeholder {
  color: #dc3434;
}
#sub .comment01 .comment_box01 textarea::placeholder {
  color: #dc3434;
}
#sub .comment01 .comment_box02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0.7rem auto 0;
}
#sub .comment01 .comment_box02 > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#sub .comment01 .comment_box02 > span:last-child {
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 1rem;
}
#sub .comment01 .comment_box02 b {
  font-size: 0.9rem;
}
#sub .comment01 .comment_box02 label {
  margin-top: -4px;
  margin-left: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}
#sub .comment01 .comment_box02 input[type=text] {
  display: inline-block;
  width: 163px;
  height: 55px;
  padding: 0 1rem;
  font-size: 0.9rem;
  border: 1px solid #aaaaaa;
  background-color: #fff;
}
#sub .comment01 .comment_box02 input[type=text]::-moz-placeholder {
  color: #8c8c8c;
}
#sub .comment01 .comment_box02 input[type=text]:-ms-input-placeholder {
  color: #8c8c8c;
}
#sub .comment01 .comment_box02 input[type=text]::placeholder {
  color: #8c8c8c;
}
#sub .comment01 .comment_box02 button {
  width: 48px;
  height: 55px;
  cursor: pointer;
}
#sub .comment01 .comment_box02 .secureimage {
  width: 163px;
  height: 55px;
  padding: 0.375rem 0;
  margin-left: 1rem;
  border: 1px solid #aaaaaa;
  background-color: #fff;
}
#sub .comment01 .comment_box02 .secureimage img {
  display: block;
  width: 100%;
  max-width: 145px;
  margin: 0 auto;
}
#sub .comment01 .comment_btn01 {
  display: block;
  width: 246px;
  height: 67px;
  margin: 1.75rem auto 0;
  font-size: 1.1rem;
  border-radius: 33.5px;
  background-color: #4a13b4;
  color: #fff;
  cursor: pointer;
}
#sub .comment02 {
  padding: 3rem 5%;
}
#sub .comment02 ul {
  max-width: 1035px;
  margin: 0 auto;
}
#sub .comment02 ul li {
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid #d2d2d2;
}
#sub .comment02 ul li p {
  padding: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.45;
  word-break: break-all;
  text-align: justify;
}
#sub .comment02 ul li p b {
  display: block;
  font-size: 100%;
  font-weight: 500;
}
#sub .comment02 ul li p:last-child {
  padding: 0;
}
#sub .comment02 ul li:first-child {
  padding-top: 0;
}
#sub .comment02 .pagenation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}
#sub .comment02 .pagenation button {
  width: 31px;
  height: 31px;
  margin-right: 0.25rem;
  border: 1px solid #fff;
  font-size: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
#sub .comment02 .pagenation button span {
  display: none;
}
#sub .comment02 .pagenation button:last-child {
  margin-right: 0;
}
#sub .comment02 .pagenation .first {
  border-color: #aaaaaa;
  background-image: url("/common/images/pagenation01.png");
}
#sub .comment02 .pagenation .prev {
  border-color: #aaaaaa;
  background-image: url("/common/images/pagenation02.png");
}
#sub .comment02 .pagenation .next {
  border-color: #aaaaaa;
  background-image: url("/common/images/pagenation03.png");
}
#sub .comment02 .pagenation .last {
  border-color: #aaaaaa;
  background-image: url("/common/images/pagenation04.png");
}
#sub .calendar03 .gallery-top {
  padding: 2rem 5%;
  background-image: url("/common/images/calendar_bg02.jpg");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
}
#sub .calendar03 .gallery-top .swiper-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background-color: #333;
}
#sub .calendar03 .gallery-top .swiper-button-prev {
  width: 30px;
  height: 30px;
  left: 1rem;
  top: auto;
  bottom: 2.75rem;
  border: 1px solid #fff;
  background-image: url("/common/images/prev02.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  opacity: 1;
}
#sub .calendar03 .gallery-top .swiper-button-next {
  width: 30px;
  height: 30px;
  right: 1rem;
  top: auto;
  bottom: 2.75rem;
  border: 1px solid #fff;
  background-image: url("/common/images/next02.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  opacity: 1;
  cursor: pointer;
}
#sub .calendar03 .gallery-top .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  bottom: 1.25rem;
}
#sub .calendar03 .gallery-top .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px 0 0 !important;
  background-color: #ccc;
}
#sub .calendar03 .gallery-top .swiper-pagination-bullet-active {
  background-color: #fff;
}
#sub .calendar03 .gallery-top .img {
  display: block;
}
#sub .calendar03 .gallery-top .text {
  display: block;
  padding: 2rem 0 3rem;
  font-size: 0.95rem;
  color: #fff;
  text-align: center;
  word-break: keep-all;
}
#sub .calendar03 .gallery-top .text > b {
  font-size: 100%;
  color: #fff;
}
#sub .calendar03 .gallery-thumbs {
  position: relative;
  padding: 2.5rem;
}
#sub .calendar03 .gallery-thumbs .swiper-slide {
  display: inline-block;
  width: 170px;
  margin-right: 0.25rem;
  border: 5px solid #fff;
  cursor: pointer;
}
#sub .calendar03 .gallery-thumbs .swiper-slide-active {
  border-color: #333;
}
#sub .calendar03 .gallery-thumbs .swiper-button-prev {
  left: 0;
  filter: grayscale(100%);
}
#sub .calendar03 .gallery-thumbs .swiper-button-next {
  right: 0;
  filter: grayscale(100%);
}
#sub .sns {
  align-items: stretch !important;
}
#sub .sns > span {
  margin-bottom: 0 !important;
}
#sub .sns .wrap {
  position: relative;
  display: block;
  cursor: pointer;
}
#sub .sns .wrap .img {
  padding-bottom: 0;
}
#sub .sns .wrap .cover {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: calc(100% - 5px);
  transition: 0.3s;
}
#sub .sns .wrap .cover img {
  display: inline-block;
}
#sub .sns .wrap:hover .cover {
  opacity: 0;
}

#sub.event .crawling-contents-textbox .answer h5 {
  padding-bottom: 0.5rem;
}
#sub.event .crawling-contents-textbox .answer p {
  padding-bottom: 1rem;
}
#sub.event .crawling-contents-textbox .answer input {
  display: inline-block;
  width: 100%;
  height: 56px;
  padding: 0 1rem;
  border: 1px solid #a0a0a0;
}
#sub.event .crawling-contents-textbox .info {
  position: relative;
  background-color: #fff;
  z-index: 5;
  padding: 5rem 0 4rem;
  background-color: #fff;
  text-align: center;
}
#sub.event .crawling-contents-textbox .info .info_title {
  padding: 0;
  margin: 0 auto;
  font-size: 1.35rem;
  font-weight: bold;
  line-height: 1.45;
  word-break: keep-all;
}
#sub.event .crawling-contents-textbox .info .info_input {
  max-width: 1000px;
  margin: 0 auto;
}
#sub.event .crawling-contents-textbox .info .info_input span {
  display: block;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
#sub.event .crawling-contents-textbox .info .info_input span:last-child {
  margin-bottom: 0;
}
#sub.event .crawling-contents-textbox .info .info_input input {
  display: inline-block;
  float: left;
  width: 49.33%;
  height: 56px;
  padding: 0 1rem;
  margin-right: 1.34%;
  border: 1px solid #a0a0a0;
}
#sub.event .crawling-contents-textbox .info .info_input input:last-child {
  margin: 0;
}
#sub.event .crawling-contents-textbox .info .info_check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
#sub.event .crawling-contents-textbox .info .info_check label {
  margin-top: -4px;
  margin-left: 0.25rem;
  font-size: 0.85rem;
  cursor: pointer;
}
#sub.event .crawling-contents-textbox .info .info_btn {
  display: block;
  width: 257px;
  height: 70px;
  margin: 1rem auto 0;
  font-size: 1.35rem;
  background-color: #672dc7;
  color: #fff;
  cursor: pointer;
}
#sub.event .crawling-contents-textbox .info .info_text {
  margin-top: 2.5rem;
  color: #672dc7;
  text-align: center;
  word-break: keep-all;
}
#sub.event .crawling-contents-textbox .event_wrap .hidden_catch {
  position: relative;
}
#sub.event .crawling-contents-textbox .event_wrap .hidden_catch > div {
  position: relative;
}
#sub.event .crawling-contents-textbox .event_wrap .hidden_catch .event_img {
  cursor: pointer;
}
#sub.event .crawling-contents-textbox .event_wrap .hidden_catch .event_btn {
  position: absolute;
  left: 7.5%;
  top: 9%;
  width: 10%;
  height: 20%;
  background-image: url("/page/vol308/img/event_check.png");
  background-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  cursor: pointer;
}
#sub.event .crawling-contents-textbox .event_wrap .hidden_catch .event_btn.on {
  background-size: contain;
}
#sub.event .crawling-contents-textbox .event_wrap .hidden_catch .event_error {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15%;
  z-index: 2;
}
#sub.event .crawling-contents-textbox .event_wrap .hidden_catch .event_error.on {
  display: block;
}
#sub.event .crawling-contents-textbox .event_form {
  display: none;
}

/*Ipad Pro*/
@media (max-width: 1365px) {
  .function {
    position: static;
    width: 100%;
    height: auto;
    border-top: 1px solid #ccc;
    border-left: none;
  }
  .function .wrap {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin: 2rem 0;
    width: 100%;
    border-left: none;
  }
  .function .wrap a, .function .wrap button {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .function .wrap a:last-child, .function .wrap button:last-child {
    margin-right: 0;
  }
  .movement .wrap {
    width: 95%;
    margin: 0 auto;
  }
  #sub .crawling-contents-top .wrap {
    padding: 0 5%;
  }
  #sub .crawling-contents-introduction {
    margin: 7rem 5% 0;
  }
  #sub .crawling-contents-textbox {
    padding: 3rem 5% 0;
  }
  #sub .crawling-contents-textbox .flex_1365 {
    display: block;
  }
  #sub .crawling-contents-textbox .flex_1365 > span {
    display: block;
    width: 100%;
    min-width: auto !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: 1.75rem;
  }
  #sub .crawling-contents-textbox .flex_1365 > span:last-child {
    margin-bottom: 0;
  }
  #sub .crawling-contents-textbox .flex_1365 > span.flex_border {
    padding-right: 0;
    border: none;
  }
  #sub .crawling-contents-textbox .flex_1365 > span.flex_border02 {
    padding-right: 0;
    padding-bottom: 1.75rem;
    border-right: none;
    border-bottom: 1px solid #333;
  }
  #sub .crawling-contents-textbox .swiper-container.swiperStyle01 .swiper-slide {
    width: 35%;
    max-width: 440px;
    margin: 0 2.5% !important;
  }
  #sub .comment02 ul {
    max-width: 100%;
  }
}
/*Small Pc*/
@media (max-width: 1200px) {
  #sub .crawling-contents-top .wrap {
    flex-direction: column;
  }
  #sub .crawling-contents-top .wrap .left {
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    width: 100% !important;
  }
  #sub .crawling-contents-top .wrap .left .navigation {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2rem;
  }
  #sub .crawling-contents-top .wrap .right {
    width: 100%;
  }
}
/*Ipad*/
@media (max-width: 1024px) {
  .pc1024 {
    display: none !important;
  }
  .mo1024 {
    display: block !important;
  }
  .movement .wrap {
    align-items: flex-start;
  }
  .movement .wrap > span {
    display: none;
  }
  .movement .wrap > a {
    width: calc(50% - 0.5rem);
    margin-right: 1rem;
  }
  .movement .wrap > a .text * {
    word-break: keep-all;
  }
  .movement .wrap > a:last-child {
    margin-right: 0;
  }
  .movement .wrap > a.next {
    justify-content: end;
  }
  .movement .wrap > a .arrow_prev {
    margin-right: 0.5rem;
  }
  .movement .wrap > a .arrow_next {
    margin-left: 0.5rem;
  }
  .find_event .find_input {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .find_event .find_input ul {
    display: block;
    float: none;
    margin: 46% auto 1rem;
  }
  .find_event .find_input ul li p {
    padding: 0.5rem 0;
  }
  .find_event .find_input ul li p.detail {
    padding: 0.5rem;
  }
  .find_event .find_input .find_close {
    display: block;
    float: none;
    margin: 0 auto 1rem;
    background-image: url(/common/images/close03.png);
  }
  #sub .crawling-contents-textbox .img.download .download_btn {
    display: none !important;
  }
  #sub .crawling-contents-textbox .flex_1024 {
    display: block;
  }
  #sub .crawling-contents-textbox .flex_1024 > span {
    display: block;
    width: 100%;
    min-width: auto !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: 1.75rem;
  }
  #sub .crawling-contents-textbox .flex_1024 > span:last-child {
    margin-bottom: 0;
  }
  #sub .crawling-contents-textbox .flex_1024 > span.flex_border {
    padding-right: 0;
    border: none;
  }
  #sub .crawling-contents-textbox .flex_1024 > span.flex_border02 {
    padding-right: 0;
    padding-bottom: 1.75rem;
    border-right: none;
    border-bottom: 1px solid #333;
  }
  #sub .crawling-contents-textbox .flex_1024.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  #sub .crawling-contents-textbox .flex_1024.reverse > span:last-child {
    margin-bottom: 1.75rem;
  }
  #sub .comment01 .comment_text {
    max-width: 100%;
  }
  #sub .comment01 .comment_box01 {
    max-width: 100%;
  }
  #sub .comment01 .comment_box02 {
    display: block;
    max-width: 100%;
    overflow: hidden;
  }
  #sub .comment01 .comment_box02 > span:last-child {
    margin-top: 1.5rem;
  }
  #sub .comment01 .comment_box02 input[type=text] {
    width: calc(100% - (94.88px + 1rem + 163px + 48px));
  }
}
/*Tablet*/
@media (max-width: 991.98px) {
  #sub .crawling-contents-textbox .swiper-container.swiperStyle01 .swiper-slide {
    width: 55%;
  }
}
/*Tablet*/
@media (max-width: 768px) {
  .eventstyle01 img {
    width: 95%;
  }
  .pc768 {
    display: none !important;
  }
  .mo768 {
    display: block !important;
  }
  #sub .crawling-contents-textbox .flex {
    display: block;
  }
  #sub .crawling-contents-textbox .flex > span {
    display: block;
    width: 100%;
    min-width: auto !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: 1.5rem;
  }
  #sub .crawling-contents-textbox .flex > span:last-child {
    margin-bottom: 0;
  }
  #sub .crawling-contents-textbox .flex > span.flex_border {
    padding-right: 0;
    border: none;
  }
  #sub .crawling-contents-textbox .flex > span.flex_border02 {
    padding-right: 0;
    padding-bottom: 1.75rem;
    border-right: none;
    border-bottom: 1px solid #333;
  }
  #sub .crawling-contents-textbox .img > span .imgBottom {
    margin-bottom: 1.5rem;
  }
  #sub .crawling-contents-textbox .map {
    text-align: center;
  }
  #sub .crawling-contents-textbox .map_wrap h3 {
    text-align: center;
  }
  #sub .crawling-contents-textbox .flex_768 {
    display: block;
  }
  #sub .crawling-contents-textbox .flex_768 > span {
    display: block;
    width: 100%;
    min-width: auto !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: 1.5rem;
  }
  #sub .crawling-contents-textbox .flex_768 > span:last-child {
    margin-bottom: 0;
  }
  #sub .crawling-contents-textbox .flex_768 > span.flex_border {
    padding-right: 0;
    border: none;
  }
  #sub .crawling-contents-textbox .flex_768 > span.flex_border02 {
    padding-right: 0;
    padding-bottom: 1.75rem;
    border-right: none;
    border-bottom: 1px solid #333;
  }
  #sub .crawling-contents-textbox .flex_768.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  #sub .crawling-contents-textbox .flex_768.reverse > span:last-child {
    margin-bottom: 1.75rem;
  }
  #sub .crawling-contents-textbox .box {
    padding: 0;
  }
  #sub .crawling-contents-textbox .sns {
    padding-bottom: 0;
  }
  #sub .crawling-contents-textbox .sns > span {
    margin-bottom: 1.5rem !important;
  }
  #sub .comment01_02 {
    padding: 3rem 0% 1rem !important;
  }
}
/*Mobile*/
@media (max-width: 575.98px) {
  .function .wrap {
    justify-content: space-between;
    width: 85%;
    margin: 1rem auto;
  }
  .function .wrap a, .function .wrap button {
    width: 28px;
    height: 28px;
    margin: 0;
  }
  .function .wrap a *, .function .wrap button * {
    font-size: 1.4rem;
    width: 100%;
  }
  .movement .wrap {
    padding: 1rem 0;
  }
  .movement .wrap > a img {
    width: 32px;
    height: 32px;
  }
  .movement .wrap > a .text b {
    font-size: 0.65rem;
    padding-bottom: 0.25rem;
  }
  .movement .wrap > a .text span {
    font-size: 0.75rem;
  }
  .modal_wrap {
    padding: 2rem 0;
  }
  .find_event .find_input ul li input {
    width: 100% !important;
    margin-bottom: 0.25rem;
  }
  .find_event .find_input ul li input[type=checkbox] + label {
    font-size: 0.75rem;
  }
  .find_event .find_input ul li.input span {
    margin-bottom: 0;
  }
  #sub {
    padding-top: 80px;
  }
  #sub .logo {
    top: 1rem;
  }
  #sub .logo img {
    width: 100px;
  }
  #sub .crawling-contents-top .wrap .left .navigation {
    margin-bottom: 1.25rem;
    padding: 0.25rem 1rem 0.75rem;
  }
  #sub .crawling-contents-top .wrap .left .navigation .depth1, #sub .crawling-contents-top .wrap .left .navigation .depth2 {
    font-size: 0.75rem;
  }
  #sub .crawling-contents-top .wrap .left .subtitle {
    font-size: 1.1rem;
  }
  #sub .crawling-contents-top .wrap .left .title {
    font-size: 1.8rem;
    padding-bottom: 1rem;
  }
  #sub .crawling-contents-top .wrap .left .by span {
    font-size: 0.75rem;
  }
  #sub .crawling-contents-top .wrap .right {
    top: 2rem;
  }
  #sub .crawling-contents-introduction {
    margin: 4rem 5% 0;
  }
  #sub .crawling-contents-textbox h3 {
    padding-bottom: 1rem;
    font-size: 1.25rem;
    word-break: normal;
  }
  #sub .crawling-contents-textbox h4 {
    font-size: 1rem;
  }
  #sub .crawling-contents-textbox h4 * {
    font-size: 1rem;
  }
  #sub .crawling-contents-textbox h5 {
    font-size: 0.85rem;
  }
  #sub .crawling-contents-textbox p {
    font-size: 0.8rem;
  }
  #sub .crawling-contents-textbox p * {
    font-size: 0.8rem;
  }
  #sub .crawling-contents-textbox small {
    font-size: 80%;
  }
  #sub .crawling-contents-textbox .img {
    padding-bottom: 1rem;
  }
  #sub .crawling-contents-textbox .img img.mo {
    display: block !important;
  }
  #sub .crawling-contents-textbox .img img.imgBottom {
    margin-bottom: 1rem;
  }
  #sub .crawling-contents-textbox .img > span small {
    font-size: 0.65rem;
  }
  #sub .crawling-contents-textbox .border,
#sub .crawling-contents-textbox .border02,
#sub .crawling-contents-textbox .border03 {
    padding: 1.25rem 5% !important;
  }
  #sub .crawling-contents-textbox .tit01 {
    font-size: 2rem;
    max-width: none !important;
    padding: 0 5% 1.5rem 59.5px;
  }
  #sub .crawling-contents-textbox .tit01::before {
    width: 52px;
    height: 10px;
  }
  #sub .crawling-contents-textbox .tit02 .img {
    max-width: 80px;
  }
  #sub .crawling-contents-textbox .tit02 h3 {
    font-size: 1.5rem;
    margin-left: 0.75rem;
  }
  #sub .crawling-contents-textbox .btn01 {
    height: 64px;
    padding: 0;
    border-radius: 0.25rem;
  }
  #sub .crawling-contents-textbox .btn01 > span {
    font-size: 0.85rem;
  }
  #sub .crawling-contents-textbox .flex > span {
    margin-bottom: 1rem !important;
  }
  #sub .crawling-contents-textbox .swiper-container.swiperStyle01 {
    margin-top: 1.5rem;
  }
  #sub .crawling-contents-textbox .swiper-container.swiperStyle01 .swiper-slide {
    width: 70%;
  }
  #sub .crawling-contents-textbox .swiper-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 40px;
    padding: 0 30px;
    margin-left: 0.5rem;
  }
  #sub .crawling-contents-textbox .swiper-box .swiper-button-prev,
#sub .crawling-contents-textbox .swiper-box .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  #sub .crawling-contents-textbox .swiper-box .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  #sub .crawling-contents-textbox .swiper-box.mo {
    display: block !important;
    width: 100px;
    height: 40px;
    padding: 0 30px;
    margin: 1rem auto 0;
  }
  #sub .crawling-contents-textbox .mo_font {
    font-size: 95%;
  }
  #sub .crawling-contents-textbox .text-center-mo {
    text-align: center;
  }
  #sub .crawling-contents-textbox:last-child {
    padding-bottom: 4rem;
  }
  #sub .comment01 .comment_text {
    font-size: 0.75rem;
    text-align: justify;
    word-break: break-all;
  }
  #sub .comment01 .comment_text.red {
    font-size: 0.7rem !important;
  }
  #sub .comment01 .comment_box01 > span input {
    padding: 0 0.5rem;
    height: 45px;
    font-size: 0.8rem;
  }
  #sub .comment01 .comment_box01 textarea {
    padding: 0.35rem 0.5rem;
    font-size: 0.8rem;
  }
  #sub .comment01 .comment_btn01 {
    width: 202px;
    height: 55px;
    font-size: 0.95rem;
  }
  #sub .comment01 .comment_box02 b {
    width: 100%;
    font-size: 0.8rem;
    padding-bottom: 0.25rem;
  }
  #sub .comment01 .comment_box02 .secureimage {
    width: 120px;
    height: 39px;
    margin-left: 0;
    padding: 0.25rem 0;
  }
  #sub .comment01 .comment_box02 .secureimage img {
    width: auto;
    max-width: none;
    height: 28px;
  }
  #sub .comment01 .comment_box02 button {
    width: 39px;
    height: 39px;
  }
  #sub .comment01 .comment_box02 input[type=text] {
    width: calc(100% - 159px);
    height: 39px;
    padding: 0 0.5rem;
    font-size: 0.8rem;
  }
  #sub .comment01 .comment_box02 label {
    font-size: 0.8rem;
  }
  #sub .comment02 ul li {
    padding: 1.25rem 0 1.75rem;
  }
  #sub .comment02 .pagenation {
    margin: 1.75rem 0 3.5rem;
  }
  #sub .comment02 .pagenation button {
    width: 30px;
    height: 30px;
  }
  #sub .calendar03 .gallery-top {
    padding: 1.5rem 5%;
    background-image: url("/common/images/calendar_bg02_mo.jpg");
  }
  #sub .calendar03 .gallery-top .swiper-button-prev {
    left: 5%;
    bottom: 2.5rem;
    transform: translateY(50%);
  }
  #sub .calendar03 .gallery-top .swiper-button-next {
    right: 5%;
    bottom: 2.5rem;
    transform: translateY(50%);
  }
  #sub .calendar03 .gallery-top .text {
    padding: 1.25rem calc(10% + 30px) 2.5rem;
    font-size: 0.75rem;
  }
  #sub .calendar03 .gallery-thumbs {
    padding: 2rem;
  }
  #sub.event .crawling-contents-textbox button {
    max-width: 200px;
  }
  #sub.event .crawling-contents-textbox .quiz .quiz_title img {
    max-width: 110px;
  }
  #sub.event .crawling-contents-textbox .answer input {
    height: 48px;
    font-size: 0.85rem;
  }
  #sub.event .crawling-contents-textbox .info {
    padding: 3rem 0;
  }
  #sub.event .crawling-contents-textbox .info .info_check {
    align-items: flex-start;
  }
  #sub.event .crawling-contents-textbox .info .info_input span {
    margin-bottom: 0.25rem;
  }
  #sub.event .crawling-contents-textbox .info .info_input input {
    width: 100%;
    height: 48px;
    margin-right: 0;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
  }
  #sub.event .crawling-contents-textbox.textbox_mobile {
    padding: 0 !important;
  }
  .pc {
    display: none !important;
  }
  .mo {
    display: block !important;
  }
}
/*Mobile(minimum)*/
@media (max-width: 360px) {
  .comment01 .comment_box02 b {
    font-size: 0.75rem;
  }
  .comment01 .comment_box02 .secureimage {
    width: 107px;
    padding: 0.3rem 0;
  }
  .comment01 .comment_box02 .secureimage img {
    height: 25px;
  }
  .comment01 .comment_box02 button {
    width: 35px;
  }
  .comment01 .comment_box02 button i {
    font-size: 0.9rem;
  }
  .comment01 .comment_box02 input[type=text] {
    width: calc(100% - (78.31px + 0.5rem + 107px + 35px));
    padding: 0 0.35rem;
    font-size: 0.75rem;
  }
}
@font-face {
  font-family: "HangeulNuri-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../font/HangeulNuriR.eot");
  src: local(""), url("../font/HangeulNuriR.eot?#iefix") format("embedded-opentype"), url("../font/HangeulNuriR.woff2") format("woff2"), url("../font/HangeulNuriR.woff") format("woff"), url("../font/HangeulNuriR.ttf") format("truetype"), url("../font/HangeulNuriR.svg") format("svg");
}
@font-face {
  font-family: "HangeulNuri-Bold";
  font-style: normal;
  font-weight: 600;
  src: url("../font/HangeulNuriB.eot");
  src: local(""), url("../font/HangeulNuriB.eot?#iefix") format("embedded-opentype"), url("../font/HangeulNuriB.woff2") format("woff2"), url("../font/HangeulNuriB.woff") format("woff"), url("../font/HangeulNuriB.ttf") format("truetype"), url("../font/HangeulNuriB.svg") format("svg");
}
@font-face {
  font-family: "S-CoreDream-3Light";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "S-CoreDream-6Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Vitro_core";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/Vitro_core.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Chosunilbo_myungjo";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Chosunilbo_myungjo.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "WooridaumB";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2205@1.0/WooridaumB.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}/*# sourceMappingURL=style_renewal2.css.map */