HTML CSSResult Skip Results Iframe EDIT ON @charset "utf-8";

/*========= レイアウトのためのCSS ===============*/


.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.box {
  width: 100%;
  color: #fff;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.box img {
  width: 45%;
}

.zv_box img {
  width: 100%;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box {
  opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  width: 98%;
  padding-left: 2%;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02 {
  animation-delay: 2.5s;
}

.delay-time04 {
  animation-delay: 3.0s;
}

.delay-time05 {
  animation-delay: 3.5s;
}

.delay-time06 {
  animation-delay: 3.8s;
}

@media only screen and (max-width: 580px) {
  .box img {
    width: 80%;
  }
}



@media only screen and (max-width: 850px) {
  .box img {
    width: 70%;
  }
}

@media only screen and (max-width: 1000px) {
  .box img {
    width: 60%;
  }
}
@media only screen and (min-width: 1580px) {
  .box img {
    width: 39%;
  }
}
@media only screen and (min-width: 1600px) {
  .box img {
    width: 34%;
  }
}
@media only screen and (min-width: 1820px) {
  .box img {
    width: 600px;
  }
}

@media only screen and (max-width: 750px) {
  .box img {
    width: 100%;
  }
}

Resources1× 0.5× 0.25×Rerun