.videoList {
  margin-left: -8px;
  margin-right: -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.videoList__item {
  width: 25%;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 40px;
}

.videoList__item__img {
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  padding-bottom: 73.5%;
}

.videoList__item__content {
  text-align: left;
  padding: 10px 5px 10px 5px;
}

.videoList__item__content .name {
  color: #696969;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 10px 0 3px 0;
}

.videoList__item__content .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.videoList__item__content .price p {
  color: #a50000;
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.videoList__item__content .price p.del {
  margin-right: 10px;
  color: #a2a1a1;
  text-decoration: line-through;
}

@media (max-width: 640px) {
  .videoList__item {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .videoList__item__content .name {
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 3px 0;
  }
  .videoList__item__content .price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .videoList__item__content .price p {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}

.videoList__item__img .more {
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px solid #fff;
  top: 10%;
  left: 10%;
  background-color: rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
}

.videoList__item__img .more span {
  text-align: center;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.videoList__item a:hover .more {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
/*# sourceMappingURL=video.css.map */