@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;
  }
}
@media screen and (max-width: 899px) {
  .p-special__ttl {
    margin-bottom: 41px;
  }
}

.p-special_all__list {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(18px);
  opacity: 0;
}
.is-active .p-special_all__list {
  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.3s;
}
@media screen and (max-width: 899px) {
  .p-special_all__list {
    display: block;
  }
}
.p-special_all__list-item {
  width: 46%;
  margin-bottom: 5%;
}
@media screen and (min-width: 900px) {
  .p-special_all__list-item {
    margin-right: 7.8%;
  }
  .p-special_all__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-special_all__list-item {
    margin-bottom: 10%;
    width: 100%;
  }
}
.p-special_all__list-item a {
  text-decoration: none;
  color: #fff;
  display: block;
  transition: color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 900px) {
  .p-special_all__list-item a:hover {
    color: #9fa1c0;
  }
  .p-special_all__list-item a:hover .p-special_all__thumb-img {
    transform: scale(1.03);
  }
  .p-special_all__list-item a:hover .p-special_all__thumb-img::before {
    opacity: 0.4;
  }
}
.p-special_all__detail {
  line-height: 1.7;
  margin-top: 12px;
}
@media screen and (max-width: 899px) {
  .p-special_all__detail {
    margin-top: 9px;
  }
}
.p-special_all__date {
  font-size: 14px;
  letter-spacing: 1.5px;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 899px) {
  .p-special_all__date {
    font-size: 10px;
  }
}
.p-special_all__ttl {
  font-size: 16px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 899px) {
  .p-special_all__ttl {
    font-size: 12px;
    margin-top: 1px;
  }
}
.p-special_all__thumb {
  background-color: #252832;
  pointer-events: none;
  overflow: hidden;
}
.p-special_all__thumb-img {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-special_all__thumb-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-special_all__thumb img {
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-special_all__thumb img.lazyloaded {
  opacity: 1;
}