#menu_bg{
	display:none;
}
.hamburger {
  display : none;
}
.globalMenuSp{
  display : none;
}
/*----------------------------------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1200px){
}

/*----------------------------------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1200px){

#newRegist header {
    position: static;
}
header {
    /*position: fixed;*/
    width: 100%;
}
#menu_bg{
	display:none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba( 0, 0, 0, 0.8);
}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 30px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.5s all;
  -moz-transition   : 0.5s all;
  transition        : 0.5s all;
  /*border-radius:50%;*/
  background:#600;
  
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active{
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
  background: #000;
}
.hamburger.active span:nth-child(2) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
  background: #000;
}
.hamburger.active span:nth-child(3) {
  opacity: 0;
}

nav.globalMenuSp {
  display : none;
  position: absolute;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
}
nav.globalMenuSp.active {
  display : block;
}

nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  /*background :#ddd;*/
}
nav.globalMenuSp ul li.menuttlbg{
  background :#600;
}
nav.globalMenuSp ul li span {
  padding: 1em 0;
  color: #fff;
  display: block;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

}