@charset "UTF-8";

.viewer-count {
  position: fixed;
  bottom: 223px;
  left: 50%;
  top: 36%;
  transform: translateX(-50%) translateY(-50%);
  bottom: 0;
  text-align: center;
  color: #fff;
  padding: 4px 0;
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.9;
  width: 50%;
  line-height: 1.4;
}
.viewer-yellow {
  color: #ff0;
}

@media screen and (max-width: 768px) {
    .viewer-count {
        width: 90%;
        font-size: 1.2rem;
    }
}



/* ==========================
  フローティングバナー（追従バナー）
========================== */
#js_floatingBanner {
  display: none; /* 最初は非表示 */
  opacity: 0;    /* 初期透明度 */
  transition: opacity 1s ease-in-out; /* フェードインのトランジション */
}

.bl_floatingBanner {
    position: fixed;
    bottom: 0;
    width: 40%;
    max-width: 100%;
    z-index: 12;
    background-color: #48494a;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: auto;
    line-height: 1.0;
    height: 55px;
  }
  .bl_floatingBanner.js_close {
    display: none;
  }
  .bl_floatingBanner_img {
    display: block;
    transition: 0.3s;
  }
  .bl_floatingBanner_img:hover {
    opacity: 0.6;
  }
  .bl_floatingBanner_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #b6b6b6;
    border: 2px solid #b6b6b6;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
  }
  .bl_floatingBanner_close::before, .bl_floatingBanner_close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 13px;
    background: #48494a;
  }
  .bl_floatingBanner_close::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
  .bl_floatingBanner_close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
  }
  .js_close {
    display: none;
  }
  @media screen and (max-width: 768px) {
    .bl_floatingBanner_close {
      width: 11px;
      height: 11px;
    }
    .bl_floatingBanner_close::before, 
    .bl_floatingBanner_close::after { 
      width: 1.4px;
      height: 9px;
    }
    .bl_floatingBanner {
      width: 90%;
      bottom: 0;
      height: 45px;
      margin-bottom: 50px;
    }
  }
  