/* ########### ハンバーガーメニューここから ########### */
/* メニュー本体：初期状態は非表示 */
#navigation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
}

/* ボタンの基本スタイル */
.hamburger {
  width: 40px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
  margin-left: auto;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: .4s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 13px; }
.hamburger span:nth-child(3) { top: 26px; }

/* 渡されたJSが「active」クラスを付与した時の「×」アニメーション */
.hamburger.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

#navigation ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 80px;
}

#navigation li a {
    display: block; 
    padding: 10px 0; 
    text-decoration: none;
    color:#fff;
}

#navigation li a:hover {
    color:#fff;
}
/* ########### ハンバーガーメニューここまで ########### */

.headerOuter .zpelement {
    margin-block-start: 0px !important;
}