/* Breakpoint
======================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 999;
  mix-blend-mode: difference;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 5vw;
  padding-block: 40px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    width: 100%;
    padding: 20px 24px;
    margin: 0 auto;
  }
}

.header__logo {
  font-size: 1.6rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 1.3rem;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__link {
  font-size: 1.6rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.19, 0.61, 0.36, 1);
}
.header__link:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.hamburger-btn {
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.hamburger-btn__text > span {
  display: block;
  font-size: 1.6rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.7s ease;
}
@media screen and (max-width: 768px) {
  .hamburger-btn__text > span {
    font-size: 1.3rem;
  }
}

.hamburger-btn__text > span.hidden {
  opacity: 0;
  pointer-events: none;
}

.gnav {
  display: none;
}
@media screen and (max-width: 768px) {
  .gnav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #191919;
    z-index: 800;
    -webkit-clip-path: inset(100% 0% 0% 0%);
            clip-path: inset(100% 0% 0% 0%);
  }
}

.gnav__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gnav__wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 12.8vw;
    padding-right: 12.8vw;
    padding-top: 12.2666666667vw;
  }
}

.gnav__mask {
  overflow: hidden;
}

.gnav__link {
  display: block;
  padding: 0.2em 0;
  font-size: clamp(42px, 30.35px + 3.107vw, 90px);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 92%;
  font-weight: 400;
  font-family: aw-conqueror-didot, serif;
  will-change: transform;
}

.sns {
  position: absolute;
  bottom: 40px;
  right: 5vw;
  will-change: opacity;
}
@media screen and (max-width: 768px) {
  .sns {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 12.8vw;
  }
}

.sns__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media screen and (max-width: 768px) {
  .sns__list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 3.4666666667vw;
  }
}

.sns__link {
  display: flex;
  align-items: center;
}

.sns__icon {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sns__linkText {
  font-size: 13px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}
/*# sourceMappingURL=_header.css.map */