@charset "UTF-8";
.header section {
  position: relative;
  z-index: 1;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
}

.header section:before, .header section:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.header section:first-of-type {
  margin-left: 0;
}

.header section:last-of-type {
  margin-right: 0;
}

#skipToContent a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 1px;
  height: 1px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
#skipToContent a:where(:focus, :active) {
  width: 220px;
  height: 54px;
  background: #0C121A;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: bold;
  line-height: 54px;
  text-align: center;
  text-decoration: none;
}

/*** HEADER ***/
.header {
  /* position: fixed; */
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-block: 12px;
  padding-inline: var(--wrapper-padding-x);
  width: 100%;
  height: var(--header-height);
  background-color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  /* mobile */
}
.header section {
  --icon-size: 24px;
  display: flex;
  align-items: center;
  background-color: #0C121A;
  transition: all 0.2s ease-in-out;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2));
  margin-inline: 20px;
  border-radius: 6px;
  height: var(--header-section-height);
  background-color: #0C121A;
  line-height: var(--header-section-height);
}
.header section:before, .header section:after {
  background-color: #0C121A;
  transform: skewX(-12.8deg);
}
.header section:before {
  left: -20px;
  border-radius: 6px 0 0 6px;
}
.header section:after {
  right: -20px;
  border-radius: 0 6px 6px 0;
}
.header section:nth-of-type(odd)::before {
  transform: skewX(12.8deg);
}
.header section:nth-of-type(even)::after {
  transform: skewX(12.8deg);
}
.header section:first-of-type {
  padding-left: 12px;
}
.header section:first-of-type:before {
  display: none;
}
.header section:last-of-type {
  padding-right: 12px;
}
.header section:last-of-type:after {
  display: none;
}
.header section:last-of-type {
  padding-right: 16px;
}
.header section.section-1 {
  gap: 40px;
  flex-grow: 1;
}
.header section.section-2 {
  justify-content: center;
  flex-basis: 24px;
  flex-grow: 0;
  background-color: #066fef;
  color: #FFFFFF;
}
.header section.section-2::before, .header section.section-2::after {
  width: 100%;
  background-color: #066fef;
}
.header section.section-3 {
  justify-content: center;
  flex-shrink: 0;
}
.header .btn-search-close {
  --icon-size: 24px;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-left: 12px;
  padding-inline: 12px;
  padding-left: 16px;
  border-radius: 6px;
  width: 48px;
  height: var(--header-section-height);
  line-height: var(--header-section-height);
  transition: all 0.2s ease-in-out;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2));
  background-color: #0C121A;
  background-position: 40% 50%;
  background-repeat: no-repeat;
  background-size: var(--icon-size);
  background-image: url(/thearts/images/common/ico_search_close.svg);
}
.header .btn-search-close:before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  z-index: -1;
  border-radius: 6px 0 0 6px;
  width: 22px;
  height: 100%;
  background-color: #0C121A;
  transform: skewX(12.8deg);
}
.header .logo {
  position: relative;
  display: inline-block;
  width: 240px;
  height: 48px;
  line-height: 0;
}
.header .logo a {
  display: inline-block;
}
.header .logo img {
  width: 100%;
  max-width: 180px;
  vertical-align: middle;
}
.header .logo .logo-ani {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.header .logo svg {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.header .head-nav {
  height: 100%;
}
.header .head-nav a:empty {
  display: none;
}
.header #gnb {
  display: flex;
  gap: 40px;
  height: inherit;
}
.header #gnb > li {
  position: relative;
  height: inherit;
}
.header #gnb > li > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.25em;
  color: #FFFFFF;
  letter-spacing: -0.06em;
  font-weight: 700;
}
.header #gnb > li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  width: 0;
  height: 4px;
  background-color: #066fef;
  transition: 0.2s ease-in-out;
  will-change: left, width, opacity;
}
.header #gnb > li > a:where(:hover, :focus) {
  text-decoration: none;
}
.header #gnb > li > a:where(:hover, :focus):after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.header #gnb .submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  display: none;
  padding: 16px;
  border: 1px solid rgba(177, 177, 177, 0.5019607843);
  border-radius: 8px;
  width: max-content;
  min-width: 180px;
  background-color: #000;
  box-shadow: 0px 15px 35px 0px rgba(60, 66, 87, 0.12), 0px 5px 15px 0px rgba(0, 0, 0, 0.08);
  text-align: left;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 16px;
  line-height: 1.25em;
  color: #FFFFFF;
  font-weight: 500;
}
.header #gnb .submenu:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 3px;
}
.header #gnb .submenu-title {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.25em;
  color: #767676;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.header #gnb .submenu li a {
  display: block;
  padding-block: 4px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.25em;
  color: #FFFFFF;
  font-weight: 500;
}
.header #gnb .submenu li a:where(:hover, :focus) {
  background: rgba(60, 66, 87, 0.06);
}
.header .search-keyword {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: inherit;
  background-color: inherit;
}
.header .search-keyword .head-type-animation {
  position: absolute;
  top: 50%;
  left: 0;
  color: #F4F4F4;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  transform: translateY(-50%);
  transition: opacity 0.2s ease-in-out, visibility 0.2s;
}
.header .search-keyword .head-type-animation strong {
  opacity: 0.88;
  display: inline-block;
  color: #FFFFFF;
  font-weight: 500;
  vertical-align: 0;
}
.header .head-search-input {
  position: relative;
  z-index: 2;
  padding-right: var(--icon-size);
  border-color: transparent;
  width: 100%;
  height: 100%;
  background-color: transparent;
  font: inherit;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  line-height: 1.25em;
  color: #FFFFFF;
  font-weight: 300;
}
.header .head-search-input::placeholder {
  opacity: 0.4;
  color: #FFFFFF;
}
.header .head-search-input:autofill, .header .head-search-input:autofill:hover, .header .head-search-input:autofill:focus, .header .head-search-input:autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #066fef inset;
  box-shadow: 0 0 0px 1000px #066fef inset;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
}
.header .search-submit, .header .search-icon {
  position: absolute;
  top: calc(50% - var(--icon-size) / 2);
  display: block;
  border: none;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  text-align: center;
  cursor: pointer;
}
.header .search-icon {
  left: calc(50% - var(--icon-size) / 2);
  z-index: 1;
  cursor: pointer;
  speak: none;
}
.header .search-submit {
  right: 0;
  z-index: 0;
  opacity: 0;
  order: 9;
  color: transparent;
  background-color: transparent;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/thearts/images/common/ico_search_typeB_wh.svg);
}
.header .language {
  z-index: 4;
  display: flex;
  align-items: center;
  height: var(--head-menu-height);
  transition: 0.2s ease-out;
}
.header .language .gtranslate_wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.header .language .gtranslate_wrapper a {
  display: block;
  width: 100%;
  height: 100%;
  color: transparent;
}
.header .language .gtranslate_wrapper a.gt-current-lang {
  position: absolute;
  margin: -1px;
  padding: 0 !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}
.header .language .gtranslate_wrapper .gt_selector {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 !important;
  border: 0;
  width: 150%;
  height: 100%;
  background-image: none;
  background-image: none;
  color: transparent;
  cursor: pointer;
}
.header .language .gtranslate_wrapper .gt_selector option {
  color: #222;
  line-height: 18px;
}
.header .language .gtranslate_wrapper .gt_selector option:nth-child(1) {
  color: #767676;
}
.header .language .btn-lang {
  position: relative;
  display: inline-block;
  border: 0;
  width: var(--icon-size);
  height: var(--icon-size);
  background-image: url("/images/common/ico_language.svg");
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M2.05 13h5.478a17.9 17.9 0 0 0 2.925 8.881A10.005 10.005 0 0 1 2.05 13Zm0-2a10.005 10.005 0 0 1 8.403-8.88A17.9 17.9 0 0 0 7.528 11H2.05Zm19.901 0h-5.478a17.9 17.9 0 0 0-2.925-8.88A10.005 10.005 0 0 1 21.951 11Zm0 2a10.005 10.005 0 0 1-8.403 8.881A17.9 17.9 0 0 0 16.473 13h5.478Zm-12.42 0h4.939A15.908 15.908 0 0 1 12 20.592 15.908 15.908 0 0 1 9.531 13Zm0-2a15.908 15.908 0 0 1 2.47-7.591A15.908 15.908 0 0 1 14.47 11H9.53Z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
}
.header .language .btn-lang {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M2.05 13h5.478a17.9 17.9 0 0 0 2.925 8.881A10.005 10.005 0 0 1 2.05 13Zm0-2a10.005 10.005 0 0 1 8.403-8.88A17.9 17.9 0 0 0 7.528 11H2.05Zm19.901 0h-5.478a17.9 17.9 0 0 0-2.925-8.88A10.005 10.005 0 0 1 21.951 11Zm0 2a10.005 10.005 0 0 1-8.403 8.881A17.9 17.9 0 0 0 16.473 13h5.478Zm-12.42 0h4.939A15.908 15.908 0 0 1 12 20.592 15.908 15.908 0 0 1 9.531 13Zm0-2a15.908 15.908 0 0 1 2.47-7.591A15.908 15.908 0 0 1 14.47 11H9.53Z'/%3E%3C/svg%3E");
}
.header .search-keyword {
  width: 100%;
}
.header .search-icon {
  left: 0;
  z-index: 0;
}
.header .search-submit {
  z-index: 3;
  opacity: 1;
}
.header .logo svg g[fill="#000"] path {
  fill: #FFFFFF !important;
}
.header:not(.opened-search) .head-search-input::placeholder {
  opacity: 0;
}
.header:not(.opened-search) .search-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/thearts/images/common/ico_search_typeB_wh.svg);
}
.header:not(.opened-search) .search-submit {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.header.opened-search section.section-1,
.header.opened-search section.section-mobile {
  opacity: 0;
  flex-basis: 0;
  margin: 0;
  padding: 0;
  width: 0;
}
.header.opened-search section.section-1:before, .header.opened-search section.section-1:after,
.header.opened-search section.section-mobile:before,
.header.opened-search section.section-mobile:after {
  display: none;
}
.header.opened-search section.section-3 {
  display: none;
}
.header.opened-search section.section-3:before, .header.opened-search section.section-3:after {
  display: none;
}
.header.opened-search .btn-search-close {
  display: flex;
}
.header.opened-search section.section-2 {
  flex-basis: 100%;
  flex-grow: 2;
  margin-left: -8px;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2)) drop-shadow(1px 1px 0px black) drop-shadow(-1px -1px 0px black) drop-shadow(2px 2px 0px white) drop-shadow(-2px -2px 0px white);
}
.header.opened-search section.section-2:before {
  display: none;
}
.header.opened-search section.section-2 .head-search-input {
  margin-right: auto;
  width: calc(100% - var(--icon-size) - 10px);
}
.header.opened-search section.section-2 .search-keyword {
  padding-left: 20px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 100%;
}
.header.opened-search section.section-2 .search-icon {
  left: 0;
  z-index: 0;
}
.header.opened-search section.section-2 .search-submit {
  z-index: 3;
  visibility: inherit;
  opacity: 1;
}
.header.opened-search .logo,
.header.opened-search .head-nav,
.header.opened-search .language,
.header.opened-search .mobile-btn {
  visibility: hidden;
}
.header .section-mobile,
.header .mobile-btn {
  display: none;
}
.header .all-menu-wrap {
  display: none;
}
.header .all-menu-wrap * {
  user-select: none;
}
.header .mo-logo {
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
  height: var(--header-section-height);
  line-height: 0;
  vertical-align: middle;
}
.header .mo-logo a {
  display: inline-block;
}
.header .mo-logo svg {
  width: 100%;
  height: 100%;
}
.header .gtranslate_wrapper-mobile {
  position: relative;
  margin-block: 12px;
  min-height: 42px;
}
.header .gtranslate_wrapper-mobile #gt_float_wrapper {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  width: 100%;
}
.header .gtranslate_wrapper-mobile .gt_float_switcher {
  border: 0.5px solid #dcdcdc;
  border-radius: 4px;
  width: 100%;
  box-shadow: none;
  font-family: "Pretendard";
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.3, 1.1, 0.4, 1.1);
}
.header .gtranslate_wrapper-mobile .gt_float_switcher img {
  display: none;
}
.header .gtranslate_wrapper-mobile .gt_float_switcher .gt-selected {
  width: 100%;
  text-align: left;
}
.header .gtranslate_wrapper-mobile .gt_float_switcher .gt-selected .gt-current-lang {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
  padding-inline: 36px 12px;
  background-position: 12px 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  background-image: url(/thearts/images/common/ico_language.svg);
}
.header .gtranslate_wrapper-mobile .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
  top: unset;
}
.header .gtranslate_wrapper-mobile .gt_float_switcher .gt_options {
  transition-duration: 0.4s;
}
.header .gtranslate_wrapper-mobile .gt_float_switcher .gt_options.gt-open {
  border-top: 0.5px solid #dcdcdc;
}
.header .gtranslate_wrapper-mobile .gt_float_switcher .gt_options a:hover {
  background: #F4F4F4;
  color: #000;
}
.header .mo-gnb {
  border-top: 1px solid #DCDCDC;
  font-size: 0;
  line-height: 0;
}
.header .mo-gnb > li {
  border-bottom: 1px solid #DCDCDC;
}
.header .mo-gnb > li > a {
  position: relative;
  display: block;
  padding: 1.5rem 20px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.header .all-menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.header .all-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  max-width: 600px;
  height: 100vh;
  background: #FFFFFF;
  transform: translateX(101%);
}
.header .all-menu-wrap.is-open .all-menu-mask {
  display: block;
}
.header .all-menu-wrap.is-open .all-menu-btn .icon {
  background-color: transparent;
}
.header .all-menu-wrap.is-open .all-menu {
  overflow-y: auto;
  transform: translateX(0);
  transition: all 0.5s;
}
.header .all-menu-wrap.is-open * {
  user-select: unset;
}

/*** 전자정부 배너 ***/
.top_line_bnr {
  position: relative;
  background-color: #EEF7FF;
}

.top_line_bnr.bnr_hide:after {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cdd7e4;
}

.top_link_wrap .inner, .chk_nuri_addr_bnr .inner {
  padding-inline: 20px;
  width: 100%;
  max-width: 1500px;
  box-sizing: border-box;
}

.top_flag_wrap {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1500px;
  color: #1d1d1d;
  font-size: 15px;
  line-height: 16px;
}

.top_flag_in {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.top_flag_in img {
  margin-right: 9px;
  width: 24px;
}

.top_link_wrap {
  padding: 8px 0;
}

.top_flag_info {
  position: relative;
  margin-left: 18px;
  padding-right: 20px;
  border: 0;
  background: none;
  color: #003675;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.top_flag_info:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: url("/thearts/images/common/official_nuri_chk_arrow.png") center/100% auto no-repeat;
  transition: 0.4s ease-in-out;
}

.top_flag_info.on:after {
  transform: rotate(-180deg);
}

.top_flag_info span {
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  text-indent: -20000px;
}

.chk_nuri_addr_bnr {
  position: relative;
  top: 0px;
  left: 0;
  z-index: 202;
  display: none;
  padding: 24px 0 15px;
  border-top: 1px solid #dbdfe5;
  background: #edeef1;
}

.chk_nuri_addr_bnr strong,
.chk_nuri_addr_bnr p {
  padding-left: 28px;
}

.chk_nuri_addr_bnr strong {
  position: relative;
  display: inline-block;
  color: #1d1d1d;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
}

.chk_nuri_addr_bnr strong:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: url("/thearts/images/common/icon_nurizip.png") center/12px auto no-repeat #fff;
  transform: translateY(-50%);
}

.chk_nuri_addr_bnr p {
  margin-top: 16px;
  color: #555;
  font-size: 15px;
}

.chk_nuri_addr_bnr p a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 15px 0;
  color: #1d1d1d;
}

.chk_nuri_addr_bnr p a:hover {
  text-decoration: underline;
}

.chk_nuri_addr_bnr p a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/thearts/images/common/icon_info_modify.png") no-repeat;
  background-size: contain;
}

@media all and (max-width: 1200px) {
  .top_link_wrap .inner, .chk_nuri_addr_bnr .inner {
    padding: 0 17px;
  }
}
@media all and (max-width: 640px) {
  .top_link_wrap {
    padding: 4px 0;
  }
  .top_flag_wrap,
  .top_flag_in {
    font-size: 14px;
  }
  .top_flag_in img {
    width: 18px;
  }
  .top_flag_info {
    margin-left: 10px;
    padding-right: 16px;
    font-size: 13px;
  }
  .chk_nuri_addr_bnr {
    padding: 24px 0 10px;
  }
  .chk_nuri_addr_bnr strong,
  .chk_nuri_addr_bnr p {
    padding-left: 24px;
  }
  .chk_nuri_addr_bnr strong {
    font-size: 15px;
  }
  .chk_nuri_addr_bnr strong:before {
    width: 16px;
    height: 16px;
    background-size: 10px auto;
  }
  .chk_nuri_addr_bnr p {
    margin-top: 12px;
    font-size: 14px;
  }
  .chk_nuri_addr_bnr p a {
    padding: 16px 18px 16px 0;
    background-size: 14px auto;
  }
}
@media all and (max-width: 580px) {
  .top_flag_wrap {
    display: block;
  }
  .top_flag_info {
    margin-left: 0;
    padding: 3px 16px 5px 27px;
  }
}
@media all and (max-width: 390px) {
  .top_link_wrap {
    padding: 8px 0 2px 0;
  }
  .top_flag_in {
    font-size: 13.5px;
  }
}
/*** 전자정부 배너 끝 ***/