.header_pc {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  padding: 0.05vw 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #ffffff;
  z-index: 999;
  background: #d30d26;
}
.header_pc nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2vw;
}
.header_pc .header_content {
  height: 4vw;
  width: auto;
  margin-top: 1vw;
}
.header_pc .header_logo {
  height: 4vw;
  width: auto;
  margin: 1vw 0;
}
.header_pc {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.header_pc.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .header_pc {
    display: none;
  }
}

.header_sp {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  background: transparent;
}

.header_sp_container {
  position: fixed;
  top: 17vw;
  right: 4vw;
}
.header_sp_container input {
  display: none;
}
@media (min-width: 768px) {
  .header_sp_container {
    display: none;
  }
}

.header_sp_content {
  display: none;
}
.header_sp_content label {
  position: fixed;
  top: 17vw;
  right: 4vw;
}

.hamburger_menu {
  width: 9vw;
  height: 9vw;
}

.menuButtonCheck:checked ~ .hamburger_menu {
  display: none;
}

.menuButtonCheck:checked ~ .header_sp_content {
  display: flex;
  flex-direction: column;
  width: 100dvw;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f5f1e5;
  z-index: 999;
}
.menuButtonCheck:checked ~ .header_sp_content label {
  display: block;
  position: fixed;
  top: 17vw;
  right: 4vw;
}
.menuButtonCheck:checked ~ .header_sp_content label img {
  width: 9vw;
  height: 9vw;
}

.sp_logo {
  width: 29vw;
  height: auto;
  margin: 17vw auto 5vw;
}

.header_sp_nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border-top: 1px solid #d30d26;
}
.header_sp_nav a {
  padding: 2.75vw 10vw 1.25vw;
  border-bottom: 1px solid #d30d26;
}
.header_sp_nav a img {
  width: 100%;
  height: auto;
}

.header_sp_links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5vw;
  padding: 2vw 5vw;
}
.header_sp_links img {
  width: 8vw;
  height: 8vw;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=top-header.css.map */