@charset "UTF-8";

/******************************
common
******************************/

/******************************
pagesec-music
******************************/
.musiclist {
  gap: 2rem;
}
.musiclist li{
  width: calc(100% / 4 - 1.5rem);
}
.musiclist a{
  display: block;
  opacity: 1;
}
.musiclist .imgbox{
  border: 1px solid #fff;
  margin-bottom: 1rem;
  overflow: hidden;
  padding: 1rem;
}
.musiclist .imgbox img{
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
  width: 100%;
  transition: .5s;
}
.musiclist a:hover img{
  transform: scale(1.3);
}
.musiclist .ttl{
  line-height: 1.4;
}
.musiclist .ttl span{
  font-size: 1.4rem;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .musiclist li{
    width: calc(100% / 3 - 1.5rem);
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .musiclist {
    gap: 1rem;
  }
  .musiclist li{
    width: calc(50% - 1rem);
  }
}

/******************************
pagesec-movie
******************************/
.movielist {
  gap: 2rem;
}
.movielist li{
  width: calc(100% / 3 - 1.5rem);
}
.movielist a {
  display: block;
  opacity: 1;
}
.movielist .imgbox::before,
.movielist a span{
  position: absolute;
}
.movielist a span{
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: .5s;
  width: 50px;
}
.movielist .imgbox::before{
  content: "";
  background: rgba(0,0,0,.5);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: .5s;
}
.movielist a:hover span{
  background: #fff;
  color: #000;
}
.movielist a:hover .imgbox::before{
  opacity: 0;
}
.movielist .imgbox img{
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: auto;
  width: 100%;
}

.popsec{
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}
.popsec .popbg{
  background: rgba(0,0,0,.8);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.popsec .popcontent{
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 70%;
}
.popsec iframe{
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
}
.popsec .popclose{
  aspect-ratio: 1/1;
  background: url(../../images/common/xmark.svg) no-repeat center / contain;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: -35px;
  right: 0;
  width: 30px;
}

body.popactive,
.popsec.popactive{
  opacity: 1;
  overflow: hidden;
}
.popsec.popactive{
  pointer-events: all;
  z-index: 100000;
}
.popsec .popcontent.popopen{
  display: block;
}

@media only screen and (max-width: 1180px) {
  .popsec .popcontent{
    width: 80%;
  }
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .popsec .popcontent{
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .movielist {
    gap: 1rem;
  }
  .movielist li{
    width: calc(50% - 1rem);
  }
  .popsec .popcontent{
    width: 95%;
  }
}