/* header */
header{
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 100;
}
header .wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1536px;
  width: 92.1875%;
  padding: 20px 0;
  margin: 0 auto;
}
.head_logobox{
  width: 15%;
}
.head_navbox{
  position: relative;
  width: 70%;
}
.head_logo{
  display: block;
  max-width: 340px;
  width: 100%;
}
.head_love{
  display: block;
  max-width: 220px;
  width: 100%;
  margin-left: auto;
}
.navi_line{
  box-sizing: border-box;
  align-items: center;
  border-top: 1px solid #fff;
  border-bottom: 5px solid #cb0000;
}
.navi_line .wrapper{padding: 0;}

/* gnavi */
#menu{
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}
#menu a,
.btn_menu{
  box-sizing: border-box;
  border-right: 1px solid #aaa;
  display: block;
  width: 80px;
  padding: 0 10px;
}
#menu a:first-child{
  border-left:1px solid #aaa;
}
#menu a img,
.btn_menu img{
  display: block;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  header .wrapper{
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 10px 0;
    z-index: 100;
  }
.head_logobox{display: none;}
.head_navbox{
  width: 100%;
}
#menu{
  justify-content: space-between;
  width: 100%;
  padding: 0;
}
#menu a,
.btn_menu{
  width: 20%;
}
#menu a:first-child{
  border-left:none;
}
#menu a:last-child{
  border-right:none;
}

}
