@charset "UTF-8";
@import url(https://fastly.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css);
:root {
  --container-padding: 40px;
  --hd: 150px;
}

@media (max-width: 1199.98px) {
  :root {
    --container-padding: 20px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --hd: 70px;
  }
}
html {
  font-size: 20px;
}
@media (max-width: 1199.98px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 16px;
  }
}

body, p, span, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset, legend, input, textarea, button, select, label {
  margin: 0;
  padding: 0;
  font-family: "pretendard", -apple-system, sans-serif;
  color: inherit;
  outline: 0;
  letter-spacing: -0.03em;
}

body {
  color: #333;
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: inherit;
}
a:hover, a:focus, a:active {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

address, em {
  font-style: normal;
}

table {
  width: 100%;
}

textarea {
  resize: none;
  font-size: 1rem;
  outline: 0;
}

u {
  text-decoration-thickness: 1px;
  text-underline-position: under;
}

img {
  vertical-align: top;
  max-width: 100%;
}

button {
  cursor: pointer;
  outline: 0 !important;
}
button.no-style {
  background: none;
  line-height: 1;
  border: 0;
}

b, strong {
  font-weight: 700;
}

.row {
  --gutters-margin: -10px;
  margin-left: var(--gutters-margin);
  margin-right: var(--gutters-margin);
}

.row > [class*=col], .row > div {
  padding-left: calc(var(--gutters-margin) * -1);
  padding-right: calc(var(--gutters-margin) * -1);
}

.no-gutters {
  --gutters-margin: 0 ;
}

h1, h2, h3, h4, .fs-1, .fs-2, .fs-3 {
  font-weight: 700;
  line-height: 1.5;
  color: #191919;
}

.fs-1 {
  font-size: 2.4rem;
}

.fs-2 {
  font-size: 1.8rem;
}

.fs-3 {
  font-size: 1.6rem;
}

.fs-4 {
  font-size: 1.2rem;
}

.fs-5 {
  font-size: 0.9rem;
  line-height: 1.3;
}

.sm {
  font-size: 0.8rem;
}

.fw-mid {
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .fs-1 {
    font-size: 26px;
  }
  .fs-2 {
    font-size: 18px;
  }
  .fs-3, .fs-4 {
    font-size: 16px;
  }
}
.text-base {
  font-size: 1rem !important;
}

.text-body {
  color: #333 !important;
}

.text-dark {
  color: #191919 !important;
}

.text-primary {
  color: #0397FB !important;
}

.text-muted {
  color: #B3B3B3 !important;
}

.bg-dark {
  background-color: #191919 !important;
}

.bg-light {
  background-color: #F6F6F6 !important;
}

.text-clamp {
  display: -webkit-box !important;
  overflow: hidden;
  max-height: 3em;
  line-height: 1.5em !important;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  white-space: normal !important;
  height: auto;
}

/* 
	컴포넌트 스타일
	:: icon
	:: Button ,badge
	:: Form
	:: box 
	:: nav
	:: Modal 
*/
.icon {
  display: inline-block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  vertical-align: middle;
  width: 1.2rem;
  height: 1.2rem;
  overflow: hidden;
}
.icon-face {
  background-image: url(../img/common/icon-face.svg);
}
.icon-insta {
  background-image: url(../img/common/icon-insta.svg);
}
.icon-ytb {
  background-image: url(../img/common/icon-ytb.svg);
}
.icon-blog {
  background-image: url(../img/common/icon-blog.svg);
}
.icon-list {
  background-image: url(../img/common/icon-list.svg);
}
.icon-attach-file {
  background-image: url(../img/common/icon-attach-file.svg);
}
.icon-link {
  width: 0.9rem;
  height: 0.9rem;
  background-image: url(../img/common/icon-link.svg);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.icon-down {
  width: 0.9rem;
  height: 0.9rem;
  background-image: url(../img/common/icon-down.svg);
}

.btn {
  border-radius: 2em;
  padding: 0 1.2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  line-height: 1rem;
  min-width: 10.5rem;
  height: 2.75rem;
  gap: 8px;
  font-size: 0.9rem;
  border: 2px solid #000;
  color: #000 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.btn .icon {
  margin-top: -0.05em;
}
.btn:hover, .btn:focus {
  background: #000;
  color: #fff !important;
}
.btn:hover .icon, .btn:focus .icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.btn-lg {
  font-size: 1.2rem;
  height: 3.5rem;
  min-width: 12rem;
}
.btn-dark {
  background: #000;
  color: #fff !important;
}
.btn:hover .icon-link {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 767.98px) {
  .btn {
    min-width: 120px;
  }
  .btn, .btn-lg {
    font-size: 14px;
    height: auto;
    padding: 12.5px 20px;
  }
}

.form-control {
  border-radius: 0.7rem !important;
  height: 58px;
  font-size: 18px;
  background: #F6F6F6;
  border-color: transparent;
  padding: 0 0.9rem;
}
.form-control::-webkit-input-placeholder {
  color: #9A9A9A;
}
.form-control::-moz-placeholder {
  color: #9A9A9A;
}
.form-control:-ms-input-placeholder {
  color: #9A9A9A;
}
.form-control::-ms-input-placeholder {
  color: #9A9A9A;
}
.form-control::placeholder {
  color: #9A9A9A;
}
@media (max-width: 767.98px) {
  .form-control {
    height: 48px;
    font-size: 16px;
    border-radius: 12px;
  }
}

.form-select {
  -webkit-appearance: none;
  background: #F6F6F6 url(../img/select.svg) no-repeat center right 1rem/1rem auto;
  padding-right: 2rem;
}

.form-text {
  font-size: 0.8rem;
}

.input-group {
  gap: 0.5rem;
}
.input-group .form-select {
  max-width: 30%;
}

.form-label {
  display: block;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.form-label .sm {
  font-weight: 400;
}

.custom-check {
  cursor: pointer;
  display: block;
  font-size: 0.9rem;
  line-height: 1.3rem;
}
.custom-check-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem 0.3rem;
  margin-bottom: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom-check-box {
  border-radius: 0.7rem;
  padding: 0.9rem;
  background: #F6F6F6;
}
.custom-check-box .row {
  row-gap: 0.4rem;
}
@media (max-width: 991.98px) {
  .custom-check-box {
    max-height: 190px;
    overflow-y: auto;
  }
}
.custom-check-btn {
  display: block;
  background: #F5F6F8;
  padding: 0.55rem 1.2rem;
  border-radius: 2rem;
  line-height: 1;
  font-size: 1rem;
}
input:checked + .custom-check-btn {
  background-color: #000;
  color: #fff;
}
.custom-check-label {
  display: inline-block;
  vertical-align: top;
  padding-left: 1.3rem;
  background: url(../img/check.svg) no-repeat 0 0.15rem/1rem auto;
}
input:checked + .custom-check-label {
  background-image: url(../img/check_on.svg);
}

.form-row {
  --gutters-margin: -0.6rem;
  row-gap: 2.4rem;
}
@media (max-width: 991.98px) {
  .form-row {
    row-gap: 1.4rem;
  }
}

.nav-pills {
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}
.nav-pills .nav-link {
  padding: 0.5rem 1.2rem;
  line-height: 1;
  border-radius: 2em;
  font-weight: 600;
  text-align: center;
  background: #F5F6F8;
  color: #B3B3B3;
}
.nav-pills .nav-link.active {
  background: #000;
  color: #fff;
}
.nav-pills .nav-link.active:not([target=_blank]) {
  pointer-events: none;
}
.nav-pills .nav-link .icon-link {
  margin: -2px 0 0 4px;
}
.nav-pills .nav-link:hover .icon-link {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 575.98px) {
  .nav-pills {
    margin-bottom: 1rem;
    gap: 5px;
  }
}

.modal-dialog {
  max-width: 1200px;
}

.modal-content {
  padding: 4.5rem;
  border: 0;
  border-radius: 1rem;
  margin-top: 3.6rem;
  position: relative;
}
.modal-content .view {
  margin-bottom: 0;
}
.modal-content .view-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.modal-content .icon-close {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 1rem;
  border: 0;
  background-color: transparent;
  background-image: url(../img/common/icon-close.svg);
}
@media (max-width: 1479.98px) {
  .modal-content {
    padding: 2rem;
  }
}
@media (max-width: 991.98px) {
  .modal-content {
    padding: 35px 15px;
  }
}

.container {
  max-width: 1520px;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
.container-fluid {
  max-width: none;
}

.top-banner {
  background: #1F3C89;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
.top-banner .container {
  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;
  color: #fff;
  font-size: 0.9rem;
  height: 2.2rem;
}
.top-banner .link {
  width: 4.25rem;
  height: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  color: #1F3C89;
  background: #fff;
  border-radius: 2em;
  font-weight: 700;
  line-height: 12px;
}
.top-banner .link:after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/common/top-banner-link.svg);
  margin-left: 4px;
}
@media (max-width: 991.98px) {
  .top-banner .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 28px;
    font-size: 14px;
  }
  .top-banner .link {
    display: none;
  }
}

.hd {
  position: sticky;
  top: 2.2rem;
  left: 0;
  z-index: 999;
  letter-spacing: 0;
}
.hd .logo {
  width: 10rem;
  padding-right: 10px;
  line-height: 0;
}
@media (max-width: 991.98px) {
  .hd .logo {
    width: 115px;
  }
}
.hd .side-link {
  width: 10rem;
  height: 100%;
}
@media (max-width: 991.98px) {
  .hd .side-link {
    display: none;
  }
}
.hd a:hover, .hd a:focus {
  color: #0397FB;
}
.hd-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: none;
  background: #fff;
  position: relative;
  z-index: 50;
  height: var(--hd);
  font-size: 1.2rem;
}
.hd-top:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  pointer-events: none;
}
.is-scroll .hd-top:after {
  border-bottom-color: #eee;
}
@media (max-width: 1199.98px) {
  .hd-top {
    font-size: 1rem;
  }
}
@media (max-width: 991.98px) {
  .hd {
    top: 28px;
  }
}

.sns-link {
  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;
  gap: 0.8rem;
}
.sns-link .icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 1199.98px) {
  .sns-link {
    gap: 0.5rem;
  }
}
@media (max-width: 991.98px) {
  .sns-link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.gnb {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 1150px;
  margin: 0 auto;
}
.gnb > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.gnb a {
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .gnb {
    display: none;
  }
}
.gnb-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  background: none;
  margin-left: auto;
  border: 0;
  --bg: #111;
}
.gnb-toggle::before, .gnb-toggle::after {
  content: "";
  position: absolute;
  right: 2px;
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--bg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.gnb-toggle::before {
  top: calc(50% - 7px);
}
.gnb-toggle::after {
  top: 50%;
  width: 15px;
}
@media (min-width: 992px) {
  .gnb-toggle {
    display: none;
  }
}
.gnb-menu {
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 100%;
  left: 0;
  right: 0;
  pointer-events: none;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: #fff;
  opacity: 0;
  border-bottom: 1px solid #eee;
}
.gnb-menu a {
  display: block;
  color: #191919;
}
.gnb-menu-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #eee;
  text-align: center;
}
.gnb-menu-inner > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: 1px solid #eee;
  padding: 1.5rem 0;
}
.gnb-menu .depth > li {
  margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .gnb-menu {
    height: calc(var(--vh, 1vh) * 100 - var(--hd) - 1.4rem);
    overflow-y: auto;
    padding: var(--container-padding);
  }
  .gnb-menu-inner {
    display: block;
    text-align: left;
    border: 0;
  }
  .gnb-menu-inner > li {
    border: 0;
    padding: 0;
    margin-bottom: 30px;
  }
  .gnb-menu-inner > li strong {
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
  }
  .gnb-menu .depth > li {
    margin-bottom: 5px;
    opacity: 0.7;
  }
}
@media (max-width: 991.98px) {
  .gnb-open {
    overflow: hidden;
  }
}
.gnb-open .hd-top::after {
  border-bottom-color: #eee;
}
.gnb-open .gnb-toggle::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.gnb-open .gnb-toggle::after {
  top: 50%;
  width: 20px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.gnb-open .gnb-menu {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translate(0%);
          transform: translate(0%);
}

.ft {
  position: relative;
  padding: 3rem 0;
  background: #111;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.ft-title {
  display: block;
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 1em;
}
.ft-btm {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ft-btm-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ft-btm-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ft-btm-logo img {
  margin-left: 1.2rem;
}
@media (max-width: 991.98px) {
  .ft {
    padding: 2rem 0;
    font-size: 0.7rem;
  }
  .ft-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .ft-btm {
    display: block;
    margin-top: 2.5rem;
  }
  .ft-btm-info > * {
    margin-top: 0.5rem;
  }
  .ft-btm .split {
    display: block;
    font-size: 0;
    line-height: 0;
    color: transparent;
  }
  .ft-btm .copy {
    margin: 1.5rem 0 0.5rem;
  }
  .ft-btm-logo img {
    height: 1.5rem;
    margin: 0 0.5rem 0 0;
  }
}

.go-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 50%;
  text-indent: -9999px;
  background: url(../img/top.svg) no-repeat 0 0/100% auto;
  z-index: 10;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  border: 0;
}
.go-top.on {
  opacity: 1;
}

.ct {
  position: relative;
  padding-bottom: 9rem;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .ct {
    padding-bottom: 60px;
  }
}
.ct:has(.ct-full) {
  padding-bottom: 0 !important;
}

.sub-top {
  height: 450px;
  background: url(../img/bg/bg.png) no-repeat 50% 50%/cover;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  margin-bottom: 1rem;
}
.sub-top-title {
  font-size: 3.6rem;
  line-height: 1;
  margin-bottom: 1.2rem;
  color: #333;
}
.sub-top-bread {
  font-size: 0.9rem;
  opacity: 0.85;
  color: #333;
}
@media (max-width: 991.98px) {
  .sub-top {
    height: 200px;
    border-radius: 1rem;
    background-image: url(../img/bg/bg-m.png);
  }
  .sub-top-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .sub-top-bread {
    font-size: 0.875rem;
  }
}

.sub-lnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.1rem;
  --active-color: linear-gradient(93.77deg, #58CDF2 0%, #0397FB 100%);
  margin-bottom: 6rem;
}
.sub-lnb a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 270px;
  text-align: center;
  line-height: 3.4rem;
  background: #eee;
  border-radius: 2em;
  font-weight: 500;
}
.sub-lnb a:hover, .sub-lnb a.active {
  background: var(--active-color);
  color: #fff;
}
.sub-lnb a.active {
  pointer-events: none;
}
@media (max-width: 1199.98px) {
  .sub-lnb {
    gap: 0.5rem;
  }
}
@media (max-width: 991.98px) {
  .sub-lnb {
    margin-bottom: 50px;
  }
  .sub-lnb a {
    line-height: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .sub-lnb {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
    margin-left: calc(var(--container-padding) * -1);
    margin-right: calc(var(--container-padding) * -1);
    padding: 0 var(--container-padding);
    -webkit-overflow-scrolling: touch;
  }
  .sub-lnb a {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
    padding: 0 1rem;
  }
}

.prepared {
  text-align: center;
  padding: 2.5rem 0;
  font-size: 1.2rem;
  background: url(../img/bg/prepared.png) no-repeat 50% 50%;
}
.prepared .fs-1 {
  line-height: 1.3;
}
.prepared img {
  width: 55%;
  max-width: 375px;
}
@media (max-width: 991.98px) {
  .prepared {
    background: url(../img/bg/prepared-m.png) no-repeat 50% 50%/auto 100%;
  }
}

.table-board {
  border: 2px solid;
  border-width: 2px 0 1px;
}
.table-board .text-muted {
  font-size: 0.9em;
  font-weight: 400;
}
.table-board tr > * {
  text-align: center;
  padding: 1em;
}
.table-board thead {
  border-bottom: 1px solid #eee;
  color: #191919;
}
.table-board tr + tr {
  border-top: 1px solid #eee;
}
.table-board td {
  height: 3.5rem;
}
@media (max-width: 767.98px) {
  .table-board {
    display: block;
    font-size: 14px;
  }
  .table-board tr, .table-board tbody, .table-board td {
    display: block;
    text-align: left;
  }
  .table-board thead {
    display: none;
  }
  .table-board tr {
    padding: 1.5rem 0;
    position: relative;
  }
  .table-board td {
    display: block;
    padding: 0;
    border-top: 0;
    height: auto;
    font-weight: 700;
  }
  .table-board .text-left {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  .table-board .text-left > a {
    font-size: 18px;
  }
  .table-board .text-left > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
.paging a {
  width: 26px;
  height: 26px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  font-size: 1rem;
}
.paging a.active {
  background: linear-gradient(93.77deg, #58CDF2 0%, #0397FB 100%);
  color: #fff;
}
.paging .paging-arrow a {
  padding-top: 0;
}
.paging .paging-arrow .disabled {
  pointer-events: none;
  opacity: 0.5;
}
.paging .paging-arrow:first-child {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.paging .icon {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .paging {
    margin-top: 4rem;
  }
  .paging a {
    width: 1.7rem;
    height: 1.7rem;
  }
  .paging .paging-arrow:first-child {
    margin-right: 6px;
  }
  .paging .paging-arrow:last-child {
    margin-left: 6px;
  }
}

.icon-arrow {
  width: 100%;
  height: 100%;
  background-image: url(../img/common/icon-arrow.svg);
}

.gallery {
  --gutters-margin: -15px;
  row-gap: 3rem;
}
.gallery-item {
  display: block;
  height: 100%;
}
.gallery-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.gallery .text-clamp {
  height: 3em;
  font-size: 1.2rem;
  color: #191919;
}
.gallery-title {
  display: block;
  font-size: 1.15rem;
  color: #191919;
  font-weight: 700;
}
.gallery-thumb {
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}
.gallery-thumb:before {
  content: "";
  display: block;
  padding-top: 56.52%;
}
.gallery-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
@media (max-width: 575.98px) {
  .gallery {
    row-gap: 2rem;
  }
  .gallery .text-clamp {
    height: auto;
  }
}

.view {
  border: 2px solid #000;
  border-width: 2px 0;
  margin-bottom: 2.5rem;
}
.view-hd {
  border-bottom: 1px solid;
  text-align: center;
}
.view-hd .text-muted {
  font-size: 0.8rem;
  padding: 2.5rem 0;
}
@media (max-width: 767.98px) {
  .view-hd .text-muted {
    padding: 25px 0;
  }
}
.view-title {
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.2rem;
}
.view-title h2 {
  font-size: 1.5em;
  line-height: 1.3;
}
.view-title .cate {
  display: block;
  margin-bottom: 5px;
}
.view-content {
  padding: 3.5rem 0;
}
@media (max-width: 767.98px) {
  .view-content {
    padding: 35px 0;
  }
}

.attach {
  padding: 0.35rem 0.5rem;
}
.attach > li {
  padding: 3px 0;
  font-size: 0.9em;
  color: #666;
}

.evt-banner {
  background: rgba(198, 215, 0, 0.3);
  padding: 3rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
}
.evt-banner .fs-1 {
  line-height: 1.3;
}
.evt-banner img {
  width: 73%;
  max-width: 467px;
  margin: 0 -2rem -2rem auto;
}
@media (max-width: 1479.98px) {
  .evt-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1199.98px) {
  .evt-banner {
    padding: 1.5rem;
  }
  .evt-banner img {
    margin: 0 -1rem -1rem auto;
  }
}

.media-group {
  border-top: 2px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
  overflow: hidden;
}
.media-group .row {
  margin-bottom: -1px;
}
.media-group .col-lg-6 {
  border-bottom: 1px solid #eee;
}
.media-group .media {
  padding: 3rem 2rem;
}
.media-group .media:hover .media-thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.media-group .media-body {
  max-width: 300px;
  margin-right: 1rem;
}
.media-group .media-thumb {
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  width: 40%;
  max-width: 240px;
  margin-left: auto;
}
.media-group .media-thumb:first-child {
  width: 100%;
  max-width: 100%;
}
.media-group .media-thumb:first-child::before {
  display: none;
}
.media-group .media-thumb:first-child img {
  position: static;
}
.media-group .media-thumb:before {
  content: "";
  display: block;
  padding-top: 74%;
}
.media-group .media-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
@media (max-width: 1479.98px) {
  .media-group .media {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 991.98px) {
  .media-group .media {
    padding: 30px 0;
  }
  .media-group .media-body {
    margin-right: 0.5rem;
  }
}
.media-group .fs-4 {
  margin-bottom: 2rem;
  color: #191919;
}
.media-group .dot-text {
  line-height: 1.4em;
  font-size: 0.8rem;
}
.media-group .dot-text:before {
  top: 0.7em;
}

.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  background: url(../img/index/cursor.svg) no-repeat;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999999;
  top: -40px;
  left: -40px;
}
.custom-cursor.more {
  background: none;
  width: 70px;
  height: 70px;
  -webkit-transition: width 0.5s, height 0.5s;
  transition: width 0.5s, height 0.5s;
}
.custom-cursor.more::after {
  content: "More";
  width: 100%;
  height: 100%;
  background: #E43E5F;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
}
@media (max-width: 991.98px) {
  .custom-cursor {
    display: none !important;
  }
}

@media (min-width: 992px) {
  body:has(.custom-cursor) #ct, body:has(.custom-cursor) #ct * {
    cursor: none;
  }
}
.main-visual {
  max-width: 1920px;
  margin: 0 auto;
}

.visual-swiper-link {
  display: block;
  border-radius: 2rem;
  overflow: hidden;
}
.visual-swiper .swiper-pagination {
  max-width: calc(1440px + var(--container-padding) * 2);
  padding: 0 var(--container-padding);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: left;
  bottom: 1.5rem;
  pointer-events: none;
}
.visual-swiper .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: none;
  font-size: 0.8rem;
  color: #fff;
  opacity: 0.5;
  margin: 0 0.6rem !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: auto;
}
.visual-swiper .swiper-pagination-bullet i {
  display: none;
  width: 3rem;
  height: 2px;
  margin-left: 0.6rem;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}
.visual-swiper .swiper-pagination-bullet i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  -webkit-animation: pageline 5s linear both;
          animation: pageline 5s linear both;
}
.visual-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.visual-swiper .swiper-pagination-bullet-active i {
  display: block;
}
@media (min-width: 992px) {
  .visual-swiper-link {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding-bottom: 40.76%;
    background-size: cover;
  }
}
@media (max-width: 991.98px) {
  .visual-swiper-link {
    background: none !important;
  }
  .visual-swiper-link img {
    width: 100%;
  }
  .visual-swiper .swiper-pagination {
    text-align: center;
    bottom: 15px;
  }
  .visual-swiper .swiper-pagination-bullet {
    margin: 0 6px !important;
    font-size: 10px;
  }
}

@-webkit-keyframes pageline {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}

@keyframes pageline {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}
.scrolldown {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 10;
  font-size: 0.8rem;
  color: #fff;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.scrolldown .mouse {
  position: relative;
  display: block;
  width: 1rem;
  height: 1.8rem;
  border-radius: 1rem;
  border: 2px solid #fff;
  margin: 0 auto 10px;
}
.scrolldown .mouse::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: #fff;
  top: 5px;
  left: 50%;
  margin-left: -2px;
  -webkit-animation: move 1.5s linear infinite;
          animation: move 1.5s linear infinite;
}
@media (max-width: 991.98px) {
  .scrolldown {
    bottom: 15px;
  }
  .swiper-pagination:not(.swiper-pagination-lock) + .scrolldown {
    display: none;
  }
}

@-webkit-keyframes move {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    top: 0.75rem;
    opacity: 1;
  }
  100% {
    top: 1.5rem;
    opacity: 0;
  }
}

@keyframes move {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    top: 0.75rem;
    opacity: 1;
  }
  100% {
    top: 1.5rem;
    opacity: 0;
  }
}

.scrollfix {
  --height: 70px;
  margin-top: 1rem;
  height: var(--height);
  position: relative;
}
.scrollfix-item {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 50%;
  width: 100%;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: right 0.52s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: right 0.52s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: right 0.52s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: right 0.52s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  padding: 0 var(--container-padding);
}
.scrollfix-item a {
  width: calc((100% - 100px) / 5);
  max-width: 315px;
  min-width: 180px;
  background: #191919;
  color: #fff;
  height: var(--height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  border-radius: 20px;
  -webkit-transition: none;
  transition: none;
  pointer-events: auto;
  word-break: keep-all;
  text-align: center;
  line-height: 1.1;
}
.scrollfix-item a:hover {
  background: linear-gradient(93.77deg, #58CDF2 0%, #0397FB 100%);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(15, 75, 144, 0.1019607843);
          box-shadow: 0px 10px 20px 0px rgba(15, 75, 144, 0.1019607843);
}
.fixed .scrollfix-item {
  --size: 100px;
  position: fixed;
  right: var(--size);
  bottom: 6vh;
  width: calc(var(--size) + var(--container-padding) * 2);
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateX(var(--size));
          transform: translateX(var(--size));
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.6rem;
  z-index: 10;
}
.fixed .scrollfix-item a {
  min-width: 0;
  width: var(--size);
  height: var(--size);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 100%;
  max-width: none;
  font-size: 0.75rem;
}
.fixed .scrollfix-item a .icon {
  margin: 0 0 0.5rem;
}
@media (max-width: 1479.98px) {
  .fixed .scrollfix-item {
    --size: 80px;
    width: calc(var(--size) + 20px);
    padding: 0 10px;
  }
  .fixed .scrollfix-item a {
    font-size: 0.6rem;
  }
  .fixed .scrollfix-item a .icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-bottom: 5px;
  }
}
.scrollfix .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.8rem;
}
.scrollfix .icon-link1 {
  background-image: url(../img/index/link1.svg);
}
.scrollfix .icon-link2 {
  background-image: url(../img/index/link2.svg);
}
.scrollfix .icon-link3 {
  background-image: url(../img/index/link3.svg);
}
.scrollfix .icon-link4 {
  background-image: url(../img/index/link4.svg);
}
.scrollfix .icon-link5 {
  background-image: url(../img/index/link5.svg);
}
.scrollfix .icon-link6 {
  background-image: url(../img/index/link6.svg);
}
.scrollfix:not(.fixed) br {
  display: none;
}
@media (max-width: 1199.98px) {
  .scrollfix {
    --height: 60px;
  }
  .scrollfix-item {
    gap: 10px;
  }
  .scrollfix-item a {
    width: calc((100% - 50px) / 4);
    font-size: 18px;
  }
  .scrollfix .icon {
    margin-right: 8px;
  }
}
@media (max-width: 991.98px) {
  .scrollfix {
    position: fixed;
    right: 10px;
    bottom: 60px;
    z-index: 10;
    height: auto;
  }
  .scrollfix-item {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
    height: auto;
    -webkit-transform: none;
            transform: none;
    width: 40px;
    padding: 0;
    gap: 5px;
  }
  .scrollfix-item a {
    width: 40px;
    height: 40px;
    font-size: 0;
    line-height: 0;
    min-width: 0;
    border-radius: 100%;
  }
  .scrollfix-item a .icon {
    margin: 0;
    width: 16px;
    height: 16px;
  }
  body:not(.is-scroll) .scrollfix {
    display: none;
  }
}

.main-slogon {
  text-align: center;
}
.main-slogon .slogon {
  padding: 7rem 0 8.25rem;
  margin: 6rem 0 2.5rem;
  background: url(../img/index/bg-slogon2.png) no-repeat 50% 50%/auto 100%;
}
.main-slogon .slogon-swiper {
  font-size: 4.5rem;
}
.main-slogon .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  color: #191919;
  white-space: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-slogon .swiper-slide-active .txt {
  -webkit-animation: fadeInUp 1s both;
          animation: fadeInUp 1s both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.main-slogon .title {
  line-height: 1;
}
.main-slogon .fs-3 {
  font-weight: 500;
  margin-top: 1em;
}
@media (min-width: 1200px) {
  .main-slogon .slogon-swiper {
    margin-left: calc(100% - 750px);
  }
  .main-slogon .swiper-slide {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .main-slogon .slogon {
    padding: 0;
    margin: 1.75rem 0 2.5rem;
    background: none;
  }
  .main-slogon .slogon img {
    width: 100%;
    max-width: 640px;
  }
  .main-slogon .title {
    max-width: 90%;
    margin: 0 auto;
  }
  .main-slogon .slogon-swiper {
    z-index: 5;
    margin-top: -1.2em;
    font-size: 36px;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.exhibit {
  margin: 11rem auto;
  max-width: calc(1320px + var(--container-padding) * 2);
}
.exhibit:first-child {
  margin-top: 7rem;
}
.exhibit-txt {
  max-width: 578px;
  word-break: keep-all;
}
.exhibit .btn {
  margin-top: 2rem;
}
.exhibit .fs-1 {
  line-height: 1.2;
  margin: 0.8rem 0 1.5rem;
}
@media (min-width: 768px) {
  .exhibit .fs-1 {
    font-size: 2.3rem;
  }
}
.exhibit-img {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.exhibit-img .left, .exhibit-img .right {
  position: absolute;
  height: 120%;
  top: 0;
}
.exhibit:nth-child(odd) .left {
  left: 0;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.exhibit:nth-child(odd) .right {
  right: -3.125%;
}
.exhibit:nth-child(even) .col-lg-6:first-child {
  text-align: right;
}
.exhibit:nth-child(even) .left {
  left: -3.125%;
}
.exhibit:nth-child(even) .right {
  right: 0;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
@media (min-width: 992px) {
  .exhibit:nth-child(odd) .exhibit-txt {
    margin-left: auto;
  }
  .exhibit:nth-child(even) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (max-width: 991.98px) {
  .exhibit {
    margin: 3.5rem auto !important;
    max-width: 640px;
    margin: rme(80px) auto;
    text-align: center;
  }
  .exhibit-txt {
    max-width: 600px;
    margin: 25% auto 0;
  }
  .exhibit-txt p br {
    display: none;
  }
}

.main-gallery .container {
  max-width: calc(1320px + var(--container-padding) * 2);
}
.main-gallery .fs-1 {
  margin-bottom: 2rem;
}
.main-gallery .text-muted {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.main-gallery .btn {
  margin-top: 4rem;
}
@media (max-width: 767.98px) {
  .main-gallery .btn {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .main-gallery .gallery {
    --gutters-margin: -30px;
  }
}

.marquee {
  overflow: hidden;
  margin-top: 9rem;
  padding: 2.5rem 0;
  background: linear-gradient(98.83deg, #58CDF2 19.51%, #0397FB 87.73%);
}
.marquee-banner {
  width: 300vw;
  height: 5rem;
  background: url(../img/index/marquee.png) repeat-x 0 0/auto 100%;
  -webkit-animation: marquee 40000ms linear infinite;
          animation: marquee 40000ms linear infinite;
  animation-direction: reverse;
}
@media (max-width: 767.98px) {
  .marquee {
    padding: 2rem 0;
    margin-top: 90px;
  }
  .marquee-banner {
    height: 2.5rem;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--container-padding);
}
.grid + .grid {
  margin-top: 7rem;
}
.grid-cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 1075px;
  margin-left: auto;
  padding-top: 1.6rem;
}
.grid-cont img:not(:first-child), .grid-cont #map {
  margin-top: 2rem;
}
.grid-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 250px;
}
.grid-title .fs-1 {
  line-height: 1.2;
}
.grid-title .sm {
  display: block;
  line-height: 0.8rem;
  margin-bottom: 0.8rem;
  text-transform: capitalize;
  letter-spacing: 0;
}
.grid-title p {
  margin-top: 1.2rem;
  font-size: 0.9rem;
}
@media (max-width: 991.98px) {
  .grid {
    display: block;
  }
  .grid-title {
    width: auto;
  }
  .grid-title br {
    display: none;
  }
  .grid-title .sm {
    margin-bottom: 0.4rem;
  }
  .grid-cont {
    max-width: none;
  }
}
@media (max-width: 575.98px) {
  .grid + .grid {
    margin-top: 70px;
  }
}

.tb {
  border-top: 2px solid #000;
  border-bottom: 1px solid #191919;
}
.tb tr > * {
  border: 1px solid #eee;
  padding: 1rem;
}
.tb th {
  color: #191919;
  text-align: center;
  width: 6rem;
  border-left: 0;
  border-bottom: 0;
}
.tb td {
  border-right: 0;
  border-bottom: 0;
}
@media (min-width: 1200px) {
  .tb td {
    padding: 1rem 2rem;
  }
}

.embed-responsive-item {
  border-radius: 1rem;
}

.desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.desc dt {
  width: 5.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.desc dt:after {
  content: "";
  height: 1em;
  border-left: 2px solid;
  margin-left: auto;
}
.desc dd {
  padding-left: 1rem;
}
@media (max-width: 991.98px) {
  .desc dt {
    width: 85px;
  }
  .desc dd {
    padding-left: 10px;
  }
}

.transfer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  gap: var(--container-padding);
  word-break: keep-all;
}
.transfer + .transfer {
  border-top: 1px solid #eee;
  margin-top: 0;
}
.transfer-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 575.98px) {
  .transfer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .transfer img {
    width: 50px;
  }
}

.ex-info-cont {
  margin-top: 1rem;
}
.ex-info-cont > section {
  margin-bottom: 1.6rem;
}
.ex-info-cont > section:nth-last-of-type(1) {
  margin-bottom: 0;
}
.ex-info-cont strong {
  margin-right: 0.9em;
}
.ex-info .fs-4 {
  margin-bottom: 0.4rem;
}
.ex-info .btn {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .ex-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--container-padding);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .ex-info img {
    max-width: 45%;
  }
}
@media (min-width: 1480px) {
  .ex-info img {
    max-width: 55%;
  }
  .ex-info .btn {
    margin-top: 4rem;
  }
}
@media (max-width: 767.98px) {
  .ex-info-cont {
    margin-top: 30px;
  }
  .ex-info img {
    width: 100%;
    max-width: none;
  }
}

.dot-text {
  position: relative;
  padding-left: 0.6rem;
  line-height: 1.5rem;
  margin-top: 2px;
}
.dot-text:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0.75rem;
  left: 0;
  border-radius: 100%;
  background: #333;
  margin-top: -2px;
}

.terms {
  line-height: 1.5;
}
.terms-title {
  text-align: center;
  line-height: 1.2;
  margin: 2rem 0 1.2rem;
  font-size: 3.6rem;
}
.terms .fs-5 {
  text-align: center;
}
.terms .fs-2 {
  margin: 2em 0 1em;
}
.terms .fs-4 {
  margin: 1.2em 0 0.6em;
}
@media (max-width: 991.98px) {
  .terms-title {
    font-size: 1.8rem;
  }
}

.sub-exhibition:has(.sub-lnb > .active:nth-child(1)) .sub-top {
  background-image: url(../img/bg/exhibit1.png);
}
@media (max-width: 991.98px) {
  .sub-exhibition:has(.sub-lnb > .active:nth-child(1)) .sub-top {
    background-image: url(../img/bg/exhibit1-m.png);
  }
}
.sub-exhibition:has(.sub-lnb > .active:nth-child(2)) .sub-top {
  background-image: url(../img/bg/exhibit2.png);
}
@media (max-width: 991.98px) {
  .sub-exhibition:has(.sub-lnb > .active:nth-child(2)) .sub-top {
    background-image: url(../img/bg/exhibit1-m.png);
  }
}
.sub-exhibition:has(.sub-lnb > .active:nth-child(3)) .sub-top {
  background-image: url(../img/bg/exhibit3.png);
}
@media (max-width: 991.98px) {
  .sub-exhibition:has(.sub-lnb > .active:nth-child(3)) .sub-top {
    background-image: url(../img/bg/exhibit3-m.png);
  }
}
.sub-exhibition:has(.sub-lnb > .active:nth-child(4)) .sub-top {
  background-image: url(../img/bg/exhibit4.png);
}
@media (max-width: 991.98px) {
  .sub-exhibition:has(.sub-lnb > .active:nth-child(4)) .sub-top {
    background-image: url(../img/bg/exhibit4-m.png);
  }
}
.sub-exhibition .sub-lnb a:nth-child(1) {
  --active-color: #70D2A5;
}
.sub-exhibition .sub-lnb a:nth-child(2) {
  --active-color: #0397FB;
}
.sub-exhibition .sub-lnb a:nth-child(3) {
  --active-color: #FDAD47;
}
.sub-exhibition .sub-lnb a:nth-child(4) {
  --active-color: #F36D84;
}

.exhibition {
  max-width: calc(1146px + var(--container-padding) * 2);
  word-break: keep-all;
}
.exhibition-1 {
  --bg: 188, 231, 211;
}
.exhibition-2 {
  --bg: 3, 151, 251;
}
.exhibition-3 {
  --bg: 253, 182, 90;
}
.exhibition-4 {
  --bg: 242, 115, 136;
}
.exhibition .fs-2 {
  text-align: center;
}
.exhibition-banner {
  background: rgba(var(--bg), 0.3);
  margin: 4rem 0 1rem;
  padding: 3rem;
  padding-right: 0;
  border-radius: 2rem;
}
.exhibition-1 .exhibition-banner {
  background: rgba(var(--bg), 0.5);
}
.exhibition-banner .fs-1 {
  margin-bottom: 1.8rem;
}
.exhibition-banner img {
  margin: -3rem 0;
  width: 44%;
  max-width: 480px;
}
@media (max-width: 991.98px) {
  .exhibition-banner {
    padding: 30px;
    margin: 3rem 0;
  }
  .exhibition-banner img {
    margin: 0 -20px -20px 0;
  }
}
@media (max-width: 575.98px) {
  .exhibition-banner {
    overflow: hidden;
    margin: 30px 0 20px;
  }
  .exhibition-banner .media {
    display: block;
  }
  .exhibition-banner .fs-1 {
    margin-bottom: 18px;
  }
  .exhibition-banner img {
    width: 240px;
    float: right;
  }
}
.exhibition-list {
  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;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.exhibition-list-item {
  max-width: 525px;
  padding: 3rem 0;
  width: calc((100% - 30px) / 2);
}
.exhibition-list hr {
  width: 100%;
  border-top: 1px solid #eee;
  margin: 0;
}
.exhibition-list .badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 137px;
  height: 2.2rem;
  font-size: 1rem;
  background: rgb(var(--bg));
  border-radius: 2em;
  position: relative;
  margin-left: 1rem;
  color: #fff;
  padding: 0 1em;
}
.exhibition-1 .exhibition-list .badge {
  color: #191919;
}
.exhibition-list img {
  border-radius: 1rem;
  display: block;
  margin: -1.1rem 0 1rem;
}
@media (max-width: 767.98px) {
  .exhibition-list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .exhibition-list-item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 575.98px) {
  .exhibition-list {
    display: block;
  }
  .exhibition-list-item {
    max-width: none;
    width: 100%;
    padding: 30px 0;
  }
  .exhibition-list hr {
    display: none;
  }
  .exhibition-list .badge {
    min-width: 100px;
    font-size: 16px;
  }
}

.media-poster img {
  height: 17.8rem;
  margin-right: 2rem;
}
@media (max-width: 1199.98px) {
  .media-poster img {
    margin-right: 1rem;
  }
}
@media (max-width: 767.98px) {
  .media-poster img {
    margin: 0 0 20px;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .media-poster {
    display: block;
  }
}

.enter-info {
  padding: 2rem 3rem;
  border-radius: 2rem;
  background: rgba(3, 151, 251, 0.2);
  margin-bottom: 2.5rem;
  word-break: keep-all;
}
.enter-info img {
  width: 70%;
  max-width: 325px;
  margin: 1.5rem 0 2rem;
}
.enter-info-text {
  margin: 1rem 0;
}
.enter-info-text > .fs-2 {
  display: block;
  margin-bottom: 1em;
}
.enter-info .badge {
  font-size: 0.9rem;
  line-height: 1.1;
  padding: 0.5rem 1rem;
  border-radius: 2em;
  background: #191919;
  color: #fff;
  margin-right: 0.5rem;
}
@media (max-width: 991.98px) {
  .enter-info {
    padding: 20px;
    border-radius: 1rem;
  }
  .enter-info img {
    margin-top: 10px;
  }
  .enter-info-text {
    margin: 0;
  }
}

.sect {
  margin-top: 2rem;
}
.sect > * + * {
  margin-top: 2px;
}
.sect > strong {
  display: block;
  margin-top: 0.6rem;
}
.sect strong {
  color: #191919;
  font-weight: 700;
}

.badge-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.4rem 1rem 0.4rem 0.8rem;
  background: linear-gradient(93.77deg, #58CDF2 0%, #0397FB 100%);
  border-radius: 2em;
  font-size: 20px;
  color: #fff;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.badge-title + strong {
  margin-top: 0;
}
.badge-title .icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media (max-width: 991.98px) {
  .badge-title {
    font-size: 16px;
  }
}

.icon-enter1 {
  background-image: url(../img/register/enter1.svg);
}

.icon-enter2 {
  background-image: url(../img/register/enter2.svg);
}

.icon-enter3 {
  background-image: url(../img/register/enter3.svg);
}

.icon-enter4 {
  background-image: url(../img/register/enter4.svg);
}

.icon-enter5 {
  background-image: url(../img/register/enter5.svg);
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin-top: 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.btn-wrap .btn {
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .btn-wrap {
    gap: 0.8rem;
  }
}

.media-label {
  color: #191919;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.7rem;
}
.media-label > strong {
  display: inline-block;
  vertical-align: top;
  background: #0397FB;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  text-align: center;
  margin-right: 0.8rem;
  line-height: 1.1;
}
@media (max-width: 991.98px) {
  .media-label {
    display: block;
  }
  .media-label > strong {
    margin-bottom: 0.4rem;
  }
}

.term-box {
  background: #F6F6F6;
  border-radius: 0.7rem;
  padding: 0.9rem;
  max-height: 270px;
  overflow-y: auto;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.term-box .fs-4 {
  font-size: inherit !important;
}
@media (max-width: 991.98px) {
  .term-box {
    max-height: 190px;
  }
}

.fieldset + .fieldset {
  margin-top: 5rem;
}
.fieldset-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 1.5rem;
}
.fieldset-title {
  min-width: 7.3rem;
  padding: 0.65rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  border-radius: 2rem;
  background: #0397FB;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
.fieldset-title.bg-dark {
  padding: 0.5rem 1.2rem;
  margin-bottom: 0.9rem;
}
@media (max-width: 991.98px) {
  .fieldset + .fieldset {
    margin-top: 60px;
  }
  .fieldset-title {
    min-width: 100px;
    padding: 0.4rem 1.2rem;
  }
}

.media-register {
  margin-right: 1rem;
  margin-bottom: 3rem;
}
.media-register .media-body {
  -ms-flex-item-align: center;
      align-self: center;
  padding-left: 1rem;
}
@media (max-width: 991.98px) {
  .media-register {
    margin-bottom: 30px;
  }
  .media-register img {
    width: 50px;
  }
  .media-register .media-body {
    padding-left: 10px;
  }
}

.tb-register {
  margin-bottom: 2rem;
}
.tb-register th {
  width: 22%;
  vertical-align: top;
  white-space: nowrap;
}
.tb-register td > div {
  line-height: 1.2;
}
.tb-register td > div:not(:first-child) {
  margin-top: 5px;
}
@media (max-width: 991.98px) {
  .tb-register tr > * {
    font-size: 14px;
  }
  .tb-register td {
    padding-left: 12px;
    padding-right: 12px;
  }
  .tb-register th {
    padding-left: 7px;
    padding-right: 7px;
  }
}

.register-end {
  text-align: center;
}
.register-end .fs-1 {
  margin: 2rem 0 1.25rem;
  line-height: 1.3;
}
.register-end .enter-info {
  text-align: left;
  max-width: 765px;
  margin: 4rem auto 0;
}
@media (max-width: 767.98px) {
  .register-end img {
    width: 320px;
    max-width: 80%;
    margin: 0 auto;
  }
  .register-end .fs-1 {
    margin-bottom: 15px;
  }
  .register-end .enter-info {
    margin-top: 30px;
  }
}

.addevt-cont .enter-info p {
  max-width: 700;
  -ms-flex-item-align: center;
      align-self: center;
}
.addevt-cont .enter-info .text-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.addevt-cont .enter-info .text-right img {
  width: auto;
  max-width: 100%;
}
@media (max-width: 1199.98px) {
  .addevt-cont .enter-info .text-right {
    width: 45%;
    max-width: 208px;
  }
}
.addevt-cont .btn {
  min-width: 200px;
}
@media (max-width: 991.98px) {
  .addevt-cont .btn-wrap {
    margin-top: 0;
  }
}

.media-regi-check {
  margin-bottom: 3rem;
}
.media-regi-check .fs-4 {
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: 1rem;
}
.media-regi-check img {
  width: 4.1rem;
}
@media (max-width: 575.98px) {
  .media-regi-check {
    margin-bottom: 30px;
  }
  .media-regi-check br {
    display: none;
  }
  .media-regi-check img {
    width: 45px;
  }
}

.schedule {
  color: #111;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 3rem;
  border: 2px solid #111;
  border-width: 2px 0 1px;
}
.schedule .dropdown-menu {
  font-size: 1em;
}
@media (min-width: 992px) {
  .schedule .day {
    border-bottom: 1px solid #9A9A9A;
  }
  .schedule .day .dropdown-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    padding: 0;
    border: 0;
    border-radius: 0;
    width: 100%;
    margin: 0;
    float: none;
  }
  .schedule .day [role=button] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    line-height: 63px;
    text-align: center;
    margin-bottom: -1px;
  }
  .schedule .day [role=button].active {
    background: #111;
    color: #fff;
    font-weight: 700;
  }
}
@media (max-width: 991.98px) {
  .schedule {
    margin-top: 30px;
    font-size: 14px;
  }
  .schedule .day [data-toggle=dropdown] {
    height: 60px;
    font-size: 16px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .schedule .day [data-toggle=dropdown]:after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../img/select.svg) no-repeat 0 0/100% auto;
  }
  .schedule .dropdown-menu {
    margin: 1px 0;
    width: 100%;
    border-radius: 10px;
    background: #F6F6F6;
    border: 0;
    padding: 12px;
    font-size: 16px;
    font-weight: 400;
  }
  .schedule .dropdown-menu > div + div {
    margin-top: 2px;
  }
}
@media (max-width: 575.98px) {
  .schedule {
    margin-top: 30px;
    font-size: 12px;
  }
}

.timetable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  --height: 7.85rem;
}
.timetable-th {
  width: 100%;
  height: 6.3rem;
  border-bottom: 1px solid #9A9A9A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.timetable-th > div:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
}
.timetable-th > div:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 6rem);
}
@media (max-width: 991.98px) {
  .timetable-th {
    display: none;
  }
}
.timetable .cell:nth-child(odd) {
  border-left: 1px solid #E5E5E5;
}
.timetable .cell:not(:last-child) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.timetable .cell:last-child {
  -ms-flex-preferred-size: 14%;
      flex-basis: 14%;
  max-width: 14%;
}
.timetable .cell > div {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.timetable .cell > div:first-child {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.timetable .cell > div:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #9A9A9A;
}
.timetable .cell > div:last-child > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.timetable .row {
  --gutters-margin: 0;
  position: relative;
}
.timetable .row > .col {
  height: 100%;
}
.timetable .item {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  color: #333;
  font-size: 0.7rem;
  text-align: left !important;
  padding: 0.4rem 0.2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  height: calc(100% * var(--grid) - 8px);
  font-weight: 400;
  line-height: 1.2;
  border-top: 4px solid #0397FB;
  background: rgba(3, 151, 251, 0.2);
  z-index: 1;
  word-break: keep-all;
  letter-spacing: -0.04em;
}
.timetable .item strong {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 2px;
  color: #111;
}
.timetable .item.red {
  border-top-color: #F27388;
  background: rgba(242, 115, 136, 0.3);
}
.timetable .item.ylw {
  border-top-color: #FDB65A;
  background: rgba(253, 182, 90, 0.3);
}
.timetable .item.grn {
  border-top-color: #92CFB3;
  background: rgba(188, 231, 211, 0.5);
}
.timetable .time {
  width: 5.75rem;
}
.timetable .time > div {
  position: relative;
  height: var(--height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.timetable .time > div::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #9A9A9A;
}
.timetable .time > div:last-child::after {
  border-bottom: 0;
}
.timetable .cont {
  width: calc(100% - 5.75rem);
}
.timetable .cont-pane:not(.active) {
  display: none;
}
.timetable-body .tr {
  position: relative;
  height: var(--height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.timetable-body .tr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #9A9A9A;
}
.timetable-body .tr:last-child:after {
  border-bottom: 0;
}
.timetable-body .cell > div:first-child::after {
  border-bottom-color: #E5E5E5;
}
@media (max-width: 991.98px) {
  .timetable {
    --height: 72px;
  }
  .timetable-body .tr {
    display: block;
  }
  .timetable-body .tr .cell {
    height: 100%;
    border-left: 1px solid #E5E5E5;
  }
  .timetable-body .tr .cell:not(.active) {
    display: none;
  }
  .timetable-body .tr .cell:last-child {
    max-width: none;
  }
  .timetable .time {
    width: 45px;
    margin-top: 80px;
  }
  .timetable .cont {
    width: calc(100% - 45px);
  }
  .timetable .cont .dropdown {
    height: 80px;
    margin-left: -45px;
    font-size: 16px;
    border-bottom: 1px solid #111;
    border-top: 1px solid #9a9a9a;
  }
  .timetable .cont .dropdown [data-toggle=dropdown] {
    height: 80px;
    font-size: 16px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .timetable .cont .dropdown [data-toggle=dropdown].arr:after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../img/select.svg) no-repeat 0 0/100% auto;
  }
  .timetable .item {
    font-size: 12px;
    padding-top: 3px;
  }
  .timetable .item strong {
    font-size: 14px;
  }
  .timetable .row {
    display: block !important;
  }
  .timetable .dropdown-menu small {
    font-size: 14px;
    margin-left: 4px;
    font-weight: 300;
  }
}