@charset"UTF-8";
/*すべてのWebページに適用される*/
main {
  background: #000000;
  padding-bottom: 50px;
}
#kv {
  margin: 0 auto;
  position: relative;
  max-width: 1500px;
  width: 100%;
  height: 100vh;
}
#kv_inner {
  position: fixed;
  top: 0;
  left: 50%;
  max-width: none;
  margin: 0 auto;
  width: 100%;
  min-width: 1920px;
  transform: translateX(-50%);
}
#kv_inner.is-active {
  filter: brightness(0.4);
  transition: filter 2s ease-out;
}
.kv_txt {
  position: absolute;
  bottom: 10%;
  right: 20px;
  color: #ffffff;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 1), 2px 3px 3px rgba(0, 0, 0, 0.4);
  font-size: 100px;
  font-family: "oswald", sans-serif;
}
#cg_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.main_title {
  font-family: "oswald", sans-serif;
  font-weight: 700;
  font-style: normal;
  border-bottom: solid 1px #ffffff;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.5;
}
/*リード文*/
#lead {
  margin-bottom: 50px;
}
.lead_inner {
  margin: 0px;
  padding: 20px;
  background: #b9b9b9;
  border-radius: 10px;
}
.lead_inner li {
  list-style: inside;
}
/*商品一覧*/
.itemlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  gap: 10px 10px;
  justify-content: space-between;
}
.itemlist.movie li {
  width: 380px;
}
.itemlist.movie li img {
  width: 100%;
  border-radius: 15px;
}
.itemlist.movie li img:hover, .modal-video-close-btn:hover {
  cursor: pointer;
  opacity: .5;
}
.itemlist.goods li {
  text-align: center;
  font-weight: bold;
}

.item-img {
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
.item-img img {
  width: 100%;
  transition: transform 0.3s ease-out;
}
.item-img img:hover {
  transform: scale(1.1);
}
.item-name {
  color: #C9C9C9;
  transition: color 0.3s ease-out;
}
.itemlist.goods li:hover .item-name {
  color: #ffffff;
}
/* スマホ*/
@media screen and (max-width : 768px) {
  #kv {
    height: 100vh;
  }
  #kv_inner {
    top: 40%;
    left: 50%;
    width: 100vh;
    transform: translate(-50%, -50%) rotate(90deg);
    min-width: auto;
  }
  .kv_txt {
    bottom: 50%;
    right: 50%;
    transform: translateX(50%);
    font-size: 8vw;
  }
  .slick-list {
    /* overflow: initial;*/
    padding: 0%;
  }
  .slick-prev {
    left: 0%;
  }
  .slick-next {
    right: 0%;
  }
  .itemlist {
    grid-template-columns: 1fr 1fr;
  }
  .itemlist.movie {
    justify-content: center;
  }
}