/* ---------------------------------------------
smh gamen control
--------------------------------------------- */
#wrapper{
 display:none;
 }

/* ---------------------------------------------
floating
--------------------------------------------- */
#fmenu5 {
 position: fixed;
 top: 100px;
 right: -320px; /*マウスを乗せた時に出てくる幅*/
 display: inline-block;
 transition: all .2s ease;
 z-index: 9999;
}
#fmenu5:hover{
 right: 0;
}

#fmenu6 {
 position: fixed;
 top: 100px;
 left: -600px; /*マウスを乗せた時に出てくる幅*/
 display: inline-block;
 transition: all .2s ease;
 z-index: 9999;
}
#fmenu6:hover{
 left: 0;
}