.header {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  width: 100%;
  max-width: 1024px;
  height: 72px;
}
.header .logo_ctr {
  position: absolute;
  top: 4px;
  left: 8px;
}
.header .logo_ctr .logo_main {
  max-width: 103px;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  pointer-events: none;
}
.header .logo_ctr .logo_main.visible {
  opacity: 1;
  pointer-events: auto;
}
.header .hamburger {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  z-index: 30;
}
.header .hamburger img {
  width: 28px;
  height: auto;
  display: block;
}/*# sourceMappingURL=header.css.map */