@charset "UTF-8";
.ttl_top {
  margin-bottom: 2rem;
  text-align: center;
  clip-path: text;
  filter: drop-shadow(1px 1px 0px #FFF) drop-shadow(-1px -1px 0px #FFF) drop-shadow(1px -1px 0px #FFF) drop-shadow(-1px 1px 0px #FFF);
}
.ttl_top_jp, .ttl_top_en {
  text-align: center;
}
.ttl_top_jp {
  font-family: "Hachi Maru Pop", cursive, sans-serif;
  font-size: 2.8125rem;
  background-image: linear-gradient(180deg, #FF0080, #9F40FF, #00A3FA);
  background-clip: text;
  color: rgba(255, 255, 255, 0.2509803922);
}
.ttl_top_en {
  color: var(--txt-pink);
  font-size: 1.875rem;
  font-weight: bold;
}

.mv_sec {
  padding: 2rem 1rem 4.5rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.mv_slide_wrap {
  width: 100%;
  max-width: 960px;
  overflow: visible;
  position: relative;
  z-index: 50;
}

.mbg_slide_wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  filter: blur(10px);
  opacity: 0.7;
  z-index: 1;
  mix-blend-mode: overlay;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.mbg_slide_item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .mbg_slide_item {
    width: 1000px;
    max-width: 100%;
  }
}

.about_bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.4;
  overflow: hidden;
  pointer-events: none;
}
.about_bg img {
  max-width: 100vh;
  width: 100vh;
  height: 100vh;
  object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .about_bg img {
    transform: translateX(20%);
  }
}
.about_sec {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.5333333333);
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.about_txt {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.9;
}
.about_txt_small {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.fre_sec {
  overflow: hidden;
  padding-bottom: 1rem;
}
.fre_slide {
  transition-timing-function: linear !important;
}
.fre_slide_wrap {
  --fre-img-asp: calc(5/8);
  --fre-img-h: 288px;
  --fre-img-w: calc(var(--fre-img-h)*var(--fre-img-asp));
  --fre-bg-base:#000000;
  width: 100vw; /* 画面幅いっぱいに */
  height: var(--fre-img-h);
  overflow: hidden;
  position: relative;
  cursor: grab; /* ドラッグできることを示すカーソル */
}
@media screen and (min-width: 768px) {
  .fre_slide_wrap {
    --fre-img-h: 480px;
  }
}
.fre_slide_wrap:active {
  cursor: grabbing; /* ドラッグ中のカーソル */
}
.fre_slide_item {
  width: var(--fre-img-w);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.fre_slide_inner {
  display: block;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.5019607843) 0%, rgba(255, 255, 255, 0) 70%), var(--fre-bg-base);
  position: relative;
  overflow: hidden;
}
.fre_slide_inner:hover {
  opacity: 1;
}
.fre_slide_inner:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 20px 6px rgba(0, 0, 0, 0.2666666667));
}
.fre_slide img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: 0.5s;
  transform-origin: center 40%;
  filter: drop-shadow(0 10px 3px rgba(0, 0, 0, 0.5333333333));
}
.fre_slide_name {
  --sha-clr:#000;
  width: 160%;
  padding: 0.1rem 0.6rem;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: right;
  text-shadow: 2px 2px 0 var(--sha-clr), -2px 2px 0 var(--sha-clr), 2px -2px 0 var(--sha-clr), -2px -2px 0 var(--sha-clr), 2px 0 0 var(--sha-clr), -2px 0 0 var(--sha-clr), 0 2px 0 var(--sha-clr), 0 -2px 0 var(--sha-clr);
  position: absolute;
  right: 100%;
  bottom: 0;
  transform-origin: right bottom;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .fre_slide_name {
    font-size: 2rem;
  }
}
.fre_slide_name_en {
  color: #FFF;
  font-size: 7.5rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-wrap-mode: nowrap;
  position: absolute;
  top: 0;
  left: 100%;
  transform: rotate(90deg);
  transform-origin: left top;
}

.tpi_list_sec {
  margin-top: -1rem;
}