@charset "UTF-8";
header {
  padding: 32px 40px;
  position: sticky;
  background: transparent;
  inset: 0 0 auto 0;
  mix-blend-mode: exclusion;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  header nav.global-nav {
    display: none;
  }
}
header nav.global-nav ul.global-nav-list {
  display: flex;
  justify-content: end;
  gap: 32px;
}
header nav.global-nav ul.global-nav-list li a {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 1.5px;
  color: #fff;
  mix-blend-mode: exclusion;
  text-decoration: none;
}
header .sp-button {
  display: none;
  width: 32px;
  height: 32px;
  background-image: url("../../images/common/sp-button.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  z-index: 10;
  top: 21px;
  right: 23px;
  background-color: transparent;
  border: 0;
}
@media screen and (max-width: 640px) {
  header .sp-button {
    display: block;
    cursor: pointer;
  }
}

/* ===== スクロール固定（メニュー表示中） ===== */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* ===== SPメニュー（フェードイン/アウト） ===== */
.sp-menu {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  background-color: #121212;
  width: 100%;
  min-height: 100vh;
  background-image: url("../../images/common/bg-black.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top -37% right -20px;
  /* フェード用の初期状態（非表示） */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 表示状態 */
}
.sp-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sp-menu .sp-button-close {
  width: 32px;
  height: 32px;
  background-image: url("../../images/common/sp-button-close.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  z-index: 10;
  top: 21px;
  right: 23px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.sp-menu nav.sp-nav {
  padding: 85px 23px;
}
.sp-menu nav.sp-nav ul.sp-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sp-menu nav.sp-nav ul.sp-nav-list li {
  border-bottom: 1px solid #555;
  width: 100%;
  text-align: center;
}
.sp-menu nav.sp-nav ul.sp-nav-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 3.2px;
  font-family: "Be Vietnam Pro", sans-serif;
  padding: 16px 0;
}
.sp-menu nav.sp-nav ul.sp-nav-list li a span {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.2px;
}
.sp-menu .sp-menu-sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}
.sp-menu .sp-menu-sns .sns-links {
  display: flex;
  gap: 23px;
}
.sp-menu .sp-menu-sns .copyright {
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 17px */
  letter-spacing: 1px;
  color: #bbb;
}/*# sourceMappingURL=header.css.map */