@charset "UTF-8";
/*
  header
  footer
 */
@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.opacity {
  -webkit-animation: opacity .3s 0s ease-out forwards;
  animation: opacity .3s 0s ease-out forwards;
}

.header-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 77px;
  z-index: 20;
}
.header-container.blk-ver {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.header-container.blk-ver a.logo.wht-ver {
  display: none;
}
.header-container.blk-ver a.logo.blk-ver {
  display: block;
}
.header-container .inner {
  max-width: 1280px;
  height: 77px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.header-container .inner .left-part {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-container .inner .left-part a.logo {
  width: 62px;
  height: 44px;
  margin-right: 25px;
}
.header-container .inner .left-part a.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.header-container .inner .left-part a.with-icon {
  background: #2D8EFF;
  border-radius: 21px;
  font-size: 12px;
  color: #fff;
  padding: 6px 12px;
}
.header-container .inner .left-part a.with-icon:before {
  background: url("../icons/common/copyright.png") center no-repeat;
  width: 16px;
  height: 16px;
}
.header-container .inner .middle-part ul.gnb {
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 52px;
}
.header-container .inner .middle-part ul.gnb li a {
  letter-spacing: 0;
  font-size: 16px;
  display: block;
}
.header-container .inner .middle-part ul.gnb li.list-wrap {
  position: relative;
}
.header-container .inner .middle-part ul.gnb li.list-wrap .list {
  cursor: pointer;
  font-size: 20px;
}
.header-container .inner .middle-part ul.gnb li.list-wrap:hover a.list {
  color: #2D8EFF;
  font-weight: 700;
}
.header-container .inner .middle-part ul.gnb li.list-wrap:hover .dropdown-menu {
  display: flex;
}
.header-container .inner .middle-part ul.gnb li.list-wrap ul.dropdown-menu {
  display: none;
  width: 50rem;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  position: absolute;
  left: 0;
  bottom: -85px;
  padding: 5rem 0 0;
  font-size: 1.6rem;
}
.header-container .inner .middle-part ul.gnb li.list-wrap ul.dropdown-menu li {
  padding: 10px 15px;
  border-radius: 100px;
  background: #F0F0F0;
  color: #222222;
}
.header-container .inner .middle-part ul.gnb li.list-wrap ul.dropdown-menu li:hover {
  background: #2D8EFF;
  color: #fff;
  font-weight: 600;
}
.header-container .inner .right-part {
  position: relative;
  font-size: 16px;
}
.header-container .inner .right-part a.with-icon.login:before {
  background: url("../icons/common/log-in-Bold.svg") center no-repeat;
  width: 24px;
  height: 24px;
  vertical-align: bottom;
}
.header-container .inner .right-part a.with-icon.signup:before {
  background: url("../icons/common/user-Bold.svg") center no-repeat;
  width: 24px;
  height: 24px;
  vertical-align: bottom;
  background-size: 19px;
}
.header-container .inner .right-part a.with-icon.my:before {
  background: url("../icons/common/user-my.svg") center no-repeat;
  width: 24px;
  height: 24px;
  vertical-align: bottom;
  background-size: 20px;
  margin-right: 0;
}
.header-container .inner .right-part a.with-icon.favorite:before {
  background: url("../icons/common/star-Bold.svg") center no-repeat;
  width: 24px;
  height: 24px;
  vertical-align: bottom;
  background-size: 20px;
}
.header-container .inner .right-part a.with-icon.logout:before {
  background: url("../icons/common/log-out-Bold.svg") center no-repeat;
  width: 24px;
  height: 24px;
  vertical-align: bottom;
  background-size: 19px;
}
.header-container .inner .right-part a.with-icon.alarm {
  position: relative;
  cursor: unset;
}
.header-container .inner .right-part a.with-icon.alarm .new {
  position: absolute;
  top: -2px;
  left: 8px;
  border-radius: 50%;
  background: #ff5560;
  color: #fff;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 12px;
}
.header-container .inner .right-part a.with-icon.alarm:before {
  background: url("../icons/common/bell-Bold.svg") center no-repeat;
  width: 24px;
  height: 24px;
  vertical-align: bottom;
  margin: 0;
  cursor: pointer;
}
.header-container .inner .right-part .alarm-appear-box {
  position: absolute;
  top: 60px;
  left: -200px;
  padding: 2rem;
  background: #fff;
  width: 450px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1607843137);
  border-radius: 28px;
  display: none;
}
.header-container .inner .right-part .alarm-appear-box.on {
  display: block;
}
.header-container .inner .right-part .alarm-appear-box .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 22px;
}
.header-container .inner .right-part .alarm-appear-box .head .title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
}
.header-container .inner .right-part .alarm-appear-box .head .title .detail {
  color: #A4A4A4;
  font-weight: 600;
  font-size: 16px;
  margin-left: 14px;
}
.header-container .inner .right-part .alarm-appear-box .head button {
  background: transparent;
  padding: 0;
}
.header-container .inner .right-part .alarm-appear-box .alarm-list-wrap {
  max-height: 610px;
  overflow-y: auto;
}
.header-container .inner .right-part .alarm-appear-box .alarm-list-wrap .no-alarm {
  text-align: center;
  margin-top: 3rem;
  color: #222;
}
.header-container .inner .right-part .alarm-appear-box .alarm-list-wrap .list {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #222;
  padding: 14px;
  border-radius: 8px;
  background: #F8F8F8;
  width: 100%;
  font-size: 14px;
  margin-bottom: 12px;
  cursor: pointer;
}
.header-container .inner .right-part .alarm-appear-box .alarm-list-wrap .list .color-blue {
  font-weight: 700;
}
.header-container .inner .right-part .alarm-appear-box .alarm-list-wrap .list .f-w-500 {
  line-height: initial;
}
.header-container .inner .m-ver-menu {
  display: none;
}
.header-container .inner .m-ver-menu button {
  background: transparent;
  padding: 5px;
}
.header-container .inner .m-ver-menu button.blk-m {
  display: inline-block;
}
.header-container .inner .m-ver-menu button.wht-m {
  display: none;
}
.header-container.wht-ver {
  background: transparent;
}
.header-container.wht-ver.filter {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}
.header-container.wht-ver a.logo.wht-ver {
  display: block;
}
.header-container.wht-ver a.logo.blk-ver {
  display: none;
}
.header-container.wht-ver .middle-part {
  color: #fff;
}
.header-container.wht-ver .right-part {
  color: #fff;
}
.header-container.wht-ver .right-part a.with-icon.login:before {
  background: url("../icons/common/log-in-Bold_wht.svg") center no-repeat;
}
.header-container.wht-ver .right-part a.with-icon.signup:before {
  background: url("../icons/common/user-Bold_wht.svg") center no-repeat;
  width: 24px;
  height: 24px;
  vertical-align: bottom;
  background-size: 19px;
}
.header-container.wht-ver .right-part a.with-icon.my:before {
  background: url("../icons/common/user-my_wht.svg") center no-repeat;
}
.header-container.wht-ver .right-part a.with-icon.favorite:before {
  background: url("../icons/common/star-Bold_wht.svg") center no-repeat;
}
.header-container.wht-ver .right-part a.with-icon.logout:before {
  background: url("../icons/common/log-out-Bold_wht.svg") center no-repeat;
}
.header-container.wht-ver .right-part a.with-icon.alarm:before {
  background: url("../icons/common/bell-Bold_wht.svg") center no-repeat;
}
.header-container.wht-ver .m-ver-menu button {
  background: transparent;
}
.header-container.wht-ver .m-ver-menu button.wht-m {
  display: inline-block;
}
.header-container.wht-ver .m-ver-menu button.blk-m {
  display: none;
}

.right-fixed-part {
  position: fixed;
  right: 80px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 9;
}
.right-fixed-part button {
  width: 120px;
  height: 120px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1607843137);
  border-radius: 50%;
}
.right-fixed-part button.dispatch-req {
  color: #fff;
  background: #2D8EFF;
  flex-direction: column;
}
.right-fixed-part button.dispatch-req img {
  display: block;
  margin: 0 auto 12px;
}
.right-fixed-part button.move-top-btn {
  background: #222;
}
.right-fixed-part button:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  background: #525252;
  font-size: 1.4rem;
  font-weight: 500;
}
footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px 20px;
  height: 100%;
}
footer .footer-inner .f-logo {
  width: 170px;
  height: 44px;
}
footer .footer-inner .f-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .footer-inner .color-grey {
  color: #a4a4a4;
}
footer .footer-inner .logo-area, footer .footer-inner .top, footer .footer-inner .middle-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-inner .logo-area {
  padding-bottom: 28px;
  border-bottom: 2px solid #a4a4a4;
}
footer .footer-inner .logo-area .right-part {
  display: flex;
  gap: 1.5rem;
}
footer .footer-inner .top {
  color: #fff;
  margin: 10px 0;
  font-weight: 600;
  font-size: 14px;
}
footer .footer-inner .middle-part {
  color: #fff;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: normal;
}
footer .footer-inner .middle-part ul {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
footer .footer-inner .middle-part p {
  color: #a4a4a4;
  letter-spacing: 0;
}
footer .footer-inner .middle-part .right-part p {
  margin-bottom: 0.8rem;
  font-weight: 600;
}
footer .footer-inner .middle-part .right-part .layout {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.hamburger-menu-area {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  overflow-y: auto;
  background: #FFFFFF;
  padding: 11px 20px 22px 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.hamburger-menu-area.on {
  display: flex;
}
.hamburger-menu-area .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
.hamburger-menu-area .head button {
  background: transparent;
  padding: 0;
}
.hamburger-menu-area .head .main_logo {
  width: 56px;
  height: 40px;
}
.hamburger-menu-area .head .main_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.hamburger-menu-area .ham-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.hamburger-menu-area .ham-list-wrap .ham-list, .hamburger-menu-area .ham-list-wrap .list {
  padding-bottom: 12px;
  border-bottom: 1px solid #222;
}
.hamburger-menu-area .ham-list-wrap .ham-list .title-alink, .hamburger-menu-area .ham-list-wrap .list .title-alink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 700;
}
.hamburger-menu-area .ham-list-wrap .ham-list .title-alink img.open, .hamburger-menu-area .ham-list-wrap .list .title-alink img.open {
  display: block;
}
.hamburger-menu-area .ham-list-wrap .ham-list .title-alink img.open.drop, .hamburger-menu-area .ham-list-wrap .list .title-alink img.open.drop {
  display: none;
}
.hamburger-menu-area .ham-list-wrap .ham-list .title-alink img.close, .hamburger-menu-area .ham-list-wrap .list .title-alink img.close {
  display: none;
}
.hamburger-menu-area .ham-list-wrap .ham-list .title-alink img.close.drop, .hamburger-menu-area .ham-list-wrap .list .title-alink img.close.drop {
  display: block;
}
.hamburger-menu-area .ham-list-wrap .ham-list .ham-drop-area, .hamburger-menu-area .ham-list-wrap .list .ham-drop-area {
  padding-left: 62px;
  font-weight: 600;
  margin-top: 24px;
  display: none;
}
.hamburger-menu-area .ham-list-wrap .ham-list .ham-drop-area.toggle, .hamburger-menu-area .ham-list-wrap .list .ham-drop-area.toggle {
  display: block;
}
.hamburger-menu-area .ham-list-wrap .ham-list .ham-drop-area .drop-list, .hamburger-menu-area .ham-list-wrap .list .ham-drop-area .drop-list {
  margin-bottom: 12px;
}
.hamburger-menu-area .ham-list-wrap .ham-list .ham-drop-area .drop-list a, .hamburger-menu-area .ham-list-wrap .list .ham-drop-area .drop-list a {
  font-size: 16px;
}
.hamburger-menu-area .ham-list-wrap .ham-list .ham-drop-area .drop-list:last-of-type, .hamburger-menu-area .ham-list-wrap .list .ham-drop-area .drop-list:last-of-type {
  margin-bottom: 0;
}
.hamburger-menu-area .menu-bottom ul li.f-w-700.f-s-20 {
  margin: 8px 0 15px;
}
.hamburger-menu-area .menu-bottom ul li.grey {
  color: #a4a4a4;
  margin-top: 8px;
}
.hamburger-menu-area .menu-bottom div {
  font-size: 12px;
  color: #a4a4a4;
  margin: 30px 0 0;
  font-weight: 500;
  letter-spacing: 0;
}

.m-copyright {
  display: none;
}

.right-part2 button:nth-child(1) {
  margin-right: 8px;
}

/* 테블릿 모바일 */
@media screen and (max-width: 1024px) {
  .header-container {
    height: 61px;
  }
  .header-container .inner {
    height: 61px;
    padding: 22.5px 20px;
  }
  .header-container .inner .left-part a.with-icon {
    display: none;
  }
  .header-container .inner .left-part a.logo {
    width: 56px;
    height: 40px;
  }
  .header-container .inner .middle-part {
    display: none;
  }
  .header-container .inner .right-part {
    display: flex;
    align-items: center;
  }
  .header-container .inner .right-part a.with-icon {
    padding: 5px !important;
  }
  .header-container .inner .right-part a.with-icon span {
    display: none;
  }
  .header-container .inner .right-part a.with-icon:before {
    margin: 0;
    background-size: 20px !important;
    vertical-align: middle !important;
  }
  .header-container .inner .m-ver-menu {
    display: inline-block;
  }
  .right-fixed-part {
    right: 30px;
    bottom: 30px;
    gap: 12px;
  }
  .right-fixed-part button {
    width: 68px;
    height: 68px;
  }
  .right-fixed-part button.dispatch-req img {
    width: 26.5px;
    height: 20px;
    margin: 0 auto !important;
  }
  .right-fixed-part button span {
    display: none;
  }
  footer .footer-inner {
    padding: 40px 20px;
  }
  footer .footer-inner .divider {
    display: none;
  }
  footer .footer-inner .top {
    margin-top: 0;
    flex-wrap: wrap;
  }
  footer .footer-inner .middle-part ul {
    flex-wrap: wrap;
  }
}
a.call-req {
  display: none;
}

/* 모바일 */
@media screen and (max-width: 767px) {
  a.call-req {
    background: white;
    color: #fff;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1607843137);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  a.call-req img {
    width: 26.5px;
    margin: 0 auto !important;
  }
  a.call-req span {
    display: none;
  }
  .m-copyright {
    display: block;
  }
  .pc-copyright {
    display: none;
  }
  .right-fixed-part {
    right: 15px;
    bottom: 20px;
    gap: 12px;
  }
  .header-container .inner .right-part {
    position: unset;
  }
  .header-container .inner .right-part .alarm-appear-box {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
  }
  .header-container .inner .right-part .alarm-appear-box .alarm-list-wrap {
    height: 518px;
  }
  footer .footer-inner {
    padding: 30px 20px;
  }
  footer .footer-inner .logo-area {
    border-bottom: none;
  }
  footer .footer-inner .logo-area a img {
    width: 90%;
  }
  footer .footer-inner .middle-part ul {
    margin-bottom: 0;
  }
  footer .footer-inner .middle-part ul.first {
    margin-bottom: 16px;
    gap: 4px;
    flex-direction: column;
  }
  footer .footer-inner .middle-part .left-part {
    margin: 10px 0 20px;
  }
  footer .footer-inner .middle-part .left-part .layout {
    width: 100%;
    display: inline;
  }
  footer .footer-inner .middle-part .left-part .layout li:nth-child(1) {
    margin-bottom: 4px;
  }
  footer .footer-inner .m-copyright {
    margin-top: 20px;
    font-size: 12px;
  }
}

/*# sourceMappingURL=public.css.map */
