@charset "UTF-8";
body {
  opacity: 0;
}

@media screen and (min-width: 751px) {
  body {
    min-width: 1280px;
  }
}

.wrapper {
  overflow: hidden;
}

/*********************/
.top {
  position: relative;
  overflow: hidden;
}

.top_movie {
  position: fixed;
  z-index: -1;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}

.top_movie .video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: -100;
}

.top_movie .video-box .youtube-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-width: 1400px;
  min-height: 140%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -100;
  opacity: 0.5;
}

@media screen and (max-width: 750px) {
  .top_movie .video-box .youtube-video {
    min-height: 100vh;
  }
}

.top_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40%;
  max-width: 530px;
  z-index: 20;
  opacity: 0;
}

.top_ttl img {
  width: 100%;
}

@media screen and (max-width: 750px) {
  .top_ttl {
    width: 80%;
    -webkit-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%);
  }
}

.top_ttl.is-op {
  -webkit-animation: blur_logo 1s linear 0s forwards;
  animation: blur_logo 1s linear 0s forwards;
}

.photo_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: url(../img/photo_01.jpg) repeat-x;
  background-size: contain;
  pointer-events: none;
  -webkit-animation: photo_01 50s linear infinite;
          animation: photo_01 50s linear infinite;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1) 1.2s;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1) 1.2s;
}

@media screen and (max-width: 750px) {
  .photo_01 {
    height: 80px;
    background-size: cover;
  }
}

.photo_02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: url(../img/photo_02.jpg) repeat-x;
  background-size: contain;
  pointer-events: none;
  -webkit-animation: photo_02 50s linear infinite;
          animation: photo_02 50s linear infinite;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1) 1.2s;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1) 1.2s;
}

@media screen and (max-width: 750px) {
  .photo_02 {
    height: 80px;
    background-size: cover;
  }
}

@-webkit-keyframes photo_01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2223px 0;
  }
}

@keyframes photo_01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2223px 0;
  }
}

@-webkit-keyframes photo_02 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2223px 0;
  }
}

@keyframes photo_02 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2223px 0;
  }
}

@-webkit-keyframes blur_logo {
  0% {
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes blur_logo {
  0% {
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

/*********************/
.lead {
  position: relative;
  width: 70%;
  max-width: 1000px;
  margin: 80px auto 0;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 750px) {
  .lead {
    width: 90%;
    margin: 60px auto 0;
  }
}

.lead_txt {
  font-size: 18px;
  line-height: 1.6em;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
}

.lead_txt.is-scrolled {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .lead_txt {
    font-size: 14px;
    text-align: left;
  }
}

.lead .vote_period {
  margin-top: 80px;
  background: #f6832e;
  padding: 22px 0 30px;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
}

.lead .vote_period.is-scrolled {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.lead .vote_period_txt {
  line-height: 1.6em;
  font-size: 22px;
}

.lead .vote_period_att {
  font-size: 15px;
  margin-top: 10px;
}

@media screen and (max-width: 750px) {
  .lead .vote_period {
    margin-top: 60px;
    padding: 6% 4%;
  }
  .lead .vote_period_txt {
    line-height: 1.5em;
    font-size: 16px;
  }
  .lead .vote_period_att {
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.4em;
  }
}

.lead .vote_step {
  margin-top: 80px;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.lead .vote_step.is-scrolled {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.lead .vote_step .vote_cap {
  margin-bottom: 20px;
  font-size: 25px;
}

.lead .vote_step dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  margin-top: 2px;
  line-height: 1.5em;
}

.lead .vote_step dl dt {
  width: 14.8%;
  background: #fff;
  padding: 20px 10px;
  margin-right: 0.2%;
  color: #f6832e;
  font-weight: 600;
}

.lead .vote_step dl dd {
  width: 85%;
  background: #fff;
  padding: 20px 15px;
  text-align: left;
}

.lead .vote_step dl dd span {
  font-size: 13px;
}

@media screen and (max-width: 750px) {
  .lead .vote_step {
    margin-top: 60px;
  }
  .lead .vote_step .vote_cap {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .lead .vote_step dl {
    margin-top: 2px;
    line-height: 1.5em;
    font-size: 13px;
  }
  .lead .vote_step dl dt {
    width: 19.8%;
    padding: 5% 0;
    margin-right: 0.2%;
  }
  .lead .vote_step dl dd {
    width: 80%;
    padding: 5% 4%;
  }
  .lead .vote_step dl dd span {
    font-size: 11px;
  }
}

.lead .vote_step a {
  color: #f6832e;
}

@media screen and (min-width: 751px) {
  .lead .vote_step a:hover {
    text-decoration: none;
  }
}

.lead_catch {
  color: #f6832e;
  font-size: 20px;
  margin-top: 80px;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.lead_catch.is-scrolled {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .lead_catch {
    line-height: 1.5em;
    font-size: 16px;
    margin-top: 60px;
  }
}

.lead .episode_link_all {
  position: relative;
  width: 340px;
  margin: 0 auto;
}

.lead .episode_link_all img {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

@media screen and (min-width: 751px) {
  .lead .episode_link_all img:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 750px) {
  .lead .episode_link_all {
    font-size: 13px;
    width: 80%;
  }
}

.lead .episode_link_all {
  margin-top: 50px;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.lead .episode_link_all.is-scrolled {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .lead .episode_link_all {
    margin-top: 40px;
  }
}

.about {
  width: 700px;
  margin: 60px auto 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

@media screen and (max-width: 750px) {
  .about {
    width: 100%;
  }
}

.about.is-scrolled {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.about .about_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  font-size: 18px;
}

@media screen and (max-width: 750px) {
  .about .about_item {
    display: block;
    font-size: 15px;
    margin-top: 15px;
  }
}

.about .about_item dt {
  background: #f6832e;
  width: 140px;
  margin-right: 5px;
  padding: 15px 0;
  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;
}

@media screen and (max-width: 750px) {
  .about .about_item dt {
    width: 100%;
    margin: 0 0 2px 0;
    padding: 12px 0;
    display: block;
  }
}

.about .about_item dd {
  background: #f6832e;
  padding: 15px 20px;
  width: calc(100% - 145px);
  text-align: left;
}

@media screen and (max-width: 750px) {
  .about .about_item dd {
    width: 100%;
    padding: 20px 20px;
    line-height: 1.5em;
    text-align: center;
  }
}

.about .about_item dd ul {
  font-size: 13px;
  margin-top: 10px;
}

@media screen and (max-width: 750px) {
  .about .about_item dd ul {
    font-size: 11px;
    margin-top: 5px;
  }
}

.about .about_item dd ul li {
  text-indent: -1em;
  padding-left: 1em;
}

/*********************/
.episode {
  position: relative;
  margin-top: 120px;
}

@media screen and (max-width: 750px) {
  .episode {
    margin-top: 100px;
  }
}

.episode h3 {
  position: absolute;
  width: 22%;
  top: -40px;
  right: -2.5%;
}

.episode h3 img {
  width: 100%;
}

@media screen and (max-width: 750px) {
  .episode h3 {
    width: 35%;
    right: -5%;
    top: -10px;
  }
}

.episode_section {
  position: relative;
  background: #333;
  padding: 50px 6%;
  margin-top: 100px;
  margin-right: 10%;
  min-height: 280px;
  max-width: 1280px;
  opacity: 0;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.episode_section._1st {
  background: #c82321;
}

.episode_section._2nd {
  background: #1335a9;
}

.episode_section._3rd {
  background: #cccccc;
}

.episode_section h3 {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.episode_section:nth-child(2n+1) {
  padding: 50px 6%;
  margin-left: auto;
  margin-right: 0;
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

.episode_section:nth-child(2n+1) h3 {
  left: -2%;
}

.episode_section:nth-child(2n+1) .episode_list {
  margin: 0 auto 0 0;
}

.episode_section.is-scrolled {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.episode_section.is-scrolled h3 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 750px) {
  .episode_section {
    padding: 7% 7% 7% 0;
    margin-right: 8%;
    margin-top: 60px;
    min-height: 18vh;
  }
  .episode_section:nth-child(2n+1) {
    padding: 7% 0 7% 7%;
    margin-left: 8%;
    margin-right: 0;
  }
  .episode_section:nth-child(2n+1) h3 {
    left: -5%;
  }
}

.episode_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
}

@media screen and (min-width: 751px) {
  .episode_list {
    width: 1000px;
    margin: 0 0 0 auto;
  }
  .episode_list:nth-child(2n+1) {
    padding: 7% 0 7% 7%;
    margin-left: 8%;
    margin-right: 0;
  }
  .episode_list:nth-child(2n+1) h3 {
    left: -5%;
  }
}

.episode_list > li {
  width: 19.55%;
  margin-left: 0.5%;
  margin-top: 5px;
}

@media screen and (min-width: 751px) {
  .episode_list > li {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .episode_list > li:nth-child(5n+1) {
    margin-left: 0;
  }
  .episode_list > li:nth-child(n+1):nth-child(-n+5) {
    margin-top: 0;
  }
  .episode_list > li:hover {
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@media screen and (max-width: 750px) {
  .episode_list > li {
    width: 25%;
    margin-left: 0;
  }
  .episode_list > li:nth-child(4n+1) {
    margin-left: 0;
  }
  .episode_list > li:nth-child(n+1):nth-child(-n+4) {
    margin-top: 0;
  }
}

.m-modal__content img {
  width: 100%;
}

.m-modal__content .episode_ttl {
  font-size: 26px;
  margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
  .m-modal__content .episode_ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.m-modal__content .episode_photo {
  width: 700px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .m-modal__content .episode_photo {
    width: 100%;
  }
}

.m-modal__content .episode_txt {
  width: 700px;
  margin: 30px auto 0;
  line-height: 1.6em;
  text-align: left;
  font-size: 15px;
}

@media screen and (max-width: 750px) {
  .m-modal__content .episode_txt {
    width: 100%;
    font-size: 13px;
    margin: 20px auto 0;
  }
}

.m-modal__content .btn_vote {
  background: #fff;
  color: #000;
  width: 240px;
  margin: 40px auto;
  padding: 18px 0 20px;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (min-width: 751px) {
  .m-modal__content .btn_vote:hover {
    background: #f6832e;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media screen and (max-width: 750px) {
  .m-modal__content .btn_vote {
    width: 100%;
  }
}

.m-modal__content .btn_none {
  pointer-events: none;
  display: none;
}

.m-modal__content .btn.-disable .btn_vote {
  pointer-events: none;
  display: none;
}

.m-modal__content .btn.-disable .btn_none {
  display: block;
  background: #ccc;
  color: #000;
  width: 300px;
  margin: 40px auto;
  padding: 18px 10px 20px;
  font-size: 18px;
}

@media screen and (max-width: 750px) {
  .m-modal__content .btn.-disable .btn_none {
    width: 100%;
  }
}

.m-modal.is-vote .episode_ttl,
.m-modal.is-vote .episode_photo,
.m-modal.is-vote .episode_txt,
.m-modal.is-vote .btn {
  display: none;
}

.bnr_anime {
  width: 400px;
  margin: 180px auto 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.bnr_anime.is-scrolled {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media screen and (min-width: 751px) {
  .bnr_anime:hover {
    opacity: 0.7;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media screen and (max-width: 750px) {
  .bnr_anime {
    width: 60%;
    margin: 150px auto 0;
  }
}

/*********************/
/*モーダル*/
.share-modal {
  display: none;
  opacity: .9;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.share-modal .close-btn {
  position: fixed;
  top: 0;
  right: 0 !important;
  z-index: 10;
  padding-top: 80px;
  width: 80px;
  height: auto;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .share-modal .close-btn {
    top: 0;
    right: 0;
    padding-top: 15%;
    width: 15%;
  }
}

.share-modal .close-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  width: 2px;
  height: 60%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.share-modal .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  width: 2px;
  height: 60%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

@media screen and (min-width: 751px) {
  .share-modal .close-btn:hover::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
    background-color: #f6832e;
  }
  .share-modal .close-btn:hover::after {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
    background-color: #f6832e;
  }
}

.share-modal .wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.share-modal__content {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  margin: 200px auto;
  max-width: 900px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .share-modal__content {
    margin: 30vh auto;
  }
}

.share-modal__comptitle {
  font-size: 44px;
  margin-bottom: 40px;
}

.share-modal__comptext {
  line-height: 1.5em;
  font-size: 20px;
}

@media screen and (max-width: 750px) {
  .share-modal__comptext {
    width: 90%;
    margin: 0 auto;
    font-size: 16px;
  }
}

.share-modal__share {
  position: relative;
  background: #fff;
  color: #000;
  width: 240px;
  margin: 40px auto 0;
  padding: 20px 0 21px;
  letter-spacing: 0.05em;
  font-size: 18px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (max-width: 750px) {
  .share-modal__share {
    padding: 22px 0 24px;
    font-size: 20px;
    width: 60%;
  }
}

.share-modal__share a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 751px) {
  .share-modal__share:hover {
    background: #f6832e;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.c-footer {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s;
}

.c-footer.is-scrolled {
  opacity: 1;
}

.episode_img {
  position: relative;
}

.episode_img .episode_no {
  position: absolute;
  font-size: 20px;
  top: 3px;
  left: 3px;
  text-shadow: 0px 0px 4px black;
}

@media screen and (max-width: 750px) {
  .episode_img .episode_no {
    font-size: 15px;
    top: 2px;
    left: 2px;
  }
}

.episode_img._1st img,
.episode_img._2nd img,
.episode_img._3rd img {
  width: 195.5px;
  height: 110.25px;
}

@media screen and (max-width: 750px) {
  .episode_img._1st img,
  .episode_img._2nd img,
  .episode_img._3rd img {
    width: 100%;
    height: auto;
    min-height: 40px;
  }
}

.episode_img img {
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0s;
}

.episode_img img.lazyloaded {
  opacity: 1;
}

/**********************************/
.cursor {
  width: 50px;
  height: 50px;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  pointer-events: none;
  -webkit-transform: scale(0);
  transform: scale(0);
  position: absolute;
  z-index: 1000;
}

.cursor.active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.cursor span {
  display: block;
  width: 100%;
  height: 100%;
  background: #f6832e;
  opacity: .6;
  border-radius: 50%;
  position: absolute;
}

/***************************************/
.onair {
  border: #fff 2px solid;
  padding: 40px;
  margin-top: 40px 0;
  width: 750px;
  margin: 50px auto 80px;
  opacity: 0;
  background: #000;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s, opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0s;
}

.onair dt {
  font-size: 25px;
  line-height: 1.0em;
  color: #f6832e;
}

.onair dd {
  margin-top: 25px;
  line-height: 1.8em;
  font-size: 18px;
}

@media screen and (max-width: 750px) {
  .onair {
    width: 100%;
    padding: 6.5% 4% 6%;
  }
  .onair dt {
    font-size: 16px;
  }
  .onair dd {
    margin-top: 5%;
    line-height: 1.6em;
    font-size: 13px;
    letter-spacing: normal;
  }
}

.onair.is-scrolled {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
/*# sourceMappingURL=best-episode.css.map */