@charset "utf-8";


/*------------------*/
/*フローティングメニュー*/
/*------------------*/

/*全体枠*/
#menu_floating {
	opacity: 0.9;
	z-index: 1;

	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;

 display: block;
}


/*ボタン*/
#menu_floating .button{
 display: flex;
 justify-content:center;
 background-color: #FFF;
 border: solid #00bcaa;
}
/*ボタン（最後）*/
#menu_floating .button a:last-child{
	background-color: #00bcaa;
}


/*メッセージ*/
#menu_floating .message{
	background-color: #FFF;
 padding: 10px 15px 10px 15px;
 font-size: 0.75em;
 line-height: 1.4em;
}





/*指定：835px～ */
@media print, screen and (min-width: 835px) {
 #menu_floating {
	 display: none;
 }
}