/*
Theme Name: Twenty Twenty-one Child
Version: 1.6
Template: twentytwentyone
*/
:root {
  --viewport-width: 100vw;
  --b: calc(var(--viewport-width) / 160);
}

@media screen and (max-width: 550px) {
  :root {
    --viewport-width: max(100vw, 550px);
    --b: calc(var(--viewport-width) / 55);
  }
}
.movie__tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(1rem, 10px);
  width: max(60%, 400px);
  margin-top: max(8rem, 40px);
}
@media screen and (max-width: 768px) {
  .movie__tab {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .movie__tab {
    grid-template-columns: 1fr;
  }
}
.movie__tab--button {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: max(1.5rem, 15px) max(4rem, 30px);
  border: max(0.3rem, 3px) solid #1d2664;
  border-radius: max(3rem, 30px);
  background: #fff;
  overflow: hidden;
  z-index: 0;
}
.movie__tab--button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1d2664;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s cubic-bezier(0.68, 0, 0.265, 1.2);
  z-index: -1;
}
.movie__tab--button span {
  color: #1d2664;
  font-family: YakuHanJP, "Poppins", sans-serif;
  font-size: max(1.8rem, 16px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.68, 0, 0.265, 1.2);
}
.movie__tab--button.active {
  background: #e3656e;
  pointer-events: none;
}
.movie__tab--button.active span {
  color: #fff;
}
.movie__tab--button:hover::before {
  transform: scaleX(1);
}
.movie__tab--button:hover span {
  color: #fff;
}
.movie__content {
  padding-top: max(5rem, 30px);
  margin-top: max(5rem, 30px);
  background-image: radial-gradient(rgba(29, 38, 100, 0.3) 30%, transparent 30%);
  background-size: 6px 6px;
  background-position: top;
  background-repeat: repeat-x;
}
.movie__content--list {
  display: grid;
  row-gap: max(7rem, 40px);
}
.movie__content--list .movie-item__movieBox {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: max(2rem, 15px);
  border: max(0.3rem, 3px) solid #1d2664;
}
.movie__content--list .movie-item__meta {
  margin-top: max(2rem, 15px);
}
.movie__content--list .movie-item__meta time {
  display: block;
  font-family: YakuHanJP, "Poppins", sans-serif;
  color: rgba(29, 38, 100, 0.4);
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: max(1rem, 8px);
}
.movie__content--list .movie-item__meta h2 {
  font-size: max(1.6rem, 14px) !important;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.movie__content--list .movie-item.loading, .movie__content--list .movie-item.error, .movie__content--list .movie-item.no-movies {
  grid-column: 1/-1;
  text-align: center;
  padding: max(5rem, 30px);
}
.movie__content--list .movie-item.loading p, .movie__content--list .movie-item.error p, .movie__content--list .movie-item.no-movies p {
  font-size: max(1.8rem, 16px);
  color: #1d2664;
}
.movie__content--list#youtubeList {
  -moz-column-gap: max(6rem, 20px);
       column-gap: max(6rem, 20px);
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1000px) {
  .movie__content--list#youtubeList {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .movie__content--list#youtubeList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .movie__content--list#youtubeList {
    gap: 40px 15px;
    grid-template-columns: 1fr;
  }
}
.movie__content--list#youtubeList .movie-item__movieBox {
  aspect-ratio: 16/8.9;
}
.movie__content--list#youtubeList .movie-item__movieBox iframe {
  width: 100%;
  height: 100%;
}
.movie__content--list#instagramList {
  -moz-column-gap: max(3rem, 10px);
       column-gap: max(3rem, 10px);
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1600px) {
  .movie__content--list#instagramList {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (max-width: 1300px) {
  .movie__content--list#instagramList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .movie__content--list#instagramList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.movie__content--list#instagramList .movie-item iframe {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.movie__content .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: max(1rem, 10px);
  margin-top: max(6rem, 40px);
  padding-bottom: max(4rem, 30px);
}
.movie__content .pagination a,
.movie__content .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: max(4.5rem, 40px);
  height: max(4.5rem, 40px);
  border-radius: 50%;
  font-family: YakuHanJP, "Poppins", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  color: #1d2664;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.68, 0, 0.265, 1.2);
}
.movie__content .pagination a:hover,
.movie__content .pagination span:hover {
  background: rgba(29, 38, 100, 0.1);
}
.movie__content .pagination a.current,
.movie__content .pagination span.current {
  background: #1d2664;
  color: #fff;
  pointer-events: none;
}
.movie__content .pagination .pagination-arrow {
  width: max(2rem, 18px);
  height: max(2rem, 18px);
}/*# sourceMappingURL=movie.css.map */