@charset "utf-8";
/*---------------------------------
* making
----------------------------------*/
.movieLists {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: min(calc(24 / var(--vw-min) * 100vw), 24px);
}
.movieLists__item {
  width: calc((100% - min(calc(48 / var(--vw-min) * 100vw), 48px)) / 3);
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .movieLists {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap:calc(48 / var(--vw-min) * 100vw);
  }
  .movieLists__item {
    width: calc((100% - calc(48 / var(--vw-min) * 100vw)) / 2 );
    margin-bottom: calc(80 / var(--vw-min) * 100vw);
  }
}

.movieBoxWrap {
  background: #000;
  display: block;
  width: 100%;
  padding-top: 166%;
  position: relative;
  overflow: hidden;
}
.movieBoxWrap::before {
  background: #000;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 1;
  opacity: 0.3;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.movieLists__item:hover .movieBoxWrap::before {
  opacity: 0;
}
.item_title {
  display: block;
  font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
  color: #b69848;
  line-height: calc(32 / 20);
  letter-spacing: 0.04em;
  margin-top: min(calc(18 / var(--vw-min) * 100vw), 18px);
}
body[data-cate="recording"] .item_title {
  color: #000;
}
.item_text {
  font-size: min(calc(15 / var(--vw-min) * 100vw), 15px);
  letter-spacing: 0.06em;
  line-height: calc(30 / 15);
}

.item_img {
  transition: 0.4s ease;
}
@media screen and (max-width: 768px) {
  .item_title {
    font-size: calc(28 / var(--vw-min) * 100vw);
    line-height: calc(32 / 28);
    margin-top: calc(32 / var(--vw-min) * 100vw);
  }
  .item_text {
    font-size: calc(24 / var(--vw-min) * 100vw);
    line-height: calc(46 / 24);
    margin-top: calc(24 / var(--vw-min) * 100vw);
  }
}
.movieBox {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.play-icon {
  width: min(calc(80 / var(--vw-min) * 100vw), 80px);
  height: min(calc(80 / var(--vw-min) * 100vw), 80px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/deco/play_icon.svg) no-repeat center center/contain;
  transform: scale(1);
  transition: 0.4s ease;
}

.btn_moviePlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/*hover*/
.movieBoxWrap:hover .item_img {
  transform: scale(1.05);
}
.movieBox:hover {
  cursor: pointer;
}

.subpage.production .item_img.-shorts{
  height: 100%;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item_img.-shorts img{
  width: auto;
  height: 100%;
}
.item_img.-shorts img{
  position: relative;

}
/* modal */
.yt-shorts .youtubeIframeWrap:before {
    padding-top: 177.7778%;
}
.yt-shorts .youtubeIframeWrap {
    max-width: calc(56.25vh - 80px);
}
