@charset "utf-8";
/* CSS3 Document */
/* ########################### Global ###########################  */
.floating-banner {
    position: fixed;
    z-index: 200;
    bottom: 0px;
    display: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    right: 0%;
}
.floating-banner img{
    vertical-align: bottom;
    width: 20vw;
}
.banner-close {
    position: absolute;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    top: 0vh;
    left: auto;
    right: 0%;
    font-size: 1vw;
    width: 1.5vw;
    height: 1.5vw;
    background-color: #B5B5B5;
    font-weight: bold;
    text-align: center;
    vertical-align: baseline;
}

/* ########################### SP ###########################  */
@media screen and (max-width:768px) {
.floating-banner img{
    vertical-align: bottom;
    width: 26vw;
}
.banner-close {
    font-size: 2vw;
    width: 2.5vw;
    height: 2.5vw;
}
}