.banner{
    width: 100%;
    background-image: url(../images/banner/banner_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner .row{
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
    -webkit-align-items: center;
}

.banner .bottom{
    padding-top: 10%;
}

.banner .bottom .mask{
    position: absolute;
    top: 17.5%;
    left: 6%;
    width: 88.5%;
    height: 100%;
    -webkit-mask: url(../images/banner/banner-txt02.svg) no-repeat center center;
    mask: url(../images/banner/banner-txt02.svg) no-repeat center center;
    z-index: 2;
}

.banner .bottom .mask::before{
    content: '';
    position: absolute;
    top: 0%;
    left: -50%;
    width: 15px;
    height: 200%;
    background-color: #fff;
    filter: blur(10px);
    animation-name: shin;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform: rotate(15deg);
}

@keyframes shin {
    form {
        left: -50%;
    }
    to {
        left: 104%;
    }
}