@charset "utf-8";
/* CSS Document */
@media screen and (min-width: 737px) {
.floating-bnr {
    z-index: 99;
    background-color: rgba(255,255,255,0.7);
    position: fixed;
    bottom: 0;
    left: calc(50% - 600px);
    width: 100vw;
    max-width: 954px;
    height: auto;
    padding: 20px 50px 10px;
    box-sizing: border-box;
  transition: visibility 0s, opacity 0.6s;
}
.floating-bnr.hidden {
    visibility: hidden;
    opacity: 0;
    transition: 0.6s;
}
}
@media only screen and (max-width: 736px) {
.floating-bnr {
    z-index: 99;
    background-color: rgba(255,255,255,0.7);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 15px 15px  30px;
    box-sizing: border-box;
    margin-bottom: -35px;
  transition: visibility 0s, opacity 0.6s;
}
.floating-bnr.hidden {
    visibility: hidden;
    opacity: 0;
    transition: 0.6s;
}}
