nav#gl-navi a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
nav#gl-navi a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
nav#gl-navi a:hover::after {
  transform: scale(1, 1);
}

nav#gl-navi {
	position: fixed;
	top: 0;
	right: 0px;
	width: 100%;
	text-align: center;
	z-index: 1000;
	background-color: #208b9c;
}
#wrapper nav#gl-navi ul li{
display:inline-block;
font-size: 1.4rem;
padding:  30px 20px 25px 20px;
}
#wrapper nav#gl-navi ul li a{
color: #fff;
text-decoration:none;
text-shadow: 2px 2px 1px rgba(0, 0, 0, 1.0);
}
.menu {
	display:none;
}


/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
/*.menu-btn{
  position:absolute;
  top: 20px;
  right: 20px;
  z-index: 9999999;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  color: #fff;
}*/

/*----------------------------
* メニュー本体
*----------------------------*/
nav#gl-navi {
	display:none!important;
}

.menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900000;
  width: 70vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #444;
  opacity: 0.8;
}
.menu__item{
  width: 100%;
  height: auto;
  padding: .5em 1em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}
.menu a {
	color:#fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1.0);
}
/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu{
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active{
  transform: translateX(0);
}
/*MENU表示*/
@media screen and (min-width: 1000px){

nav#gl-navi {
	display:block!important;
}
.menu-btn {
	display:none!important;
}
}
.menu-btn::before {
  position:absolute;
  top:-10px;
  right:40px;
  width: 100px;
  content:"MENU";
  color:#208b9c;
  font-size:30px;
  font-weight:bold;
  font-family: 'Noto Serif JP', serif;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
/*ボタン処理*/
.menu-btn{
  position:fixed;/*absolute;*/
  top: 5px;
 right: 30px;
/* left: calc(50% + 460px);*/
  z-index: 9999999;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #208b9c;/*#333;*/
  color: #fff;
  border-radius: 3px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.menu-btn span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
	box-shadow: -1px -1px 2px rgba(0,0,0,0.6);
}

.menu-btn span:nth-child(1) {
    top: 8px
}

.menu-btn span:nth-child(2) {
    top: 18px
}

.menu-btn span:nth-child(3) {
    top: 28px
}
/* end close*/
/*open*/
.menu-btn span {
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 6px;
    -webkit-transition: all 400ms;
    transition: all 400ms
}

.menu-btn.open span:nth-child(1) {
    transform: translateY(12px) rotate(45deg) scale(1.3); 
}

.menu-btn.open span:nth-child(2) {
    background-color: transparent;  
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) scale(1.3); 
}
/* end open*/

.menu-btn.open span {
    background: #fff
}

.menu-btn.open span {
    width: 24px;
}
