* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
* img {
  width: 100%;
  vertical-align: bottom;
}

.movie_delet_sp {
  background: #000000;
}

.p-section-shows {
  width: 100%;
  max-height: 600px;
  height: 100%;
  overflow-y: clip;
  position: relative;
  background: url("../assets/images/img_show_fv.jpg");
  background-size: cover;
  background-position: center;
}
.p-section-shows__inner {
  height: 600px;
}
.p-section-shows__inner h2 {
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0px);
  font-family: "Oswald", sans-serif;
  font-size: clamp(55px, 15vw, 333px);
  text-align: center;
  line-height: 0.9;
  color: #ffffff;
}

.p-section-shops {
  width: 100%;
  max-height: 600px;
  height: 100%;
  overflow-y: clip;
  position: relative;
  background: url("../assets/images/img_shop_fv.jpg");
  background-size: cover;
  background-position: center;
}
.p-section-shops__inner {
  height: 600px;
  -webkit-backdrop-filter: brightness(0.7);
          backdrop-filter: brightness(0.7);
}
.p-section-shops__inner h2 {
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0px);
  font-family: "Oswald", sans-serif;
  font-size: clamp(55px, 15vw, 333px);
  text-align: center;
  line-height: 0.9;
  color: #ffffff;
}

.p-section-sd {
  background: #000000;
  height: 100vh;
  border-bottom: 1px solid #ffffff;
}

.filter-container {
  padding: 46px 30px 30px;
  background: #000000;
}
.filter-container__inner {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 46px;
  border-bottom: 3px solid #ffffff;
}
.filter-container > p {
  margin-top: 46px;
  text-align: center;
}
.filter-container > p span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #000000;
  background: #ffffff;
  margin: 0 auto 8px;
  line-height: 1.2;
  font-size: clamp(12px, 1.2vw, 20px);
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .filter-container > p span {
    display: inline;
  }
}
.filter-container > p .display-sm {
  display: none;
}
@media (max-width: 600px) {
  .filter-container > p .display-sm {
    display: block;
  }
}
.filter-container > p .display-sp {
  display: none;
}
@media (max-width: 768px) {
  .filter-container > p .display-sp {
    display: block;
  }
}

.filter-options {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1200px) {
  .filter-options--desktop {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .filter-options--desktop {
    display: none;
  }
}
.filter-options--mobile {
  display: none;
}
@media (max-width: 768px) {
  .filter-options--mobile {
    display: flex;
  }
  .filter-options--mobile .mobile-select {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    width: calc(100% - 60px);
    border: 2px solid #ffffff;
    padding: 8px 11px;
    background: #000000 url("../assets/images/ico_arrow_down.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 97% center;
    color: #ffffff;
    font-weight: 500;
  }
  .filter-options--mobile button.mobile-reset-btn {
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
    width: 35px;
    height: 35px;
    background: url("../assets/images/ico_reset.svg") no-repeat;
    background-size: 75%;
    background-position: center;
    border: 2px solid #ffffff;
    cursor: pointer;
  }
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-option label {
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  position: relative;
}
.filter-option input[type=checkbox] {
  display: none;
}
.filter-option input[type=checkbox] + label {
  padding-left: 30px;
}
.filter-option input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ffffff;
  background-color: #000000;
  top: 50%;
  transform: translateY(-50%);
}
.filter-option input[type=checkbox]:checked + label:after {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #ffffff;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}

.items-container {
  max-width: 1700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  padding-inline: 5vw;
  background: #000000;
}
@media (max-width: 768px) {
  .items-container {
    padding-inline: 0;
    padding-bottom: 85px;
  }
}

.item-card {
  background: #000000;
  padding: 30px;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .item-card {
    padding-inline: 0;
  }
}
.item-card.hidden {
  display: none;
}
.item-card:nth-of-type(even) .detail-section {
  order: 2;
}

.item-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 45px;
}
@media (max-width: 1200px) {
  .item-category {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .item-category {
    padding-inline: 45px;
  }
}
.item-category h2 {
  max-width: 65%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-size: clamp(55px, 8vw, 120px);
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media (max-width: 1700px) {
  .item-category h2 {
    font-size: 6vw;
  }
}
@media (max-width: 1200px) {
  .item-category h2 {
    font-size: 7vw;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .item-category h2 {
    align-items: center;
    font-size: 55px;
    text-align: center;
  }
}
.item-category h2 span.sp-title {
  color: #ffffff;
  font-size: clamp(55px, 8vw, 90px);
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media (max-width: 1700px) {
  .item-category h2 span.sp-title {
    font-size: 5vw;
  }
}
@media (max-width: 1200px) {
  .item-category h2 span.sp-title {
    font-size: 6vw;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .item-category h2 span.sp-title {
    align-items: center;
    font-size: 34px;
    text-align: center;
  }
}
.item-category h2 span.sub-title {
  width: 100%;
  display: block;
  padding: 0 8px 2px;
  margin: 10px auto;
  font-size: clamp(12px, 1.2vw, 20px);
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  color: #000000;
  text-align: center;
  background: #ffffff;
  letter-spacing: normal;
}
.item-category h2 span.sub-title .display-sp {
  display: none;
}
@media (max-width: 768px) {
  .item-category h2 span.sub-title .display-sp {
    display: block;
  }
}
@media (max-width: 768px) {
  .item-category h2 span.sub-title {
    display: none;
  }
  .item-category h2 span.sub-title--sp {
    display: block;
    background: transparent;
  }
}
.item-category h2 span.sub-title--sp {
  display: none;
}
@media (max-width: 768px) {
  .item-category h2 span.sub-title--sp {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .item-category h2 span.sub-title--sp > span {
    padding: 0 6px 2px;
    margin-top: 8px;
    background: #ffffff;
  }
}
.item-category p {
  max-width: 40%;
  font-size: clamp(12px, 1.2vw, 15px);
}
@media (max-width: 1200px) {
  .item-category p {
    max-width: 100%;
  }
}

.item-content {
  display: flex;
  gap: 30px;
}

.thumbnails-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}

.thumbnail-item {
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s;
  background: #1a1a1a;
  aspect-ratio: 1;
  width: calc(25% - 10px);
  filter: brightness(0.5);
}
@media (max-width: 768px) {
  .thumbnail-item {
    width: calc(50% - 4px);
  }
}
.thumbnail-item:hover {
  filter: none;
}
.thumbnail-item:hover a {
  opacity: 1;
}
.thumbnail-item:hover img {
  transform: scale(1.05);
}
.thumbnail-item.active {
  filter: none;
}
.thumbnail-item a {
  text-decoration: none;
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
  transition: all 0.5s;
}
.thumbnail-item .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}

.detail-section {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  order: -1;
  max-width: 600px;
  width: 40vw;
}
@media (max-width: 768px) {
  .detail-section {
    display: none;
  }
}

.detail-main {
  position: sticky;
  top: 120px;
  overflow: hidden;
  background: #1a1a1a;
}
.detail-main a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: clip;
  text-decoration: none;
}
.detail-main a img {
  transition: all 0.3s;
}
.detail-main a:hover {
  opacity: 1;
}
.detail-main a:hover img {
  transform: scale(1.05);
}
.detail-main a:hover .no-image {
  background: #666666;
}
.detail-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.detail-main .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  color: #ffffff;
  font-size: clamp(18px, 3vw, 54px);
  text-align: center;
  background: #333333;
  transition: all 0.5s;
  padding: 1vw;
}

.detail-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  position: sticky;
  top: 80px;
}

.no-item {
  padding: 40px;
  text-align: center;
  color: #999;
  font-size: 16px;
}

@media (max-width: 768px) {
  .item-content {
    flex-direction: column;
  }
  .thumbnails-section {
    flex-direction: row;
    flex: none;
    overflow-x: auto;
  }
}
.item-card.hidden {
  display: none;
}

.p-section-special {
  padding-inline: 45px;
}
.p-section-special__inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}
.p-section-special__inner h2 {
  font-size: clamp(55px, 6vw, 170px);
  color: #ffffff;
  text-align: center;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin-block: 90px 30px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-section-special__inner h2 {
    margin-block: 0px 20px;
  }
}
.p-section-special__text {
  padding-block: 30px;
  text-align: center;
  color: #ffffff;
}

#single {
  background: #000000;
}

.p-section-singles {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding: 180px 45px 60px;
}
.p-section-singles .sliderArea {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
@media (max-width: 960px) {
  .p-section-singles .sliderArea {
    flex-direction: column;
  }
}
.p-section-singles .slider_thumb {
  max-width: 414px;
  width: 100%;
}
@media (max-width: 960px) {
  .p-section-singles .slider_thumb {
    margin: 0 auto;
  }
  .p-section-singles .slider_thumb button {
    color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 56px;
    cursor: pointer;
  }
  .p-section-singles .slider_thumb button.slick-prev {
    left: -38px;
    padding: 0;
    border: none;
    outline: none;
    background: url("../img2/single/sl_left_arrow.svg") no-repeat;
  }
  .p-section-singles .slider_thumb button.slick-next {
    right: -42px;
    padding: 0;
    border: none;
    outline: none;
    background: url("../img2/single/sl_right_arrow.svg") no-repeat;
  }
}
@media (max-width: 600px) {
  .p-section-singles .slider_thumb {
    max-width: 100%;
    padding-inline: 45px;
  }
}
.p-section-singles .slider_thumb .slick-slide {
  height: 706px;
  padding: 0 5px;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 600px) {
  .p-section-singles .slider_thumb .slick-slide {
    height: 520px;
  }
}
.p-section-singles .slider_thumb .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-section-singles__thumb {
  width: calc(100% - 484px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .p-section-singles__thumb {
    width: 100%;
  }
}
.p-section-singles__thumb .title_area h2.title {
  font-size: clamp(40px, 5vw, 85px);
  color: #ffffff;
  line-height: 1;
}
.p-section-singles__thumb .title_area h2.title span {
  display: block;
  font-size: 20px;
}
@media (max-width: 768px) {
  .p-section-singles__thumb .title_area .link_area {
    display: none;
  }
}
.p-section-singles__thumb .title-sub {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 26px;
}
.p-section-singles__thumb .text1 {
  color: #ffffff;
  font-size: clamp(12px, 1.2vw, 16px);
}
.p-section-singles__thumb .thumb {
  margin-top: 20px;
}
@media (max-width: 960px) {
  .p-section-singles__thumb .thumb {
    display: none;
  }
}
.p-section-singles__thumb .thumb .slick-slide {
  height: 160px;
  padding: 0 5px;
  cursor: pointer;
  overflow: clip;
}
.p-section-singles__thumb .thumb .slick-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.5);
  transition: all 0.5s;
}
.p-section-singles__thumb .thumb .slick-slide:hover img {
  filter: brightness(1);
}
.p-section-singles__thumb .thumb .slick-current.slick-active img {
  filter: brightness(1);
}
.p-section-singles__thumb .thumb button {
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 56px;
  cursor: pointer;
}
.p-section-singles__thumb .thumb button.slick-prev {
  left: -38px;
  padding: 0;
  border: none;
  outline: none;
  background: url("../img2/single/sl_left_arrow.svg") no-repeat;
}
.p-section-singles__thumb .thumb button.slick-next {
  right: -42px;
  padding: 0;
  border: none;
  outline: none;
  background: url("../img2/single/sl_right_arrow.svg") no-repeat;
}
@media (max-width: 768px) {
  .p-section-singles .btn_area {
    flex-direction: column;
  }
}
.p-section-singles .btn_area > a {
  display: block;
  max-width: 175px;
  width: 100%;
  margin: 60px auto 0;
  padding: 10px;
  text-align: center;
  border: 2px solid #ffffff;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .p-section-singles .btn_area > a {
    margin: 30px auto 0;
  }
}
@media (max-width: 768px) {
  .p-section-singles .btn_area > a.sns-instagram {
    margin-top: 30px;
  }
}

.post-slider__item {
  max-width: 150px;
  padding: 0 10px;
}

.post-slider__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.slider-title {
  max-width: 1290px;
  width: 100%;
  padding-inline: 45px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
}

.p-section-singles__post-slider {
  width: 100%;
  margin-top: 40px;
  position: relative;
  padding-block: 16px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .p-section-singles__post-slider {
    margin-top: 20px;
  }
}
.p-section-singles__post-slider::before {
  content: "";
  width: 32%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
@media (max-width: 1640px) {
  .p-section-singles__post-slider::before {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .p-section-singles__post-slider::before {
    display: none;
  }
}
.p-section-singles__post-slider::after {
  content: "";
  width: 32%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(270deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
@media (max-width: 1640px) {
  .p-section-singles__post-slider::after {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .p-section-singles__post-slider::after {
    display: none;
  }
}

.post-slider-swiper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-block: 20px;
  overflow: visible;
}
.post-slider-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.post-slider-swiper .swiper-slide {
  width: 150px;
  height: auto;
}
.post-slider-swiper img {
  display: block;
  width: 100%;
  height: auto;
}/*# sourceMappingURL=secondary.css.map */