/**
 *-------------------------------------------
 * ヘッダーメニュー
 *-------------------------------------------
 */
#headerMenu{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: rgba(255,255,255,0.8);
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

 /*プリント時にヘッダーで隠れてしまう対策*/
   
  @media print {
  #headerMenu {
    position: absolute;
  }
}

/*ロゴ*/
#headerMenu h1{
  position: relative;
  top: 0;
  left: 0;
  white-space: nowrap;
}
  #headerMenu h1 img{
    position: relative;
    top: 15px;
    left: 13px;
    width: 500px;
    height: auto;
  }

@media screen and (max-width: 768px) {
  #headerMenu h1 img{
    top: 15px;
    left: 10px;
    width: 300px;
    height: auto;
  }
}


/*ハンバーガーメニュー*/
#headerMenu .menuIcon{
  display: flex;
  justify-content: flex-end;
  font-size: 10px;

}
  #headerMenu .menuIcon li{
    position: relative;
    height: 100%;
    
  }

li.hamburgerMenu{
  width: 65px;
  background-color: #f99106;
  position: relative;
}

@media screen and (max-width: 768px) {
li.hamburgerMenu{
  width: 55px;
}
}

#hamburger,
#hamburger span{
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
#hamburger{
  position: absolute;
  top: 20px;
  right: 10px;
  width: 45px;
  height: 25px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
#hamburger{
  width: 35px;
}
}

#hamburger span{
  position: absolute;
  right: 0;
  width: 45px;
  height: 5px;
  border-radius: 0;
}

@media screen and (max-width: 768px) {
#hamburger span{
  position: absolute;
  right: 0;
  width: 35px;
  height: 5px;
  border-radius: 0;
}
}


/*ハンバーガーメニュー クリック前*/
#hamburger span:nth-of-type(1){
  top: 0;
  background-color: #fff;
}
#hamburger span:nth-of-type(2){
  top: 10px;
  background-color: #fff;
}
#hamburger span:nth-of-type(3){
  top: 20px;
  background-color: #fff;
}
/*ハンバーガーメニュー クリック後*/
#hamburger.active{
  position: fixed;
}
#hamburger.active span:nth-of-type(1){
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  background-color: #fff;
}
#hamburger.active span:nth-of-type(2){
  opacity: 0;
}
#hamburger.active span:nth-of-type(3){
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  background-color: #fff;
}


/**
 *-------------------------------------------
 * グローバルナビ
 *-------------------------------------------
 */
#globalNav{
  position: absolute;
  left: -100%;
  width: 100%;
  text-align: left;
  z-index: 500;
  color: #fff;
  font-size: 14px;
}
  /*メニュー*/
  #globalNav ul,
  #globalNav li{
    margin: 0;
    padding: 0;
    position: relative;
  }
  #globalNav li{
    display: block;
    text-align: center;
    border-right: solid 8px #f99106;
    border-bottom: dotted 1px rgba(255, 255, 255, 0.6);
    background-color: rgba(51,51,51,0.9);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  #globalNav li:first-child{
    border-top: dotted 1px rgba(255, 255, 255, 0.6);
  }
  #globalNav li:last-child{
    border-bottom: dotted 1px rgba(255, 255, 255, 0.6);
  }
    #globalNav li span{
      position: relative;
      top: 0;
      right: 5px;
      transition: all 0.4s ease;
      -webkit-transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
    }
  #globalNav li:hover{
    border-right: solid 8px #4baa37;
    background-color: #f99106;
  }
    #globalNav li:hover span{
      right: 0;
    }
  #globalNav li.last{
    border-bottom: none;
  }
    #globalNav li a{
      display: block;
      padding: 25px;
      transition: all 0.4s ease;
      -webkit-transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
    }
    #globalNav li a:link   { text-decoration:none; color: #ffffff; }
    #globalNav li a:visited{ text-decoration:none; color: #ffffff; }
    #globalNav li a:active { text-decoration:none; color: #ffffff; }
    #globalNav li a:hover  { text-decoration:none; color: #ffffff; }
/* 全画面マスク */
#lock{
  z-index : 400;
  position : fixed;
  top : 0;
  left : -100%;
  width : 100%;
  height : 100%;
  background-color : rgba(16,76,91,0.5);
}









