@charset "utf-8";
/*-----------------------------------------------
 * MOVIE
-------------------------------------------------*/
/**
* bg
**/
.news__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* overflow: hidden; */
}
.news__bg-clip {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.news__bg-clip-in {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: url(../img/common/bg/bg-head.jpg)no-repeat left top/cover;
}
.subSecBg {
    background-color: var(--color-blue49);
}
.news {
    position: relative;
}
.movieWrap {
    display: flex;
}

/* mt mb */
.mt10{
    margin-top: calc(10 / var(--vw-min) * 100vw) !important;
}
.mt20{
    margin-top: calc(20 / var(--vw-min) * 100vw) !important;
}
.mt30{
    margin-top: calc(30 / var(--vw-min) * 100vw) !important;
}
.mt40{
    margin-top: calc(40 / var(--vw-min) * 100vw) !important;
}
.mt50{
    margin-top: calc(50 / var(--vw-min) * 100vw) !important;
}
.mt60{
    margin-top: calc(60 / var(--vw-min) * 100vw) !important;
}

.mb10{
    margin-bottom: calc(10 / var(--vw-min) * 100vw) !important;
}
.mb20{
    margin-bottom: calc(20 / var(--vw-min) * 100vw) !important;
}
.mb30{
    margin-bottom: calc(30 / var(--vw-min) * 100vw) !important;
}
.mb40{
    margin-bottom: calc(40 / var(--vw-min) * 100vw) !important;
}
.mb50{
    margin-bottom: calc(40 / var(--vw-min) * 100vw) !important;
}
.mb60{
    margin-bottom: calc(60 / var(--vw-min) * 100vw) !important;
}

.subSec__right {
    padding-top: min(calc(50 / var(--vw-min) * 100vw), 50px);
}
@media screen and (max-width: 768px) {
  .subSec__right {
    padding-top: calc(85 / var(--vw-min) * 100vw);
  }
}
.movieCategoryWrap {
  display: flex;
  justify-content: center;
  margin-bottom: min(calc(70 / var(--vw-min) * 100vw), 70px);
}
@media screen and (max-width: 768px) {
  .movieCategoryWrap {
    padding-top: calc(48 / var(--vw-min) * 100vw);
    padding-left: calc(48 / var(--vw-min) * 100vw);
    padding-right: calc(48 / var(--vw-min) * 100vw);
    margin-bottom: calc(80 / var(--vw-min) * 100vw);
  }
}

.movieCategoryLists {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  justify-content: center;
  max-width: calc((204px * 5) + (20px * 4));
  align-items: stretch;
}

.movieCategoryLists li {
  flex: 0 0 204px;
  display: flex;
}

@media screen and (max-width: 768px) {
  .movieCategoryLists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(12 / var(--vw-min) * 100vw);
    max-width: none;
    justify-items: stretch;
  }

  .movieCategoryLists li {
    width: 100%;
  }

  .movieCategoryLists li:last-child:nth-child(odd) {
    grid-column: span 2;
    justify-self: center;
    max-width: 60%;
  }
}

.movieCategory__link {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 40px;
  padding: 0.5em 1.5em;
  background: #000;
  color: #fff;
  font-family: var(--main-font-family);
  font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
  text-decoration: none;
  letter-spacing: 0.1em;
  white-space: normal;
  word-break: break-word;
  box-sizing: border-box;
  overflow: hidden;
  transition:  .3s ease-out;
}

@media screen and (max-width: 768px) {
  .movieCategory__link {
    font-size: calc(24 / var(--vw-min) * 100vw);
  }
}

.movieCategory__link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-repeat: no-repeat;
	background-position: right bottom;
	background-image: linear-gradient(#fff, #fff);
	background-size: 0% 100%;
    transition: background-size .3s ease-out;
}

.movieCategory__link span,
.movieCategory__link .arrowWrap {
  position: relative;
  z-index: 1;
}


@media (hover: hover) and (pointer: fine) {
.movieCategory__link:hover {
  color: #000;
  background-color: #fff;
}
.movieCategory__link:hover::before {
    background-position: left bottom;
    background-size: 100% 100%;
  }
}

.movieCategory__link.is-active {
  color: #000;
}
.movieCategory__link.is-active::before {
  transform: translateX(0);
}

.movieCategoryLists {
  align-items: stretch;
}

.movieCategory__link.is-active {
  background: #fff;
  color: #000;
}

.movieCategory__link .arrowWrap {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.movieCategory__link .arrowWrap img {
  width: min(calc(14 / var(--vw-min) * 100vw), 14px);
  height: auto;
}


.movie__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: min(calc(70 / var(--vw-min) * 100vw), 70px);
}

.movieItem {
  width: calc(100% / 3);
  border-right: min(calc(1 / var(--vw-min) * 100vw),1px) solid #fff;
  border-left: min(calc(1 / var(--vw-min) * 100vw),1px) solid #fff;

}

@media screen and (max-width: 768px) {
  .movie__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-sizing: border-box;
    margin-bottom: calc(80 / var(--vw-min) * 100vw);
  }

  .movieItem {
    width: 100%;
    border-right: none;
  }
}

.movieItem:nth-child(3n) {
  border-right: none;
}
.movieThumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
}

.movieThumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  opacity: 1;
  transition: opacity .3s ease;
  z-index: 1;
}
.playBtn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/common/play/icon_play.png') no-repeat center center /
    min(calc(80 / var(--vw-min) * 100vw), 80px)
    min(calc(80 / var(--vw-min) * 100vw), 80px);
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform .3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .movieThumb:hover .playBtn {
    transform: scale(.9);
  }
  .movieThumb:hover::before {
    opacity: .25;
  }
}

.movieTitle {
  text-align: center;
  font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
  font-family: var(--main-font-family);
  color: #fff;
  padding: min(calc(8 / var(--vw-min) * 100vw), 8px);
  background: #000;
}

@media screen and (max-width: 768px) {
  .movieTitle {
    font-size: calc(24 / var(--vw-min) * 100vw);
    padding: calc(12 / var(--vw-min) * 100vw) calc(16 / var(--vw-min) * 100vw);
  }
}

.subSec {
  min-height: 0;
}

@media screen and (max-width: 768px) {
  .subSec {
    padding-top: 0;
  }
}

.movieItem {
  display: flex;
  flex-direction: column;
}
.movieThumb { 
  flex: 0 0 auto; 
}
.movieTitle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

