.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
}

.header_inner {
  padding: 64px 64px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .header_inner {
    padding: 24px 24px;
  }
}

.header_logo, .header_logo--top {
  pointer-events: auto;
  width: 64px;
  height: 64px;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 1025px) {
  .header_logo, .header_logo--top {
    position: absolute;
    top: calc(50% - 32px + 29px / 2);
    left: 40px;
    z-index: 1;
  }
}

@media screen and (max-width: 1024px) {
  .header_logo, .header_logo--top {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .header_logo--top {
    top: calc(50% - 32px);
  }
}

@media screen and (max-width: 1024px) {
  .header_logo--top {
    margin: 0 auto 24px;
  }
}

.header_nav {
  position: relative;
}

.header_navBtn {
  display: block;
  padding: 24px 24px;
  width: 102px;
  height: 70px;
  line-height: 0;
  pointer-events: auto;
}

@media screen and (max-width: 1024px) {
  .header_navBtn {
    padding: 12px 12px;
    width: 66px;
    height: 34px;
  }
}

.header_navBtn img, .header_navBtn svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  .header_navBtn {
    transition: opacity 0.5s ease;
  }
  .header_navBtn:hover {
    opacity: 0.5;
  }
}

.header_navTopmenu {
  pointer-events: auto;
}

.header_navMypage {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1024px) {
  .header_navMypage {
    bottom: 24px;
  }
}
