@charset "UTF-8";
@font-face {
  font-family: "Helvetica.ttc";
  src: url("../font/Helvetica.ttc") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*------------------------------
header
------------------------------*/
header {
  position: absolute;
  width: 100%;
  padding: min(50px, 3.4722222222vw) 0;
  padding: 60px 0 0;
}
@media (max-width: 767px) {
  header {
    padding-top: 8.5vw;
  }
}

.header__inner {
  width: 100%;
  max-width: 100%;
  padding: 0 min(75px, 5.2083333333vw);
}

.header__content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.drawer-icon {
  z-index: 300;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
  background: #000;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  transform: rotate(45deg);
  top: 8px;
  background: #000;
}

.drawer-icon__bars {
  width: min(51px, 3.5416666667vw);
  aspect-ratio: 51/21;
  display: block;
  position: relative;
  z-index: 400;
}
@media (max-width: 767px) {
  .drawer-icon__bars {
    width: min(80px, 10.6666666667vw);
    aspect-ratio: 68/22;
  }
}

.drawer-icon__bar1,
.drawer-icon__bar2 {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .drawer-icon__bar1,
.drawer-icon__bar2 {
    width: min(80px, 10.6666666667vw);
  }
}

.home .drawer-icon__bar1,
.home .drawer-icon__bar2 {
  background: #fff;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 100%;
  transition: transform 0.3s;
}

.drawer-content {
  width: min(440px, 30.5555555556vw);
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  padding: min(190px, 13.1944444444vw) min(110px, 7.6388888889vw) min(300px, 20.8333333333vw);
  z-index: 299;
  transform: translateX(105%);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain; /* scroll伝番防止 */
  min-height: 100vh;
  min-height: 100svh;
}
.drawer-content.is-active {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .drawer-content {
    width: 100%;
    padding: min(310px, 41.3333333333vw) 6.5vw;
  }
}

.drawer-menu li:nth-child(n+2) {
  margin-top: min(30px, 2.0833333333vw);
}
.drawer-menu li a {
  display: block;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.7391304348;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  text-align: right;
  letter-spacing: 0.05em;
}
@media (max-width: 999px) {
  .drawer-menu li:nth-child(n+2) {
    margin-top: min(40px, 5.3333333333vw);
  }
  .drawer-menu li a {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .drawer-menu li a {
    font-size: min(33px, 4.4vw);
  }
}
/*# sourceMappingURL=header.css.map */