@charset "UTF-8";

.grid{
  display: grid;
  gap: 0;
  grid-template-columns: 120px 120px;
  column-gap: 1.5rem;
  grid-row-gap: 2rem;
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 0%;
  justify-content: center;
}

@media (min-width: 480px) {
.grid {
  grid-template-columns: repeat(5, 120px);
  column-gap: 3rem;
  grid-row-gap: 2rem;
  margin-left: 250px;
  margin-right: 250px;
  margin-bottom: 100px;
}
}

div.item img{
width: 120px;
height: 120px;
}

.item{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	text-align: center;
}

.item a{
	color: #333;
	text-decoration: none;
}

/*フェードアップ1回*/
.fadein {
  opacity: 0;
  bottom: -60px;
  position: relative;
}

.fadein.active {
  animation-name: fadein;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadein {
  0% {
    opacity: 0;
    bottom: -60px;;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}

/*----*/


/*アニメーション*/
/*モーション*/
.fadeIn {
  opacity: 0;
}
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
}
.fadeDown {
  opacity: 0;
  transform: translateY(-50%);
}
.fadeRight {
  opacity: 0;
  transform: translateX(-50%);
}
.fadeLeft {
  opacity: 0;
  transform: translateX(50%);
}/*遅延秒数*/
.ddelay01s {
  animation-delay: 0.1s;
}
.delay02s {
  animation-delay: 0.2s;
}
.delay03s {
  animation-delay: 0.3s;
}
.delay04s {
  animation-delay: 0.4s;
}
.delay05s {
  animation-delay: 0.5s;
}
.delay06s {
  animation-delay: 0.6s;
}
.delay07s {
  animation-delay: 0.7s;
}
.delay08s {
  animation-delay: 0.8s;
}
.delay09s {
  animation-delay: 0.9s;
}
.delay1s {
  animation-delay: 1s;
}
.delay2s {
  animation-delay: 2s;
}
/*--*/
.fadeIn.is-animated {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeUp.is-animated {
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeDown.is-animated {
  animation-name: fadeDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeRight.is-animated {
  animation-name: fadeRight;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeLeft.is-animated {
  animation-name: fadeLeft;
  animation-duration: 1s;
  animation-fill-mode: both;
}
/*--*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}