@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,700;1,14..32,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@300..700&display=swap");
:root {
  --text-color: #333333;
  --wh: #fff;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

@media screen and (max-width: 376px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

main.blur {
  background-color: rgba(51, 51, 51, 0.2);
  filter: blur(10px);
  transition: filter 0.4s ease;
  transform: scale(1.05);
}

/* ====================================================
Header
==================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.header[data-js-scroll=true] .header__nav-list-item a {
  color: var(--text-color);
}
.header[data-js-scroll=true] .header__logo svg {
  color: #333;
}
.header[data-js-scroll=true] .header__nav-list-item::after {
  background-color: var(--text-color);
}
.header.scroll {
  padding-bottom: 3rem;
}
@media screen and (max-width: 834px) {
  .header.scroll:not(.no-scroll) {
    background-color: rgba(51, 51, 51, 0.2);
    backdrop-filter: blur(10px);
    padding-bottom: 2rem;
  }
}
.header__logo {
  max-width: 152px;
}
.header__logo svg {
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
}
.header__logo-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .header__logo-link {
    margin: 0;
  }
}
.header__logo-link.active {
  filter: blur(10px);
}
.header__logo-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3rem;
}
@media screen and (max-width: 834px) {
  .header__logo-area {
    padding-top: 2rem;
  }
}
.header__nav {
  font-size: 1.3rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .header__nav {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100vh;
    line-height: 3;
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease, background-color 0.4s ease, z-index 0s 0s;
  }
}
.header__nav.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 834px) {
  .header__nav.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(3rem, 7vw, 9rem);
  padding: 2rem 0;
}
@media screen and (max-width: 834px) {
  .header__nav-inner.active {
    transform: translateX(0);
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
  }
  .header__nav-inner.active .header__nav-list-item {
    animation-name: headerFadeUp;
    animation-duration: 0.48s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: both;
  }
  .header__nav-inner.active .header__nav-list-item.--01 {
    animation-delay: 0.5s;
  }
  .header__nav-inner.active .header__nav-list-item.--02 {
    animation-delay: 0.6s;
  }
  .header__nav-inner.active .header__nav-list-item.--03 {
    animation-delay: 0.7s;
  }
  .header__nav-inner.active .header__nav-list-item.--04 {
    animation-delay: 0.8s;
  }
  .header__nav-inner.active .header__nav-list-item.--05 {
    animation-delay: 0.9s;
  }
  .header__nav-inner.active .header__nav-list-item.--06 {
    animation-delay: 1s;
  }
}
@media screen and (max-width: 834px) {
  .header__nav-inner .header__nav-list-item {
    opacity: 0;
    transform: translateY(20px);
  }
}
@media screen and (max-width: 834px) {
  .header__nav-inner {
    max-width: 56rem;
    background-color: #333;
    padding: 5rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    transform: translateX(100%);
  }
}
@media screen and (max-width: 640px) {
  .header__nav-inner {
    padding: 3rem;
  }
}
.header__nav-list-item {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.header__nav-list-item::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--wh);
  position: absolute;
  left: 0;
  bottom: 3px;
}
.header__nav-list-item:hover::after {
  content: "";
  width: 100%;
  transition: width 0.3s ease;
}
.header__nav a {
  color: var(--wh);
}
.header__menu-toggle {
  position: relative;
  width: 30px;
  height: 12px;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
@media screen and (max-width: 834px) {
  .header__menu-toggle {
    display: flex;
  }
}
.header__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--wh);
}
.header__menu-toggle.active {
  z-index: 11;
}
.header__menu-toggle.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.header__menu-toggle.active span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

@keyframes headerFadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=header.css.map */