  @charset "utf-8";
/* CSS »­Ïñ¤À¤±ÇÐÌæ*/

.slideBox {
  overflow: hidden;
  position: relative;
}

/* img¤Î¤ß */
@media screen and (min-width: 767px) {
.item1 {
  opacity: 0;
  width: 308px;
  height: 255px;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-animation: anime 20s 0s infinite;
  animation: anime 20s 0s infinite;
}

.item1:nth-of-type(2) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

/*.item1:nth-of-type(3) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}*/

/*ÎÄ×Ö¤Î»Ø¤êÞz¤ß*/
.moji {
  float: left; /* »­Ïñ¤ò×ó¤Ë¤¹¤ëˆöºÏ */
  margin-right: 20px; /* ¥Æ¥­¥¹¥È¤È¤ÎÓà°× */
  max-width: 500px;
  width: 50vw;
}
}

/* ¤Õ¤ï¤Ã¤È¥¢¥Ë¥á©`¥·¥ç¥ó */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}