/*メニューをページ下部に固定*/
#sp-fixed-menu{
   display:none;
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 50%;
   padding:0;
   margin:0;
   font-size: 14px;
   border-right: 1px solid #fff;
   font-weight:bold;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child{
   background: #4ea8b3;
}

/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child{
   background: #e66a11;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   padding:20px;
}