
/*　ハンバーガーメニュー｜閉じている状態　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 950;
  left : 15px;
  top   : 10px;
  width : 30px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  background-color: #b01a21;
  opacity: 0.9;/* 透過させる */
  padding: 0px 10px 5px;
}

/* ↓ 「三」ボタン｜閉じている状態 ------- */
.hamburger span {
  display : block;
  position: absolute;
  margin: auto;
  width   : 30px;
  height  : 2px ;
  left    : 10px;
  background : #DEB971;
  -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: 12px;}
  .hamburger span:nth-child(2) {top: 20px;}
  .hamburger span:nth-child(3) {top: 28px;}

  /* ↓ 文字「MENU」｜閉じている状態 ------- */
.hamburger_menu {
  font-weight: 500;
	font-size:small;
  color: #DEB971;
	margin:30px 20px 0px 0px;
  }





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

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

nav.globalMenuSp {
  position: fixed;
  z-index : 900;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba(62, 58, 57, 0.9);
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  visibility: hidden;　/* 閉じているときはリンクは無効 */
  }

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

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  border-bottom:solid 1px;
  margin:auto;
  }
nav.globalMenuSp ul li:last-child {padding-bottom: 0;}
nav.globalMenuSp ul li:hover{background :#ddd;}

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

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible; /* 閉じているときはリンクは無効 */
  }


.globalMenuSp .sns{
  display:flex;
  flex-wrap:wrap;/*アイテムを折り返して複数行に上から下*/
  justify-content: center; /* アイテムを右端に寄せる */
  align-items: center;/*上下中央*/
  }
.globalMenuSp .sns img{max-height: 100%;margin:10px 10px;}
.globalMenuSp .sns img:hover{opacity: 0.6;transition-duration: 0.3s;}
  



/* -----　レスポンシブ対応　開始 ----- */
@media screen and (min-width:   1101px) {
/* 最大から1693pxまでの幅の場合に適応される */
.hamburger {display:none;}
.hamburger span {display:none;}
.globalMenuSp {display:none;}
}
/* -----　レスポンシブ対応　終了 ----- */