@charset "UTF-8";
/*変数設定用*/
header {
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
}
header .header-inner {
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  header .header-inner {
    padding: 0 20px;
  }
}
header .header-inner .logo-wrap {
  width: 216px;
}
@media screen and (max-width: 768px) {
  header .header-inner .logo-wrap {
    width: 127px;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap {
    background-color: white;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap.open {
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  header .header-inner .hamburger-btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .hamburger-btn {
    display: block;
    height: 12px;
    width: 28px;
    position: relative;
    cursor: pointer;
  }
}
header .header-inner .hamburger-btn span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% 0;
  transition: all 0.4s;
}
header .header-inner .hamburger-btn span:nth-of-type(1) {
  top: 0;
}
header .header-inner .hamburger-btn span:nth-of-type(2) {
  top: 10px;
}
@media screen and (max-width: 768px) {
  header .header-inner .hamburger-btn.open span {
    background-color: #000;
  }
}
header .header-inner .hamburger-btn.open span:nth-of-type(1) {
  top: 50%;
  rotate: 45deg;
}
header .header-inner .hamburger-btn.open span:nth-of-type(2) {
  top: 50%;
  rotate: -45deg;
}
header.bg-none {
  background-color: transparent;
}
header .hamburger-btn span {
  background-color: #fff;
}/*# sourceMappingURL=header.css.map */