@charset "utf-8";
/* CSS Document */

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 30000000;
  right : 10px;
  top   : 10px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
display: none;
}

@media screen and (max-width: 840px) {
		.hamburger {
	display: block;
	background-color: #FFFFFF;
	border-radius: 50px;
	border: 3px solid #FFFFFF;
	}
}

.hamburger span {
	display : block;
	position: absolute;
	width   : 26px;
	height  : 4px;
	left    : 5px;
	background : #0077c4;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
	border-radius: 2px;
}
.hamburger span:nth-child(1) {
  top: 7px;
}
.hamburger span:nth-child(2) {
  top: 17px;
}
.hamburger span:nth-child(3) {
  top: 27px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 17px;
  left: 5px;
  background :#0077c4;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 17px;
  background :#0077c4;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
div.globalMenuSp {
  position: fixed;
  z-index : 20000000;
  top  : 0;
  left : 0;
  color: #FFFFFF;
	font-size: 5.6vw;
	line-height: 5.6vw;
	font-weight:600;
	border-right: 1px solid #989898;
	text-shadow: 0px 0px 4px #000000;
  background: rgba( 0,0,0,0.8 );
  text-align: center;
  width: 100%;
	height: 100vh;
  transform: translateX(100%);
  transition: all 0.6s;
}

div.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	border: 0px solid #626262;
}

div.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
	margin: 0;
	border-left: 0px solid #626262;
	border-right: 0px solid #626262;
	border-bottom: 2px dotted #626262;
	border-top: 0px solid #626262;
}

div.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
div.globalMenuSp ul li:hover{
  background :#ddd;
}

div.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}
.globalMenuSp li.close a{
	color: #545454;
}


.globalMenuSp li.close:hover{
	background: rgba( 0,0,0,0.7 );
}


/* クリックでjQueryで追加・削除 */
div.globalMenuSp{
	display: none;
}
div.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateX(0%);
}





