@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-special_scene__ttl {
  line-height: 1.5;
  font-size: 27px;
  letter-spacing: 5.5px;
  margin-bottom: 84px;
  transform: translateY(18px);
  opacity: 0;
}
.is-active .p-special_scene__ttl {
  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.25s;
}

.p-special_interview-list__item{
  transform: translateY(18px);
  opacity: 0;
}
.is-active .p-special_interview-list__item{
  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.25s;
}
@media screen and (max-width: 899px) {
  .p-special_scene__ttl {
    margin-top: 54px;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 43px;
  }
}
.p-special_scene__text{
  line-height: 1.8;
  margin-bottom: 1.8rem;
  
  opacity: 0;
  -webkit-transform: translateY(18px);
     -moz-transform: translateY(18px);
      -ms-transform: translateY(18px);
       -o-transform: translateY(18px);
          transform: translateY(18px);
}
.is-active .p-special_scene__text {
  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.25s;
}
@media screen and (max-width: 899px) {
  .p-special_scene__text{
    font-size: 13px;
  }
}


.p-special_interview-list__item{
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 26px 0 25px;
}
.p-special_interview-list__item a{
  display: block;
  text-decoration: none;
  color: #FFF;
}
.p-special_interview-list__item .-head{
  display: flex;
  margin-bottom: 12px;
}
.p-special_interview-list__item .-head .date{
  margin-right: 0.8em;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
}
.p-special_interview-list__item .-head .media{
  font-size: 14px;
}
.p-special_interview-list__item .-title{
  font-size: 19px;
  line-height: 1.6;
}

@media screen and (min-width: 900px) {
  .p-special_interview-list__item a {
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-special_interview-list__item a:hover {
    text-decoration: none;
    color: #9fa1c0;
  }
}

@media screen and (max-width: 899px) {
  .p-special_interview-list__item .-title{
    font-size: 15px;
  }
}