@charset "utf-8";

/* ==========================
    ハンバーガーメニュー
  ========================== */
/* 線 */
@media screen and (min-width: 681px){
.hamburger{
		display: none;
	}
}


@media screen and (max-width: 680px){	

.hamburger {
  position: fixed;
  right: 30px;
  top: 15px;
  width: 80px;
  height: 110px;
  overflow: hidden;
  cursor: pointer;
	z-index: 150;	
	font-family:"GenJyuuGothicL Medium";
}
.hamburger span {
  display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 18px;
    height: 4px;
  background: #e62e18;
	border-radius: 3px;
    width: 60%;
}
.hamburger span:nth-of-type(1) {
  top:20px; 
}

.hamburger span:nth-of-type(2) {
  top:35px;
}

.hamburger span:nth-of-type(3) {
  top:50px;
}

.hamburger span:nth-of-type(3)::after {
  content:"MENU";/*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top:10px;
  left:-13px;
  color: #e62e18;
  font-size: 22px;
	letter-spacing: 3px;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
	
	

.hamburger.active span:nth-of-type(1) {
    top: 26px;
    left: 19px;
    transform: translateY(6px) rotate(-35deg);
    width: 60%;
	background: #fff;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3){
    top: 38px;
    left: 19px;
    transform: translateY(-6px) rotate(35deg);
    width: 60%;
	background: #fff;
}

.hamburger.active span:nth-of-type(3)::after {
  content:"MENU";/*3つ目の要素のafterにMENU表示を指定*/
  transform: translateY(0) rotate(-35deg);
  top:15px;
  left:10px;
	color: #fff;
}



.hamburger + nav {
  display: none;
}
	
.globamenu-g{
	width: 100%;
	height: 100px;
	border-top: 3px #3e3a39 solid;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
	font-family: "GenJyuuGothicL Medium";
	background-color: #e8e7e7;
	font-size: 16px;
	text-align: center;
	}
.globamenu-g ul{
	display: flex;	
	}
.globamenu-g ul li{
	height: 100px;
	border-right: 1px #3e3a39 solid;
	background-size: 60px 48px;
	background-repeat: no-repeat;
	background-position: center 10px;
	float: left;
	width: 100%;
	list-style: none;
}
	.globamenu-g ul li:last-child{
		border-right:none;
	}
.globamenu-g ul li a{
	text-decoration:none;
	display: block;
    height: 100%;
    width: 100%;
	padding-top: 60px;
}





/* クリックした時 */
.hamburger.active span {
  transform: rotate(45deg);
}
.hamburger.active span::before {
  transform: rotate(-90deg);
  top: 0;
}
.hamburger.active span::after {
  content: none;
}



/* ハンバーガー展開時の中身 */

.hamburger{
	z-index: 150;
}

.hamburger + nav {
  position: fixed;
  width: 500px;
	height: 1010px;
  top: 0px;
  right: 0;
background: #e62e18;
	z-index: 100;
}
	
.globalMenu-hm{
	margin-top: 100px;	
	}
.globalMenu-hmul {
  padding: 0px 37px 0px;
	font-size: 30px;
	font-family:"GenJyuuGothicL Medium";
}
.globalMenu-hmul li {
  padding: 10px 0;
	height: 100px;
	list-style: none;
	border-bottom: 1px solid #fff;
	font-family:"GenJyuuGothicL Medium";
}


.globalMenu-hmul li a{
	display: block;
  color: #fff;
	padding-left: 30px;
	margin-top: 30px;
	text-decoration: none;
}

}
 