@charset "UTF-8";
/* --------------------------------------
header
---------------------------------------*/
header {
  top: 0;
  padding: 15px 0;
}
header .flexbox {
  z-index: 100;
  /*　ハンバーガーボタン　*/
}
header .flexbox .logo {
  width: 50px;
}
header .flexbox .hamburger {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 7%;
  top: 15px;
  width: 36px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  /* ナビ開いてる時のボタン */
}
header .flexbox .hamburger span {
  display: block;
  position: absolute;
  width: 36px;
  height: 2px;
  left: 7px;
  background: #272c38;
  color: #272c38;
  font-weight: bold;
  font-size: 10px;
  transition: 0.3s ease-in-out;
}
header .flexbox .hamburger span:nth-child(1) {
  top: 10px;
}
header .flexbox .hamburger span:nth-child(2) {
  top: 18px;
}
header .flexbox .hamburger span:nth-child(3) {
  top: 26px;
}
header .flexbox .hamburger span:nth-child(4) {
  height: auto;
  background: none;
  bottom: 4px;
  letter-spacing: 0.5px;
}
header .flexbox .hamburger.active span:nth-child(1) {
  top: 20px;
  left: 7px;
  background: #fff;
  transform: rotate(-45deg);
}
header .flexbox .hamburger.active span:nth-child(2), header .flexbox .hamburger.active span:nth-child(3) {
  top: 20px;
  background: #fff;
  transform: rotate(45deg);
}
header .flexbox .menu {
  display: none;
  position: fixed;
  left: 0;
  background: #272c38;
  width: 100%;
  max-width: 100%;
  z-index: 999;
  top: 0px;
  padding-top: 70px;
  /* このクラスを、jQueryで付与・削除する */
}
header .flexbox .menu li {
  font-weight: normal;
  font-size: 14px;
}
header .flexbox .menu li span {
  display: none;
}
header .flexbox .menu li a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  width: 100%;
  display: block;
  background: #272c38;
  padding: 14px 10px;
  color: #fff;
  text-align: center;
  border-top: 1px solid #727887;
  text-decoration: none;
  display: block;
}
header .flexbox .menu li a:after {
  content: none;
}
header .flexbox .menu li ul {
  display: block;
  position: relative;
  top: auto;
  left: auto;
}
header .flexbox .menu li ul li {
  font-weight: normal;
  border: none;
  border-top: 1px solid #727887;
}
header .flexbox .menu li ul li a {
  background: #272c38;
  color: #fff;
}
header .flexbox .menu li:hover ul {
  display: block;
  width: 100%;
}
header .flexbox .menu.active {
  display: block;
}

#sub header {
  padding: 15px 0;
}/*# sourceMappingURL=sp-header.css.map */