#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: top 0.6s ease-out;
}
#header.is-hide {
  top: -100%;
}
#header.ver-bk .h-inner, #header.include_footer .h-inner {
  color: #000;
  background-color: #fff;
}
#header.ver-bk .h-inner .h-logo a, #header.include_footer .h-inner .h-logo a {
  background-image: url(../images/icon/h-logo-bk.png);
}
#header.ver-bk .h-inner .h-btns button.h-global, #header.include_footer .h-inner .h-btns button.h-global {
  background-image: url(../images/icon/h-language-bk.svg);
}
#header.ver-bk .h-inner .h-btns button.h-mail, #header.include_footer .h-inner .h-btns button.h-mail {
  background-image: url(../images/icon/h-mails-bk.svg);
}
#header.ver-bk .h-inner .h-btns button.h-hamburger span, #header.include_footer .h-inner .h-btns button.h-hamburger span {
  background-color: #000;
}

.h-mo {
  display: none !important;
}

.h-inner {
  width: 100%;
  height: 68px;
  padding: 0 240px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px transparent;
  color: #fff;
  transition: border 0.1s ease-out;
}
.h-inner.is-active {
  color: #000;
  border-bottom: solid 1px #000;
  background-color: #fff;
}
.h-inner.is-active .h-slide {
  padding-top: 38px;
  padding-bottom: 96px;
  opacity: 1;
  pointer-events: all;
}
.h-inner.is-active .h-slide.is-last {
  padding: 0 0 0 0;
}
.h-inner.is-active .h-logo a {
  background-image: url(../images/icon/h-logo-bk.png);
}
.h-inner.is-active .h-btns button.h-global {
  background-image: url(../images/icon/h-language-bk.svg);
}
.h-inner.is-active .h-btns button.h-mail {
  background-image: url(../images/icon/h-mails-bk.svg);
}
.h-inner.is-active .h-btns button.h-hamburger span {
  background-color: #000;
}
.h-inner.is-active .h-btns button.h-hamburger span:first-child {
  rotate: 45deg;
  transform: translate(-7px, 6px);
}
.h-inner.is-active .h-btns button.h-hamburger span:last-child {
  rotate: -45deg;
  transform: translate(-6px, -7px);
}
.h-inner .h-logo a {
  display: block;
  width: 213px;
  height: 23px;
  background-position: center;
  background-size: cover;
  background-image: url(../images/icon/h-logo-wh.png);
}
.h-inner .h-navi {
  display: flex;
  align-items: center;
  margin-right: 120px;
  height: 100%;
}
.h-inner .h-navi li {
  margin-right: 64px;
  height: 100%;
  position: relative;
  font-size: 16px;
  transform: translateY(1px);
}
.h-inner .h-navi li:hover {
  font-weight: 600;
}
.h-inner .h-navi li a {
  height: 100%;
  display: flex;
  align-items: center;
  font-family: "Pretendard", sans-serif;
}
.h-inner .h-navi li:last-child {
  margin-right: 0;
}
.h-inner .h-navi li.is-active::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.h-inner .h-btns {
  display: flex;
  align-items: center;
}
.h-inner .h-btns button {
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: cover;
  margin-right: 24px;
  position: relative;
}
.h-inner .h-btns button:last-child {
  margin-right: 0;
}
.h-inner .h-btns button.h-global {
  background-image: url(../images/icon/h-language.svg);
}
.h-inner .h-btns button.h-mail {
  background-image: url(../images/icon/h-mails.svg);
}
.h-inner .h-btns button.h-hamburger {
  position: relative;
}
.h-inner .h-btns button.h-hamburger span {
  transition: 0.2s ease-out;
  width: 18px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.h-inner .h-btns button.h-hamburger span:first-child {
  transform: translate(-50%, calc(-50% - 5px));
}
.h-inner .h-btns button.h-hamburger span:last-child {
  transform: translate(-50%, calc(-50% + 5px));
}
.h-inner .h-btns button .h-global_navi {
  position: absolute;
  left: 50%;
  top: 36px;
  background-color: #fff;
  border-radius: 8px;
  width: 76px;
  text-align: center;
  transform: translateX(-50%);
  padding: 24px 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.12);
}
.h-inner .h-btns button .h-global_navi.is-active {
  pointer-events: all;
  opacity: 1;
}
.h-inner .h-btns button .h-global_navi a {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
  color: rgb(154, 154, 154);
}
.h-inner .h-btns button .h-global_navi a.is-active {
  color: #000;
}
.h-inner .h-btns button .h-global_navi a:last-child {
  margin-bottom: 0;
}

.h-slide {
  width: 100%;
  padding-bottom: 0;
  position: absolute;
  top: 68px;
  left: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease-out;
}
.h-slide .h-dep {
  text-align: center;
  display: none;
}
.h-slide .h-dep .h-dep_btn {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  height: 92px;
  padding: 0 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
}
.h-slide .h-dep .h-dep_btn::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/icon/h-arrow-mo.svg) no-repeat;
  transition: 0.3s ease-out;
}
.h-slide .h-dep .h-dep_btn:last-child::after {
  display: none;
}
.h-slide .h-dep.is-active {
  display: flex;
}
.h-slide .h-dep.is-active .h-dep_btn::after {
  rotate: -180deg;
}
.h-slide .h-dep-box {
  padding: 0 50px;
  border-right: solid 1px rgb(234, 234, 234);
}
.h-slide .h-dep-box h2 {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 600;
}
.h-slide .h-dep-box h2 a {
  color: #000;
  font-size: 16px;
}
.h-slide .h-dep-box p a {
  display: block;
  margin-bottom: 22px;
  color: rgb(154, 154, 154);
  font-size: 14px;
}
.h-slide .h-dep-box p a.is-active {
  color: #000;
  text-decoration: underline;
  text-underline-position: under;
}
.h-slide .h-dep-box p a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-position: under;
}
.h-slide .h-dep-box p a:last-child {
  margin-bottom: 0;
}
.h-slide .h-dep-box:last-child {
  border-right: none;
}
.h-slide .h-dep.has-margin {
  margin-left: 94px;
}

.h-mail_navi {
  width: 100vw;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 101;
  pointer-events: none;
}
.h-mail_navi .h-mail_navi-logo {
  width: 166px;
  position: absolute;
  top: 18px;
  left: 20px;
  display: none;
}
.h-mail_navi.is-active {
  pointer-events: all;
}
.h-mail_navi.is-active .h-dim {
  opacity: 1;
  pointer-events: all;
}
.h-mail_navi.is-active .h-mail_navi-inner {
  right: 0;
}
.h-mail_navi .h-dim {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.6s;
}
.h-mail_navi-inner {
  width: 806px;
  height: 100vh;
  background-color: #fff;
  position: absolute;
  right: -806px;
  top: 0;
  padding: 96px 56px 0;
  transition: 0.8s;
}
.h-mail_navi-inner::-webkit-scrollbar {
  display: none;
}
.h-mail_navi-inner .h-mail_navi-btns {
  display: flex;
  align-items: center;
  overflow-x: scroll;
}
.h-mail_navi-inner .h-mail_navi-btns button {
  padding: 13px 30px;
  border-radius: 500px;
  width: fit-content;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  border: 1px solid rgb(234, 234, 234);
  display: flex;
  align-items: center;
  margin-right: 12px;
  color: #191919;
}
.h-mail_navi-inner .h-mail_navi-btns button.is-active {
  background-color: #191919;
  color: #fff;
}
.h-mail_navi-inner .h-mail_navi-btns button:last-child {
  margin-right: 0;
}
.h-mail_navi-inner .h-mail_navi-dep {
  margin-top: 65px;
  height: calc(100% - 52px - 65px);
  overflow-y: scroll;
  padding-bottom: 96px;
}
.h-mail_navi-inner .h-mail_navi-dep .tit {
  font-family: "Pretendard", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #000;
}
.h-mail_navi-inner .h-mail_navi-dep > div {
  display: none;
}
.h-mail_navi-inner .h-mail_navi-dep > div.is-active {
  display: block;
}
.h-mail_navi-inner .h-mail_navi-dep .box {
  margin-bottom: 36px;
}
.h-mail_navi-inner .h-mail_navi-dep .box:last-child {
  margin-bottom: 0;
}
.h-mail_navi-inner .h-mail_navi-dep ul {
  margin-top: 20px;
}
.h-mail_navi-inner .h-mail_navi-dep ul li {
  background-color: rgb(250, 250, 250);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  margin-bottom: 16px;
  height: 64px;
  color: #000;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p {
  display: flex;
  align-items: center;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p:first-child {
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p:first-child b {
  font-size: 20px;
  font-weight: 700;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p:first-child span {
  font-size: 14px;
  color: rgb(154, 154, 154);
  padding-left: 8px;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p:last-child {
  color: rgb(85, 85, 85);
  letter-spacing: -0.04em;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p:last-child span {
  width: 120px;
  margin-left: 14px;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p:last-child span:first-child::before {
  background: url(../images/icon/h-tell.svg) no-repeat center/cover;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p:last-child span:last-child {
  width: 180px;
  margin-right: 0;
  margin-left: 0;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p:last-child span:last-child::before {
  background: url(../images/icon/h-mail.svg) no-repeat center/cover;
}
.h-mail_navi-inner .h-mail_navi-dep ul li > p:last-child span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.h-mail_navi-inner .h-mail_navi-dep ul li:last-child {
  margin-bottom: 0;
}
.h-mail_navi-close {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 30px;
  top: 30px;
  background: url(../images/icon/h-close.svg) no-repeat center/cover;
}

@media (max-width: 1680px) {
  .h-inner {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  #header.is-hide {
    top: 0;
  }
  .h-inner {
    height: 60px;
  }
  .h-inner.is-active .h-btns button.h-global,
  .h-inner.is-active .h-btns button.h-mail {
    display: none;
  }
  .h-inner .h-navi {
    display: none;
  }
  .h-mo {
    display: block !important;
  }
  .h-mo.h-dep_btn {
    display: flex !important;
  }
  .h-slide .h-dep.has-margin {
    margin-left: 0;
  }
  .h-inner .h-slide {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 60px;
    padding-top: 0;
    flex-direction: column;
    overflow-y: scroll;
    justify-content: flex-start;
  }
  .h-inner.is-active .h-slide {
    padding-top: 0;
  }
  .h-slide .h-dep {
    border-bottom: solid 1px #eaeaea;
    max-height: 92px;
    overflow: hidden;
    transition: 0.4s ease-out;
    display: block;
    flex-shrink: 0;
  }
  .h-slide .h-dep.is-active {
    display: block;
    max-height: 3000px;
  }
  .h-slide .h-dep:last-child {
    border-bottom: none;
  }
  .h-slide .h-dep-box {
    margin-right: 0;
    width: 100%;
    text-align: left;
    padding: 0;
  }
  .h-slide .h-dep-box.is-active p {
    max-height: 1000px;
    padding-top: 4px;
    padding-bottom: 40px;
  }
  .h-slide .h-dep-box.is-active h2::after {
    background: url(../images/icon/h-arrow-minor-mo.svg);
  }
  .h-slide .h-dep-box h2 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    padding: 0 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .h-slide .h-dep-box h2::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/icon/h-arrow-plus-mo.svg);
  }
  .h-slide .h-dep-box h2.link::after {
    display: none;
  }
  .h-slide .h-dep-box p a {
    padding: 0 24px;
    margin-bottom: 40px;
  }
  .h-slide .h-dep-box p a:last-child {
    margin-bottom: 0;
  }
  .h-slide .h-dep-box p {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in;
    padding-bottom: 0;
  }
  .h-slide .h-dep-box p.is-active {
    max-height: 1000px;
    padding-top: 4px;
    padding-bottom: 40px;
  }
  .h-inner .h-logo a {
    width: 166px;
    height: 18px;
  }
  .h-mail_navi-inner {
    width: 100%;
    right: -100%;
    padding: 100px 0 0;
  }
  .h-mail_navi-close {
    width: 24px;
    height: 24px;
    background: url(../images/icon/h-close-mo.svg) no-repeat center/cover;
    right: 20px;
    top: 18px;
  }
  .h-mail_navi .h-mail_navi-logo {
    display: block;
  }
  .h-mail_navi-inner .h-mail_navi-btns {
    padding: 0 24px;
  }
  .h-mail_navi-inner .h-mail_navi-btns button {
    font-size: 14px;
    padding: 8px 20px;
    margin-right: 8px;
  }
  .h-mail_navi-inner .h-mail_navi-dep {
    margin-top: 40px;
    height: calc(100% - 42px - 40px);
    padding: 0 24px 80px;
  }
  .h-mail_navi-inner .h-mail_navi-dep .box {
    margin-bottom: 40px;
  }
  .h-mail_navi-inner .h-mail_navi-dep .tit {
    font-size: 18px;
  }
  .h-mail_navi-inner .h-mail_navi-dep ul {
    margin-top: 16px;
  }
  .h-mail_navi-inner .h-mail_navi-dep ul li {
    flex-direction: column;
    padding: 20px;
    padding-right: 0;
    justify-content: space-between;
    align-items: flex-start;
    height: 121px;
    margin-bottom: 20px;
  }
  .h-mail_navi-inner .h-mail_navi-dep ul li p {
    flex-wrap: wrap;
  }
  .h-mail_navi-inner .h-mail_navi-dep ul li > p:first-child {
    align-items: baseline;
  }
  .h-mail_navi-inner .h-mail_navi-dep ul li > p:first-child b {
    font-size: 18px;
  }
  .h-mail_navi-inner .h-mail_navi-dep ul li > p:first-child span {
    font-size: 12px;
    padding-left: 8px;
  }
  .h-mail_navi-inner .h-mail_navi-dep ul li > p:last-child span {
    margin-right: 8px;
    margin-left: 0;
    font-size: 12px;
    white-space: nowrap;
    width: 108px;
  }
  .h-mail_navi-inner .h-mail_navi-dep ul li > p:last-child span:last-child {
    width: 167px;
  }
}
.h-top_btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: url(../images/icon/h-top-arrow.svg) no-repeat center/17px;
  position: fixed;
  right: 70px;
  bottom: 60px;
}
.h-top_btn svg {
  width: 100%;
  height: 100%;
  text-align: center;
}
.h-top_btn svg circle {
  width: 100%;
  height: 100%;
}
.h-top_btn svg .border {
  fill: none;
  stroke: rgba(161, 161, 161, 0.2);
  stroke-width: 1;
  opacity: 0.3;
}
.h-top_btn svg .progress {
  fill: none;
  stroke: rgb(161, 161, 161);
  stroke-width: 1;
  stroke-dasharray: 257.6;
  stroke-dashoffset: 257.6;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

@media (max-width: 768px) {
  .h-top_btn {
    right: 24px;
    bottom: 24px;
  }
}

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