@charset "UTF-8";

:root {
  --main-blue: #2c60d1;
  --main-blue-gradient: linear-gradient(
    #256cea 14.36%,
    #3b82ff 64.14%,
    #0049ca 87.77%
  );
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:hover,
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  -webkit-appearance: none;
  border-radius: 0;
  text-align: inherit;
  background: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  border: none;
  color: inherit;
  font: inherit;
}

html {
  font-size: 10px;
  font-size: 62.5%; /* 10px = 62.5% */
}

body {
  font-size: 1.6rem;
}

body.scroll-lock {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 1440px) {
  html {
    font-size: 9px;
    font-size: 56.25%;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 8px;
    font-size: 50%;
  }
}

/* @media (max-width: 768px) {
  html {
    font-size: 7px;
    font-size: 43.75%;
  }
} */

/*
** common class 
*/

.none-1024,
.none-960,
.none-500 {
  display: block;
}

.block-1024,
.block-960,
.block-500 {
  display: none;
}

.block-768 {
  display: none;
}

@media (max-width: 1024px) {
  .none-1024 {
    display: none;
  }

  .block-1024 {
    display: block;
  }
}

@media (max-width: 960px) {
  .none-960 {
    display: none;
  }

  .block-960 {
    display: block;
  }
}

@media (max-width: 768px) {
  .block-768 {
    display: block;
  }
}

@media (max-width: 500px) {
  .block-500 {
    display: block;
  }

  .none-500 {
    display: none;
  }
}

/* 
** tab ui
 */

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* 
** header 
*/
.global_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  transition: top 0.42s ease-in-out;
}

.header_wrap {
  position: relative;
  background: #fff;
}

.header_top {
  position: relative;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.6%;

  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 2.8rem 20px;
}

.header_top_column {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header_top_column.header_top_column_left {
  justify-content: flex-end;
}

.header_top_column.header_top_column_right {
  justify-content: flex-start;
}

.top-nameplate-item {
  height: 5.4rem;
}

.header_top_column.header_top_column_left .top-nameplate-item:nth-child(2) {
  padding: 5px 0;
}

.top-nameplate-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo_column {
  width: 36rem;
}

.header_bottom {
  display: flex;
  justify-content: center;

  width: 100%;
  padding: 0 20px;
  background: var(--main-blue);
}

.global_header a.logo {
  display: block;
  width: 100%;
  height: 100%;
}

.global_header a.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* 
** nav 
*/
.global_header .main_nav {
  position: relative;
  height: 6rem;
}

.global_header .pc-gnb {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
}

.global_header .pc-gnb .nav_menu {
  position: relative;
}

.global_header .pc-gnb .depth1 {
  position: relative;

  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.08em;
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 2.5em;

  transition: opacity 0.22s;
}

.global_header .pc-gnb:hover .nav_menu .depth1 {
  opacity: 0.4;
}

.global_header .pc-gnb:hover .nav_menu.active .depth1 {
  opacity: 1;
}

.global_header .pc-gnb .depth2 {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translate(-50%, 0);

  width: 100%;
  min-width: 12em;
  max-height: 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;

  z-index: 10;
  /* border: 1px solid #fff; */
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);

  transition: all 0.5s;
}

.global_header .pc-gnb .nav_menu.active .depth2 {
  max-height: 27em;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global_header .pc-gnb .depth2_item {
  position: relative;
  width: 100%;
  text-align: center;
}

.global_header .pc-gnb .depth2_item + .depth2_item {
  border-top: 1px solid #e5e5e5;
}

.global_header .pc-gnb .depth2_item a {
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  letter-spacing: -0.06em;
  background: #fff;
  color: #606060;
  padding: 0.93em 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  transition: all 0.2s ease;
}

.global_header .pc-gnb .depth2:hover .depth2_item a {
  opacity: 0.4;
}

.global_header .pc-gnb .depth2:hover .depth2_item.active a {
  background: rgba(37, 108, 234, 0.1);
  color: var(--main-blue);
  opacity: 1;
}

/* 
** mobile menu 
*/
.btn-menu-toggle,
.mobile-menu {
  display: none;
}

.btn-menu-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

.btn-menu-toggle button {
  position: relative;

  display: block;
  width: 4.8rem;
  height: 4.8rem;

  background: var(--main-blue);
  border-radius: 50%;
}

.btn-menu-toggle button span {
  display: block;
  position: absolute;
  left: 50%;

  background: #fff;
  width: 50%;
  height: 1.6px;

  transition: all 0.3s ease;
}

.btn-menu-toggle button span:nth-child(1) {
  top: 40%;
  transform: translate(-50%, -50%);
}

.btn-menu-toggle button span:nth-child(2) {
  top: 60%;
  transform: translate(-50%, -50%);
}

.btn-menu-toggle.open button span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-menu-toggle.open button span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  z-index: 900;
  position: fixed;
  top: 60px;
  right: 0;

  width: 80vw;
  max-width: 480px;
  height: 100vh;
  overflow: hidden;

  background: #fff;

  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;

  box-shadow: -10px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  pointer-events: auto;
}

.mobile-menu-overlay {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;

  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
}

.main_nav_mobile {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.m-gnb {
  padding-bottom: 150px;
}

.m-gnb .nav_menu a {
  display: block;
  font-family: Paperlogy;
  font-size: 2rem;
}

.m-gnb .nav_menu a.depth1 {
  position: relative;

  padding: 1.2em 1.5em;

  font-weight: 700;
}

.m-gnb .nav_menu:nth-child(even) a.depth1 {
  background: #f7f7f7;
}

.m-gnb .nav_menu a.depth1:before {
  content: "";
  display: block;

  position: absolute;
  top: 50%;
  right: 2em;
  transform: translate(0, -50%) rotate(180deg);

  width: 0.6em;
  height: 0.6em;
  background: url("/img/common/ico_menu_arrow.svg") no-repeat 50% 50% / contain;
  transition: transform 0.3s ease;
}

.m-gnb .nav_menu.active a.depth1:before {
  transform: translate(0, -50%) rotate(0);
}

.m-gnb .nav_menu .depth2 {
  display: none;
  overflow: hidden;
  height: 0px;
  border-top: 1px solid #eee;
}

.m-gnb .nav_menu.active .depth2 {
  display: block;
  overflow: hidden;
  height: auto;
}

.m-gnb .nav_menu .depth2 a {
  padding: 1em 1.5em;
  color: #606060;
}

.m-gnb .nav_menu.active .depth2_item.active a {
  color: var(--main-blue);
  font-weight: 700;
  background: #fafbff;
}

/* 
** footer
 */
.global_footer {
  background: linear-gradient(109deg, #2c60d1 0%, #194096 100%);
}

.footer-inner {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 60px 20px;

  color: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.foot-logo {
  margin-bottom: 5rem;
}

.foot-info-wrap {
  flex: 1;
  padding-right: 6rem;
}

.foot-info-wrap .info-row {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #6e95e8;
}

.foot-info-wrap .info-row:last-child {
  border: none;
}

.foot-info-wrap .info-row > strong {
  display: block;
  font-size: 3.2rem;
  margin-bottom: 1.8rem;
  font-weight: 700;
}

.foot-info-wrap .info-row > strong + p {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
}

.foot-info-wrap .tel-row {
  display: flex;
  align-items: center;
  gap: 0.2em;

  font-family: "Open Sans";
  font-size: 4.8rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.foot-info-wrap .tel-row:before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url("/img/common/ico_tel.svg") no-repeat 50% 50% / 70%;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(0, 0.1em);
}

.foot-info-wrap a.naver-map-btn {
  display: inline-block;

  font-size: 1.8rem;
  padding: 1em 2.4em 1em 3.6em;
  margin-top: 1.6rem;

  border-radius: 999px;
  background: url("/img/common/ico_naver.svg") no-repeat 2em 50%/ 1em;
  background-color: #395b98;

  transition: background-color 0.2s ease;
}

.foot-info-wrap a.naver-map-btn:hover {
  background-color: #2e4a80;
}

.foot-info-wrap .map-row {
  display: none;
  width: 100%;

  max-height: 330px;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

.foot-info-wrap .map-row #map-mobile {
  width: 100%;
  height: 60vw;
}

.foot-map-wrap {
  width: 60%;
  max-width: 1000px;
  height: 560px;
  background: #194096;
  border-radius: 2rem;
  overflow: hidden;
}

.foot-map-wrap #map-pc {
  width: 100%;
  height: 100%;
}

.time-table {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
}
.time-table .tr {
  display: flex;
  padding: 0.2em 0;
}

.time-table .th {
  width: 5.4em;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  padding-right: 1.8em;
}
.time-table .td {
  letter-spacing: 0.05em;
}

.time-table .tr p {
  font-size: 1.8rem;
  font-weight: 300;

  padding-top: 0.8em;
}

.time-table .d-ib {
  display: inline-block;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;

  border-top: 1px solid #6e95e8;
  padding-top: 4.5rem;
}

.foot-tit {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
}

.foot-utils {
  display: flex;
  justify-content: space-between;
}

.foot-links,
.foot-links ul {
  display: flex;
  gap: 3.2rem;
}

.foot-links ul li {
  position: relative;
  font-weight: 700;
}

.foot-links ul + ul li:before,
.foot-links ul li + li:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -1.6rem;
  transform: translate(0, -50%);

  width: 1px;
  height: 0.7em;

  background: #fff;
}

.foot-links ul li a:hover {
  text-decoration: underline;
}

.foot-utils .copy {
  font-weight: 700;
}

.foot-address ul {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.4rem;

  font-size: 1.4rem;
  font-weight: 300;
}

.foot-email {
  text-decoration: underline;
}

/* 
** 카카오맵 커스텀 오버레이
 */
.customoverlay {
  position: relative;
  bottom: 66px;
  border-radius: 6px;
  border: 1px solid #ccc;
  border-bottom: 2px solid #ddd;
  float: left;
}

.customoverlay:nth-of-type(n) {
  border: 0;
  box-shadow: 0px 1px 2px #888;
}

.customoverlay a {
  display: block;
  text-decoration: none;
  color: #303030;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  background: var(--main-blue);
  background: var(--main-blue)
    url(https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/arrow_white.png)
    no-repeat right 1.2rem center;
}

.customoverlay .title {
  display: block;
  text-align: center;
  background: #fff;
  margin-right: 35px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
}

.customoverlay:after {
  content: "";
  position: absolute;
  margin-left: -12px;
  left: 50%;
  bottom: -12px;
  width: 22px;
  height: 12px;
  background: url("https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/vertex_white.png")
    no-repeat 50% 50% / contain;
}

@media (max-width: 500px) {
  .customoverlay {
    bottom: 56px;
  }
}

/* 
** quick menu 
*/
.quick_link {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 2.6%;
  z-index: 900;
}

.quick_link_wrap {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}

.btn_quick_link_toggle {
  display: none;

  text-align: center;

  width: 7rem;
  height: 7rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #b4a284 0%, #b29468 100%);
  box-shadow: 0px -2px 4px 0px #b3a591 inset, 0px -4px 4px 0px #73511e inset,
    0px 2px 4px 0px #9d835e inset,
    0px 4px 4px 0px rgba(255, 255, 255, 0.6) inset;
}

.btn_quick_link_toggle svg {
  width: 60%;
  height: 60%;
}

.quick_link_list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2rem 0;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
  box-shadow: 0px -2px 4px 0px #e5d8ce inset, 0px -4px 4px 0px #ac9c90 inset;
}

.quick_link_list a {
  display: flex;
  flex-direction: column;
  align-items: center;

  font-size: 1.4rem;
  text-align: center;
  color: #303030;

  width: 5em;
  padding: 0.6em 0;
  transition: background 0.18s ease;
}

.quick_link_list a:hover {
  background: rgba(172, 156, 144, 0.26);
}

.quick_link_list .quick-icon {
  margin-bottom: 0.5em;
  transition: transform 0.3s ease;
}

.quick_link_list a:hover .quick-icon {
  transform: translateY(-2px);
}

/* 
** 간편 상담 창 
*/
.quick_reserve {
  position: fixed;
  bottom: 0;
  background: #fff;
  width: 50rem;
  z-index: 950;
  right: 8.4%;
  border-radius: 1.2rem 1.2rem 0 0;
  transition: all 0.5s ease;
  transform: translate(0, 100%);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);

  overflow: hidden;
}

.quick_reserve.active {
  transform: translateY(0);

  z-index: 1010;
}

.quick_reserve_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 2rem;
  border-bottom: 1px solid #e1e1e1;
}

.quick_reserve_header h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #303030;
  font-family: Pretendard;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.quick_reserve .btn_close {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(196deg, #b29468 29.4%, #b4a58a 88.87%);
  width: 6.4rem;
  height: 6.4rem;
}

.quick_reserve:not(.active) .quick_reserve_header:hover .btn_close {
  background: linear-gradient(196deg, #c5a371 29.4%, #b8a685 88.87%);
}

.quick_reserve .btn_close .btn-toggle-icon {
  background: url(/img/common/btn_toggle_icon_open.svg) center center no-repeat;
  width: 40%;
  height: 40%;

  transition: all 0.3s ease;
}

.quick_reserve:not(.active)
  .quick_reserve_header:hover
  .btn_close
  .btn-toggle-icon {
  animation: up-down 0.6s ease infinite;
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}

.quick_reserve.active .btn_close .btn-toggle-icon {
  background-image: url(/img/common/btn_toggle_icon_close.svg);
}

.quick_reserve_con {
  padding: 1.5rem 2.3rem;
}

.quick_reserve .quick_reserve_notice_text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quick_reserve .form_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick_reserve .input_group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.quick_reserve .input_group.row {
  flex-direction: row;
}

.quick_reserve .input_group.row .input-group-col-2 {
  width: 50%;

  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.quick_reserve .input_group label {
  color: #444;
  font-family: Pretendard;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 140%;
}

.quick_reserve .input_group input[type="text"] {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid var(--border1, #e1e1e1);
  background: #fff;
  padding: 0.4em 0.94em;
  font-family: Pretendard;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 140%;
}

.quick_reserve .input_tell {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.quick_reserve select {
  border-radius: 0.6rem;
  border: 1px solid var(--border1, #e1e1e1);
  background: #fff;

  padding: 0.6rem 1.4rem;
  font-family: Pretendard;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 140%;

  min-height: 37px;
}

.quick_reserve textarea {
  min-width: 10rem;
  min-height: 3.8rem;
  resize: none;
  border-radius: 0.6rem;
  border: 1px solid var(--border1, #e1e1e1);
  background: #fff;
  padding: 0.6rem 1.4rem;
  font-family: Pretendard;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 140%;
}

.quick_reserve select:invalid,
.quick_reserve input[type="text"]::placeholder,
.quick_reserve textarea::placeholder {
  color: #b2b0b6;
  font-family: Pretendard;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 140%;
}

.quick_reserve .input_group.date-time {
  position: relative;
}

.quick_reserve input[type="date"] {
  -webkit-appearance: none;
  appearance: none;

  position: relative;

  width: 100%;
  height: 3.5rem;
  min-height: 37px;

  border: 1px solid var(--border1, #e1e1e1);
  background: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 0.6rem;

  font-size: 1.5rem;
}

.quick_reserve input[type="date"]::-webkit-clear-button,
.quick_reserve input[type="date"]::-webkit-inner-spin-button {
  display: none;
}
.quick_reserve input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  right: 1rem;
}
.quick_reserve input[type="date"]::before {
  content: attr(data-placeholder);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;

  padding: 0.6rem 1.4rem;
  box-sizing: border-box;

  font-size: 1.5rem;
  font-weight: 300;
  color: #b2b0b6;

  display: flex;
  align-items: center;
}

.quick_reserve input[type="date"]:valid::before {
  display: none;
}
.quick_reserve input[type="date"]:valid {
  font-size: 16px;
}

.quick_reserve .submit_box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.quick_reserve .input_group.chk {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.6rem;
}

.quick_reserve .input_group.chk input[type="checkbox"] {
  background: #fff;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 0.2rem;
  border: 1px solid #e1e1e1;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.quick_reserve .input_group.chk label {
  cursor: pointer;
}

.quick_reserve .input_group.chk label {
  font-size: 13px;
}

.quick_reserve .input_group.chk a {
  color: #525252;
}

.quick_reserve .input_group.chk input[type="checkbox"]:checked {
  background: #b29468;
  border: 1px solid #b29468;
}

.quick_reserve .input_group.chk input[type="checkbox"]:checked:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(/img/common/ico_check.svg) center center no-repeat;
  width: 1.4rem;
  height: 1.4rem;
}

.quick_reserve .btn_submit {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #b4a284 0%, #b29468 100%);
  box-shadow: 0px -2px 4px 0px #b3a591 inset, 0px -4px 4px 0px #73511e inset,
    0px 2px 4px 0px #9d835e inset,
    0px 4px 4px 0px rgba(255, 255, 255, 0.6) inset,
    0px 2px 8px 0px rgba(55, 44, 44, 0.25);
}

.quick_reserve .btn_submit p {
  color: #fff;
  font-family: Pretendard;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.04em;
}

/* 
** fade up animation
 */
[data-fade],
[data-fade="up"] {
  opacity: 0;
  transform: translateY(20px);
}

[data-fade="down"] {
  transform: translateY(-20px);
}

[data-fade="left"] {
  transform: translateX(20px);
}

[data-fade="right"] {
  transform: translateX(-20px);
}

/* 
** Responsive
 */
@media (max-width: 1280px) {
  .global_header .pc-gnb .depth1 {
    padding: 0 1.5em;
  }

  .foot-map-wrap {
    width: 50%;
  }
}

@media (max-width: 1024px) {
  .top-nameplate-item {
    display: none;
  }

  .header_top {
    justify-content: flex-start;
    gap: 0;
    padding: 0 20px;
    height: 60px;
    border-bottom: 1px solid #e1e1e1;
  }

  .header_bottom {
    display: none;
    visibility: hidden;
    pointer-events: none;
  }

  .logo_column {
    width: 30rem;
  }

  .btn-menu-toggle,
  .mobile-menu,
  .btn_quick_link_toggle {
    display: block;
  }

  .quick_reserve {
    width: 100%;
    max-width: 480px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 100%);
  }

  .quick_reserve select:invalid,
  .quick_reserve input[type="text"]::placeholder,
  .quick_reserve textarea::placeholder,
  .quick_reserve .input_group input[type="text"],
  .quick_reserve textarea,
  .quick_reserve select,
  .quick_reserve input[type="text"]::placeholder,
  .quick_reserve textarea::placeholder {
    font-size: 16px;
  }

  .quick_reserve input[type="date"]::before {
    font-size: 16px;
  }

  .quick_link {
    top: auto;
    bottom: calc(5% + 4rem);
    transform: translate(0, 0);
  }

  .quick_link_list {
    transform: translate(0, 20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .quick_link_list.show {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .quick_link_list a {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .foot-info-wrap {
    width: 100%;
    padding-right: 0;
  }

  .foot-info-wrap .info-row {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }

  .foot-info-wrap .info-row:last-child {
    padding-bottom: 0;
  }

  .foot-info-wrap .map-row {
    display: block;
  }

  .foot-map-wrap {
    display: none;
  }

  .foot-utils {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.5rem;
  }

  .foot-links {
    flex-direction: column;
  }

  .foot-links ul + ul li:nth-child(odd):before {
    display: none;
  }

  .foot-address ul {
    flex-wrap: wrap;
  }

  .time-table .tr p {
    font-size: 2rem;
  }

  .foot-utils,
  .foot-address ul {
    font-size: 1.8rem;
  }

  .quick_reserve .input_group.row {
    flex-direction: column;
  }

  .quick_reserve .input_group.row .input-group-col-2 {
    width: 100%;
  }
}
