.movieBoxWrap {
  width: 94.4%;
  /* height: 100%; */
  margin: 0 auto 6%;
  display: flex;
  flex-wrap: wrap;
}
.movieThunb {
  width: 32%;
  margin-left: 2%;
  /* padding: 2.5%; */
  /* border: 1px solid #a0a0a0; */
  position: relative;
  box-sizing: border-box;
  /* box-shadow: 3px 4px 6px rgba(0,0,0,0.2); */
  background-color: #2f2f2f;
  /* display: inline-block; */
  color: #ffffff;
  margin-bottom: 2%;
}
.movieThunb:nth-of-type(3n+1) {
  margin-left: 0;
}
.movieThunb:nth-last-of-type(-n+3) {
  margin-bottom: 0;
}
.movieThunb .playVideo {
	width: 100%;
	/* height: 50%; */
	border: 1px solid #2f2f2f;
	border-bottom: 0;
	box-sizing: border-box;
}
.movieThunb .movieProf {
    /* border: solid 1px; */
    /* margin-top: 3%; */
    padding: 5.5%;
}
.playVideo .videoThumbnail {
    /* height: 200px; */
    width: 100%;
    aspect-ratio: 95 / 164;
    overflow: hidden;
    margin: 0 auto 0px;
    position: relative;
    box-sizing: border-box;
    z-index: 2;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.videoThumbnail img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 100%;
    transition: opacity .2s ease;
}
.playVideo .videoThumbnail:hover img {
  opacity: 0.8;
}
.movieProf .movieText {
    /* width: 70%; */
    /* height: 125px; */
    position: relative;
    box-sizing: border-box;
    text-align: center;
    /* padding-left: 1px; */
    white-space: nowrap;
    display: flex;
    align-items: center;
    line-height: 1.5;
}
.movieProf p.movieName {
    font-weight: bold;
    position: relative;
    z-index: 2;
    /* margin: 19px auto 0 auto; */
    /* border-bottom: solid 1px #6ABBFF; */
    /* width: 70%; */
    /* padding: 5px; */
    /* margin-right: 1em; */
    text-align: center;
}
.movieProf p.girlprof {
	/* margin: 5px; */
	font-size: 1.15em;
	font-weight: 700;
}
.movieProf p.syukkindate {
	/* margin-top: 10px; */
	width: 49%;
	line-height: 7vw;
	display: flex;
	flex-wrap: wrap;
	font-size: 1em;
}
.movieProf p.syukkindate .syukkin {
    /* position: absolute; */
    /* left: 6px; */
    width: 28%;
    /* height: 20px; */
    display: block;
    font-weight: bold;
    background-color: #1c1c1e;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.8em;
}
.movieProf p.syukkindate .syukkin.today {
  color: #1c1c1e;
  background-color: #ffffff;
}
.movieProf p.syukkindate .girlsdate2 {
    margin-right: 10px;
    font-weight: 700;
}
.movieProf p.syukkindate .girlsdate {
	/* margin-left: 60px; */
	display: block;
	/* padding-top: 2px; */
	font-size: 1em;
	font-weight: 700;
	text-align: right;
	display: block;
	width: 72%;
	overflow: hidden;
	white-space: nowrap;
}
.movieName a {
	color: inherit;
	text-decoration: none;
	width: 100%;
	font-size: 0.9em;
	font-weight: inherit;
}
.movieName a span {
  font-size: 0.95em;
  font-weight: inherit;
}
.movieName a:hover {
  text-decoration: underline;
}
.movieProf .moviePhoto{
	width: 30%;
    height: 125px;
    position: relative;
    box-sizing: border-box;
    text-align: center;
	display: inline-block;
	z-index: 1;
}
.moviePhoto img {
	height: 100%;
    margin-left: 1px;
    object-fit: cover;
    z-index: 1;
}
.movieStatus {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* font-size: 1.3em; */
  margin-top: 4%;
}
.movieStatus>div {font-size: 0.85em;display: flex;justify-content: center;align-items: center;height: 4.5vw;}
.girlsarea {
    display: inline-block;
    width: 41%;
    margin-right: 6%;
    /* float: left; */
    background-color: #1c1c1e;
    color: white;
    font-weight: 700;
    /* font-size: 0.8em; */
}
.girlsgenre {
    /* display: inline-block; */
    width: 53%;
    color: white;
    font-weight: 700;
    /* font-size: 0.8em; */
}
.videoThumbnail::after {
    /* background: url(/img/movie/icon_video.png) no-repeat; */
    background-size: contain;
    content: "▶";
    height: 3.15em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5em;
    opacity: 0.7;
    background-color: #000000;
    pointer-events: none;
    font-size: 0.65em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .2s ease;
    border-radius: 0.4vw;
}
.playVideo .videoThumbnail:hover::after {
  opacity: 0.56;
}

/***動画用モーダル**/
.videoMode {
    align-items: center;
    display: none;
    flex-wrap: wrap;
    background-color: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
}

.videoMode.fadeInM {
    display: flex;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

#innerVideo {
    margin: auto;
    padding: 6.25px;
    position: relative;
    z-index: 1;
}

#innerVideo video {
    height: auto;
    width: auto;
    max-width: 86vw;
    max-height: 80vh;
}

.videoMode #videoClose {
  position: absolute;
  width: 100%;
  height: 100%;
}

.videoMode #videoCloseBtn {
  width: 6vw;
  height: 6vw;
  position: absolute;
  top: 6vw;
  right: 6vw;
  overflow: hidden;
  cursor: pointer;
}

.videoMode #videoCloseBtn::before, .videoMode #videoCloseBtn::after {
  content: "";
  display: block;
  width: 150%;
  height: 1px;
  background-color: #ffffff;
}

.videoMode #videoCloseBtn::before {
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -25%;
}

.videoMode #videoCloseBtn::after {
  position: absolute;
  transform: rotate(-45deg);
  top: 50%;
  left: -25%;
}
