@charset "UTF-8";
/* ----- TOP LAYER ----- */
.tk-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: auto;
}
.tk-header .tk-header-inner {
  width: 100%;
  height: 13rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----- CENTER ----- */
.tk-nav-center ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
@media screen and (max-width: 830px) {
  .tk-nav-center ul {
    display: none;
  }
}
.tk-nav-center ul li a {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.21rem;
  text-decoration: none;
  color: #fff;
}

/* -----Right ICON----- */
.tk-header-right {
  position: absolute;
  right: 10.8rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 2.2rem;
}
@media screen and (max-width: 830px) {
  .tk-header-right {
    display: none;
  }
}
.tk-header-right .tk-header-icon img {
  width: 2.6rem;
  height: 2.6rem;
}

/* ----- Hamburger Button ----- */
.tk-hamburger {
  position: absolute;
  right: 5.8rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 2.5rem;
  height: 1.7rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .tk-hamburger {
    width: 5.7rem;
    height: 3.7rem;
    right: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .tk-hamburger {
    top: 57%;
  }
}
.tk-hamburger span {
  width: 100%;
  height: 1px;
  display: block;
  -webkit-backdrop-filter: invert(1) contrast(100) grayscale(100%);
          backdrop-filter: invert(1) contrast(100) grayscale(100%);
  background-color: transparent;
}

/* ----- Scroll ----- */
.is-scrolled .tk-hamburger {
  position: fixed;
  right: 5.8rem;
  top: 2.4rem;
  transform: none;
}
@media only screen and (max-width: 767px) {
  .is-scrolled .tk-hamburger {
    right: 4.8rem;
  }
}

/* ----- Hamburger Menu ----- */
.tk-hamburger-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  max-width: 400px;
  height: 100%;
  z-index: 99999;
  padding: 3rem 4rem;
  background-color: #EFECE6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.2' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  border-left: 1px solid rgb(215, 215, 215);
}
.tk-hamburger-menu.open {
  transform: translateX(0);
}
.tk-hamburger-menu ul {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
}
.tk-hamburger-menu ul li a {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #222;
}

/* -----  Hamburger Menu OVERLAY  ----- */
.tk-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.tk-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ----- Close Button (×) ----- */
.tk-close-menu {
  position: absolute;
  right: 2.4rem;
  top: 2.4rem;
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .tk-close-menu {
    width: 5.6rem;
    height: 5.6rem;
  }
}
.tk-close-menu::before, .tk-close-menu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.75px;
  background: #000;
  top: 50%;
  left: 0;
}
.tk-close-menu::before {
  transform: rotate(45deg);
}
.tk-close-menu::after {
  transform: rotate(-45deg);
}

/* ===== 下層ページ左上 LOGO ===== */
.tk-sub-logo {
  position: absolute;
  top: 50%;
  left: 5.8rem;
  transform: translateY(-50%);
  z-index: 9000;
  display: block;
}
.tk-sub-logo:hover {
  transform: translateY(-52%);
}
.tk-sub-logo img {
  width: 18rem;
  height: auto;
  display: block;
}
@media screen and (max-width: 830px) {
  .tk-sub-logo {
    left: 2.4rem;
  }
  .tk-sub-logo img {
    width: 9rem;
  }
}/*# sourceMappingURL=newheader.css.map */