@charset "UTF-8";

/* CSS Document */
/* fade slider */
/* ------ slide image ------- */
.hero-slide__img {
    animation-duration: 21s;
    animation-iteration-count: infinite;
    animation-name: slideAnime;
    animation-timing-function: ease;
    display: block;
    object-fit: contain;
    opacity: 0;
    width: 100vw;
}
.hero-slide__item:nth-of-type(1) .hero-slide__img {
    animation-delay: 0s;
}

.hero-slide__item:nth-of-type(2) .hero-slide__img {
    animation-delay: 3s;
}

.hero-slide__item:nth-of-type(3) .hero-slide__img {
    animation-delay: 6s;
}

.hero-slide__item:nth-of-type(4) .hero-slide__img {
    animation-delay: 9s;
}

.hero-slide__item:nth-of-type(5) .hero-slide__img {
    animation-delay: 12s;
}

.hero-slide__item:nth-of-type(6) .hero-slide__img {
    animation-delay: 15s;
}


@-webkit-keyframes slideAnime {
    0% {
        opacity: 0;
    }

    16% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    49% {
        opacity: 0;
    }

    100% {
        opacity: 0;
/*---要素を右に移動の必要ないので下記コメントアウト---*/
        /*transform: translateX(-10%);*/
    }
}

@-moz-keyframes slideAnime {
    0% {
        opacity: 0;
    }

    16% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    49% {
        opacity: 0;
    }

    100% {
        opacity: 0;
/*---要素を右に移動の必要ないので下記コメントアウト---*/
        /*transform: translateX(-10%);*/
    }
}

/* ------ hero erea ------- */
.hero {
    height: 100vh;/***720px***/
    overflow: hidden;
    position: relative;
}

.hero__inner {
    margin: 0 auto;
    width: 100%;/****1280px****/
}

/* ------ hero title ------- */
.hero__title {
    font: 700 3em/1.5em 'Zen Old Mincho', serif;
    letter-spacing: 0.2em;
    color: #fff;
    opacity: 0.7;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    width: 100%;
}
/* -----top title animation----- */
.hero__title {
    animation-duration: 6s;
    animation-name: slidein;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes slidein {
  0% {
    margin-left: 100%;
    width: 300%;
  }

  100% {
    margin-left: 0%;
    width: 100%;
  }
}

@-moz-keyframes slidein {
  0% {
    margin-left: 100%;
    width: 300%;
  }

  100% {
    margin-left: 0%;
    width: 100%;
  }
}
/* ---top title animation ここまで--- */

.hero-slide__item {
    bottom: 0;
    height: 100%;
    position: absolute;
    right: -10%;
    width: 110%;
}
/* *******************************************
 * Small devices width 768px~1240px ipad横以上 
**************** */
@media only screen and (min-width: 48em) and (max-width: 77.5em) {
    .hero-slide__img {
        display: block;
        object-fit: cover;
        opacity: 0;
        width: 100vw;
        min-height: 720px;
    }
    .hero__title {
    top: 35%;
    width: 100%;
    }
}
/* *******************************************
 * Small devices width 320px~768px スマホ ipad縦  
**************** */
@media only screen and (min-width: 20em) and (max-width: 48em) {
    .hero-slide__img {
        display: block;
        object-fit: cover;
        opacity: 0;
        width: 100vw;
        min-height: 720px;
    }
    .hero__title {
    top: 35%;
    width: 100%;
    }
}
