/* フローティングバナー */
.floating-banner {
    position: fixed;
    z-index: 9999;
    bottom: 16px;
    right: 16px;
    margin: 0;
    padding: 0;
    transition: 0.3s;
    cursor: pointer;
}
.floating-banner:hover {
    opacity: 0.8;
}
.floating-banner_pc {
    width: 200px;
    height: auto;
}
.floating-banner_sp{
display: none;
}

@media screen and (max-width: 799px) {
.floating-banner_sp {
    display: block;
    width: 100%;
    height: auto;
}
.floating-banner_pc{
display: none;
}
}

/* 流れるキーワード */
.bbs{
  align-items: center;
  display: flex;
  height: 25px;
  line-height: 25px;
  overflow:hidden;
  width: 100%;
  white-space:nowrap;
  z-index: 1;
}
.bbs ul {
  animation: flowing 27s linear infinite;
  font-size: 14px;
  transform:translateX(100%);
  margin: 0;
  padding: 0;
}
.bbs ul li{
  display: inline-block;
  padding-right: 10px;
  margin-right: 10px;
    text-align: center;
}
@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}

@media screen and (max-width:767px) {
.bbs{
  align-items: center;
  display: flex;
  height: 25px;
  line-height: 25px;
  overflow:hidden;
  width: 100%;
  white-space:nowrap;
  z-index: 1;
}
.bbs ul {
  animation: flowing 20s linear infinite;
  font-size: 14px;
  transform:translateX(100%);
  margin: 0;
  padding: 0;
}
.bbs ul li{
  display: inline-block;
  padding-right: 10px;
width: unset;
    text-align: center;
}
@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}
}
/* 流れるキーワードここまで */