@charset "UTF-8";
/*======================================헬퍼&유틸======================================*/
/*======================================헬퍼&유틸======================================*/
/*======================================헬퍼&유틸======================================*/
.skip-wrap {
  position: fixed;
  z-index: 9999;
}

.skip-nav {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background: #333;
  font-size: 1.6em;
  -webkit-transform: translate(-100%, -100%);
     -moz-transform: translate(-100%, -100%);
      -ms-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
  opacity: 0;
}

.skip-nav:focus {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100px;
  padding: 15px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  vertical-align: middle;
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.overflow-hidden {
  overflow: hidden;
}

[is-hidden], .is-hidden {
  display: none;
}

.blind, .hide {
  position: absolute !important;
  overflow: hidden;
  display: inline-block;
  height: 1px;
  width: 1px;
  border: 0;
  margin: -1px;
  font-size: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}
.blind.block, .hide.block {
  display: block;
}

.ws-nowrap {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .only-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .only-tablet {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .only-tablet {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .only-desktop {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .only-mobile-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .only-tablet-desktop {
    display: none !important;
  }
}

/*======================================헬퍼&유틸======================================*/
/* 효과 */
.fade {
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  -moz-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

/* 탭 네비 */
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

/* 모달 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
     -moz-transform: translate(0, -50px);
      -ms-transform: translate(0, -50px);
          transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
          transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
     -moz-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: -webkit-calc(100% - 1rem);
  height: -moz-calc(100% - 1rem);
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: -webkit-calc(100% - 1rem);
  min-height: -moz-calc(100% - 1rem);
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  outline: 0;
  overflow-y: auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.6;
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

/* 아코디언 */
.accordion-button {
  position: relative;
  overflow-anchor: none;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.0996 22.25L17.9998 14.15L9.89961 22.25' stroke='%23111111' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}
@media (max-width: 767px) {
  .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.2998 9.87012L6.99994 4.57012L1.6998 9.87012' stroke='%23111111' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
  }
}
.accordion-button::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 36px;
  height: 36px;
  top: -webkit-calc(50% - 18px);
  top: -moz-calc(50% - 18px);
  top: calc(50% - 18px);
  right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M26.0996 13.75L17.9998 21.85L9.89961 13.75' stroke='%23111111' stroke-opacity='0.3' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .accordion-button::after {
    width: 14px;
    height: 14px;
    top: -webkit-calc(50% - 7px);
    top: -moz-calc(50% - 7px);
    top: calc(50% - 7px);
    right: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M12.2998 4.12988L6.99994 9.42988L1.6998 4.12988' stroke='%23111111' stroke-opacity='0.3' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E");
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .collapsing.collapse-horizontal {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .accordion-button {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .accordion-button::after {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
}
/* 드롭다운 */
.dropdown, .dropend, .dropstart, .dropup {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start ;
}

.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end ;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position:start ;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end ;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position:start ;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end ;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position:start ;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end ;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position:start ;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end ;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position:start ;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end ;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropstart .dropdown-toggle::after {
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #1e2125;
  background-color: #e9ecef;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-item:focus, .dropdown-menu-dark .dropdown-item:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}

.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}

.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.btn-group, .btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group-vertical > .btn, .btn-group > .btn {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn ~ .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*======================================리셋======================================*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: keep-all;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::after, *::before {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", "맑은 고딕", "Nanum Gothic", "나눔 고딕", "맑은 고딕", Malgun Gothic, "돋움", Dotum, "Apple SD Gothic Neo", Helvetica, sans-serif;
  overflow-x: hidden;
}
@media (max-width: 319px) {
  body {
    overflow-x: auto;
  }
}

/* Set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, main, nav, section, summary {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: top;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

legend {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*Add styles*/
select, input {
  vertical-align: top;
  border-radius: 0;
  background-color: transparent;
}

ol, ul {
  list-style: none;
}

em {
  font-style: normal;
  color: #000;
}

address {
  font-style: normal;
  display: inline;
}

button {
  cursor: pointer;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption, legend {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
  width: 0;
  height: 0;
  font-size: 0;
  overflow: hidden;
}

dfn {
  font-style: normal;
}

select, input[type=radio], input[type=submit], input[type=search] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

/*Legacy browser supports*/
.legacy-browser {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 12px 12px;
  margin: auto;
  font-family: sans-serif, arial;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
  background: #aaa;
  overflow: hidden;
}
.legacy-browser a {
  text-decoration: underline;
  color: #fff;
}

.legacy-close {
  position: absolute;
  top: 7px;
  right: 5px;
  padding: 5px;
  border: 0;
  margin: 0;
  font-size: 10px;
  line-height: 1;
  color: #fff;
}
.legacy-close:hover, .legacy-close:focus {
  text-decoration: underline;
}

/*
Copyright (c) 2021 Kil Hyung-jin, with Reserved Font Name Pretendard.
https://github.com/orioncactus/pretendard

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
*/
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Pretendard-Black.subset.woff2") format("woff2"), url("../fonts/Pretendard-Black.subset.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Pretendard-ExtraBold.subset.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.subset.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Pretendard-Bold.subset.woff2") format("woff2"), url("../fonts/Pretendard-Bold.subset.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Pretendard-SemiBold.subset.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.subset.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Pretendard-Medium.subset.woff2") format("woff2"), url("../fonts/Pretendard-Medium.subset.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Pretendard-Regular.subset.woff2") format("woff2"), url("../fonts/Pretendard-Regular.subset.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Pretendard-Light.subset.woff2") format("woff2"), url("../fonts/Pretendard-Light.subset.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/Pretendard-ExtraLight.subset.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.subset.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Pretendard-Thin.subset.woff2") format("woff2"), url("../fonts/Pretendard-Thin.subset.woff") format("woff");
}
/*======================================공통 레이아웃======================================*/
/*======================================헬퍼&유틸======================================*/
body, html {
  width: 100%;
  height: 100%;
}

.ly-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media (max-width: 767px) {
  .ly-header {
    border-bottom: 1px solid rgba(228, 228, 228, 0.3);
  }
}
.ly-header .inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .ly-header .inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 768px) {
  .ly-header .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.ly-header .inner .link-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px 0;
}
@media (max-width: 767px) {
  .ly-header .inner .link-logo {
    padding: 12px 0;
    width: 256px;
  }
}
.ly-header .inner .link-logo .logo {
  max-width: 100%;
}

.ly-footer {
  position: relative;
}
.ly-footer .footer-top {
  position: relative;
  background: #1E1E1E;
}
.ly-footer .footer-top .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .ly-footer .footer-top .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .ly-footer .footer-top .inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1200px) and (max-width: 767px) {
  .ly-footer .footer-top .inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .ly-footer .footer-top .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.ly-footer .footer-top .inner .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid #3C3C3C;
}
@media (max-width: 767px) {
  .ly-footer .footer-top .inner .link-list {
    border-left: 0;
  }
}
.ly-footer .footer-top .inner .link-list a {
  display: block;
  padding: 18px 25px;
  border-right: 1px solid #3C3C3C;
  color: var(--White, #FFF);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-decoration: none;
}
@media (max-width: 767px) {
  .ly-footer .footer-top .inner .link-list a {
    padding: 24px 25px;
    height: 70px;
  }
}
.ly-footer .footer-top .inner .link-list a:hover {
  background-color: #DC116B;
}
.ly-footer .footer-top .inner .family-site {
  width: 100%;
}
@media (min-width: 768px) {
  .ly-footer .footer-top .inner .family-site {
    width: 25%;
  }
}
.ly-footer .footer-top .inner .family-site .toggle-family {
  position: relative;
  width: 100%;
  height: 58px;
  padding: 9px 24px;
  border: none;
  border-bottom: 2px solid #FFF;
  color: var(--White, #FFF);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  text-align: left;
  background: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: all 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
}
@media (max-width: 767px) {
  .ly-footer .footer-top .inner .family-site .toggle-family {
    padding: 24px;
    height: 70px;
  }
}
.ly-footer .footer-top .inner .family-site .toggle-family.active::before {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ly-footer .footer-top .inner .family-site .toggle-family::after {
  display: none;
}
.ly-footer .footer-top .inner .family-site .toggle-family::before {
  content: "";
  position: absolute;
  right: 24px;
  top: -webkit-calc(50% - 4px);
  top: -moz-calc(50% - 4px);
  top: calc(50% - 4px);
  display: block;
  width: 13px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='9' viewBox='0 0 13 9' fill='none'%3E%3Cpath d='M1 7.625L6.5 2.125L12 7.875' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  -webkit-transform-origin: center;
     -moz-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  -moz-transition: all 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: all 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2);
}
.ly-footer .footer-top .inner .family-site .familysite-group {
  display: none;
  position: absolute;
  bottom: 58px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #3C3C3C;
  background: #000;
}
@media (max-width: 767px) {
  .ly-footer .footer-top .inner .family-site .familysite-group {
    bottom: 70px;
    height: -webkit-calc(100vh - 150px);
    height: -moz-calc(100vh - 150px);
    height: calc(100vh - 150px);
    max-height: 480px;
    overflow-y: auto;
  }
  .ly-footer .footer-top .inner .family-site .familysite-group::-webkit-scrollbar {
    width: 8px;
  }
  .ly-footer .footer-top .inner .family-site .familysite-group::-webkit-scrollbar-track {
    background: #000;
  }
  .ly-footer .footer-top .inner .family-site .familysite-group::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 5px;
  }
  .ly-footer .footer-top .inner .family-site .familysite-group::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
}
@media (max-width: 767px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .familysite-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 40px 24px;
    border-top: 1px solid #3A3A3A;
  }
}
@media (min-width: 768px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .familysite-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .familysite-inner {
    border-top: 1px solid #3C3C3C;
  }
}
@media (min-width: 1200px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .familysite-inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1200px) and (max-width: 767px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .familysite-inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .familysite-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.ly-footer .footer-top .inner .family-site .familysite-group .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
}
@media (min-width: 768px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .item {
    gap: 19px;
    padding: 40px 20px;
  }
}
@media (min-width: 1200px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .item {
    padding: 40px 52px 40px 62px;
    border-left: 1px solid #3A3A3A;
  }
}
.ly-footer .footer-top .inner .family-site .familysite-group .item:first-child {
  border-left: 0;
}
@media (min-width: 1200px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .item:first-child {
    border-left: 1px solid #3A3A3A;
  }
}
@media (min-width: 768px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .item:last-child {
    border-right: 1px solid #3A3A3A;
  }
}
.ly-footer .footer-top .inner .family-site .familysite-group .item .title {
  color: var(--White, #FFF);
  font-family: Pretendard;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 160%; /* 27.2px */
}
@media (max-width: 767px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .item .title {
    font-size: 15px;
    font-weight: 700;
    line-height: 140%;
  }
}
.ly-footer .footer-top .inner .family-site .familysite-group .item .link-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}
.ly-footer .footer-top .inner .family-site .familysite-group .item .link-group .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #A8A8A8;
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-decoration: none;
}
@media (max-width: 767px) {
  .ly-footer .footer-top .inner .family-site .familysite-group .item .link-group .link {
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    color: #A6A4A2;
  }
}
.ly-footer .footer-top .inner .family-site .familysite-group .item .link-group .link:hover, .ly-footer .footer-top .inner .family-site .familysite-group .item .link-group .link:focus {
  color: #fff;
}
.ly-footer .footer-bottom {
  padding-top: 32px;
  padding-bottom: 32px;
  background: #3C3C3C;
}
.ly-footer .footer-bottom .inner {
  color: var(--White, #FFF);
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
.ly-footer .footer-bottom .inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .ly-footer .footer-bottom .inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 768px) {
  .ly-footer .footer-bottom .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/*======================================개별 페이지======================================*/
/*======================================헬퍼&유틸======================================*/
/*======================================공통 레이아웃======================================*/
.page-main .section-hero {
  position: relative;
  height: 820px;
  background: url("../images/main/hero-bg01.jpg") center/cover no-repeat;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-main .section-hero {
    height: 720px;
    background-position: 61% 2%;
    background-size: auto 115%;
  }
}
.page-main .section-hero .bg-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-main .section-hero .bg-group .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-main .section-hero .inner {
  padding-top: 419px;
}
.page-main .section-hero .inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .page-main .section-hero .inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 768px) {
  .page-main .section-hero .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .page-main .section-hero .inner {
    padding-top: 176px;
    padding-left: 60px;
  }
}
.page-main .section-hero .inner .title-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
.page-main .section-hero .inner .title-group .tit {
  color: #FFF;
  font-family: Pretendard;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 70px */
}
.page-main .section-hero .inner .title-group .desc {
  color: #FFF;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
}
@media (max-width: 767px) {
  .page-main .section-hero .inner .title-group .desc {
    display: none;
  }
}
.page-main .section-glance {
  position: relative;
  min-height: 695px;
  background: url("../images/main/glance-bg01.svg") center/cover no-repeat;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-main .section-glance {
    min-height: 600px;
  }
}
.page-main .section-glance .glance-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-main .section-glance .inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 140px;
  padding-bottom: 156px;
}
@media (max-width: 767px) {
  .page-main .section-glance .inner {
    padding-top: 80px;
    padding-bottom: 57px;
  }
}
.page-main .section-glance .inner .title-group .tit {
  color: #EEE;
  text-align: center;
  font-family: Pretendard;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 61.6px */
}
@media (max-width: 767px) {
  .page-main .section-glance .inner .glance-swiper {
    width: 100%;
  }
}
.page-main .section-glance .inner .glance-group {
  margin-top: 76px;
}
@media (max-width: 767px) {
  .page-main .section-glance .inner .glance-group {
    width: 100%;
    margin-top: 74px;
  }
}
@media (min-width: 768px) {
  .page-main .section-glance .inner .glance-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .page-main .section-glance .inner .glance-group {
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .page-main .section-glance .inner .glance-group {
    gap: 24px;
  }
}
.page-main .section-glance .inner .glance-group .box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 56px 0;
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0.2, 0.3, 1.2), -webkit-transform 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: all 0.6s cubic-bezier(0.4, 0.2, 0.3, 1.2), -webkit-transform 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  -moz-transition: all 0.6s cubic-bezier(0.4, 0.2, 0.3, 1.2), transform 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2), -moz-transform 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: all 0.6s cubic-bezier(0.4, 0.2, 0.3, 1.2), transform 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: all 0.6s cubic-bezier(0.4, 0.2, 0.3, 1.2), transform 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2), -webkit-transform 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2), -moz-transform 0.15s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  -webkit-transform-origin: center;
     -moz-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  will-change: auto;
  cursor: default;
}
@media (max-width: 767px) {
  .page-main .section-glance .inner .glance-group .box {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.16);
  }
}
@media (min-width: 768px) {
  .page-main .section-glance .inner .glance-group .box {
    width: 240px;
    height: 220px;
    background: -webkit-linear-gradient(301deg, rgba(255, 255, 255, 0.18) -40.78%, rgba(58, 58, 58, 0.18) 116.1%);
    background: -moz-linear-gradient(301deg, rgba(255, 255, 255, 0.18) -40.78%, rgba(58, 58, 58, 0.18) 116.1%);
    background: linear-gradient(149deg, rgba(255, 255, 255, 0.18) -40.78%, rgba(58, 58, 58, 0.18) 116.1%);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .page-main .section-glance .inner .glance-group .box {
    width: 18vw;
    height: 18vw;
    max-width: 200px;
    max-height: 200px;
  }
}
.page-main .section-glance .inner .glance-group .box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/main/glance-line.png") center/100% 100% no-repeat;
  -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
          clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  -webkit-transition: -webkit-clip-path 0.1s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: -webkit-clip-path 0.1s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  -moz-transition: clip-path 0.1s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: clip-path 0.1s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: clip-path 0.1s cubic-bezier(0.4, 0.2, 0.3, 1.2), -webkit-clip-path 0.1s cubic-bezier(0.4, 0.2, 0.3, 1.2);
}
@media (max-width: 767px) {
  .page-main .section-glance .inner .glance-group .box::after {
    display: none;
  }
}
@media (min-width: 768px) {
  .page-main .section-glance .inner .glance-group .box:hover, .page-main .section-glance .inner .glance-group .box:focus {
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
    transition: all 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
    -webkit-transform: scale(1.08) !important;
       -moz-transform: scale(1.08) !important;
        -ms-transform: scale(1.08) !important;
            transform: scale(1.08) !important;
  }
}
.page-main .section-glance .inner .glance-group .box:hover::after, .page-main .section-glance .inner .glance-group .box:focus::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: -webkit-clip-path 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  -moz-transition: clip-path 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: clip-path 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: clip-path 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2), -webkit-clip-path 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
}
.page-main .section-glance .inner .glance-group .box:hover .label, .page-main .section-glance .inner .glance-group .box:focus .label {
  font-weight: 500;
}
.page-main .section-glance .inner .glance-group .box:hover .val, .page-main .section-glance .inner .glance-group .box:focus .val {
  font-weight: 700;
}
@media (max-width: 767px) {
  .page-main .section-glance .inner .glance-group .box:not(.swiper-slide-active) {
    opacity: 0.3 !important;
  }
}
.page-main .section-glance .inner .glance-group .box .label {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}
@media (max-width: 767px) {
  .page-main .section-glance .inner .glance-group .box .label {
    font-size: 18px;
    font-weight: 500;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .page-main .section-glance .inner .glance-group .box .label {
    font-size: 1.5625vw;
  }
}
.page-main .section-glance .inner .glance-group .box .val {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Pretendard;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 60.8px */
}
@media (max-width: 767px) {
  .page-main .section-glance .inner .glance-group .box .val {
    font-size: 32px;
    font-weight: 700;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .page-main .section-glance .inner .glance-group .box .val {
    font-size: 2.5vw;
  }
}
.page-main .section-glance .inner .glance-group .box:nth-child(2n) {
  margin-top: 41px;
}
@media (max-width: 767px) {
  .page-main .section-glance .inner .glance-group .box:nth-child(2n) {
    margin-top: 0;
  }
}
.page-main .section-glance .inner .glance-pagination {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 37px;
}
.page-main .section-glance .inner .glance-pagination .swiper-pagination-bullet {
  margin: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.page-main .section-glance .inner .glance-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}
.page-main .section-quicklink {
  position: relative;
  min-height: 462px;
  background: url("../images/main/quick-bg01.jpg") center/cover no-repeat;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-main .section-quicklink {
    min-height: 858px;
    background: url("../images/main/quick-bg01_sm.jpg") center/cover no-repeat;
  }
}
.page-main .section-quicklink .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding-top: 95px;
  padding-bottom: 115px;
}
.page-main .section-quicklink .inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .page-main .section-quicklink .inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 768px) {
  .page-main .section-quicklink .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .page-main .section-quicklink .inner {
    gap: 0;
    padding-top: 75px;
  }
}
.page-main .section-quicklink .inner .title-group {
  position: relative;
}
.page-main .section-quicklink .inner .title-group .tit {
  color: rgba(255, 255, 255, 0.25);
  font-family: Pretendard;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 78.4px */
}
.page-main .section-quicklink .inner .link-group {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .page-main .section-quicklink .inner .link-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: -19px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .page-main .section-quicklink .inner .link-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .page-main .section-quicklink .inner .link-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.page-main .section-quicklink .inner .link-group .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
     -moz-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  border: 1px solid #5A5A5A;
  border-right: 0;
  height: 160px;
  padding: 32px;
  color: #FFF;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
  transition: all 0.3s cubic-bezier(0.4, 0.2, 0.3, 1.2);
}
.page-main .section-quicklink .inner .link-group .link::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M1 9L9 1M9 1H2.5M9 1V7.5' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
}
.page-main .section-quicklink .inner .link-group .link:hover, .page-main .section-quicklink .inner .link-group .link:focus {
  background: var(--primary_text, #DC116B);
  border-color: var(--primary_text, #DC116B) !important;
}
.page-main .section-quicklink .inner .link-group .link:hover::after, .page-main .section-quicklink .inner .link-group .link:focus::after {
  -webkit-animation: fadeInMove 0.4s cubic-bezier(0.4, 0.2, 0.3, 1.2) forwards;
     -moz-animation: fadeInMove 0.4s cubic-bezier(0.4, 0.2, 0.3, 1.2) forwards;
          animation: fadeInMove 0.4s cubic-bezier(0.4, 0.2, 0.3, 1.2) forwards;
}
@media (max-width: 767px) {
  .page-main .section-quicklink .inner .link-group .link:nth-child(2n) {
    border-right: 1px solid #5A5A5A;
  }
  .page-main .section-quicklink .inner .link-group .link:nth-child(2) ~ * {
    border-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .page-main .section-quicklink .inner .link-group .link:nth-child(4n) {
    border-right: 1px solid #5A5A5A;
  }
  .page-main .section-quicklink .inner .link-group .link:nth-child(4) ~ * {
    border-top: 0;
  }
}
.page-main .section-quicklink .inner .link-group .link:last-child {
  border-right: 1px solid #5A5A5A;
}
.page-main .section-quicklink .inner .link-group .link.no-link::after {
  display: none;
  opacity: 0;
}

@-webkit-keyframes fadeInMove {
  0% {
    opacity: 0;
    -webkit-transform: translate(-10px, 10px);
            transform: translate(-10px, 10px);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate(-10px, 10px);
            transform: translate(-10px, 10px);
  }
  90% {
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-moz-keyframes fadeInMove {
  0% {
    opacity: 0;
    -moz-transform: translate(-10px, 10px);
         transform: translate(-10px, 10px);
  }
  30% {
    opacity: 0;
    -moz-transform: translate(-10px, 10px);
         transform: translate(-10px, 10px);
  }
  90% {
    -moz-transform: translate(1px, -1px);
         transform: translate(1px, -1px);
  }
  100% {
    opacity: 1;
    -moz-transform: translate(0, 0);
         transform: translate(0, 0);
  }
}

@keyframes fadeInMove {
  0% {
    opacity: 0;
    -webkit-transform: translate(-10px, 10px);
       -moz-transform: translate(-10px, 10px);
            transform: translate(-10px, 10px);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate(-10px, 10px);
       -moz-transform: translate(-10px, 10px);
            transform: translate(-10px, 10px);
  }
  90% {
    -webkit-transform: translate(1px, -1px);
       -moz-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}