.special_contents {
  margin: auto;
}

@media screen and (min-width: 961px) {
  .special_contents {
    width: 79.28%;
    min-width: 900px;
    max-width: 1000px;
  }
}

@media screen and (max-width: 960px) {
  .special_contents {
    width: 86%;
  }
}

@media screen and (min-width: 961px) {
  .special_area .special_contents-lead {
    font-size: 26px;
    margin-bottom: 49px;
  }
}

@media screen and (max-width: 960px) {
  .special_area .special_contents-lead {
    letter-spacing: 1.2rem;
    font-size: 1.5rem;
    margin-bottom: 8.66vw;
  }
}

.radio_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 960px) {
  .radio_list {
    display: block;
  }
}

.radio_list li {
  width: 48%;
  margin-left: 2%;
  cursor: pointer;
}

@media screen and (min-width: 961px) {
  .radio_list li:nth-child(2n+1) {
    margin-left: 0;
  }
  .radio_list li:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}

@media screen and (max-width: 960px) {
  .radio_list li {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  .radio_list li:first-child {
    margin-top: 0;
  }
}

.radio_list li .movie_thumb-text {
  margin-top: 10px;
}

.radio_list li .movie_thumb-image:before,
.radio_list li .movie_thumb-image:after {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 150px;
  top: calc(50% - 75px);
  left: calc(50% - 75px);
  z-index: 1;
  background-size: contain;
}

@media screen and (max-width: 960px) {
  .radio_list li .movie_thumb-image:before,
  .radio_list li .movie_thumb-image:after {
    width: 70px;
    height: 70px;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
  }
}

.radio_list li .movie_thumb-image:before {
  background-image: url("/assets/img/btn_play.png");
}

.radio_list li .movie_thumb-image:after {
  background-image: url("/assets/img/btn_play_round.png");
  -webkit-animation: rotate_loop 12s linear infinite;
  animation: rotate_loop 12s linear infinite;
}