@charset "utf-8";

.movie {
  box-sizing: border-box;
  width: calc(100% / 2 - 4vw);
  border: 1px solid #ddd;
  margin: 2vw 1vw 2vw 3vw;
  padding: 2vw 1vw 2vw 1vw;
  text-align: left;
}
.movie-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-left: -2vw;
}
.movie-title {
  margin-top: 2vw;
  color:rgba(252,42,174,0.9)
}
.movie-title a {
  --lh: 1.4em;
  --ln: 2;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--ln);
  overflow: hidden;

  line-height: var(--lh);
  min-height: calc(var(--lh) * var(--ln));

  color: rgba(252,42,174,0.9);
}
.movie-thumb {
  display: block;
  margin-top: 3vw;
}
.movie-thumb-inner {
  position: relative;
  width: 100%;
  padding-top: 64%;
}
.movie-thumb-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.movie-thumb-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14vw;
}
.movie-info {}
.movie-info-list {
  margin-top: 2vw;
  text-align: right;
  font-size: 3vw;
  color: rgba(252,42,174,0.9);
}
.movie-text {
  font-size:14px;
  margin-top: 0vw;
}
.movie-text.--name {}
.movie-text.--three-size {
  font-size:12px;
}
.movie-text.--body {
  --lh: 1.2em;
  --ln: 4;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--ln);
  overflow: hidden;

  line-height: var(--lh);
  min-height: calc(var(--lh) * var(--ln));

  font-size: 2vw;
}
.movie-text-list {
  margin-top: 2vw;
}


.pager li , .pager li.current {
  box-sizing: border-box;
  display: block;
  color: #655141;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  background: #fff;
  border: 2px solid #655141;
  min-width: 6.5em;
  margin: 0 5px 0 0;
  padding: 0;
  line-height:3em;
  font-size:1.2rem;
}
.pager li a {
  box-sizing: content-box;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  background: #655141;
  /*border: 1px solid #655141;*/
  width: 100%;
  transition: all .2s;
  margin: 0;
  padding: calc(1em - 1px) 2.2em;
}

.pager li a:hover, .pager li.current:hover {
  color: #0033ff;
  background: #e5e5e5;
  border: 1px solid #655141;
}

.pager {
  position: relative;
  display: flex;
  justify-content: center;
  color: #A4A4A4;
  line-height: 1;
  margin: 0;
  padding: 2em 0;
}

.pager li:nth-child(n + 2){
  display: none;
}
.pager li:last-child{
  display: block!important;
}