@charset "UTF-8";
/*------------------------------
header
------------------------------*/
header {
  padding: 10px 0;
}
@media (max-width: 767px) {
  header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
  }
}

header.fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0px 0px 15px -5px #000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.7s;
  height: 80px;
  padding: 0;
  display: flex;
  align-items: center;
}
header.fix.act {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0%);
}
header.fix .header__logo {
  width: 70px;
}

.header__inner {
  width: 94.3%;
  max-width: unset;
}
@media (max-width: 767px) {
  .header__inner {
    width: 90%;
  }
}

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

.header__logo {
  width: 8.7%;
  max-width: 158px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 50px;
  }
}

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

.header__menu {
  display: flex;
}
.header__menu li:nth-child(n+2) {
  margin-left: min(75px, 4.132231405vw);
}
.header__menu li a {
  display: inline-block;
  font-size: min(1.25rem, 1.2247397428vw);
  letter-spacing: 0.01em;
}
@media (max-width: 999px) {
  .header__menu li a {
    font-size: 0.625rem;
  }
}

.header__company {
  margin-left: min(62px, 3.2291666667vw);
  width: 18.3%;
}

.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: 30px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #3f3f3f;
  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: 100px 5%;
  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: 10%;
}
.drawer-menu li a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
/*# sourceMappingURL=header.css.map */