@charset "UTF-8";
#slider {
  width: 100%;
  height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
#vegasSliderInner {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 25%;
    left: 0;
    color: #ffffff;
    font-size: 26px;
    text-align: center;
}
#vegasSliderInner p{
    animation-name: fade;
    animation-duration: 2s;
    letter-spacing: 2px;
}
@keyframes fade {0%{opacity: 0;}80%{opacity: 0;}100%{opacity: 1;}}
@media screen and (max-width: 1080px) {

}
@media screen and (max-width: 767px) {

}