@charset "UTF-8";
:root {
  --yellow: #f5c464;
  --yellow-bg: #fffbef;
  --teal: #50c8b5;
  --teal-bg: #edfaf7;
  --sky: #e5f4fa;
  --sky-dark: #b8dff0;
  --navy: #2d3580;
  --text: #333;
  --text-mid: #666;
  --text-light: #999;
  --white: #fff;
  --border: #ebebeb;
  --purple: #e2c6ff;
}

/*------------------------------
header
------------------------------*/
header {
  padding: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap)) 0;
  position: relative;
  z-index: 100;
}

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

.header__menu {
  display: flex;
}
.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, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.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: 4px;
  background: #37383C;
  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: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  padding: clamp(0px, 80 * var(--rate-vw), 80px * 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: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
}
.drawer-menu li a {
  display: block;
  font-size: clamp(0px, 18 * var(--rate-vw), 18px * var(--cap));
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}