/*==========================================================================
# movie.css
投稿動画詳細CSS

## Filepath
/moviedetail/css/

## History
2018/10/29 新規作成

==========================================================================*/

.movie_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
.detail_movie,
.detail_movie_iframe {
  border: 1px solid #64af86;
  margin-bottom: 20px;
}
.detail_movie a,
.detail_movie_iframe {
  display: block;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.detail_movie a::after {
  background-size: contain;
}
.detail_movie_iframe iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.detail_movie img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.detail_warning_box {
  background: #f6f0c4;
  font-size: 1.4rem;
  overflow: hidden;
}
.detail_warning_box a {
  display: inline-block;
  position: relative
}
.detail_warning_box a::after {
  color: #cb3939;
  content: "\e002";
  font-family: "Material Icons";
  font-size: 2.5rem;
  left: 0;
  position: absolute;
}
.detail_btn_viewmore a {
  margin: auto;
  padding: 10px;
  width: 160px;
}
@media screen and (min-width:768px), print {
  .detail_movie a::after {
    height: 90px;
    width: 90px;
  }
  .detail_movie .com_movie_start {
    height: 450px;
  }
}
@media screen and (max-width:767px) {
  .detail_movie a::after {
    height: 45px;
    width: 45px;
  }
  .detail_movie .com_movie_start {
    height: 194px;
  }
}