@charset "UTF-8";
.release_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: 80px auto 140px auto;
  font-size: 15px;
}

@media (max-width: 920px) {
  .release_cont {
    width: 100vw;
    margin: 20px auto 200px auto;
  }
}

.thumb {
  width: 440px;
  margin-right: 80px;
  margin-bottom: 10px;
}

.thumb img {
  width: 440px;
  height: 300px;
}

@media (max-width: 820px) {
  .thumb {
    margin-right: 0;
  }
}

@media (max-width: 400px) {
  .thumb img {
    width: 100vw;
    height: auto;
  }
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.thumb_slider {
  width: 440px;
  margin-right: 80px;
  margin-bottom: 30px;
  padding-top: 300px;
  /* 画像の高さ */
  position: relative;
}

@media (max-width: 820px) {
  .thumb_slider {
    margin-right: 0;
  }
}

@media (max-width: 400px) {
  .thumb_slider {
    padding-top: 250px;
  }
}

.thumb_slider img {
  width: 440px;
  height: 300px;
}

@media (max-width: 400px) {
  .thumb_slider img {
    width: 100vw;
    height: auto;
  }
}

.thumb_slider > img {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.thumb_slider input[name='switch'] {
  display: none;
}

/* サムネイル */
.thumb_slider label {
  margin: 15px 5px 0 0;
  border: 2px solid #ffffff;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.5;
}

.thumb_slider label:hover {
  opacity: 0.9;
}

.thumb_slider label img {
  display: block;
  width: 60px;
  height: 41px;
}

.thumb_slider input[name='switch']:checked + label {
  border: 2px solid #ccc;
  opacity: 1;
}

.thumb_slider input[name='switch'] ~ img {
  opacity: 0;
}

.thumb_slider input[name='switch']:checked + label + img {
  opacity: 1;
}

.relase_detail {
  width: 400px;
}

@media (max-width: 400px) {
  .relase_detail {
    width: 90%;
    margin: 0 5%;
  }
}

.relase_detail .relase_noDate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.relase_detail .relase_noDate h3 {
  font-size: 14px;
  font-weight: 500;
  color: #CC0000;
}

.relase_detail .relase_noDate span {
  font-weight: 400;
}

.relase_detail p {
  display: block;
  margin-top: 30px;
}

@media (max-width: 400px) {
  .relase_detail p {
    margin-top: 10px;
  }
}

.relase_detail p span {
  display: block;
}

.relase_detail p .jp_title {
  margin: 10px auto;
}

.track_list {
  width: 100%;
  margin: 50px 0 30px 0;
  font-size: 12px;
  border-collapse: collapse;
}

.track_list .list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-weight: 600;
}

.track_list li:last-of-type {
  border-bottom: solid 1px #000;
}

.track_list .track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 9px 0 7px 0;
  border-top: solid 1px #000;
}

.track_name {
  display: block;
  width: 60%;
  text-align: left;
  line-height: 2em;
}

.time {
  display: block;
  width: 25%;
  text-align: center;
  line-height: 2em;
}

.play {
  display: block;
  width: 15%;
  text-align: center;
}

/* modal*/
.modal_link {
  padding: 3px 10px 7px 10px;
  background: #000;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.modal_link:hover {
  background: red;
}

.modal_link:active {
  background: white;
}

.modal .modal_check {
  display: none;
}

.modal .modal_body {
  display: none;
}

.modal .modal_window {
  position: relative;
  z-index: 100001;
  -webkit-animation: fadein .3s 1, zoomin .3s 1;
          animation: fadein .3s 1, zoomin .3s 1;
}

.modal .close_label {
  position: fixed;
  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;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9000;
}

.modal .modal_label {
  position: absolute;
  top: -50px;
  right: -10px;
  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;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media (max-width: 480px) {
  .modal .modal_label {
    top: 20px;
    right: -10px;
  }
}

.modal .modal_label:hover {
  background: white;
}

.modal .modal_label:active {
  background: white;
}

.modal .modal_label span {
  margin-top: -5px;
  font-size: 30px;
  font-weight: 100;
  line-height: 0;
  vertical-align: top;
}

.modal .modal_inner {
  width: 80vw;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 660px) {
  .modal .modal_inner {
    width: 90vw;
    max-height: 360px;
  }
}

@media (max-width: 480px) {
  .modal .modal_inner {
    max-height: 260px;
  }
}

.modal .modal_content iframe {
  width: 100%;
  height: 360px;
}

@media (max-width: 660px) {
  .modal .modal_content iframe {
    width: 100%;
    max-height: 360px;
  }
}

.modal .modal_check:checked + .modal_body {
  position: fixed;
  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;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100000;
}

.modal .modal_check:checked + .modal_body .modal_window {
  -webkit-animation: zoomout .2s 1 forwards;
          animation: zoomout .2s 1 forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes zoomout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes zoomout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@-webkit-keyframes hide {
  0% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}

@keyframes hide {
  0% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}

.btn_buy {
  margin-top: 10px;
  display: block;
  width: 100%;
  height: 40px;
  padding: 10px auto;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 2.5em;
}

.btn_buy:hover {
  background: #CC0000;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.release_description {
  max-width: 900px;
  width: 90%;
}

.release_description li {
  margin-top: 40px;
}
/*# sourceMappingURL=release.css.map */