@charset "utf-8";

/* PC・SP共通：JSでfadeIn/fadeOutさせるため最初は非表示 */
.news-fixed-bn {
  display: none;
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 94px;
}

/* SP表示（横幅767px以下）の時の配置 */
@media screen and (max-width: 767px) {
  .news-fixed-bn {
    bottom: 0;
    width: 100%;
    /* 必要に応じて余白や下部ナビとの重なりを調整 */
    padding-bottom: env(safe-area-inset-bottom); /* iPhoneなどのノッチ対策 */
  }
}