@charset "UTF-8";
/* 공통 - common css */
:root {
  --cont-x-padding: 20px;
}

.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  overflow: hidden;
  flex: 1;
  min-height: 0;
  position: relative;
}

/* Header */
/* head_m */
.head_m {
  display: flex;
  align-items: center;
  position: relative;
  height: var(--head-height);
  padding: 0 var(--cont-x-padding);
  background-color: #fff;
  --head-height: 70px;
  --head-menu-height: 80px;
  --btn-menu-size: 20px;
  --btn-menu-color: #333;
  --btn-menu-padding: 15px var(--cont-x-padding);
  --dim-bg: rgba(0,0,0,.7);
  --dim-fade-duration: .3s;
  --menu-max-width: 400px;
  --depth1-gap: 10px;
  --depth1-padding: 18px 0;
  --depth1-weight: 800;
  --depth1-size: 20px;
  --depth1-line-height: 26px;
  --depth1-color: #000;
  --depth1-color-active: var(--d-color-primary-100);
  --depth1-arrow-size: 1em;
  --depth2-gap: 10px;
  --depth2-padding: 13px 28px;
  --depth2-weight: 600;
  --depth2-size: 18px;
  --depth2-line-height: 30px;
  --depth2-color: #575757;
  --depth2-arrow-color: var(--depth2-color);
  --depth2-arrow-color-active: var(--depth-color-active);
  --depth2-transfition-duration: .4s;
  --depth2-bg-color: rgba(16, 195, 81, .05);
}

.head_m .link_logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.head_m .btn_menu {
  position: absolute;
  top: 50%;
  right: 0;
  padding: var(--btn-menu-padding);
  font-size: var(--btn-menu-size);
  line-height: 1;
  color: var(--btn-menu-color);
  transform: translateY(-50%);
}

.head_m .btn_menu[aria-expanded=true] + .menu_area {
  opacity: 1;
  visibility: visible;
}

.head_m .menu_area {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--dim-bg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dim-fade-duration);
}

.head_m .menu_cont {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: var(--menu-max-width);
  height: 100%;
  margin-left: auto;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform var(--menu-show-duration, 0.3s);
}

.head_m .btn_menu[aria-expanded=true] + .menu_area .menu_cont {
  transform: translateX(0);
}

.head_m .head_menu {
  flex: none;
  display: flex;
  align-items: center;
  position: relative;
  height: var(--head-menu-height);
  padding: 0 30px;
}

.head_m .head_menu .link_txt {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #575757;
}

.head_m .head_menu .wrap_user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.head_m .head_menu .txt_user {
  margin-right: 10px;
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.head_m .head_menu .link_txt i {
  margin-right: 8px;
  font-size: 12px;
  color: #b9b9b9;
}

.head_m .bottom_menu {
  flex: none;
  padding: 33px 20px 33px;
  background-color: #2F58FC;
  text-align: center;
}

.head_m .bottom_menu .txt_down {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}

.head_m .bottom_menu .link_down {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 11px 27px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  background-color: #000;
  vertical-align: top;
}

.nav_m {
  flex: 1;
  min-height: 0;
  border-top: 1px solid var(--d-color-primary-100);
  background-color: #F3FCF8;
}

.head_m .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  height: var(--head-menu-height);
  padding: 0 20px;
  font-size: 18px;
  line-height: 1;
  color: #000;
}

.gnb_m {
  overflow: auto;
  height: 100%;
  padding: 5px 30px 30px;
}

.gnb_m [class*=link_depth][target=_blank] {
  justify-content: flex-start;
}

.gnb_m [class*=link_depth][target=_blank]:after,
.gnb_pc [class*=link_depth][target=_blank]:after {
  font-family: "Font Awesome 6 Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  content: "\f08e";
} /* 외부링크 아이콘 표시 */
.gnb_m .link_depth1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--depth1-gap);
  padding: var(--depth1-padding);
  font-weight: var(--depth1-weight);
  font-size: var(--depth1-size);
  line-height: var(--depth1-line-height);
  color: var(--depth1-color);
}

.gnb_m .has_sub .link_depth1::after {
  position: absolute;
  top: 50%;
  right: 10px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  color: var(--depth1-color);
  transform: translateY(-50%);
  content: "\f107";
}

.gnb_m .link_depth1[aria-expanded=true]::after {
  color: var(--depth-color-active);
  transform: translateY(-50%) rotate(180deg);
}

.gnb_m .link_depth2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--depth2-gap);
  padding: var(--depth2-padding);
  font-weight: var(--depth2-weight);
  font-size: var(--depth2-size);
  line-height: var(--depth2-line-height);
  color: var(--depth2-color);
}

.gnb_m .link_depth1[aria-expanded=true] {
  color: var(--depth1-color-active);
}

.gnb_m .link_depth1[aria-expanded=true] + .cont_submenu {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}

.gnb_m .link_depth2:hover::before {
  position: absolute;
  top: 50%;
  left: 8px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--depth2-color);
  transform: translateY(-50%);
  content: "\f04b";
}

.gnb_m .cont_submenu {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: all var(--depth2-transfition-duration);
}

.gnb_m_depth2 {
  overflow: hidden;
}

.link_vr {
  margin: 0 40px 0 auto;
  padding: 9px 20px 8px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #fff;
  background-color: #FF8D2C;
}

.list_etc_group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.list_etc_group .wrap_user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.list_etc_group .link_txt {
  display: flex;
  align-items: center;
  padding: 5px 0;
  font-size: 16px;
  line-height: 18px;
  color: #575757;
  font-weight: 500;
}

.list_etc_group .txt_user {
  display: inline-block;
  overflow: hidden;
  max-width: 110px;
  margin-right: 10px;
  vertical-align: top;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_etc_group .link_txt i {
  margin-right: 8px;
  font-size: 11px;
  color: #B9B9B9;
}

.list_etc_group .link_txt i.fa-bars {
  margin: 0;
  font-size: 16px;
}

.list_etc_group .link_txt:has(.fa-bars) {
  padding: 15px;
  margin: 0 -15px;
}

.list_etc_group .link_txt:hover i, .list_etc_group .link_txt:focus i {
  color: inherit;
}

@media only screen and (min-width: 768px) {
  .link_vr {
    display: none;
  }
}
/* head_pc */
.header {
  flex: none;
  z-index: 1000;
}

.head_pc {
  display: none;
  position: relative;
  z-index: 1000;
  height: var(--head-height);
  --head-height: 86px;
  --head-max-width: 1440px;
  --head-x-padding: var(--cont-x-padding);
  --gnb-deco-offset: -30px;
  --gnb-text-align: center;
  --gnb-bg-color: #fff;
  --gnb-bg-color-active: #FFF;
  --gnb-bg-duration: .3s;
  --gnb-panel-bg-color: var(--gnb-bg-color);
  --gnb-panel-bg-color-active: var(--gnb-bg-color-active);
  --gnb-panel-bg-duration: var(--gnb-bg-duration);
  --gnb-panel-show-duration: .3s;
  --gnb-dim-color: #000;
  --gnb-dim-opacity: .65;
  --gnb-dim-color-duration: .3s;
  --gnb-divide-line-color: #ddd;
  --gnb-shadow-shape: 0 4px 15px;
  --gnb-shadow-color: rgba(0,0,0,0);
  --gnb-shadow-color-active: rgba(0,0,0,.07);
  --gnb-shadow-color-duration: .3s;
  --depth1-basis: auto;
  --depth1-basis-1400: 185px;
  --depth1-basis-1700: 200px;
  --depth1-gap: 10px;
  --depth1-padding: 0 10px;
  --depth1-padding-1500: 0 20px;
  --depth1-padding-1700: 0 10px;
  --depth1-weight: 800;
  --depth1-size: 20px;
  --depth1-size-1500: 20px;
  --depth1-size-1700: 20px;
  --depth1-line-height: 24px;
  --depth1-line-height-1500: 24px;
  --depth1-line-height-1700: 24px;
  --depth1-color: #121212;
  --depth1-color-active: var(--d-color-primary-100);
  --depth1-color-duration: .3s;
  --depth1-line-inset: auto auto -2px 50%;
  --depth1-line-size: 3px;
  --depth1-line-color: var(--d-color-primary-100);
  --depth1-line-translate: -50% 0;
  --depth1-line-duration: .3s;
  --depth1-ico-target-size: .8em;
  --depth2-bg-hover: rgba(16,195,81,.05);
  --depth2-bg-duration: .3s;
  --depth2-gap: 5px;
  --depth2-fst-padding: 19px;
  --depth2-lst-padding: 18px;
  --depth2-padding: 9px 25px;
  --depth2-weight: 500;
  --depth2-weight-active: 800;
  --depth2-size: 18px;
  --depth2-line-height: 30px;
  --depth2-color: #575757;
  --depth2-color-active: var(--d-color-primary-100);
  --depth2-color-duration: .3s;
  --depth2-ico-target-size: .8em;
}

.head_pc::before {
  position: fixed;
  inset: 0;
  z-index: -10;
  background: var(--gnb-dim-color);
  opacity: 0;
  visibility: hidden;
  transition: all var(--gnb-dim-color-duration);
  content: "";
}

.head_pc:has(.gnb_pc:focus-within)::before,
.head_pc:has(.gnb_pc:hover)::before {
  opacity: var(--gnb-dim-opacity);
  visibility: visible;
}

.head_pc .inner_head {
  position: relative;
  z-index: 0;
}

.head_pc .group_sns {
  display: flex;
  align-items: center;
  gap: 12px;
  position: static;
  top: 47px;
  padding: 0 20px;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
  transform: none;
}

.head_pc .group_sns .list_sns {
  gap: 8px;
  padding: 10px 0;
  background: none;
  box-shadow: none;
}

.head_pc .tit_sns {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000;
}

.head_pc .group_service {
  position: absolute;
  top: calc(var(--head-height) / 2);
  left: var(--cont-x-padding);
  transform: translateY(-50%);
}

.head_pc .group_service .link_logo {
  display: block;
}

.area_etc {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: calc(var(--head-height) / 2);
  right: calc(var(--cont-x-padding));
  z-index: 20;
  transform: translateY(-50%);
  transition: all 0.4s;
}

.area_etc .link_down {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 9px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #fff;
  background-color: #000;
  vertical-align: top;
}

.area_etc .link_down i {
  font-size: 1.1em;
}

.area_etc .link_sitemap {
  padding: 7px 10px 6px;
  font-size: 32px;
  color: #000;
}

.area_etc .etc_group {
  padding: 7px 0;
}

.nav_pc {
  position: relative;
  z-index: -10;
  background-color: var(--gnb-bg-color);
  text-align: var(--gnb-text-align);
  box-shadow: var(--gnb-shadow-shape) var(--gnb-shadow-color);
  transition: box-shadow var(--gnb-shadow-color-duration), background-color var(--gnb-bg-duration);
  word-break: keep-all;
}

.scroll_on .nav_pc {
  box-shadow: var(--gnb-shadow-shape) var(--gnb-shadow-color-active);
}

.set_pos_logo {
  position: relative;
  max-width: var(--head-max-width);
  margin: 0 auto;
  transition: all 0.3s;
}

.set_pos_etc {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -10;
  width: 100%;
  max-width: var(--head-max-width);
  margin: 0 auto;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.nav_pc:has(.gnb_pc:focus-within),
.nav_pc:has(.gnb_pc:hover) {
  box-shadow: var(--gnb-shadow-shape) var(--gnb-shadow-color-active);
  background-color: var(--gnb-bg-color-active);
}

.nav_pc:has(.gnb_pc:focus-within) .gnb_pc::after,
.nav_pc:has(.gnb_pc:hover) .gnb_pc::after {
  position: absolute;
  bottom: 0;
  left: -150px;
  width: 298px;
  height: 132px;
  background-image: url(/home/navitpark/images/common/img_logo_nav.png);
  background-size: cover;
  pointer-events: none;
  transform: translateX(-50%);
  z-index: 100;
  content: "";
}

.nav_pc:has(.gnb_pc:focus-within) .gnb_pc::before,
.nav_pc:has(.gnb_pc:hover) .gnb_pc::before {
  background-color: var(--gnb-panel-bg-color-active);
}

.nav_pc:has(.gnb_pc:focus-within) .cont_submenu,
.nav_pc:has(.gnb_pc:hover) .cont_submenu {
  grid-template-rows: 1fr;
}

.gnb_pc {
  position: relative;
  display: inline-flex;
  justify-content: center;
  vertical-align: top;
}

.gnb_pc:before {
  position: absolute;
  top: var(--head-height);
  left: 0;
  right: 0;
  height: calc(100% - var(--head-height));
  background-color: var(--gnb-panel-bg-color);
  transition: all var(--gnb-panel-bg-duration);
  content: "";
}

.gnb_pc .link_depth1[target=_blank]:after {
  font-size: var(--depth1-ico-target-size);
}

.gnb_pc .link_depth2[target=_blank]:after {
  font-size: var(--depth2-ico-target-size);
}

.gnb_pc .gnb_pc_depth2 {
  overflow: hidden;
  transition: background-color var(--depth2-bg-duration);
}

.gnb_pc .gnb_pc_depth2 > li:first-child {
  padding-top: var(--depth2-fst-padding);
}

.gnb_pc .gnb_pc_depth2 > li:last-child {
  padding-bottom: var(--depth2-lst-padding);
}

.gnb_pc .cont_submenu {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--gnb-panel-show-duration);
}

.gnb_pc > li {
  flex: 1 0 var(--depth1-basis);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s;
}

.gnb_pc > li:focus-within .link_depth1,
.gnb_pc > li:hover .link_depth1 {
  color: var(--depth1-color-active);
}

.gnb_pc > li:focus-within .link_depth1::before,
.gnb_pc > li:hover .link_depth1::before {
  transform: scale(1);
}

.gnb_pc > li:focus-within .link_depth1 span::after,
.gnb_pc > li:hover .link_depth1 span::after {
  position: absolute;
  top: 50%;
  left: -10px;
  width: calc(100% + 20px);
  height: 13px;
  border-radius: 9px;
  background-color: var(--d-color-primary-10);
  transform: translateY(-50%);
  z-index: 10;
  content: "";
}

.gnb_pc > li:focus-within .gnb_pc_depth2,
.gnb_pc > li:hover .gnb_pc_depth2 {
  background-color: var(--depth2-bg-hover, #FFF);
}

.gnb_pc .link_depth1 {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--depth1-gap);
  position: relative;
  z-index: 10;
  height: var(--head-height);
  padding: var(--depth1-padding);
  font-weight: var(--depth1-weight);
  font-size: var(--depth1-size);
  line-height: var(--depth1-line-height);
  color: var(--depth1-color);
  transition: color var(--depth1-color-duration);
}

.gnb_pc .link_depth1::before {
  position: absolute;
  inset: var(--depth1-line-inset);
  width: 100%;
  height: var(--depth1-line-size);
  background-color: var(--depth1-line-color);
  transform: scale(0);
  translate: var(--depth1-line-translate);
  transition: transform var(--depth1-line-duration);
  content: "";
}

.gnb_pc .link_depth1 span {
  position: relative;
}

.gnb_pc .link_depth2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--depth2-gap);
  padding: var(--depth2-padding);
  font-weight: var(--depth2-weight);
  font-size: var(--depth2-size);
  line-height: var(--depth2-line-height);
  color: var(--depth2-color);
  transition: color var(--depth2-color-duration);
}

.gnb_pc .active .link_depth2, .gnb_pc .link_depth2:focus, .gnb_pc .link_depth2:hover {
  font-weight: var(--depth2-weight-active);
  color: var(--depth2-color-active);
}

.gnb_pc .active .link_depth2::before, .gnb_pc .link_depth2:focus::before, .gnb_pc .link_depth2:hover::before {
  position: absolute;
  top: 50%;
  left: 7px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--depth2-color-active);
  transform: translateY(-50%);
  transition: all var(--depth2-color-duration);
  content: "\f04b";
}

@media only screen and (max-width: 1199px) {
  .header:has(.head_m.sticky) {
    position: sticky;
    top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --cont-x-padding: 20px;
  }

	main:has(.area_sub){
		overflow:visible
	}
  /* Header */
  .head_m {
    display: none;
  }
  .head_pc {
    display: block;
  }
  .header:has(.head_pc.sticky) {
    position: sticky;
    top: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .head_pc {
    --depth1-padding: 0 15px;
    --depth2-padding: 8px 20px;
  }
  .gnb_pc > li {
    flex: 1 0 var(--depth1-basis-1400);
  }
  .list_etc_group .link_txt {
    font-size: 18px;
  }
  .nav_pc:has(.gnb_pc:focus-within) .gnb_pc::after,
  .nav_pc:has(.gnb_pc:hover) .gnb_pc::after {
    left: -157px;
  }
}
/* Footer */
.footer {
  flex: none;
  position: relative;
  padding: 50px var(--cont-x-padding);
  background: #2C3430;
  z-index: 1000;
}

.footer .inner_foot {
  max-width: 1400px;
  margin: 0 auto;
  transition: all 0.3s;
}

.foot_area_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.foot_area_top .list_foot_etc {
  display: flex;
  gap: 0 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.foot_area_top .list_foot_etc li {
  position: relative;
}

.foot_area_top .list_foot_etc li + li::before {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
  content: "";
}

.foot_area_top .list_foot_etc .link_txt {
  display: block;
  padding: 5px 0;
  font-size: 16px;
  line-height: 23px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.foot_area_top .list_foot_etc .link_txt.emph_txt {
  font-weight: 600;
}

.foot_area_top .list_foot_sns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.foot_area_top .list_foot_sns a {
  padding: 7px;
  font-size: 23px;
  font-size: 28px;
  color: #fff;
}

.foot_area_bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  word-break: keep-all;
  word-wrap: break-word;
  text-align: center;
}

.foot_area_bottom address, .foot_area_bottom small {
  font-size: 16px;
  line-height: 22px;
  color: rgba(250, 250, 250, 0.6);
  font-weight: 500;
}

.footer .link_logo_foot {
  display: inline-block;
  margin-top: 20px;
}

.footer .group_relate {
  --radius: 10px;
  display: inline-flex;
  position: relative;
  margin-top: 23px;
}

.footer .group_relate .link_relate {
  display: inline-flex;
  gap: 7px;
  justify-content: space-between;
  align-items: center;
  width: 170px;
  height: 43px;
  padding: 0 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  line-height: 43px;
  color: #fff;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.3);
}

.footer .group_relate .link_relate[aria-expanded=true] + ul {
  display: block;
}

.footer .group_relate .link_relate[aria-expanded=true] i {
  transform: rotate(180deg);
}

.footer .group_relate ul {
  display: none;
  overflow: auto;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 195px;
  border-radius: var(--radius);
  background: #707070;
}

.footer .group_relate ul::-webkit-scrollbar {
  width: 8px;
} /* 스크롤 바 전체 너비 */
.footer .group_relate ul::-webkit-scrollbar-track {
  background-color: #ddd;
} /* 전체 게이지 */
.footer .group_relate ul::-webkit-scrollbar-thumb {
  background-color: #7a7a7a;
  border-radius: 4px;
} /* 현재 게이지 */
.footer .group_relate ul li + li {
  position: relative;
}

.footer .group_relate ul li + li::before {
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  border-top: 1px dashed var(--d-color-white-30);
  content: "";
}

.footer .group_relate ul a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s;
}

.footer .group_relate ul a i {
  margin-left: auto;
}

@media only screen and (min-width: 768px) {
  .foot_area_top .list_foot_etc {
    justify-content: flex-end;
    padding-top: 0;
  }
  .footer .group_relate {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .foot_area_top {
    flex-direction: row;
    justify-content: space-between;
  }
  .foot_area_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .footer .link_logo_foot {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .foot_area_top {
    justify-content: space-between;
  }
  .foot_area_top .img_logo {
    width: 196px;
  }
  .foot_area_top {
    flex-direction: row;
    justify-content: space-between;
  }
  .foot_area_top .list_foot_etc .link_txt, .foot_area_bottom address, .foot_area_bottom small {
    font-size: 18px;
  }
}
/* top 버튼 */
@keyframes topBtnAni {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.footer .btn_top {
  --circle-size: 50px; /* 바깥쪽 원 크기 */
  --circle-size-pc: 64px; /* 바깥쪽 원 크기(PC) */
  --circle-gap: 6px; /* 바깥쪽 원과 안쪽 원 사이 간격 */
  --circle-gap-pc: 8px; /* 바깥쪽 원과 안쪽 원 사이 간격(PC) */
  --circle-color: #1DBF77; /* 원 색상 */
  --outer-circle-opacity: .3; /* 바깥쪽 원 투명도 */
  --page-default-padding-x: 15px; /* 원의 우측 여백 */
  --page-default-padding-x-pc: 20px; /* 원의 우측 여백(PC) */
  --arrow-color: #fff; /* 아이콘 색상 */
  --ico-arrow-size: 16px; /* 아이콘 크기 */
  --ico-arrow-size-pc: 20px; /* 아이콘 크기(PC) */
  position: fixed;
  bottom: 30px;
  right: var(--page-default-padding-x, 15px);
  z-index: 90;
  width: var(--circle-size, 45px);
  height: var(--circle-size, 45px);
  padding: 0;
  border-radius: 50%;
  border: 0;
  line-height: 0;
  background: none;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: right 0.4s;
}

.footer .btn_top i {
  position: relative;
  font-size: var(--ico-arrow-size);
  color: var(--arrow-color);
  z-index: 10;
} /* 화살표 아이콘 스타일 */
.footer .btn_top:before, .footer .btn_top:after {
  position: absolute;
  border-radius: 50%;
  background: var(--circle-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
} /* 바깥쪽 원, 안쪽 원 공통 스타일 */
.footer .btn_top:before {
  width: 100%;
  height: 100%;
  opacity: var(--outer-circle-opacity, 0.3);
} /* 바깥쪽 원 스타일(사용 안할시 주석처리) */
.footer .btn_top:hover:before, .footer .btn_top:focus:before {
  animation: topBtnAni 1.5s infinite;
} /* 바깥쪽 원 hover 애니메이션 */
.footer .btn_top:after {
  width: calc(100% - var(--circle-gap) * 2);
  height: calc(100% - var(--circle-gap) * 2);
  box-sizing: content-box;
} /* 안쪽 원 크기는 (circle-size) - (circle-gap) */
.footer .btn_top span {
  display: block;
}

.footer .btn_top.on {
  opacity: 1;
  visibility: visible;
}

.footer .btn_top.btn_fix {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) {
  /* top 버튼 */
  .footer .btn_top {
    width: var(--circle-size-pc, 60px);
    height: var(--circle-size-pc, 60px);
    right: var(--page-default-padding-x-pc, 15px);
  }
  .footer .btn_top:after {
    width: calc(100% - var(--circle-gap-pc) * 2);
    height: calc(100% - var(--circle-gap-pc) * 2);
  }
  .footer .btn_top i {
    font-size: var(--ico-arrow-size-pc);
  } /* PC 화살표 아이콘 크기 */
}
/* 바로가기 링크 - VR, 관람예약 */
.link_quick {
  display: block;
}

.link_quick svg {
  vertical-align: top;
  overflow: visible;
}

.link_quick circle {
  filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.1));
}

.link_quick.vr .img_quick {
  transform-origin: bottom center;
  animation: quick_vr 3s infinite;
  animation-timing-function: ease-in-out;
}

.link_quick.resv .img_quick {
  animation: quick_resv 3s infinite;
  animation-timing-function: ease-in-out;
}

@keyframes quick_vr {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes quick_resv {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}