@charset "UTF-8";
@keyframes loop_text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes menu-dot-out {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes menu-dot-in {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scrolldown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(0);
  }
  66% {
    transform: translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes glitch_bg {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.p-op {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.p-op__content {
  z-index: 1;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-op__catch {
  width: 4.5%;
  max-width: 38px;
  height: 90%;
  position: relative;
  overflow: hidden;
  transform: scale(1.2);
}
.is-op .p-op__catch {
  transform: scale(1);
  transition: transform 5s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}
@media screen and (max-width: 899px) {
  .p-op__catch {
    width: 6%;
  }
}
.p-op__catch img {
  opacity: 0;
}
.is-op .p-op__catch img {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
}
.p-op__catch-item {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  filter: blur(0);
}
.is-op .p-op__catch-item {
  filter: blur(3px);
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.9s;
}
.p-op__catch-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
}
.p-op::before, .p-op::after {
  content: "";
  width: calc(100% + 1px);
  height: 100%;
  position: absolute;
  background-color: #000;
  transition: transform 1.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.p-op::before {
  left: 0;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.is-op-end .p-op::before {
  transform: translateX(-100%);
}
.is-op-skip .p-op::before {
  transform: translateX(-100%);
}
.p-op::after {
  right: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.is-op-end .p-op::after {
  transform: translateX(100%);
}
.is-op-skip .p-op::after {
  transform: translateX(100%);
}
.is-op-end .p-op {
  pointer-events: none;
}
.is-op-skip .p-op {
  pointer-events: none;
}

.p-hero {
  position: relative;
  padding-top: 47px;
  margin-bottom: 93px;
}
@media screen and (max-width: 899px) {
  .p-hero {
    padding-top: 0;
    margin-bottom: 85px;
  }
}
@media screen and (min-width: 900px) {
  .p-hero .p-bg.-top {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .p-hero .p-bg.-top {
    display: block;
  }
}
.p-hero__kv {
  flex-grow: 1;
  margin: 0 auto;
  position: relative;
}
.p-hero__kv img {
  width: 100%;
}
.p-hero__kv-item {
  position: relative;
}
.p-hero__kv-item img {
  transform: scale(0.98);
  opacity: 0;
  transition: transform 3s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.is-op-end .p-hero__kv-item img {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.22s;
}
.is-op-skip .p-hero__kv-item img {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}
.p-hero__kv-catch {
  position: absolute;
  top: 2%;
  right: 3%;
  width: 4%;
  z-index: 1;
}
.p-hero__bodycopy {
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-hero__bodycopy {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-178%);
    width: 5.2%;
  }
}
@media screen and (max-width: 899px) {
  .p-hero__bodycopy {
    margin: 6% auto 0;
    width: 80%;
  }
}
.p-hero__bodycopy img {
  transform: translateY(3%);
  opacity: 0;
}
@media screen and (max-width: 899px) {
  .p-hero__bodycopy img {
    transform: translateY(-18px);
  }
}
.is-moveframe-end .p-hero__bodycopy img {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.1s;
}
.is-op-skip .p-hero__bodycopy img {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.8s;
}
.p-hero__contents {
  display: flex;
  padding: 0 3.5%;
}
@media screen and (max-width: 899px) {
  .p-hero__contents {
    padding: 0 5.5%;
  }
}
.p-hero__scrolldown {
  width: 18%;
  flex-shrink: 0;
  position: relative;
  opacity: 0;
  transform: translateY(-18px);
}
.is-moveframe-end .p-hero__scrolldown {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.1s;
}
.is-op-skip .p-hero__scrolldown {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.8s;
}
.p-hero__scrolldown-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 95vh;
}
.p-hero__scrolldown-item-inner {
  position: absolute;
  bottom: 100px;
  left: 0;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .p-hero__scrolldown-item-inner {
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-hero__scrolldown-item-inner:hover {
    transform: scale(1.15);
  }
  .p-hero__scrolldown-item-inner:hover .p-hero__scrolldown-base {
    transform: rotate(90deg);
  }
}
.p-hero__scrolldown-base {
  transition: transform 3s cubic-bezier(0.33, 1, 0.68, 1);
}
.is-load .p-hero__scrolldown-base img {
  animation: loop_rotate 15s linear infinite both;
}
.p-hero__scrolldown-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17%;
  fill: #fff;
}
.p-hero__menu {
  width: 18%;
  padding-left: 4.5%;
  flex-shrink: 0;
}
.p-hero__menu-content {
  padding-top: 28%;
}
.p-hero__menu-list-item {
  font-size: clamp(12px, 0.9vw, 17px);
  letter-spacing: 3.3px;
  line-height: 1.8;
  transform: translateX(-18px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.1s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.23s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.36s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.49s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.62s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(6) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.75s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(7) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.88s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(8) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.01s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(9) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.14s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(10) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.27s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(11) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.4s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(12) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.53s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(13) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.66s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(14) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.79s;
}
.is-moveframe-end .p-hero__menu-list-item:nth-child(15) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.92s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.8s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.93s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.06s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.19s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.32s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(6) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.45s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(7) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.58s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(8) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.71s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(9) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.84s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(10) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.97s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(11) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 2.1s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(12) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 2.23s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(13) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 2.36s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(14) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 2.49s;
}
.is-op-skip .p-hero__menu-list-item:nth-child(15) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 2.62s;
}
.p-hero__menu-list-item + .p-hero__menu-list-item {
  margin-top: 7px;
}
.p-hero__menu-list-item a {
  font-family: "Outfit", sans-serif;
  color: #fff;
  text-decoration: none;
}
.p-hero__menu-sns {
  margin-top: 20px;
  padding-top: 29px;
  position: relative;
}
.p-hero__menu-sns::before {
  content: "";
  width: 11px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.is-moveframe-end .p-hero__menu-sns::before {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(1);
  transition-delay: 0.2s;
}
.is-op-skip .p-hero__menu-sns::before {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(1);
  transition-delay: 0.9s;
}
.p-hero__menu-sns-item {
  font-size: clamp(12px, 0.8vw, 16px);
  letter-spacing: 3.8px;
  font-weight: 500;
  transform: translateX(-18px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.is-moveframe-end .p-hero__menu-sns-item:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.is-moveframe-end .p-hero__menu-sns-item:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.33s;
}
.is-moveframe-end .p-hero__menu-sns-item:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.46s;
}
.is-moveframe-end .p-hero__menu-sns-item:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.59s;
}
.is-moveframe-end .p-hero__menu-sns-item:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.72s;
}
.is-op-skip .p-hero__menu-sns-item:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.9s;
}
.is-op-skip .p-hero__menu-sns-item:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.03s;
}
.is-op-skip .p-hero__menu-sns-item:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.16s;
}
.is-op-skip .p-hero__menu-sns-item:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.29s;
}
.is-op-skip .p-hero__menu-sns-item:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.42s;
}
.p-hero__menu-sns-item a {
  color: #fff;
  text-decoration: none;
}
.p-hero__undertext {
  position: relative;
  margin-top: 7.2%;
  text-align: center;
  color: #fff;
  line-height: 1.45;
  font-family: "Outfit", sans-serif, "Noto Sans JP", YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo;
  transform: translateY(-15px);
  opacity: 0;
}
.is-moveframe-end .p-hero__undertext {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.3s;
}
.is-op-skip .p-hero__undertext {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1s;
}
@media screen and (max-width: 899px) {
  .p-hero__undertext {
    margin-bottom: 37px;
  }
}
.p-hero__undertext-onair {
  font-size: 18px;
  letter-spacing: 2.5px;
}
.p-hero__undertext-onair .is-small {
  font-size: 13px;
  vertical-align: baseline;
}
.p-hero__undertext-onair .is-middle {
  font-size: 15px;
}
.p-hero__undertext-caption {
  font-size: 12px;
  letter-spacing: 3.5px;
}
@media screen and (min-width: 900px) {
  .p-hero__undertext-caption {
    margin: 0 auto;
    width: 15%;
  }
  .p-hero__undertext-caption img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 899px) {
  .p-hero__undertext-caption {
    font-size: 10px;
    margin-top: 21px;
    letter-spacing: 1px;
  }
}
.p-hero__undertext-scrolldown {
  font-size: 10px;
  margin-top: 5px;
  letter-spacing: 1.5px;
}
.p-hero__undertext-scrolldown .p-in_text {
  vertical-align: baseline;
  transform: translateY(-100%);
  display: inline-block;
  min-width: 3px;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(1) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(2) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.08s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(3) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.16s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(4) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.24s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(5) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.32s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(6) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.4s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(7) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.48s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(8) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.56s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(9) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.64s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(10) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.72s;
}
.is-load .p-hero__undertext-scrolldown .p-in_text:nth-child(11) {
  animation: scrolldown 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
  animation-delay: 0.8s;
}
.p-hero__undertext-scrolldown a {
  text-decoration: none;
  color: #fff;
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
}
.p-hero__official {
  text-align: center;
  border: 1px solid #fff;
  margin: 0 auto;
  width: 64%;
}
@media screen and (max-width: 899px) {
  .p-hero__official {
    transform: translateY(-18px);
    opacity: 0;
  }
}
.is-moveframe-end .p-hero__official {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.4s;
}
.is-op-skip .p-hero__official {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.1s;
}
.p-hero__official a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-family: "Outfit", sans-serif;
  padding: 12px 10px 11px;
  font-size: 10px;
  letter-spacing: 1.8px;
}

.p-news {
  margin-bottom: 147px;
}
@media screen and (max-width: 899px) {
  .p-news {
    margin-bottom: 24%;
  }
}
.p-news__ttl {
  width: 23%;
  max-width: 264px;
  padding-right: 3%;
  font-size: 39px;
  display: block;
  writing-mode: unset;
}
@media screen and (max-width: 899px) {
  .p-news__ttl {
    font-size: 29px;
    width: 100%;
    max-width: none;
    padding-right: 0;
    margin-bottom: 31px;
  }
}
.p-news__list {
  margin-top: -11px;
}
@media screen and (max-width: 899px) {
  .p-news__list {
    margin-top: 0;
  }
}
.p-news__list-item {
  line-height: 1.8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-18px);
  opacity: 0;
}
.is-active .p-news__list-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.is-active .p-news__list-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.33s;
}
.is-active .p-news__list-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.46s;
}
.p-news__list-item:first-of-type {
  border-top: none;
}
.p-news__list-item:first-of-type .p-news__list-inner {
  padding-top: 0;
}
.p-news__list-inner {
  display: flex;
  align-items: center;
  padding: 15px 0 12px;
  text-decoration: none;
  color: #fff;
  transition: color 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 900px) {
  .p-news__list-inner:hover {
    color: #9fa1c0;
  }
}
@media screen and (max-width: 899px) {
  .p-news__list-inner {
    display: block;
    padding: 18px 0 19px;
  }
}
.p-news__list-date {
  line-height: 1.5;
  width: 23%;
  max-width: 208px;
  min-width: 166px;
  padding-right: 2%;
  font-family: "Outfit", sans-serif;
}
@media screen and (min-width: 900px) {
  .p-news__list-date.is-pc {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-news__list-date.is-sp {
    max-width: none;
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-news__list-date {
    min-width: auto;
    margin-bottom: 3px;
  }
}
.p-news__list-date .p-in_year {
  writing-mode: vertical-lr;
  font-size: 15px;
  margin-right: 9px;
  line-height: 1;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 2px;
}
.p-news__list-date .p-in_date {
  font-size: 47px;
  letter-spacing: 6px;
  font-weight: 100;
}
@media screen and (max-width: 899px) {
  .p-news__list-date .p-in_date {
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.5);
  }
}
.p-news__list-detail {
  font-size: 17px;
}
@media screen and (max-width: 899px) {
  .p-news__list-detail {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.5px;
  }
}
.p-news__more {
  text-align: right;
  margin-top: 37px;
  transform: translateX(-18px);
  opacity: 0;
}
.is-active .p-news__more {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 899px) {
  .p-news__more {
    margin-top: 19px;
  }
}

.p-movie {
  max-width: none;
  width: 100%;
  margin-bottom: 198px;
}
@media screen and (max-width: 899px) {
  .p-movie {
    margin-bottom: 25%;
  }
}
.p-movie__ttl {
  display: none;
}
.p-movie__player {
  cursor: pointer;
}
.p-movie__player-inner {
  position: relative;
  width: 100%;
  padding-top: 40.7%;
  overflow: hidden;
}
.p-movie__player-inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 900px) {
  .p-movie__player-inner:hover::after {
    opacity: 0.7;
  }
}
.p-movie__player-thumb {
  pointer-events: none;
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
}
.p-movie__player-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-movie__player-play {
    font-size: 11px;
    letter-spacing: 2.5px;
  }
}
.p-movie #PV_Player_ui {
  display: none;
}
.p-movie #PV_Player_player_wrap {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 899px) {
  .p-intro__ttl {
    margin-bottom: 30px;
    display: flex;
  }
}
.p-intro__content {
  margin-top: -8px;
}
@media screen and (max-width: 899px) {
  .p-intro__content {
    margin-top: 0;
  }
}
.p-intro__content-box {
  line-height: 2.35;
  font-size: 17px;
  letter-spacing: 1.8px;
  position: relative;
  transform: translateY(-18px);
  opacity: 0;
}
.is-active .p-intro__content-box:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.is-active .p-intro__content-box:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.33s;
}
.is-active .p-intro__content-box:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.46s;
}
@media screen and (max-width: 899px) {
  .p-intro__content-box {
    line-height: 1.92;
    font-size: 13px;
    letter-spacing: 2.5px;
  }
}
.p-intro__content-box + .p-intro__content-box {
  margin-top: 67px;
}
@media screen and (max-width: 899px) {
  .p-intro__content-box + .p-intro__content-box {
    margin-top: 10.5%;
  }
}
.p-intro__content-box:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 899px) {
  .p-intro__content-box:nth-of-type(1) {
    display: block;
  }
}
.p-intro__content-box:nth-of-type(1) .p-intro__text {
  width: 57%;
}
@media screen and (max-width: 899px) {
  .p-intro__content-box:nth-of-type(1) .p-intro__text {
    width: 100%;
  }
}
.p-intro__content-box:nth-of-type(2) .p-intro__text {
  width: 86%;
  margin-top: 68px;
}
@media screen and (max-width: 899px) {
  .p-intro__content-box:nth-of-type(2) .p-intro__text {
    width: 100%;
    margin-top: 11%;
  }
}
.p-intro__content-foot {
  line-height: 2.4;
  font-size: 21px;
  margin-top: 33px;
  letter-spacing: 4.8px;
  font-weight: 500;
  transform: translateY(-18px);
  opacity: 0;
}
.is-active .p-intro__content-foot {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 899px) {
  .p-intro__content-foot {
    font-size: 13px;
    line-height: 2.2;
    letter-spacing: 4.3px;
    margin-top: 23px;
  }
}
.p-intro__text {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-intro__text {
    width: 100%;
  }
}
.-th1 .p-intro__thumb-img {
  position: absolute;
  top: 4%;
  right: 0;
  width: 50%;
  transform: translateX(24%);
}
@media screen and (max-width: 899px) {
  .-th1 .p-intro__thumb-img {
    position: relative;
    top: 0;
    transform: translateX(11%);
    width: 79%;
    margin-left: auto;
    margin-bottom: 10.5%;
  }
}
.-th2 .p-intro__thumb-img {
  width: 61.5%;
  min-width: 470px;
}
@media screen and (max-width: 899px) {
  .-th2 .p-intro__thumb-img {
    min-width: auto;
    width: 97%;
    transform: translateX(-9%);
    margin-bottom: 10%;
  }
}
.-th3 .p-intro__thumb-img {
  position: absolute;
  right: 0;
  top: 38%;
  width: 32%;
  min-width: 250px;
}
@media screen and (max-width: 899px) {
  .-th3 .p-intro__thumb-img {
    position: relative;
    transform: translateX(17%);
    min-width: auto;
    width: 50%;
    margin-left: auto;
  }
}

.l-linethumb {
  position: relative;
  width: 100%;
  padding-top: 26.5%;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .l-linethumb {
    padding-top: 40%;
  }
}
.l-linethumb__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-story {
  margin-top: 198px;
  padding-bottom: 97px;
  max-width: 854px;
}
@media screen and (max-width: 899px) {
  .p-story {
    margin-top: 25%;
    padding-bottom: 4%;
    max-width: none;
  }
}
.p-story__ttl {
  max-width: 134px;
}
@media screen and (max-width: 899px) {
  .p-story__ttl {
    max-width: none;
    margin-bottom: 40px;
  }
}
.p-story__content {
  line-height: 2.4;
  margin-top: -10px;
  letter-spacing: 2px;
}
@media screen and (max-width: 899px) {
  .p-story__content {
    font-size: 12px;
    margin-top: 0;
    line-height: 2.1;
    letter-spacing: 2.8px;
  }
}
.p-story__content-box {
  transform: translateY(-18px);
  opacity: 0;
}
.is-active .p-story__content-box:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.is-active .p-story__content-box:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.33s;
}
.is-active .p-story__content-box:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.46s;
}
.p-story__content-box + .p-story__content-box {
  margin-top: 45px;
}
@media screen and (max-width: 899px) {
  .p-story__content-box + .p-story__content-box {
    margin-top: 23px;
  }
}