/* Scss Document */
@-webkit-keyframes mainvisual {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100vw 0;
  }
}
@-moz-keyframes mainvisual {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100vw 0;
  }
}
@keyframes mainvisual {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100vw 0;
  }
}
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 30px;
}
@media screen and (max-width: 1150px) {
  .products {
    margin: 0 0 5vw;
  }
}
.products__list {
  width: 296px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1150px) {
  .products__list {
    width: 41.5vw;
    margin: 0 0 5vw;
  }
}
.products__listImageArea {
  box-shadow: 5px 5px #000;
  margin: 0 0 25px;
  background: #fff;
  font-family: 'nitalago-ruika', sans-serif;
  width: 296px;
  height: 296px;
  font-size: 32px;
}
@media screen and (max-width: 1150px) {
  .products__listImageArea {
    box-shadow: 0.5vw 0.5vw #000;
    margin: 0 0 2.5vw;
    width: 41.5vw;
    height: 41.5vw;
    font-size: 5vw;
  }
}
.products__listImageArea a {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  text-decoration: none;
}
.products__listImageArea img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transition: 0.4s;
  transform: scale(1);
}
.products__listImageArea img:hover {
  transform: scale(1.1);
}
.products__listTextArea {
  margin: 0;
}
.products__listTextArea a {
  color: #000;
}
@media screen and (max-width: 1150px) {
  .products__listTextArea a {
    font-size: 3vw;
  }
}
