/* スマホ版でヘッダーを固定（追従） */
@media screen and (max-width: 770px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    background: #fff;
  }

  #logo_image_mobile img {
      width: 40%!important;
      height: auto!important;
  }
  
  /* ハンバーガーメニューボタンも固定 */
  #header_menu_btn {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 201;
  }
  
  #header_menu_btn.active {
    position: fixed !important;
    top: 0 !important;
  }
  
  /* ヘッダーが固定されることでコンテンツが隠れないようにマージンを追加 */
  
  /* #header_slider {
    margin-top: 80px;
  } */
}

.footer_btn_first {
    background-color: #06C755;
}