#main {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}

.music section {
  max-width: 1060px;
}

.musiclist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.musiclist-item, .musiclist-dummy {
  margin: 0 2% 4%;
  width: 20.5%;
  max-width: 216px;
  min-width: 180px;
}

.musiclist-item.new_rerease, .musiclist-dummy.new_rerease {
  width: 70%;
  max-width: 360px;
  min-width: 180px;
  margin: 0 0 50px;
}

.musiclist-item img, .musiclist-dummy img {
  box-shadow: 1rem 1rem 0.5rem rgba(0, 0, 0, 0.5);
}

.musiclist-dummy {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 513px) {
  .musiclist-item {
    animation: op 2s both;
  }
  .musiclist-item:nth-of-type(1) {
    animation-delay: 1s;
  }
  .musiclist-item:nth-of-type(2) {
    animation-delay: 1.2s;
  }
  .musiclist-item:nth-of-type(3) {
    animation-delay: 1.4s;
  }
  .musiclist-item:nth-of-type(4) {
    animation-delay: 1.6s;
  }
  .musiclist-item:nth-of-type(5) {
    animation-delay: 1.8s;
  }
  .musiclist-item:nth-of-type(6) {
    animation-delay: 2s;
  }
  .musiclist-item:nth-of-type(7) {
    animation-delay: 2.2s;
  }
  .musiclist-item:nth-of-type(8) {
    animation-delay: 2.4s;
  }
  .musiclist-item:nth-of-type(9) {
    animation-delay: 2.6s;
  }
  .musiclist-item:nth-of-type(10) {
    animation-delay: 2.8s;
  }
  .musiclist-item.new_rerease {
    animation-name: newrerease;
  }
  .musiclist-item.new_rerease:nth-of-type(1) {
    animation-delay: 0.5s;
  }
  .musiclist-item a:hover .jacket_hov {
    opacity: .6;
  }
  .musiclist-item a:hover .jacket_hov::before {
    animation: ufo 2s linear infinite;
  }
  .musiclist-item a:hover .jacket_hov-label {
    animation: listen 1s linear forwards;
  }
  .musiclist-item a:hover .jacket_hov img {
    filter: blur(2px);
  }
  .jacket {
    position: relative;
  }
  .jacket_hov {
    align-items: center;
    background-color: #000;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.4s ease;
    width: 100%;
  }
  .jacket_hov::before {
    background-image: url(/images/music_hov.svg);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    opacity: .2;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .jacket_hov-label {
    background: #000;
    color: #fff;
    font-size: 3.5rem;
    font-family: "Renner*";
    font-weight: 400;
    padding: 2px 5px 0;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 512px) {
  #main {
    margin-top: 0;
  }
  .musiclist-item {
    margin: 3%;
    width: 40%;
  }
  .jacket_hov {
    display: none;
  }
}

@keyframes op {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes newrerease {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate3d(10, 10, -2, 15deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate3d(10, 10, 1, 0deg);
  }
}

@keyframes listen {
  0% {
    background: #900;
  }
  100% {
    background: #000;
  }
}

@keyframes ufo {
  0% {
    opacity: .2;
    transform: translateY(0px);
  }
  50% {
    opacity: .5;
    transform: translateY(5px);
  }
  100% {
    opacity: .2;
    transform: translateY(0px);
  }
}

/*# sourceMappingURL=music.css.map */
