.fixed0{width:100%;position:fixed;z-index:90;}
/*コメント*/
header {box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 100px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
header .logo {
  color: #000;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  float: left;
  font-weight: bold;
}
header nav {
  float: right;
}
header nav ul {
  display: flex;
  margin: 0;
  padding: 0;
}
header nav ul li {color:#fff;
  list-style: none;
  position: relative;
}
header nav ul li .sub-menu:before {
  content: "\f0d7";
  position: absolute;
  font-family: fontAwesome;
  line-height: 50px;
  color: #000;
  right: 5px;
}
header nav ul li.active .sub-menu:before {
  content: "\f0d8";
}
/*dropdown-starts*/
header nav ul li ul {
  position: absolute;
  left: 0;
  background: #fff;
  display: none;
}
header nav ul li.active ul {
  display: block;
}
header nav ul li ul li {
  display: block;
  width: 200px;
}
header nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  display: block;
}
header nav ul li a{color:#000;}
header nav ul li a:hover,
header nav ul li a.active {
  color: #000;
  background: #eee;
}
.menu-toggle {
  color: #000;
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}
@media (max-width: 991px) {
  header {box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    padding: 0 20px;
  }
  .menu-toggle {
    display: block;
  }
  header nav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 50px);
    background: #fff;
    top: 50px;
    left: -100%;
    transition: 0.5s;
  }
  header nav.active {
    left: 0;
  }
  header nav ul {
    display: block;
    text-align: center;
  }
  header nav ul li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  header nav ul li.active ul {
    position: relative;
    background: #eee;
  }
  header nav ul li ul li {
    width: 100%;
  }
}
