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

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

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

@media (min-width: 768px) {
  .header__logo {
    width: 15%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -33%);
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: clamp(0px, 100 * var(--rate-vw), 100px);
  }
}

.header__nav {
  display: flex;
  align-items: center;
  margin-right: 13%;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__menu {
  background: #fff;
  border-radius: clamp(0px, 10 * var(--rate-vw), 10px) 0 0 clamp(0px, 10 * var(--rate-vw), 10px);
  box-shadow: 0 1px 15px rgba(125, 125, 125, 0.16);
  display: flex;
  gap: 0 clamp(0px, 45 * var(--rate-vw), 45px);
  padding: 0 clamp(0px, 35 * var(--rate-vw), 35px) 0 clamp(0px, 90 * var(--rate-vw), 90px);
}
.header__menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.2em;
  font-size: clamp(0px, 15 * var(--rate-fz), 15px);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Figtree", sans-serif;
}

.header__contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.2em;
  font-size: clamp(0px, 15 * var(--rate-fz), 15px);
  font-weight: 700;
  background: #00C65C;
  color: #fff;
  padding: 0 2.6em;
  border-radius: 0 clamp(0px, 10 * var(--rate-vw), 10px) clamp(0px, 10 * var(--rate-vw), 10px) 0;
}

.header__banner {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  width: clamp(0px, 255 * var(--rate-vw), 255px);
  transform-origin: right center;
}

.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;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.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: #008346;
  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: 50px 20px;
  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: 25px;
}
.drawer-menu li a {
  display: block;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px);
  font-weight: 500;
}

.drawer-contact {
  margin-top: clamp(0px, 20 * var(--rate-vw), 20px);
}
.drawer-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.2em;
  font-size: clamp(0px, 15 * var(--rate-fz), 15px);
  font-weight: 700;
  background: #00C65C;
  color: #fff;
  padding: 0 2.6em;
  border-radius: clamp(0px, 10 * var(--rate-vw), 10px);
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}
/*# sourceMappingURL=header.css.map */