@charset "utf-8";
.wrap_movie {
  padding: 0 30px 30px;
}
.movie-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  row-gap: 0;
  padding-inline: 15px;
  padding-bottom: 20px;
  border: 1px solid #aaa;
}
.movie-item_img {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  margin-inline: -15px;
}
.movie-item_img:before {
  content: "";
  width: 50px;
  height: 37px;
  background: url(../images/common/play.png) no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
}
.movie-item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.time {
  color: #fff;
  font-size: 12px;
  text-align: center;
  width: 50px;
  height: 25px;
  line-height: 25px;
  background: rgb(0 0 0 / 0.7);
  position: absolute;
  right: 0;
  bottom: 0;
}
.girls_name {
  margin-top: 15px;
}
.girls_name a:hover {
  text-decoration: none;
}
.girls_name .c-h-bBorder:hover::before {
  opacity: 1;
}
.movie-item_comment {
  margin-top: 10px;
}
.movie-item_button {
  color: #fff;
  text-align: center;
  height: 27px;
  line-height: 27px;
  display: block;
  background: #000;
  position: relative;
  margin-top: 10px;
}
.movie-item_button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #ff2c7a;
  content: "";
}
.movie-item_button::after {
  transform: rotate(45deg);
  position: absolute;
  inset-block: 0;
  right: 15px;
  width: 8px;
  height: 8px;
  margin-block: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}
.no_movie {
  padding: 0 30px 30px;
}
.no_movie span {
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 100px 0;
  border: 8px solid #f2f2f2;
  font-size: 16px;
  text-align: center;
}

.movie_logo {
  display: block;
  margin-inline: auto;
}
video {
  margin-top: 10px;
  cursor: pointer;
}
.movie_data {
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
.movie_data span {
  font-weight: bold;
}
.movie_name {
  font-size: 20px;
}
.movie_age {
  font-size: 16px;
  margin-inline: 2px 10px;
}
