@charset "UTF-8";

/*メニュー部分*/
@media screen and (max-width:1140px){
	/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 1000;
  right : 0px;
  top   : 14px;
  width : 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px 0px 0px 5px;
  background-color: #3E150E;
}
.globalMenuSp-title {
	font-weight: bold;
	display: block;
	position: absolute;
	right: 0;
	top: 10px;
	color: #00005C;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 20px;
  height  : 2px ;
  left    : 8px;
  background : #fff;
  -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: 16px;
  left: 15px;
}
.hamburger span:nth-child(2) {
  top: 24px;
  left: 15px;
}
.hamburger span:nth-child(3) {
  top: 32px;
  left: 15px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 24px;
  left: 15px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 24px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 50;
  top  : 0;
  left : 0;
  color: #3E150E;
  background: rgba(255,255,255,0.9);
  padding: 70px 0px;
  text-align: center;
  width: 100%;
  height:100vh;
  opacity: 0;
	display: none;
  transition: opacity .6s ease, visibility .6s ease;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 90%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0px;
  width: 100%;
  transition: .4s all;
}
	
	.gnav__item-sp {
		width: 80%;
		margin: 0 auto;
		padding: 20px;
		font-size: 17px;
		font-weight: bold;
		list-style: none;
		border-bottom: 1px solid #EEEEEE;
	}
	.gnav__item-sp--last {
		width: 80%;
		margin: 0 auto;
		padding: 20px;
		font-size: 17px;
		font-weight: bold;
		list-style: none;
		border-bottom: 0px solid #EEEEEE;
	}
	.gnav__item-sp--shop {
		color: #fff;
		width: 80%;
		margin: 0 auto;
		margin-top: 20px;
		padding: 24px;
		font-size: 17px;
		font-weight: bold;
		list-style: none;
		background: rgba(62,21,14,1);
		z-index: 3;
		text-align: left;
	}
	.gnav__item-sp--shop-text {
		position: relative;
		width: 180px;
		margin: 0 auto;
		padding-left: 50px;
		line-height: 2em;
	}
	.gnav__item-sp--shop-text::before {
  position: absolute;
  left: 0;
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/cart-icon-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: center;
}
	
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp .gnav__item-sp:hover{
  background :#F8F8F6;
}
nav.globalMenuSp .gnav__item-sp--last:hover{
  background :#F8F8F6;
}
.gnav__item-sp--shop:hover {
		background-color: #7B6966;
	}

nav.globalMenuSp ul li a {
  display: block;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 1;
	display: block;
	}
}