#banner , #banner .item {
    overflow: hidden;
    position: relative;
    background: #fff;
    z-index: 100;
}
#banner{
    margin-top:0;
}
#banner .item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
#banner .Janbe{
    display: flex;
    justify-content: space-between;
    padding: 5px 2px;
}
#banner .Janbe a{
    font-size: 0.9em;
    color: #2c2c2c;
}
@keyframes moveUpDown {
      0%, 100% {
        top:0;
      }
      50% {
         top:-5px;
      }
    }
a#scrollBtn::before {
    content: "⌵";
    position: relative;
    font-size: 22px;
    margin-right: 10px;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
    animation: 2s ease-in-out 0s infinite normal none running moveUpDown;
}
#banner .Janbe span{
    font-size: 0.9em;
    color: #2a2a2a;
}

#banner .info {
    position: absolute;
    width: 100%;
    top: 30vh;
    left: 0;
    z-index: 3;
}

#banner .info >* {
    -webkit-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -ms-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
}

#banner .info h3 {
    display: block;
    line-height: 110%;
    text-align: center;
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
}

#banner .info p {
    margin-top: 30px;
    text-align: center;
    line-height: 160%;
    font-weight: 100;
    font-size: 25px;
    color: #fff;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    transition-delay: .5s;
    opacity: 0;
}

#banner .img {
    position: relative;
    width: 100vw;
    aspect-ratio: 5 / 2;
    background: no-repeat 50% / cover;
    border-radius: 25px 0 0 0;
}

#banner .img video , #banner .img iframe {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

#banner .slick-active .img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

#banner .slick-active .info >* {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

@-webkit-keyframes banerBg {
    0% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.1);
    }
}

@keyframes banerBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}
@media screen and (max-width: 1470px){
    #banner .img{
}
}
@media screen and (max-width: 768px) {
    #banner .info h3 {
        font-size: 50px;
    }

    #banner .info p {
        font-size: 20px;
    }
    #banner .img{
    aspect-ratio: 7 / 6;
    background-position: 24% 5%;
    border-radius: 0;
    }
    #banner .Janbe{
    display: flex;
    flex-direction: column;
    display: none;
}
}
