#hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 40px 50px;
  z-index: 9;
  transition: all 0.3s;
}
#hd h1 {
  width: 195px;
  filter: brightness(0) invert(1);
  transition: all 0.3s;
}
#hd h1 img {
  width: 100%;
}
#hd .hd__wrapper {
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#hd .hd__right {
  display: flex;
  align-items: center;
}
#hd .hd__right #gnb {
  padding-right: 2em;
}

#gnb nav {
  display: flex;
  gap: 34px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  align-items: center;
}
#gnb nav .site__en {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
#gnb nav .site__en::before {
  content: "";
  display: block;
  background: url(/img/common/en.png) no-repeat center/cover;
  width: 24px;
  height: 24px;
}

#gnb dl {
  position: relative;
  transition: all 1s;
}

#gnb dl dt {
  position: relative;
  white-space: nowrap;
}

#gnb dl dt a {
  color: #fff;
  padding: 10px 15px;
  display: inline-block;
  transition: color 0.3s;
}

.submenu-wrap {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  padding: 10px 0;
  z-index: 1000;
  text-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

#gnb dl:hover .submenu-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  text-align: center;
  white-space: nowrap;
}

.submenu-wrap dd {
  padding: 10px 20px;
  margin: 0;
}

.submenu-wrap dd a {
  color: #333;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

.quick {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 9999;
  transition: bottom 0.3s ease-out;
}
.quick a {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #fff;
  display: block;
  margin-bottom: 7px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.quick .qway {
  background-color: var(--theme-color);
  background-image: url(/img/main/quick__way.png);
  background-repeat: no-repeat;
  background-position: center;
}
.quick .call {
  background-color: var(--theme-color);
  background-image: url(/img/main/quick__call.png);
  background-repeat: no-repeat;
  background-position: center;
}
.quick .top {
  background-color: #8ea3b2;
  background-image: url(/img/main/quick__top.png);
  background-repeat: no-repeat;
  background-position: center;
}

#btn-menu {
  position: relative;
  width: 30px;
  height: 24px;
  font-size: 0;
  border: 0;
  outline: none;
  z-index: 9999;
  background: none;
  cursor: pointer;
  transition: all 0.5s;
}
#btn-menu span, #btn-menu::before, #btn-menu::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #ffffff;
  color: transparent;
  overflow: hidden;
  position: absolute;
  right: 0;
}
#btn-menu::before {
  top: 0;
  transition: transform 0.15s 0s, top 0.3s 0.3s;
}
#btn-menu span {
  top: 11px;
  transition: transform 0.3s;
}
#btn-menu::after {
  bottom: 0;
  transition: transform 0.15s 0s, bottom 0.3s 0.3s;
}
#btn-menu .bar {
  transition: all 0.3s;
  transform-origin: center;
}
#btn-menu .bar.top,
#btn-menu .bar.bot {
  transition: translateY 0.2s 0s, rotate 0.2s 0.2s, translate 0.2s 0.2s;
}
#btn-menu.active .top {
  transform: translateY(14px) rotate(45deg) translate(-11px, -22px);
}
#btn-menu.active .bot {
  transform: translateY(-14px) rotate(-45deg) translate(-8px, 24px);
}
#btn-menu.active .mid {
  transform: scaleX(0);
}

#sitemap {
  width: 95%;
  max-width: 1800px;
  margin: 10px 10px 0 10px;
  position: fixed;
  top: -700px;
  left: 50%;
  transform: translatex(-50%);
  z-index: 9;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
#sitemap .logo {
  position: absolute;
  left: 51px;
  top: 60px;
  display: flex;
  align-items: flex-end;
  transition: 0.3s;
}
#sitemap .logo img {
  width: 200px;
}
#sitemap nav {
  width: 100%;
  display: flex;
  padding: 165px 20px 35px;
  background: #fff;
  border-radius: 20px;
}
#sitemap nav dl {
  width: 25%;
  padding: 0 2% 30px;
}
#sitemap nav dl dt {
  height: 27px;
  font-size: 19px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
#sitemap nav dl dt .button-text {
  transition: 0.3s;
}
#sitemap nav dl dt .button-text-bottom {
  color: var(--theme-color);
  transition: 0.3s;
}
#sitemap nav dl dd {
  font-size: 16px;
  word-break: keep-all;
}
#sitemap nav dl dd a {
  transition: 0.3s;
}
#sitemap nav dl dd a:hover {
  color: var(--theme-color);
}
#sitemap nav dl dd:not(:last-child) {
  padding-bottom: 10px;
}
#sitemap nav dl:hover dt .button-text {
  margin-top: -29px;
}
#sitemap nav dl:not(:last-child) {
  border-right: 1px solid #ccc;
}
#sitemap #mb-mn {
  font-size: 14px;
  background: #fff;
  border-radius: 20px;
  margin-top: 10px;
  padding: 15px 25px;
}
#sitemap #mb-mn ul {
  display: flex;
  justify-content: flex-end;
}
#sitemap #mb-mn ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 13px;
  background: #1e1e1e;
  margin: 0 10px;
  transform: translatey(2px);
}

body.menu-active #hd {
  z-index: 9999;
}
body.menu-active #hd h1 {
  opacity: 0;
  pointer-events: none;
}
body.menu-active #gnb dl {
  display: none;
}
body.menu-active #sitemap {
  z-index: 999;
  opacity: 1;
  top: 0;
}
body.menu-active #btn-menu span {
  transform: scale(0);
  transform-origin: center;
  background: var(--theme-color);
}
body.menu-active #btn-menu::before {
  top: 11px;
  transform: rotate(45deg);
  transition: top 0.15s 0s, transform 0.3s 0.3s;
  background: var(--theme-color);
}
body.menu-active #btn-menu::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom 0.15s 0s, transform 0.3s 0.3s;
  background: var(--theme-color);
}

body.hd-fixed #hd {
  background: #fff;
  padding: 20px 50px;
}
body.hd-fixed #hd h1 {
  filter: none;
}
body.hd-fixed #gnb dl dt a {
  color: var(--theme-color);
}
body.hd-fixed #gnb .site__en {
  color: var(--theme-color);
}
body.hd-fixed #btn-menu span, body.hd-fixed #btn-menu::before, body.hd-fixed #btn-menu::after {
  background: var(--theme-color);
}

body.menu-active.hd-fixed #hd {
  background: none;
}

@media (max-width: 1370px) {
  #gnb {
    display: none;
  }
}
@media (max-width: 1200px) {
  #sitemap .logo {
    left: 39px;
    top: 28px;
  }
  #sitemap nav {
    padding-top: 125px;
  }
  #sitemap nav dl dt {
    font-size: 18px;
  }
  #sitemap nav dl dd {
    font-size: 15px;
  }
}/*# sourceMappingURL=hd.min.css.map */