.main-sect { position:relative; padding: 128px 0;}
/* ============================================
   Header
   ============================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 2%;
  width: 96%;
  height: auto;
  z-index: 16;
  background: #fbf8f2;
  margin: 10px 0 0;
  border-radius: 28px;
  transition: 1s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
  animation: headshow 1s ease-out 1s forwards;
  display: inline-block;
  transform-origin: center;
}

@keyframes headshow {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.gnb-container.open .main-header {
  border-radius: 0;
}

.ht-inner {
  position: relative;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}

.ht-inner__center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-header .logo {
  width: auto;
  padding: 4px 0;
  position: relative;
}

.main-header .logo > a > .logo-w {
  display: block;
}

.main-header .logo > a > .logo-b {
  display: none;
}

.main-header .logo > a img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
}

.ht-inner__right {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
}

.ht-inner__right .loca {
  font-size: 14px;
  font-weight: 400;
  color: #3c3c3c;
}

/* 헤더 드롭다운 */
.header-lang {
  position: relative;
}

.language.open-on-hover {
  position: relative;
}

.select-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  color: #3c3c3c;
  cursor: pointer;
}

.arrow-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #3c3c3c;
  border-right: 1px solid #3c3c3c;
  transform: rotate(135deg);
  transition: transform 0.3s;
}

.language:hover .arrow-icon {
  transform: rotate(-45deg);
}

.lang-select-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  padding: 8px 0;
  min-width: 120px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  list-style: none;
}

.language:hover .lang-select-list {
  display: block;
}

.language.open-on-hover:hover::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.lang-select-list li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #3c3c3c;
}

.lang-select-list li a:hover {
  font-weight: 600;
}

/* 햄버거 메뉴 */
.hamburger {
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.hd-menu {
  position: relative;
  display: block;
  width: 31px;
  height: 18px;
  cursor: pointer;
  z-index: 1;
}

.hd-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6a605a;
  border-radius: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.25s;
}

.hd-menu span:first-child {
  top: 0;
}

.hd-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hd-menu span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.hd-menu:hover span {
  background: #d3c2b2;
}

.hamburger.open .hd-menu span {
  background: #6a605a;
}

.hamburger.open .hd-menu span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.open .hd-menu span:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}

.hamburger.open .hd-menu span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}

/* ============================================
   GNB (풀스크린 메뉴)
   ============================================ */
.gnb-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.320, 1);
  transform: translateY(-500px);
  transition: transform 1s, opacity 0.8s;
}

.gnb-container.open {
  opacity: 1;
  visibility: visible;
  background: #fbf8f2;
  transform: translateY(0);
}

.gnb-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #95867e;
}

.gnb-inner {
  width: 100%;
  height: 500px;
  padding-top: 64px;
}

.gnb-inner .flex_row {
  height: 100%;
  justify-content: center;
  border-top: 1px solid #95867e;
  display: flex;
  flex-wrap: wrap;
}

.gnb-menu-list {
  position: relative;
  border-right: 1px solid #95867e;
  width: 25%;
}

.gnb-menu-depth-1-1 {
  padding: 14px 0;
  border-bottom: 1px solid #95867e;
  padding-left: 50px;
  margin-bottom: 50px;
}

.gnb-menu-depth-1-1 .gnb-menu-depth-inner > a.hd-gnb-title-01 {
  font-family: var(--font-primary), serif;
  font-size: 19px;
  color: #000;
  font-weight: 500;
}

.gnb-menu-depth-1 {
  position: relative;
  padding-left: 50px;
  color: #040000;
}

.gnb-menu-depth-1 + .gnb-menu-depth-1 {
  margin-top: 21px;
}

.gnb-menu-depth-1 .gnb-menu-depth-inner > a {
  color: #040000;
  font-size: 19px;
  font-weight: 400;
}

.gnb-menu-depth-inner a.h4 {
  transition: 0.4s ease;
}

.gnb-menu-depth-inner:hover a.h4 {
  color: #95867e;
}

.gnb-menu-depth-2 {
  left: 115px;
  top: 50%;
  transform: translate(0, -50%);
  position: absolute;
  bottom: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0 19px;
}

.gnb-menu-depth-2 > li > a {
  font-size: 16px;
  color: #040000;
  transition: 0.3s;
}

.gnb-menu-depth-2 > li > a:hover {
  color: #95867e;
}

.gnb-number-wrap {
  position: absolute;
  left: 56px;
  bottom: 48px;
  z-index: 1;
}

.login-wrap {
  position: relative;
  width: auto;
  z-index: 16;
}

.gnb-container.open .login-wrap {
  display: block;
}

.login-menu-item {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  color: #3c3c3c;
  font-weight: 600;
}

.login-menu-item:first-child {
  padding-left: 0;
}

.login-menu--member {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
}

.member-name {
  font-size: 16px;
  font-weight: 600;
  color: #3c3c3c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.login-menu-item--logout {
  color: #95867e !important;
  font-weight: 600;
}

.gnb-menu-list-m {
  display: none;
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   Responsive - Mobile (GNB)
   ============================================ */
@media (max-width: 1024px) {
    .gnb-container {
        width: 100%;
        height: 100vh;
    }

    .gnb-inner.pc-cont-1024 {
        display: none;
    }

    .gnb-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: none;
    }

    .gnb-menu-list-m.m-cont-1024 {
        display: none;
        flex: 1;
        min-height: 0;
        position: relative;
        width: 100%;
        height: 100%;
        padding: 128px 20px 112px;
        overflow-x: hidden;
        overflow-y: auto;
        background: none;
        visibility: visible;
        opacity: 0;
        margin-top: 0;
    }

    .gnb-container.open .gnb-menu-list-m {
        display: block;
        opacity: 1;
        visibility: visible;
        border-radius: 0;
        transform-origin: left top;
        transition: all 1.2s ease;
    }

    .gnb-menu-list-m::before {
        display: none;
    }

    /* 스크롤바 스타일 */
    .gnb-menu-list-m::-webkit-scrollbar {
        width: 5px;
    }
    .gnb-menu-list-m::-webkit-scrollbar-track {
        background: rgba(240, 240, 240, 0);
    }
    .gnb-menu-list-m::-webkit-scrollbar-thumb {
        background: #95867e;
        border-radius: 10px;
    }
    .gnb-menu-list-m::-webkit-scrollbar-thumb:hover {
        background: #95867e;
    }

    .gnb-menu-list-m .gnb-menu-depth-1 {
        position: relative;
        width: 100%;
        height: auto;
        margin-left: 0;
        display: block;
        overflow: hidden;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-left: 0;
        margin-top: 0;
    }

    .gnb-menu-list-m .gnb-menu-depth-1 + .gnb-menu-depth-1 {
        margin-top: 0;
    }

    .gnb-menu-list-m .gnb-menu-depth-1-1 {
        padding: 0;
        padding-left: 0;
        margin-bottom: 0;
    }

    .gnb-menu-list-m .gnb-menu-depth-1 > a {
        position: relative;
        display: inline-block;
        width: 100%;
        text-align: left;
        font-size: 18px;
        padding: 16px 0;
        opacity: 0;
        transform: translateY(20px);
    }

    .gnb-menu-list-m .gnb-menu-depth-1 > a::after {
        content: '+';
        display: block;
        position: absolute;
        top: 50%;
        right: 16px;
        width: auto;
        height: auto;
        font-size: 80px;
        color: #95867e;
        transform: translateY(-50%) translateZ(0);
        transition: transform 0.3s;
        font-weight: 100;
    }

    .gnb-menu-list-m .gnb-menu-depth-1 > a.on::after {
        transform: translateY(-50%) translateZ(0) rotate(45deg);
    }

    /* 메뉴 오픈 시 순차 애니메이션 */
    .gnb-container.open .gnb-menu-list-m > li:nth-child(1) > a {
        opacity: 1;
        transform: translateY(0);
        transition: transform 1s 0.8s ease, opacity 1s 0.8s ease;
    }
    .gnb-container.open .gnb-menu-list-m > li:nth-child(2) > a {
        opacity: 1;
        transform: translateY(0);
        transition: transform 1s 0.9s ease, opacity 1s 0.9s ease;
    }
    .gnb-container.open .gnb-menu-list-m > li:nth-child(3) > a {
        opacity: 1;
        transform: translateY(0);
        transition: transform 1s 1s ease, opacity 1s 1s ease;
    }
    .gnb-container.open .gnb-menu-list-m > li:nth-child(4) > a {
        opacity: 1;
        transform: translateY(0);
        transition: transform 1s 1.1s ease, opacity 1s 1.1s ease;
    }

    .gnb-menu-list-m .gnb-menu-depth-1:hover > a,
    .gnb-menu-list-m .gnb-menu-depth-1.on > a {
        color: #95867e;
    }

    .gnb-menu-list-m .gnb-menu-depth-2 {
        position: static;
        height: auto;
        display: none;
        padding: 0 0 16px;
        transform: none;
    }

    .gnb-menu-list-m .gnb-menu-depth-1.on .gnb-menu-depth-2 {
        display: block;
    }

    .gnb-menu-list-m .gnb-menu-depth-2 > li {
        padding: 0;
        margin-bottom: 10px;
        width: 100%;
        text-align: left;
    }

    .gnb-menu-list-m .gnb-menu-depth-2 > li > a {
        display: block;
        width: auto;
        padding: 6px 16px;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: -0.02em;
    }

    .gnb-menu-list-m .gnb-menu-depth-2 li + li {
        margin-left: 0;
    }

    .gnb-menu-list-m .gnb-menu-depth-2 li i {
        position: relative;
        margin-left: 5px;
        transform: none;
    }

    .login-wrap {
        display: block;
    }

    .gnb-menu-list-m .gnb-number-wrap {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: auto;
        padding-top: 32px;
    }

    .gnb-number-wrap {
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .main-header {
        left: 2%;
        width: 96%;
        max-width: 100vw;
        margin: 10px 0 0;
        border-radius: 28px;
        box-sizing: border-box;
    }

    .ht-inner {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .ht-inner__center {
        justify-content: flex-start;
        flex: 1;
        min-width: 0;
    }

    .ht-inner__right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        gap: 8px;
        flex-shrink: 0;
    }

    .main-header .logo > a img {
        max-width: 100px;
    }

    .select-lang-btn {
        padding: 6px 8px;
        font-size: 12px;
        gap: 4px;
    }

    .arrow-icon {
        width: 6px;
        height: 6px;
    }

    .hd-menu {
        width: 24px;
        height: 16px;
    }
}


/* ============================================
   Footer
   ============================================ */
.footer {
  position: relative;
  width: 100%;
  background: #fbf8f2;
}

.foot-inner {
  margin: 0 64px;
  padding: 20px 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-top: 1px solid #919191;
}

.foot_btns {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #68635f;
  width: 40%;
}

.foot_btns.mo {
  display: none;
}

.foot_btns li {
  position: relative;
}

.foot_btns li + li {
  margin-left: 32px;
}

.foot_btns li::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #68635f;
  left: -16px;
}

.foot_btns li:nth-of-type(1)::before {
  display: none;
}

.f_logo {
  width: 120px;
  height: auto;
}

.foot_copy {
  font-size: 13px;
  color: #68635f;
  width: 40%;
  text-align: right;
}

@media (max-width: 1280px) {
  .foot-inner {
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .foot-inner {
    flex-direction: column;
    padding: 32px 0;
  }
  .foot_btns.pc {
    display: none;
  }
  .foot_btns.mo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
  }
  .foot_copy {
    text-align: center;
    width: 100%;
    margin-top: 32px;
  }
}

/* ============================================
   팝업 모달
   ============================================ */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.popup-modal.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 89;
}

.popup-container {
  position: relative;
  width: 90%;
  max-width: 920px;
  max-height: 85vh;
  background: linear-gradient(180deg, #2d2520 0%, #1a1512 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.popup-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.popup-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.popup-slide.active {
  display: block;
}

.popup-slide .popup-image,
.popup-slide .popup-image-link {
  width: 100%;
  height: 100%;
  display: block;
  vertical-align: top;
}

.popup-slide .popup-image-link {
  text-decoration: none;
  line-height: 0;
}

.popup-slide .popup-image-link img,
.popup-slide .popup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .popup-image-wrapper,
  .popup-slide,
  .popup-slide .popup-image-link {
    height: auto !important;
  }
  .popup-slide .popup-image-link img,
  .popup-slide .popup-image {
    width: 100% !important;
    height: auto !important;
  }
}

.popup-tabs {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: white;
  border-top: 1px solid rgba(120, 100, 84, 0.4);
}

.popup-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(120, 100, 84, 0.4);
  color: #786454;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  min-width: 0;
}

.popup-tab-btn:last-child {
  border-right: none;
}

.popup-tab-btn:hover,
.popup-tab-btn.active {
  background: rgba(120, 100, 84, 0.08);
  color: #2d2520;
}

@media (max-width: 767px) {
  .popup-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #fff;
  }

  .popup-tab-btn {
    flex: none;
    max-width: none;
    width: auto;
    min-width: 0;
    border: none;
    box-shadow:
      1px 0 0 rgba(120, 100, 84, 0.35),
      0 1px 0 rgba(120, 100, 84, 0.35);
    background: #fff;
    justify-content: center;
    align-items: center;
    padding: 12px 10px;
    font-size: 13px;
    line-height: 1.3;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: center;
  }
}

.popup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 10px;
  background: #95867e;
  border-radius: 0 0 20px 20px;
}

.popup-footer span,
.popup-hide-day {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}

.popup-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.popup-close-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.popup-close-btn:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .popup-footer {
    padding: 0 12px;
  }

  .popup-footer span,
  .popup-hide-day {
    font-size: 14px;
    line-height: 1.35;
    gap: 8px;
  }

  .popup-close-btn {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    box-sizing: border-box;
  }

  .popup-close-btn img {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   Quick Menu
   ============================================ */
.quick-menu {
  position: fixed;
  bottom: 2.5rem;
  right: 1.5rem;
  z-index: 9999;
}

.quick-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.quick-wrap > .quick-btn-area {
  position: relative;
  align-self: flex-end;
  margin-right: calc((143px - 50px) / 2);
}

.quick-wrap > .top_btn01 {
  position: relative;
  align-self: flex-end;
  margin-right: calc((143px - 16px) / 2);
  align-items: center;
  justify-content: center;
}

.quick-button-group {
  position: absolute;
  width: 143px;
  right: 0;
  bottom: calc(50px + 20px);
  pointer-events: none;
  transition: bottom 0.3s ease;
}

.quick-wrap.is-active .quick-button-group {
  height: auto;
  pointer-events: auto;
}

.quick-social-icon {
  display: block;
  opacity: 0;
}

.quick-wrap.is-active .quick-social-icon {
  opacity: 1;
}

.quick-social-icon .title-wrap {
  font-weight: 600;
  border: 1px solid #786454;
  letter-spacing: -0.5px;
  gap: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 100%;
  border-radius: 2rem;
  background: #fff;
  margin-bottom: 9px;
  font-size: 15px;
  padding: 0 15px;
  height: 45px;
  text-decoration: none;
  opacity: 0;
}

.quick-wrap.is-active .quick-social-icon .title-wrap {
  opacity: 1;
}

.quick-social-icon .icon-social {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.quick-social-icon .tit {
  cursor: pointer;
  color: #786454;
  display: flex;
  align-items: center;
  line-height: 1;
}

.quick-btn-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.quick-btn-area .quick-bg {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  border-radius: 100%;
  background: #95867e;
  transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  overflow: hidden;
}

.quick-wrap.is-active .quick-btn-area .quick-bg {
  display: none;
}

.open_btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.open_btn > div {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  display: inline-block;
  margin: 0 3px;
  background-color: #fff;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  transition: 0.3s ease;
}

.open_btn .bounce1 {
  animation-delay: -0.32s;
}

.open_btn .bounce2 {
  animation-delay: -0.16s;
}

.chatbot_button_icon {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.quick-close-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #575757;
  border-radius: 50%;
  opacity: 0;
  transform: rotate(-135deg);
  transition: background 0ms ease 500ms, opacity 0ms ease 500ms, transform 500ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.quick-wrap.is-active .quick-close-btn {
  transform: rotate(0deg);
  transition: transform 330ms cubic-bezier(0.215, 0.61, 0.355, 1) 150ms;
  opacity: 1;
}

.quick-close-btn span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  background-color: #fff;
}

.quick-close-btn span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(47deg);
}

.quick-close-btn span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(313deg);
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

#top_btn {
  position: relative;
  bottom: inherit;
  right: inherit;
  border: 0;
  background: none;
  z-index: 10;
}

#top_btn:hover {
  border: 0;
  background: none;
  color: inherit;
}

#quick .top_btn01 {
  position: relative;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.top_btn01 svg {
  width: 15px;
  height: 35px;
}

.top_btn01 svg line {
  stroke: #000;
  transition: stroke 0.3s ease;
}

@media (max-width: 767px) {
  .quick-menu {
    bottom: 1.25rem;
    right: 1rem;
  }
  .quick-wrap {
    gap: 12px;
    align-items: center;
  }
  .quick-wrap > .quick-btn-area,
  .quick-wrap > .top_btn01 {
    align-self: center;
    margin-right: 0;
    margin-left: 0;
  }
  .quick-button-group {
    width: 44px;
    bottom: calc(44px + 12px);
    left: 50%;
    right: auto;
    margin-left: -22px;
  }
  .quick-social-icon .title-wrap .tit {
    display: none;
  }
  .quick-social-icon .title-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    margin-bottom: 8px;
    justify-content: center;
    border-radius: 50%;
  }
  .quick-social-icon .icon-social {
    width: 22px;
    height: 22px;
  }
  .quick-btn-area,
  .quick-btn-area .quick-bg,
  .chatbot_button_icon,
  .quick-close-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .quick-button-group {
    width: 40px;
    bottom: calc(40px + 10px);
    left: 50%;
    right: auto;
    margin-left: -19px;
  }
  .quick-social-icon .title-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-bottom: 6px;
  }
  .quick-social-icon .icon-social {
    width: 20px;
    height: 20px;
  }
  .quick-btn-area,
  .quick-btn-area .quick-bg,
  .chatbot_button_icon,
  .quick-close-btn {
    width: 35px !important;
    height: 35px !important;
  }

  .quick-close-btn span{
    width: 20px;
  }
}