.floating-banner {
    width: calc(100% / 3);
    /* 画面の1/3の幅 */
    position: fixed;
    /* 固定表示 */
    bottom: 16px;
    /* 画面下から16px */
    left: 16px;
    /* 画面の左から16px */
    z-index: 9999;
    /* 常に前面に出す */
    transition: 0.3s;
    /* ホバー時ゆっくり透過 */
    cursor: pointer;
    /* ホバー時カーソルがポインターに */
}
.floating-banner:hover {
    opacity: 0.8;
    /* ホバーで透過させる */
}
.floating-banner_img {
    width: 100%;
    /* 画像をfloating-bannerの幅に合わせる */
}
@media screen and (min-width: 481px) {
    /* 画面幅481px以上 */
    .floating-banner {
        width: calc(100% / 6);
        /* 画面の1/6の幅 */
    }
}