@charset "utf-8";


/*============================
  フローティングメニュー（フッター）
  ============================*/


/*====================↓フッターメニュー（全体）====================*/


  #floating_footer {

    /*デザイン*/
    opacity: 0.9;

    /*位置*/
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;

    /*レイアウト*/
    display: none;

  }
  @media (width <= 834px){

    #floating_footer {

      /*レイアウト*/
      display: block;

    }

  }


/*====================↑フッターメニュー（全体）====================*/







/*====================↓内容（単体）====================*/


  #floating_footer > a{

    /*デザイン*/
/*
    background: #FF9931;
*/
    background: #352305;


    /*レイアウト、子要素のレイアウト*/
    display:block flex;
    justify-content:center;

  }


/*====================↑内容（単体）====================*/







/*====================↓内容（複数）====================*/


  /*ボタン*/
  #floating_footer .contents_frame{

   /*子要素のレイアウト*/
   display: flex;
   background: #00ADE8;

  }
  /*ボタン（最後）*/
  #floating_footer .contents_frame a:last-child{

   /*デザイン*/
   background: #4c9ea1;

  }


/*====================↑内容（複数）====================*/







/*====================↓メッセージ====================*/


  /*メッセージ*/
  #floating_footer .message{

    /*デザイン*/
    background-color: #FFF;

    /*余白*/
    padding: 10px 15px 10px 15px;

    /*テキスト*/
    font-size: 0.75em;
    line-height: 1.4em;

  }


/*====================↑メッセージ====================*/







/*====================↓上げ底要素====================*/


  #raised_bottom{
      background: #352305;
  }


/*====================↑上げ底要素====================*/
