
footer {
    background: #FFF;
}
.footer_gnb {}
.footer_gnb em {
    font-style: normal;
}
.footer_gnb .inner {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
}
.footer_box {
    margin: 0 auto;
    display: flex;
    width: 100%;
    max-width: 1512px;
    padding: 0 24px;
    align-items: flex-start;
    align-self: stretch;
    justify-content: space-between;
}

.footer_box .num_box .num {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
}
.footer_box .num_box p {
    margin-top: 8px;
    color: #7E7E80;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer_box .time_box,
.footer_box .map_box {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.footer_box .time_box .title, 
.footer_box .map_box .title {
    color: #7E7E80;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer_box .time_box ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer_box .time_box ul li {
    display: flex;
    gap: 8px;
}
.footer_box .time_box ul li span {
    display: inline-block;
    width: 64px;
    color: #7E7E80;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}
.footer_box .time_box ul li em {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; /* 150% */
}
.footer_box .time_box ul p {
    padding-top: 8px;
    color: #7E7E80;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; 
}
.footer_box .map_box .box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer_box .map_box p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer_box .map_box p span {
    color: #2DB432;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    display: flex;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 500px;
    border: 1px solid #2DB432;
    background: #FFF;
}
.footer_box .map_box p b {
    font-weight: 600;
}
.footer_box .map_list {
    margin-top: 27px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.footer_box .map_list li {
    
}
.footer_box .map_list li span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.footer_box:last-child {
    display: flex;
    align-items: flex-end;
}
.footer_left {}
.footer_left ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer_left ul li {
    color: #7E7E80;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.footer_left ul li span {
    margin: 0 4px;
}
.footer_left ul li em {
    margin-right: 24px;
    
}

.footer_right ul {
    display: flex;
    gap: 33px;
}
.footer_right ul li {
    position: relative;
}
.footer_right ul li::before {
    position: absolute;
    content: "";
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #BFBFC0;
}
.footer_right ul li:last-child::before {
    display: none;
}
.footer_right ul li a {
    color: #7E7E80;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}
.quick_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  margin-top: 20px;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #B0A283;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: none;
  cursor: pointer;
  z-index: 50;
}
.quick_btn .dot {
  width:6px;
  height:6px;
  background: #fff;
  border-radius: 50%;
  transform: scale(0);
  animation: dotScale 1.1s infinite ease-in-out;
}
.m_scroll_up {
  display: none;
}

.quick_btn .dot:nth-child(1) { animation-delay: 0s; }
.quick_btn .dot:nth-child(2) { animation-delay: 0.12s; }
.quick_btn .dot:nth-child(3) { animation-delay: 0.24s; }


@keyframes dotScale {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(0);
  }
}
.quick_bg {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00000040;
  transition: all 0.3s ease;
  z-index: 20;
}
.quick_bg.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.quick_pop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 30px;
  bottom: 114px;
  width: 340px;
  background-color: #F1EFEC;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 60;
}
.quick_pop.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.quick_pop .quick_head {
  display: flex;
  padding: 16px 24px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
}

.quick_pop .quick_head .info {
  display: flex;
  gap: 12px;
  align-items: center;
}

.quick_pop .quick_head .info .txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quick_pop .quick_head .info .txt h3 {
    font-family: "Pretendard", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 100%;
}.quick_pop .quick_head .info .txt span {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  display: inline-block;
  padding-left: 12px;
  position: relative;
}
.quick_pop .quick_head .info .txt span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  aspect-ratio: 1/1;
  border-radius: 500px;
  background: #698BFB;
}
/* 영업 종료 */
.quick_pop .quick_head .info .txt span.is-closed::before {
  background: #999;
}
.quick_pop .quick_head .close_btn {
  cursor: pointer;
}
.quick_pop .quick_con {
  display: flex;
  padding: 24px;
  flex-direction: column;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  height: 60vh;
  overflow-y: scroll;
}
/* ===============================
   quick_pop 스크롤바 커스텀
   =============================== */

/* Webkit (Chrome, Edge, Safari) */
.quick_pop .quick_con::-webkit-scrollbar {
  width: 6px;
}

.quick_pop .quick_con::-webkit-scrollbar-track {
  background: transparent;
}

.quick_pop .quick_con::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: background-color .2s ease;
}

.quick_pop .quick_con::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.45);
}

/* Firefox */
.quick_pop .quick_con {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}
.quick_pop .quick_con ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick_pop .quick_con ul li {
  border-radius: 8px;
  background: #FFF;

}
.quick_pop .quick_con ul li a {
  padding: 14.5px 16px;
  display: flex;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.quick_pop .quick_con ul li .info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quick_pop .quick_con ul li .info h4 {
  font-family: "Pretendard", sans-serif;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.52px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.quick_pop .quick_con ul li .info h4 span {
  display: flex;
  padding: 2px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.27px;
  border-radius: 2px;
  background: #000;
}
.quick_pop .quick_con ul li .info p {
  width: fit-content;
  display: flex;
  padding: 3px 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 10px;
  font-weight: 500;
  line-height: 100%; /* 10px */
  letter-spacing: -0.3px;
  border-radius: 2px;
  border: 1px solid #C9C9C9;
}
.quick_pop .quick_con .quick_banner {
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 8px;
  background: #000;
  position: relative;
}
.quick_pop .quick_con .quick_banner::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url("../../img/logo_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 106px;
  height: 105.813px;
  
}

.quick_pop .quick_con .quick_banner span {
  color: #B0A283;
  font-size: 11px;
  font-weight: 600;
  line-height: 100%; /* 11px */
}
.quick_pop .quick_con .quick_banner h4 {
    font-family: "Pretendard", sans-serif;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.64px;
  margin: 20px 0 16px;
}
.quick_pop .quick_con .quick_banner p {
  color: #A4A4A4;
  font-size: 12px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -0.48px;
}

.quick_pop .quick_con ul li .quick_con_dropdown {
  position: absolute;
  right: 16px;
  top: 14.5px;
  transform: rotate(180deg);
}
.quick_pop .quick_con ul li.is-open .quick_con_dropdown {
  transform: rotate(0);
  transition: transform .3s ease;
}
.quick_con_box {
  display: none;
 
}
.quick_box_container {
  width: 100%;
  display: flex;
  padding: 12px 0 16px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}
.quick_con_box p {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  background: #F6F6F6;
  display: flex;
  width: 200px;
  padding: 12px 18px;
  align-items: center;
  gap: 12px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.quick_con_box .quick_img {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
}