@charset "UTF-8";
.banner-wrap {
    /*position: sticky;*/
    /*position: -webkit-sticky;*/
    position: fixed;
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 50px;*/
    top: calc(85vh - constant(safe-area-inset-bottom));
    top: calc(85vh - env(safe-area-inset-bottom));
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
    -webkit-transform : translateZ(0);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}
.banner-inner{
    /*width:100vw;*/
    /*height: 10vh;*/
    /*border: 1px solid #B2B2B2;*/
    position: relative;
    overflow: hidden;
}
.banner-wrap ul{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 10vh;
    position: absolute;
    top: 0;
    left: 0;
    /*-webkit-transition: all 0.3s cubic-bezier(1,.01,.32,1);*/
    /*-moz-transition: all 0.3s cubic-bezier(1,.01,.32,1);*/
    /*-o-transition: all 0.3s cubic-bezier(1,.01,.32,1);*/
    /*-ms-transition: all 0.3s cubic-bezier(1,.01,.32,1);*/
    /*transition: all 0.3s cubic-bezier(1,.01,.32,1);*/
}
.banner-wrap ul li{
    width: 100vw;
    height: 10vh;
    background-color: #fff;
}

.banner-wrap .banner-image {
    width:100%;
    height: 10vh;
}

.banner-wrap.none-banner {
    display: none;
}