﻿/* LCHU 5/25/19
	body kbslide common
	6 images w/o Caption
---------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#kbslide {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#kbslide img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  background: #000;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.4) rotate(6deg);
          transform: scale(1.4) rotate(6deg);
  -webkit-animation: kbslide 24s infinite;
          animation: kbslide 24s infinite;
}

#kbslide img:nth-child(6) {
}
#kbslide img:nth-child(5) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

#kbslide img:nth-child(4) {
  -webkit-animation-delay: 16s;
          animation-delay: 16ss;
}
#kbslide img:nth-child(3) {
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
}
#kbslide img:nth-child(2) {
  -webkit-animation-delay: 32s;
          animation-delay: 32s;
}
#kbslide img:nth-child(1) {
  -webkit-animation-delay: 40s;
          animation-delay: 40s;
}

@-webkit-keyframes kbslide {
  25% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
  40% {
    opacity: 0;
  }
}
@keyframes kbslide {
  25% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
  40% {
    opacity: 0;
  }
}
