/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  color: #fff;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 80vw;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  background: #6c757d;
  padding-top:0px !important;
  padding-bottom:0px  !important;
}
.menu__item{
  width: 80%;
  height: auto;
  padding: 0em 1em;
  text-align: left;
  color: #fff !important;
  box-sizing: border-box;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu{
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active{
  transform: translateX(0);
}



/*----------------------------
* サブメニュードロップ
*----------------------------*/

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.item {
    position: relative;
}
 
.item a {
	display: block;
/*	line-height:60px;*/
	text-align: center;
	text-decoration: none;
	color:#000;

}
 
.child {
    visibility: hidden;
    width: 200%;
    position: absolute;
    top: 60px;
    left: 0px;
    background: #ddd;
}
 
.item:hover .child {
    visibility: visible;
}



nav{
text-align: center;
}
nav ul{
margin: 0 ;
padding: 0 ;
}
nav ul li{
list-style: none;
display: inline-block;
width: 18%;
min-width: 90px;
}
nav ul li a{
text-decoration: none;
color: #333;
}
nav ul li.current a{
color: #F33135;
}
nav ul li a:hover{
color: #E7DA66;
}

/*----------------------------
* フッターリンク
*----------------------------*/

#footer-index a
{
  color: #778899;
}

/*----------------------------
* 画像リンク
*----------------------------*/
a.linkImg:hover {
    position: relative;
    text-decoration: none;
}
a.linkImg span {
    display: none;
    position: absolute;
    top: 2.5em;
    left: 20px;
}
a.linkImg:hover span {
    border: none;
    display: block;
    width: 210px;
}




