@charset "UTF-8";

.no_content {
  padding: 100px 0;
  border: 1px solid #ccc;
  border-radius: 30px;
  text-align: center;
  color: #525252;
  font-size: 16px;
}
.roll_wrap {
  display: flex;
}
.roll_wrap img {
  max-width: unset;
}
.roll_wrap img:first-child {
  animation: rolltxt 20s linear infinite;
  padding-right: 100px;
}
.roll_wrap img:last-child {
  animation: rolltxt2 20s linear infinite;
  padding-right: 100px;
}
@keyframes rolltxt {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  50.1% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rolltxt2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 768px) {
  .roll_wrap {
    height: 60px;
  }
  .no_content {
    font-size: 14px;
  }
}
/* header */
.global_header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  max-height: 90px;
  transition: 0.45s;
  box-sizing: border-box;
  transform: translateY(0);
}

.global_header.hidden {
  transform: translateY(-100%);
}

.global_header .gnb {
  width: 90%;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global_header .gnb .logo {
  /* margin-right: 3.6vw; */
}

.global_header .gnb .nav {
  display: flex;
  gap: 2.6vw;
  align-items: center;
  color: #262626;
  transition: 0.45s;
  padding: 35px 5.2vw 35px 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
  box-sizing: border-box;
  max-height: 90px;
}

.global_header .gnb .nav_menu {
  padding: 10px 0;
  position: relative;
}
.global_header .gnb .nav_menu > a {
  color: var(--grayscale-60001, #525252);

  /* Body 2 */
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.36px;
  transition: 0.45s;
}
.global_header .drop {
  position: absolute;
  /* height: 0; */
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: 0.45s;
  top: 100%;
  left: 0;
  /* width: 100%; */
  border-radius: 0px 20px 20px 20px;
  background: var(--Desaturate-100, #df7262);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 30px 20px 60px 20px;
}
.global_header .drop:after {
  content: '';
  display: block;
  width: 61.471px;
  height: 38px;
  background: url('/img/common/drop_menu_bg.png') center center / 100% no-repeat;
  position: absolute;
  right: 0;
  bottom: 12px;
}

.global_header .drop_menu:not(:last-child) {
  margin-bottom: 10px;
}
.global_header .drop a {
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.32px;
  white-space: nowrap;
  transition: 0.45s;
  position: relative;
}
.global_header .drop a:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -3px;
  opacity: 0;
  transition: 0.45s;
}
.global_header .drop a:hover:after {
  opacity: 1;
}
.global_header .nav_menu:hover > a {
  color: var(--Desaturate-100, #df7262);
}
.global_header .nav_menu:hover .drop {
  opacity: 1;
  visibility: visible;
}
.global_header .side_btn {
  display: flex;
  gap: 1vw;
  align-items: center;
}
.global_header .gnb_drop.show {
  height: 640px;
}

.global_header .gnb_drop {
  width: 100%;
  position: fixed;
  top: 90px;
  left: 0;
  background: #fff;
  height: 0;
  overflow: hidden;
  transition: 0.45s;
}
.global_header .gnb_drop .drop_inner {
  max-width: 1520px;
  width: 90%;
  margin: 0 auto;
  padding: 25px 0 55px;
}

.global_header .gnb .drop_main {
  display: flex;
  justify-content: space-between;
  gap: 6.7vw;
}

.global_header .gnb .drop_menu_wrap {
  display: flex;
  gap: 1vw;
  width: calc(70% - 6.7vw);
  flex-wrap: wrap;
}
.global_header .gnb .drop_swiper {
  flex: 1;
  max-height: 640px;
}
.global_header .gnb .drop_menu_list {
  padding: 5px 20px 5px 10px;
  min-width: 9.3vw;
}

.global_header .gnb .drop_menu_list b {
  color: var(--Desaturate-100, #df7262);
  font-family: 'PT Bandoche';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 20px;
}

.global_header .gnb .drop_menu_list div {
  display: flex;
  gap: 1.5vw;
}

.global_header .gnb .drop_menu_list ul {
}

.global_header .gnb .drop_menu_list ul li {
  color: var(--grayscale-60001, #525252);

  /* Text 1 */
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
}

.global_header .gnb .drop_menu_list ul li:not(:last-child) {
  margin-bottom: 18px;
}

.global_header .gnb .drop_event {
  max-width: 250px;
  flex: 1;
}

.global_header .gnb .drop_event .img_cover {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  height: 0;
  padding-top: 100%;
  position: relative;
}
.global_header .gnb .drop_event .img_cover img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.global_header .gnb .drop_event p {
  color: var(--neutral-gray-800, #262626);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.global_header .gnb .drop_event .swiper-pagination-bullet {
  width: 16px;
  height: 4px;
  background: var(--grayscale-30002, #939393);
  border-radius: 0;
}

.global_header .gnb .drop_event .swiper-pagination-bullet-active {
  background: var(--B-Brown, #91766d);
}

.global_header .gnb .drop_footer {
  background: #dbd3d4;
  padding: 16px 0 20px;
}

.global_header .gnb .drop_footer .inner {
  width: 90%;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
}

.global_header .gnb .drop_footer a {
  display: flex;
  align-items: center;
  color: #2c1f1a;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.36px;
  gap: 6px;
}

.global_header .gnb .drop_footer a::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('/img/common/drop_res_icon.png') center center / 100%
    no-repeat;
}

.global_header .gnb .drop_footer a:last-child:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('/img/common/drop_res_icon2.png') center center / 100%
    no-repeat;
}

.global_header .gnb .drop_footer a:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background: var(--B-Granite, #b7a7a8);
  margin: 0 20px;
}

.global_header .gnb > .go_link {
  margin-left: auto;
  padding: 13px 20px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #262626;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.32px;
  display: flex;
  transition: 0.45s;
  gap: 12px;
  align-items: center;
}

.global_header .gnb > .go_link::before {
  content: '';
  display: block;
  width: 24px;
  height: 22px;
  background: url('/img/common/blog.png') center center / 100% no-repeat;
}

.mnav_wrap {
  display: none;
}
[class*='ico'] {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.ico_close {
  background: url('/img/common/ico_close.svg') center center / 100% no-repeat;
  width: 24px;
  height: 24px;
}
/* gnb 호버액션 */
/* .nav_menu .drop {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in;
}
.nav_menu:hover .drop {
    visibility: visible;
    opacity: 1;
} */

/* 모바일네비 */
.mnav_wrap {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: 0.3s;
  background: #fff;
}

.mnav_wrap::-webkit-scrollbar {
  display: none;
}

/* Firefox */
.mnav_wrap {
  scrollbar-width: none;
}

/* IE, Edge */
.mnav_wrap {
  -ms-overflow-style: none;
}

.mnav_wrap.on {
  transform: translateX(0);
}

/* 플로팅 */

/* floating */
.floating-area {
  position: fixed;
  bottom: 50px;
  right: 80px;
  z-index: 980;
  /* opacity: 0; */
  /* visibility: hidden; */
  animation: bouncing1 0.7s infinite alternate;
}
@keyframes bouncing1 {
  0% {
    transform: translate3d(0, -15px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.floating-box {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.floating-item {
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.floating-item.go_top {
  border-radius: 10px;
  overflow: hidden;
}
.floating-item .btn-floating {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 15px 10px 14px 11px;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}
.floating-item.quick .btn-floating {
  background-color: #ea6957;
  color: #fff;
  /* gap: 0; */
}
.floating-item.quick .btn-floating.open {
  gap: 0;
}
.floating-item.quick .btn-floating .ico {
  background-image: url(/img/common/ico-quick.svg);
}
.floating-item.quick .btn-floating.open .ico {
  background-image: url(/img/common/ico-close-w.svg);
}
.floating-item.quick .btn-floating.open .txt {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.floating-item.boarding .btn-floating {
  background-color: var(--color-gray1);
  color: #fff;
}
.floating-item.boarding .btn-floating:hover {
  background-color: #fff;
  color: var(--color-primary);
}
.floating-item.boarding .btn-floating .ico {
  background-image: url(/img/common/ico-bording-w.svg);
}
.floating-item.boarding .btn-floating:hover .ico {
  background-image: url(/img/common/ico-bording-p.svg);
}
.floating-item.go-to-top .btn-floating {
  background-color: #fff;
  color: var(--grayscale-800, #262626);
  border-radius: 10px;
  overflow: hidden;
}
.floating-item.go-to-top .btn-floating:hover {
  color: #ea6957;
}
.floating-item.go-to-top .btn-floating .ico {
  background-image: url(/img/common/arw-ftop-bk.svg);
}
.floating-item.go-to-top .btn-floating:hover .ico {
  background-image: url(/img/common/arw-ftop-p.svg);
}

.floating-area .ico {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  transition: 0.3s ease-in-out;
}
.floating-area .txt {
  overflow: hidden;
  font-family: SUIT;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.floating-area .quick-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  position: absolute;
  bottom: 100%;
  right: 0;
  transform: translateY(-1.7rem);
  pointer-events: none;
}
.floating-area .quick-item .link-quick {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999em;
  border: 1px solid var(--color-primary2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%);
  pointer-events: auto;
}
.floating-area .quick-item .link-quick .ico-naver {
  background-image: url(/img/common/ico-naver-p.svg);
}
.floating-area .quick-item .link-quick .ico-kakao {
  background-image: url(/img/common/ico-kakao-p.svg);
}
.floating-area .quick-item .link-quick .ico-blog {
  background-image: url(/img/common/ico-blog-p.svg);
}
.floating-area .quick-item .link-quick .ico-ig {
  background-image: url(/img/common/ico-ig-p.svg);
}

.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #df7262;
  z-index: 999;
  display: none;
}
.floating-bar .quick-menu {
  padding: 13px 20px;
}
.floating-bar .quick-list {
  display: flex;
}
.floating-bar .quick-item {
  flex: 1;
  position: relative;
}
.floating-bar .quick-item + .quick-item::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 44px;
  background-color: #fff;
  transform: translateY(-50%);
}
.floating-bar .quick-item .link-quick {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 0 1.4rem;
}
.floating-area .quick-item:first-of-type .link-quick {
  padding-left: 0;
}
.floating-area .quick-item:last-of-type .link-quick {
  padding-right: 0;
}
.floating .quick-item .link-quick .ico {
  width: 20px;
  aspect-ratio: 1 / 1;
}
.floating .quick-item .link-quick .ico-naver {
  background-image: url(/img/common/ico-naver-w.svg);
}
.floating .quick-item .link-quick .ico-blog {
  background-image: url(/img/common/ico-blog-w.svg);
}
.floating .quick-item .link-quick .ico-ig {
  background-image: url(/img/common/ico-ig-w.svg);
}
.floating .quick-item .link-quick .ico-kakao {
  background-image: url(/img/common/ico-kakao-w.svg?v=2);
}
.floating .quick-item .link-quick .ico-phone {
  background-image: url(/img/common/ico-phone-w.svg);
}
.floating-bar .quick-item .link-quick .ico-kid {
  background-image: url(/img/common/ico-kid-w.svg?v=3);
}
.floating-bar .quick-item .link-quick .txt {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.56px;
  color: #fff;
}

/* floating_new */
.floating_new {
  position: fixed;
  bottom: 5vw;
  right: 20px;
  z-index: 99999;
}
.floating_new .ico {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  transition: 0.3s ease-in-out;
}
.floating_new .quick_list {
  border-radius: 10px;
  background: #ea6957;
}
.floating_new .quick-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--DarkBlue-Gray-White, #fff);
  text-align: center;
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 15.6px */
  letter-spacing: -0.26px;
  padding: 15px 8px;
  border-radius: 10px;
  transition: 0.3s;
}
.floating_new .quick-item a:hover {
  background: #ef897b;
}
.global_header .burger {
  /* position: relative; */
  padding: 0;
  max-width: 40px;
  /* z-index: 9999; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 22px;
  width: 22px;
}

.global_header .burger span {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* opacity: 0; */
  transition: 0.3s;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #525252;
}
.global_header .burger.on span:first-child {
  transform: translateY(10px) rotate(-45deg);
}
.global_header .burger.on span:nth-child(2) {
  transform: translate(-50%);
  opacity: 0;
}
.global_header .burger.on span:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}
.global_header .mnav_wrap .login {
  display: none;
}
@media screen and (max-width: 1350px) {
  .global_header .gnb .nav {
    padding: 35px 2.1vw 35px 2.1vw;
    gap: 1.6vw;
  }
  .global_header .gnb .logo {
    max-width: 180px;
  }
  .global_header .gnb .drop_menu_wrap {
    width: calc(100% - 350px);
  }
  .global_header .gnb .drop_event {
    max-width: 150px;
  }
  .global_header .gnb .nav_menu > a {
    font-size: 15px;
    letter-spacing: -0.3px;
  }
}

@media screen and (max-width: 1024px) {
  .global_header .gnb .logo a {
    position: relative;
  }

  .global_header .side_btn .login {
    display: none;
  }
  .global_header .side_btn a {
    display: none;
  }
  .global_header .gnb_drop.show {
    height: 0;
  }
  .global_header.mo .burger .burger_img {
    opacity: 1;
  }

  .global_header.mo .burger .burger_img_w {
    opacity: 0;
  }

  .global_header.mo {
    background: #fff;
  }

  .global_header .logo .none_1024.mo {
    opacity: 0;
    position: absolute;
    top: 0;
    transition: 0.3s;
    left: 0;
  }

  .global_header.mo svg path {
    fill: #2c1f1a;
    transition: 0.3s;
  }

  .global_header.mo .logo .none_1024 {
    /* opacity: 0; */
    /* transition: 0.3s; */
  }

  .global_header.mo .logo .none_1024.mo {
    opacity: 1;
  }

  .global_header .gnb .nav,
  .global_header .gnb > .go_link,
  .global_header .gnb .drop {
    display: none;
  }

  .burger,
  .mnav_wrap {
    display: block;
  }

  .mnav_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
  }

  .mnav_wrap .top {
    display: flex;
    justify-content: space-between;
    min-height: 60px;
    align-items: center;
    padding: 0 5vw;
    margin-bottom: 35px;
  }

  .mnav_wrap .mnav_menu span {
    color: var(--Desaturate-100, #df7262);
    font-family: 'PT Bandoche';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.64px;
    display: flex;
    align-items: center;
    padding: 15px 5vw;
    justify-content: space-between;
    border-bottom: 1px solid #f5f5f5;
  }

  .mnav_wrap .mnav_menu span::after {
    content: '';
    display: block;
    width: 24px;
    aspect-ratio: 1/1;
    background: url('/img/common/mnav_arrow.png') center center / 100% no-repeat;
    transition: 0.3s;
  }
  .mnav_wrap .mnav_menu a.on span:after {
    transform: rotate(180deg);
  }
  .mnav_menu span.on::after {
    transform: rotate(180deg);
  }

  .mnav_wrap .mdrop {
    display: none;
  }

  .mnav_wrap .mdrop_menu {
    color: var(--grayscale-60001, #525252);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.32px;
    border-bottom: 1px solid var(--grayscale-10001, #f5f5f5);
    background: var(--grayscale-5002, #fafafa);
  }
  .mnav_wrap .mdrop_menu a {
    padding: 15px calc(5vw + 5px);
    display: block;
    box-sizing: border-box;
  }
  .global_header .gnb .mnav_wrap .drop_event {
    max-width: 100%;
    padding: 0 5vw;
    margin-bottom: 17px;
    margin-top: 17px;
  }

  .global_header .gnb .mnav_wrap .drop_event .swiper-pagintion {
    text-align: center;
  }

  .global_header .gnb .mnav_wrap .drop_event .img_cover {
    border-radius: 0;
    margin-bottom: 0;
    width: 100%;
  }

  .global_header .gnb .mnav_wrap .drop_event .swiper-slide a {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    align-items: center;
    gap: 20px;
  }
  .global_header .gnb .mnav_wrap .drop_event .swiper-slide a > div {
    width: 150px;
  }
  .global_header .gnb .mnav_wrap .drop_event p {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
  }

  .global_header .gnb .mnav_wrap .drop_footer {
    padding: 20px 0;
  }

  .global_header .gnb .mnav_wrap .drop_footer a::before {
    width: 18px;
  }

  .global_header {
    background: #fff;
    min-height: 60px;
    display: flex;
    align-items: center;
  }

  .global_header .gnb {
    justify-content: space-between;
  }

  .global_header .gnb .drop_footer a {
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .global_header .burger {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 9999;
    width: 16px;
    height: 16px;
  }

  .burger em {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--grayscale-00-white, #fff);
  }
  .global_header .burger.on span:first-child {
    transform: translateY(7px) rotate(-45deg);
  }
  .global_header .burger.on span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
  }
  .global_header .mnav_wrap .login {
    display: flex;
    gap: 4px;
    color: var(--grayscale-50002, #737373);
    font-family: Pretendard;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */
    letter-spacing: -0.3px;
    margin-bottom: 70px;
    margin-left: 30px;
    align-items: center;
  }
  .global_header .mnav_wrap .login img {
    width: 30px;
    height: 30px;
  }
  .floating-bar {
    display: block;
  }
  .floating_new {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .global_header .gnb .logo {
    max-width: 127px;
  }
  .floating-bar .quick-item .link-quick {
    padding: 0 10px;
  }
  /* Floating */
  .floating-area {
    bottom: 50px;
    right: 80px;
  }
  .floating-item {
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.3);
  }
  .floating-item .btn-floating {
    width: 5rem;
    height: 5rem;
  }
  .floating-area .ico {
    width: 1.8rem;
    height: 1.8rem;
  }
  .floating-area .txt {
    font-size: 1rem;
  }
  .floating-area .quick-item .link-quick {
    gap: 0.3rem;
    padding: 0.8rem;
  }
}

/* 푸터 */
.global_footer {
  padding: 90px 0 80px;
  overflow: hidden;
}
.global_footer .con_wrap {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.root_daum_roughmap .wrap_controllers {
  display: none;
}
.root_daum_roughmap .cont {
  display: none;
}
.global_footer .info_wrap {
  text-align: center;
  margin-bottom: 96px;
}
.global_footer .info_wrap .group:not(:last-child) {
  margin-bottom: 36px;
}
.global_footer .info_wrap img.logo {
  margin: 0 auto 50px;
}
.global_footer .info_wrap .tit_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 120px;
  margin: 0 auto 8px;
  color: var(--grayscale-40001, #a3a3a3);
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
.global_footer .info_wrap ul li,
.global_footer .info_wrap a,
.global_footer .info_wrap p {
  color: var(--grayscale-800, #262626);
  font-family: 'PT Bandoche';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
}
.global_footer .foot_b {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}
.global_footer .foot_b .pri_wrap {
  display: flex;
  justify-content: center;
  color: var(--grayscale-50002, #737373);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
  margin-bottom: 12px;
}
.global_footer .foot_b .pri_wrap li:not(:last-child) {
  display: flex;
  align-items: center;
}
.global_footer .foot_b .pri_wrap li:not(:last-child)::after {
  content: '|';
  display: block;
  color: var(--grayscale-50002, #737373);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
  margin: 0 10px;
}
.global_footer .foot_b .bottom {
  display: flex;
  justify-content: center;
  gap: 14px;
  color: var(--grayscale-50002, #737373);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
}
.global_footer .map_wrap .root_daum_roughmap_landing .border2 {
  display: block;
}
@media screen and (max-width: 1280px) {
  .global_footer .foot_b .bottom {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  .global_footer .info_wrap {
    width: 50%;
  }
  .global_footer .map_wrap {
    width: 50%;
  }
  .global_footer .map_wrap .root_daum_roughmap_landing {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .global_footer {
    padding: 60px 0 120px;
  }
  .global_footer .info_wrap {
    width: 100%;
  }
  .global_footer .info_wrap img.logo {
    width: 176px;
    margin: 0 auto 36px;
  }
  .global_footer .con_wrap {
    flex-direction: column;
    margin: 0 auto 50px;
  }
  .global_footer .map_wrap {
    width: 100%;
  }
  .global_footer .map_wrap .root_daum_roughmap_landing {
    width: 100% !important;
  }
  .global_footer .foot_b .bottom {
    flex-direction: column;
    justify-content: flex-start;
    font-size: 14px;
    letter-spacing: -0.28px;
    row-gap: 4px;
  }
  .global_footer .info_wrap .tit_wrap {
    font-size: 14px;
    margin: 0 auto 5px;
    max-width: 101px;
  }
  .global_footer .info_wrap ul li,
  .global_footer .info_wrap a,
  .global_footer .info_wrap p {
    font-size: 16px;
  }
  .global_footer .info_wrap .group:not(:last-child) {
    margin-bottom: 26px;
  }
  .global_footer .info_wrap {
    margin-bottom: 50px;
  }
  .global_footer .foot_b .pri_wrap {
    font-size: 13px;
    letter-spacing: -0.26px;
    margin-bottom: 20px;
  }
  .global_footer .foot_b .pri_wrap li:not(:last-child)::after {
    font-size: 13px;
    margin: 0 8px;
  }
}
.quick_menu {
  position: fixed;
  right: 10px;
  bottom: 10px;
}
