/*フローティングバナー*/
.floating-bnr.bnr01 {
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05), 0 8px 14px rgba(0, 0, 0, 0.08);
    display: none;
    position: fixed;
    bottom: 100px;
    right: 40px;
    width: 150px;
    height: 150px;
    max-width: 90vw;
    z-index: 9999;
}
.floating-bnr a:hover {
    opacity: 0.7;
    transition: 0.2s;
}

/*閉じるボタン*/
.bnr_close {
    background-color: #4cc764;
    border: none;
    border-radius: 25px;
    box-shadow: 0 0 7px rgb(0, 0, 0, 0.4);
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 8px;
    position: absolute;
    right: -4px;
    top: -2px;
}
.fa-xmark:before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
}

@media screen and (max-width: 950px) {
.floating-bnr.bnr01 {
    bottom: 120px;
    right: 10px;
    width: 90px;
    height: 90px;
}
}