/* 2023シーチケ 追従バナー */
/* PC表示 */
.bl_floatingBanner {
position: fixed;
bottom: 10px;
right: 10px;
max-width: 100%;
z-index: 100;
}
.bl_floatingBanner.js_close {
display: none;
}
.bl_floatingBanner_img {
display: block;
transition: 0.3s;
}
.bl_floatingBanner_img:hover {
opacity: 0.6;
}
.bl_floatingBanner_close {
width: 15px;
height: 15px;
position: absolute;
right: 0;
top: -15px;
cursor: pointer;
}
.bl_floatingBanner_close span:nth-of-type(1) {
position: absolute;
top: 7px;
right: 0;
width: 15px;
height: 1px;
background-color: #000;
transform: rotate(45deg);
}
.bl_floatingBanner_close span:nth-of-type(2) {
position: absolute;
top: 0;
right: 7px;
width: 1px;
height: 15px;
background-color: #000;
transform: rotate(45deg);
}

.bl_floatingBanner.js_close {
display: none;
}
/* SP表示 */
@media screen and (max-width: 960px) {
    .bl_floatingBanner {
    position: fixed;
    bottom: 10px;
    right: 10px;
    max-width: 100%;
    z-index: 100;
    }
    .bl_floatingBanner.js_close {
    display: none;
    }
    .bl_floatingBanner_img {
    display: block;
    transition: 0.3s;
    }
    .bl_floatingBanner_img:hover {
    opacity: 0.6;
    }
    .bl_floatingBanner_close {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    top: -15px;
    cursor: pointer;
    }
    .bl_floatingBanner_close span:nth-of-type(1) {
    position: absolute;
    top: 7px;
    right: 0;
    width: 15px;
    height: 1px;
    background-color: #000;
    transform: rotate(45deg);
    }
    .bl_floatingBanner_close span:nth-of-type(2) {
    position: absolute;
    top: 0;
    right: 7px;
    width: 1px;
    height: 15px;
    background-color: #000;
    transform: rotate(45deg);
    }

    .bl_floatingBanner.js_close {
    display: none;
    }
}