@charset "UTF-8";
.slide {
  margin-left: 15%;
  margin-right: 15%;
  position: relative;
  height: 800px;
  overflow: hidden;
}
.slide img {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-animation: slideshow 24s linear infinite;
          animation: slideshow 24s linear infinite;
}

.copy {
  position: relative;
  display: none;
}
.copy span {
  position: absolute;
  top: -650px;
  left: 48.5%;
  height: auto;
  opacity: 0;
  -webkit-animation: slideshow 24s linear infinite;
          animation: slideshow 24s linear infinite;
  font-family: "Klee One", cursive;
  font-size: 2rem;
  line-height: 2;
}
.copy span strong {
  display: block;
  margin-bottom: 20px;
  font-size: 2.5rem;
  line-height: 1.5;
  color: #33A02C;
}

@keyframes slideshow {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  38% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes slideshow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  38% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.slide img:nth-child(2), .copy span:nth-child(2) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.slide img:last-child, .copy span:last-child {
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
}

/*画面幅800px以下の設定-----------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1080px) {
  .slide {
    display: none;
  }

  .copy {
    height: 40rem;
    display: block;
    background-image: url(/img/bg_about.png);
    background-repeat: no-repeat;
    background-position: center 16px;
    background-size: 300px 360px;
  }
  .copy span {
    display: block;
    margin-top: 20px;
    padding: 20px 0;
    width: 100%;
    top: 0;
    left: 0;
    height: auto;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .copy span strong {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.3;
  }
}/*# sourceMappingURL=slider.css.map */