<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">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%;
}

/*==================================================
ã‚¹ã‚¿ãƒ¼ãƒˆæ™‚ã¯è¦ç´&nbsp;è‡ªä½“ã‚’é€éŽ0ã«ã™ã‚‹ãŸã‚ã®opacity:0;ã‚’æŒ‡å®šã™ã‚‹
===================================*/

.box {
  opacity: 0;
}

/*==================================================
ãµã‚ã£
===================================*/

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  width: 96%;
  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: 750px) {
  .box img {
    width: 100%;
  }
}
@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;
  }
}
Resources1Ã— 0.5Ã— 0.25Ã—Rerun</pre></body></html>