/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 21 2024 | 10:36:49 */
/*メニューをページ下部に固定*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
background-color: #fff;
}

/*メニューを横並びにする*/
#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: 48%;
   padding:0 20px;
font-weight:bold;
font-size: 14px;
   border-right: 1px solid #fff;
	border-radius:10px;
	margin:5px auto 0;
}

/*左側メニューをオレンジに*/
#sp-fixed-menu li:first-child{
   background: #03B803;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:last-child{
   background: #DEBA14;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
padding:15px;
  text-decoration:none;
}
/*PCの場合にはメニューを表示させない*/
@media (min-width: 781px) {
   .for-sp{
      display:none;
    }


}

