/* banner tokuten */
.c-banner-top {
    display: none;
    position: fixed;
    right: 13px;
    bottom: 214px;
    z-index: 999;
}
.c-banner-top p.center {
    position: relative;
    padding-top: 17px;
}
.c-banner-top a {
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.c-banner-top a:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 98%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(105deg,rgba(255,255,255,0) 25%,rgba(255,255,255,.5) 50%,rgba(255,255,255,0) 75%);
    -webkit-animation: shine 2s infinite;
    animation: shine 2s infinite ;
}
.c-banner-top p.center i {
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: -2px;
    right: 0;
}
.fa-close:before, .fa-remove:before, .fa-times:before {
    content: "\f00d";
}
@-webkit-keyframes shine {
    from {left: -100%;}
    to {left: 100%;}
}
@media screen and (max-width: 740px) {
    .c-banner-top {
        display: none !important;
    }

}

/* end banner tokuten */