@charset "utf-8";
/* CSS Document */

/*body.fixed {
  overflow: hidden;
}*/

/* ハンバーガーボタン */
.hamburger {
  display : block;
  position: absolute;
  right : 50px;
  top   : 50px;
  z-index : 3;
  width : 50px;
  height: 32px;
  cursor: pointer;
  text-align: center;
  z-index: 99999999;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 50px;
  height  : 2px ;
  left    : 0px;
  background : #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 13px;
}
.hamburger span:nth-child(3) {
  top: 26px;
}
#page-information .area-header .hamburger span,
#page-privacypolicy .area-header .hamburger span,
#page-contact .area-header .hamburger span {
  background: #202020;
}

/* ナビ開いてる時の×ボタン */
.hamburger.active span:nth-child(1) {
  top : 12px;
  left: 0px;
  background :#ffffff !important;
  transform : rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 12px;
  background :#ffffff !important;
  transform: rotate(45deg);
}

.globalMenuSp {
  display: none;
}
.globalMenuSp.active {
  display: block;
  position: fixed;
  z-index : 9999999;
  top  : 0;
  left : 0;
  color: #fff;
  background-color: rgba(115, 183, 53, 0.97);
  width: 100% !important;
  transition: opacity .6s ease, visibility .6s ease;
  height: 100vh;
  display: block !important;
}



/* ==========================================================================//
//
//　767px以下
//
// ========================================================================== */

@media screen and (max-width: 767px) {
/* ハンバーガーボタン */
.hamburger {
  position: absolute;
  right : 20px;
  top   : 30px;
  width : 30px;
  height: 22px;
}
.hamburger span {
  width   : 30px;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}






}
