/*ハンバーガーメニュー*/

.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  display: none;
}
.hamburger span{
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  display: none;
}
.hamburger span:nth-child(1) {
  top: 10px;
  display: none;
}
.hamburger span:nth-child(2) {
  top: 20px;
  display: none;
}
.hamburger span:nth-child(3) {
  top: 30px;
  display: none;
}

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

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
  display: none;
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  display: none;
}

nav.globalMenuSp ul {
  background: #fff;
  margin: 0 auto;
  padding: 50px 30px;
  width: 100%;
  font-size: 2.5vw;
  text-align: left;
  display: none;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  padding: 10px;
  border-bottom: 2px solid #6a3906;
  display: none;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  display: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
  display: none;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #6a3906;
  font-weight: bold;
  padding: 1em 0;
  text-decoration :none;
  display: none;
}
.hamburger-y{
  vertical-align: middle;
  width: 100%;
  max-width: 15px;
  text-align: right;
  display: none;
}
.hamburger-l{
  vertical-align: middle;
  width: 100%;
  max-width: 300px;
  display: none;
  
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
  display: none;
}

@media (max-width: 767px) { 
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 11px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  display: block;
}
}
@media (max-width: 575px) { 
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 7px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  display: block;
}
}
.hamburger span{
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 10px;
  display: block;
}
.hamburger span:nth-child(2) {
  top: 20px;
  display: block;
}
.hamburger span:nth-child(3) {
  top: 30px;
  display: block;
}

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

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
  display: block;
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  max-width: 1500px;
  display: none;
}

nav.globalMenuSp ul {
  background: #fff;
  margin: 0 auto;
  padding: 50px 30px;
  width: 100%;
  font-size: 2.5vw;
  font-family: 'Noto Serif JP', sans-serif;
  text-align: left;
  display: block;
}
@media (max-width: 575px) { 
  nav.globalMenuSp ul {
    background: #fff;
    margin: 0 auto;
    padding: 50px 30px;
    width: 100%;
    font-size: 3.5vw;
    font-family: 'Noto Serif JP', sans-serif;
    text-align: left;
    display: block;
  }
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  padding: 10px;
  border-bottom: 2px solid #6a3906;
  display: block;
}
@media (max-width: 575px) { 
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #6a3906;
    display: block;
  }
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 10px;
  display: block;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
  display: block;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #6a3906;
  font-weight: bold;
  padding: 1em 0;
  text-decoration :none;
  display: block;
}
.hamburger-l{
  vertical-align: middle;
  width: 100%;
  max-width: 250px;
  display: block;
  margin: 0 auto 8%;
}
@media (max-width: 575px) { 
  .hamburger-l{
    vertical-align: middle;
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 0 auto 8%;
  }
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
  display: block;
}
