@charset "UTF-8";
/*------------------------------
header
------------------------------*/
header {
  position: absolute;
  top: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap));
  left: 0%;
  z-index: 50;
  width: 100%;
  padding: 0 5%;
}
@media (max-width: 767px) {
  header {
    top: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  }
}

@media (min-width: 768px) {
  .header__inner {
    width: 100%;
    max-width: 100%;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .header__content {
    align-items: center;
  }
}

.header__logo {
  width: clamp(0px, 170 * var(--rate-vw), 170px * var(--cap));
}
@media (max-width: 767px) {
  .header__logo {
    width: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap));
  }
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__catch {
  font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
  font-weight: 700;
  line-height: 1.6;
  font-family: "Zen Old Mincho", serif;
  text-align: right;
}

.header__menu {
  display: flex;
  margin-top: clamp(0px, 26 * var(--rate-vw), 26px * var(--cap));
}
.header__menu li:nth-child(n+2) {
  margin-left: clamp(0px, 48 * var(--rate-vw), 48px * var(--cap));
}
.header__menu li a {
  display: inline-block;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
  line-height: normal;
  font-family: "Volkhov", serif;
}

.drawer-icon {
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
  background: #000;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
  background: #000;
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #3E3A39;
  top: 0;
  left: 0;
}

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

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  padding: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap)) clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-menu li:nth-child(n+2) {
  margin-top: 40px;
}
.drawer-menu li a {
  display: block;
  font-size: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  font-weight: 700;
  font-family: "Volkhov", serif;
  text-align: center;
}
/*# sourceMappingURL=header.css.map */