@charset "UTF-8";
.el_headerlogo{
  display: inline-block;
  line-height: 0;
  font-size: 0;
  padding: 17px;
}
.el_headerlogo .ym{
  text-align: left;
  width: 50%;
}
.el_headerlogo .ym img{
  width: 100px;
}
.el_headerlogo .jibs{
  text-align: right;
  width: 50%;
  margin-left: 20px;
}
.el_headerlogo .jibs img{
  width: 180px;
  margin-top: -15px;
}
.header {
  z-index: 300;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.16);
}
.gnavlineup{
  text-align: center;
  font-weight: 700;
  color:#999;
  font-size: 1.25em;
  font-family: Arial, Helvetica, "sans-serif";
}
.global-nav {
  z-index: 200;
  position: fixed;
  right: -370px; /* これで隠れる */
  top: 70px;
  width: 350px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 20px;
  background-color: #fff;
  transition: all .6s;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

.hamburger {
  z-index: 300;
  position: absolute;
  right: 0;
  top: 0;
  width: 70px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 70px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  background-color: #3399ff;
}

.global-nav__list {
  margin: 0;
  padding: 10px;
  list-style: none;
  display: flex; /* デフォルト */
  flex-direction: row; /* 主軸 */
  flex-wrap: wrap; /* Flexアイテムを複数行に配置、一行の場合nowrap */
　justify-content: space-evenly; /* メイン軸に沿って配置を揃えるプロパティ */
  align-items: center; /* クロス軸に沿って配置を揃えるプロパティ */
  align-content: stretch; /* Flexアイテムの行をクロス軸にどのように整列させるか */
}

.global-nav__item {
  text-align: center;
  padding: 0;
  flex-basis: 46%;
  padding: 2%;
}

.global-nav__item a {
  display: block;
  padding: 0 0 5px 0;
  text-decoration: none;
  color: #111;
  font-size: 0.8em;
	line-height: 1.5;
  border: 1px solid #ccc;
}

.global-nav__item a:hover {
  background-color: #eee;
  border: 1px solid #999;
}

.hamburger__line {
  position: absolute;
  left: 22px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: all .6s;

}

.hamburger__line--1 {
  top: 22px;
}

.hamburger__line--2 {
  top: 32px;
}

.hamburger__line--3 {
  top: 42px;
}

.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */

.nav-open .global-nav {
  right: 0;
}

.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}

.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 32px;
}

.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 32px;
}
/*==768以下==*/
@media screen and (max-width: 768px) {
.el_headerlogo .jibs{
	margin-left: 10px;
}
.el_headerlogo .jibs img{
  width: 150px;
  margin-top: -10px;
}
}