/* common */
.grid {
  width: 100%;
  display: grid;
  &.col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  &.col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gap-32 {
  gap: 32px;
}
.gap-16 {
  gap: 16px;
}
.gap-8 {
  gap: 8px;
}
@media (max-width: 750px) {
  .grid {
    &.sp-col-1 {
      grid-template-columns: repeat(1, 1fr);
    }
    &.sp-col-2 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .sp-gap-16 {
    gap: 16px;
  }
  .sp-gap-8 {
    gap: 8px;
  }
}
/* style */
#footer {
  margin-top: 0!important;
}
.movie-header {
  position: relative;
}
.header-img-box {
  display: block;
  width: 100%;
  height: 200px;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 750px) {
  .header-img-box {
    height: 165px;
  }
  .front-pageTtl .pageTtl-dft.movie-top-ttl {
    top: 50%;
    bottom: auto;
    right: auto;
    white-space: nowrap;
  }
}
.bg-movie {
  background: #2c438a;
  padding-bottom: 140px;
}
.company-movie-wrap {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}
.movie-wrap {
  border-radius: 16px;
  border: solid 1px #fff;
}
.front-pageTtl .pageTtl-dft.movie-top-ttl {
  color: #fff;
  left: 50%;
  transform: translate(-50%, -50%);
}
.movie-ttl {
  font-size: 26px;
  text-align: center;
  color: #fff;
}
@media (max-width: 750px) {
  .bg-movie {
    padding-bottom: 100px;
  }
}