@charset "utf-8";

/* PC View */
@media print, screen and (min-width:650px) {
  #sp_bottom_menu{
    display: none;
  }
}

/* Smart Phone View */
@media only screen and (max-width: 649px) {
  #sp_bottom_menu {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 70vw;
    z-index: 9999;
    opacity: 1;
    pointer-events: auto;
  }
  .sp_bottom_menu_list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .sp_bottom_menu_list li {
    margin: 0;
    padding: 0;
  }
  #sp_bottom_menu_list_img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ▼ スクロールアニメーション対応ブラウザのみ適用される記述 ▼ */
  @supports (animation-timeline: scroll()) {
    #sp_bottom_menu {
      opacity: 0;
      pointer-events: none;
      
      /* スクロール連動アニメーションの指定 */
      animation: show-menu linear forwards;
      animation-timeline: scroll(root);
      animation-range: 0px 100px; 
    }
    @keyframes show-menu {
      100% {
        opacity: 1;
        pointer-events: auto;
      }
    }
  }
}
