.p-kv {
  position: relative;
}

.p-kv__main {
  width: 100%;
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-kv__main {
    padding: 20px;
  }
}
.p-kv__main-deco-item {
  width: 100%;
  height: 45px;
  position: absolute;
  left: 0;
  background: url(../img/loop_deco.png) repeat-x left top/auto 100%;
}
@media screen and (max-width: 899px) {
  .p-kv__main-deco-item {
    height: 35px;
  }
}
.p-kv__main-deco-item:nth-of-type(1) {
  top: 0;
  animation: loopBgRight 20s linear infinite;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main) 3.1s, transform 0.8s var(--ease-main) 3.1s;
}
.is-accessed .p-kv__main-deco-item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.is-load .p-kv__main-deco-item:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
}
.p-kv__main-deco-item:nth-of-type(2) {
  bottom: 0;
  animation: loopBgLeft 20s linear infinite;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main) 3.1s, transform 0.8s var(--ease-main) 3.1s;
}
.is-accessed .p-kv__main-deco-item:nth-of-type(2) {
  transition-delay: 0.1s;
}
.is-load .p-kv__main-deco-item:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-kv__main-deco-item:nth-of-type(2) {
    bottom: -28px;
  }
}
.p-kv__main-inner {
  border-radius: 60px;
  border: 10px solid var(--color-blue);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s var(--ease-main);
}
.is-load .p-kv__main-inner {
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-kv__main-inner {
    border-radius: 30px;
    border: 5px solid var(--color-blue);
  }
}
.p-kv__main-movie {
  width: 100%;
  opacity: 0;
  transform: scale(1.05) rotate(-2deg);
  transition: opacity 0.8s var(--ease-main) 3s, transform 3s var(--ease-main) 3s, filter 0.8s var(--ease-main) 3s;
  pointer-events: none;
}
.is-accessed .p-kv__main-movie {
  transition-delay: 0s;
}
.is-load .p-kv__main-movie {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.p-kv__main-movie video {
  width: 100%;
}
.p-kv__main-image {
  width: 100%;
}
.p-kv__main-image img {
  width: 100%;
  transform: scale(1.05) rotate(-2deg);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main) 0s, transform 3s var(--ease-main) 0s, filter 0.8s var(--ease-main) 0s;
}
.is-load .p-kv__main-image img {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) rotate(0deg);
}
.p-kv__main-logo {
  width: 45%;
  position: absolute;
  left: 50%;
  bottom: 6.4%;
  transform: translateX(-50%);
}
.p-kv__main-logo img {
  width: 100%;
  transform: scale(0) rotate(-20deg);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main) 3.2s, transform 0.6s var(--ease-bound) 3.2s;
}
.is-accessed .p-kv__main-logo img {
  transition-delay: 0.2s;
}
.is-load .p-kv__main-logo img {
  opacity: 1;
  transform: scale(1) rotate(0);
}
@media screen and (max-width: 899px) {
  .p-kv__main-logo {
    width: 70%;
    bottom: 3.8%;
  }
}
.p-kv__main-ticket {
  width: 16.6%;
  max-width: 280px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  transition: transform 0.5s var(--ease-bound);
}
@media (hover: hover) {
  .p-kv__main-ticket:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 899px) {
  .p-kv__main-ticket {
    width: 31.7%;
  }
}

.p-kv__date {
  width: 44.8%;
  max-width: 800px;
  margin: 73px auto 0;
  opacity: 0;
  transform: scale(0.7);
  transition: transform 0.5s var(--ease-bound), opacity 0.6s var(--ease-main);
}
.p-kv__date.p-scroll.is-active {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 899px) {
  .p-kv__date {
    width: 84%;
    margin: 62px auto 0;
  }
}
.p-news {
  width: 85.8%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-news {
    width: 92%;
    padding-top: 60px;
  }
}

.p-news__title {
  width: 583px;
  margin-bottom: 62px;
}
@media screen and (max-width: 899px) {
  .p-news__title {
    width: 292px;
    margin-bottom: 29px;
  }
}

.p-news__contents {
  width: 83.2%;
  margin: 0 auto;
  padding: 1.8% 4.5%;
  border-radius: 40px;
  border: 6px solid var(--color-pink01);
  background-color: var(--color-white);
  opacity: 0;
  transform: scale(0.98);
  transition: transform 0.5s var(--ease-bound) 0.1s, opacity 0.6s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-news__contents {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 899px) {
  .p-news__contents {
    width: 97%;
    margin: 0 auto;
    padding: 0.4% 4.2% 3.2%;
    border-radius: 20px;
    border: 3px solid var(--color-pink01);
  }
}

.p-news__link {
  width: 340px;
  margin: 40px auto 0;
  opacity: 0;
  transform: translateY(8px);
  transition: transform 0.6s var(--ease-bound) 0.3s, opacity 0.6s var(--ease-main) 0.3s;
}
.p-scroll.is-active .p-news__link {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-news__link {
    width: 71%;
    margin: 29px auto 0;
  }
}
.p-music {
  padding-top: 174px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-music {
    padding-top: 94px;
  }
}

.p-music__inner {
  padding: 100px 0 170px;
  background-color: var(--color-pink02);
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: transform 0.6s var(--ease-bound), opacity 0.6s var(--ease-main);
}
.p-scroll.is-active .p-music__inner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-music__inner {
    padding: 56px 0 80px;
  }
}
.p-music__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 23px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg_pink_repeat.png) repeat-x left top/auto 100%;
  transform: translateY(-100%);
}
@media screen and (max-width: 899px) {
  .p-music__inner::before {
    height: 15px;
  }
}
.p-music__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 23px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/bg_pink_repeat.png) repeat-x left top/auto 100%;
  transform: translateY(100%) rotateX(180deg);
}
@media screen and (max-width: 899px) {
  .p-music__inner::after {
    height: 15px;
  }
}

.p-music__deco-item {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transform: scale(1.1) rotate(-8deg);
  transition: transform 0.5s var(--ease-bound), opacity 0.6s var(--ease-main);
}
.p-music__deco-item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.p-music__deco-item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-music__deco-item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-music__deco-item:nth-of-type(4) {
  transition-delay: 0.5s;
}
.p-music__deco-item:nth-of-type(5) {
  transition-delay: 0.6s;
}
.p-scroll.is-active .p-music__deco-item {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.p-music__deco-item:nth-of-type(1) {
  width: 13.3%;
  max-width: 190px;
  top: 4.3%;
  left: 9%;
}
@media screen and (max-width: 899px) {
  .p-music__deco-item:nth-of-type(1) {
    width: 25.2%;
    top: 0;
    left: 0;
  }
  .p-music__deco-item:nth-of-type(1) img {
    transform: translate(-19%, -34%);
  }
}
.p-music__deco-item:nth-of-type(2) {
  width: 18.6%;
  max-width: 270px;
  top: 6.6%;
  right: -0.7%;
}
@media screen and (max-width: 899px) {
  .p-music__deco-item:nth-of-type(2) {
    width: 35%;
    top: 0;
    right: 0;
  }
  .p-music__deco-item:nth-of-type(2) img {
    transform: translate(15%, -66%);
  }
}
.p-music__deco-item:nth-of-type(3) {
  width: 9.8%;
  max-width: 140px;
  top: 20.6%;
  left: 7%;
}
@media screen and (max-width: 899px) {
  .p-music__deco-item:nth-of-type(3) {
    width: 18.3%;
    top: 14.8%;
    left: 5%;
  }
}
.p-music__deco-item:nth-of-type(4) {
  width: 9.8%;
  max-width: 140px;
  top: 76.1%;
  right: 5.4%;
}
@media screen and (max-width: 899px) {
  .p-music__deco-item:nth-of-type(4) {
    width: 18%;
    top: 86.2%;
    right: 13.6%;
  }
}
.p-music__deco-item:nth-of-type(5) {
  width: 13.4%;
  max-width: 200px;
  top: 74.7%;
  left: 6.6%;
}
@media screen and (max-width: 899px) {
  .p-music__deco-item:nth-of-type(5) {
    width: 24.7%;
    top: 75%;
    left: -3.4%;
  }
}
.p-music__deco-item:nth-of-type(6) {
  width: 14.2%;
  max-width: 210px;
  top: 84.6%;
  right: 9.84%;
}
@media screen and (max-width: 899px) {
  .p-music__deco-item:nth-of-type(6) {
    width: 26.4%;
    top: auto;
    bottom: 0;
    right: 0;
  }
  .p-music__deco-item:nth-of-type(6) img {
    transform: translate(9%, 33%);
  }
}
.p-music__deco-item img {
  width: 100%;
}

.p-music__title {
  width: 554px;
  margin: 0 auto 56px;
}
@media screen and (max-width: 899px) {
  .p-music__title {
    width: 80%;
    margin: 0 auto 30px;
  }
}

.p-music__contents {
  position: relative;
  z-index: 1;
}
.p-music__contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 71.3%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-music__contents-inner {
    display: block;
    width: 78.8%;
  }
}
.p-music__contents-image {
  width: 56.4%;
  position: relative;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-music__contents-image {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-music__contents-image {
    width: 100%;
    margin-bottom: 21px;
  }
}
.p-music__contents-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 16%;
  right: -16%;
  background: url(../img/jk_shadow.png) no-repeat center/contain;
}
.p-music__contents-image img {
  width: 100%;
  position: relative;
}
.p-music__contents-detail {
  width: 35.4%;
}
@media screen and (max-width: 899px) {
  .p-music__contents-detail {
    width: 100%;
  }
}
.p-music__contents-detail .p-in-title {
  margin-bottom: 26px;
  font-size: 4.6rem;
  letter-spacing: 0.01em;
  line-height: 1.45;
  font-weight: 700;
  transform: translateX(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
@media screen and (min-width: 900px) {
  .p-music__contents-detail .p-in-title img {
    width: 118%;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }
}
.p-scroll.is-active .p-music__contents-detail .p-in-title {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-music__contents-detail .p-in-title {
    width: 94%;
    transform: translateY(8px);
    margin: 0 auto 5px;
    font-size: 2.4rem;
  }
}
.p-music__contents-detail .p-in-text {
  margin-bottom: 50px;
  font-size: 1.7rem;
  line-height: 2.35;
  font-weight: 700;
  transform: translateX(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.3s, opacity 0.6s var(--ease-main) 0.3s;
}
.p-scroll.is-active .p-music__contents-detail .p-in-text {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-music__contents-detail .p-in-text {
    transform: translateY(8px);
    margin-bottom: 19px;
    font-size: 1.3rem;
    line-height: 1.75;
  }
}
.p-music__contents-detail-link {
  width: 96%;
  margin: 0 auto;
  transform: translateX(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.4s, opacity 0.6s var(--ease-main) 0.4s;
}
.p-scroll.is-active .p-music__contents-detail-link {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-music__contents-detail-link {
    transform: translateY(8px);
    width: 82%;
  }
}
.p-music__contents-detail-link img {
  width: 100%;
}
.p-message {
  width: 85.6%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 164px;
}
@media screen and (max-width: 899px) {
  .p-message {
    width: 89.2%;
    padding-top: 86px;
  }
}

.p-message__title {
  width: 790px;
  margin-bottom: 41px;
}
@media screen and (max-width: 899px) {
  .p-message__title {
    width: 100%;
    margin-bottom: 20px;
  }
}

.p-message__contents {
  width: 83.3%;
  margin: 0 auto 40px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.1s, opacity 0.6s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-message__contents {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-message__contents {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.p-message__contents-item img {
  width: 100%;
}

.p-message__link {
  width: 340px;
  margin: 0 auto;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-message__link {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-message__link {
    width: 73%;
    margin: 0 auto;
  }
}
.p-goods {
  width: 85.6%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 152px;
}
@media screen and (max-width: 899px) {
  .p-goods {
    width: 89.2%;
    padding-top: 78px;
  }
}

.p-goods__title {
  width: 608px;
  margin-bottom: 63px;
}
@media screen and (max-width: 899px) {
  .p-goods__title {
    width: 91%;
    margin-bottom: 30px;
  }
}

.p-goods__contents {
  width: 83.3%;
  margin: 0 auto 40px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.1s, opacity 0.6s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-goods__contents {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-goods__contents {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.p-goods__contents-item img {
  width: 100%;
}

.p-goods__link {
  width: 340px;
  margin: 0 auto;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-goods__link {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-goods__link {
    width: 73%;
    margin: 0 auto;
  }
}
.p-movie {
  padding-top: 154px;
}
@media screen and (max-width: 899px) {
  .p-movie {
    padding-top: 80px;
    position: relative;
    z-index: 4;
  }
}

.p-movie__title {
  width: 85.6%;
  max-width: 1400px;
  margin: 0 auto 59px;
}
@media screen and (max-width: 899px) {
  .p-movie__title {
    width: 89%;
    margin-bottom: 30px;
  }
}
.p-movie__title h2 {
  width: 550px;
}
@media screen and (max-width: 899px) {
  .p-movie__title h2 {
    width: 82%;
  }
}

.p-movie__contents {
  position: relative;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.1s, opacity 0.6s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-movie__contents {
  opacity: 1;
  transform: translateX(0);
}
.p-movie__contents-list-item {
  width: 71.4%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px;
  border: 6px solid var(--color-pink01);
  background-color: var(--color-white);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform: scale(0.9);
  transition: transform 0.8s var(--ease-main) 0.1s;
}
@media (hover: hover) {
  .p-movie__contents-list-item:hover .p-in-icon img {
    transform: scale(0.95);
  }
  .p-movie__contents-list-item:hover .p-in-image-item {
    transform: scale(1.02);
  }
  .p-movie__contents-list-item:hover .p-in-image-item::before {
    opacity: 0.4;
  }
}
@media screen and (max-width: 899px) {
  .p-movie__contents-list-item {
    width: 83.7%;
    border: 3px solid var(--color-pink01);
    padding: 4px;
    border-radius: 20px;
    transform: scale(0.93);
  }
}
.p-movie__contents-list-item.swiper-slide-active {
  transform: scale(1);
}
.p-movie__contents-list-item .p-in-image {
  width: 100%;
  padding-top: 54.35%;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .p-movie__contents-list-item .p-in-image {
    border-radius: 20px;
  }
}
.p-movie__contents-list-item .p-in-image-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease-bound);
}
.p-movie__contents-list-item .p-in-image-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-pink01);
  opacity: 0;
  transition: opacity 0.6s var(--ease-main);
  z-index: 1;
}
.p-movie__contents-list-item .p-in-icon {
  width: 12%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-movie__contents-list-item .p-in-icon img {
  transition: transform 0.6s var(--ease-bound);
}
@media screen and (max-width: 899px) {
  .p-movie__contents-list-item .p-in-icon {
    width: 25%;
  }
}
.p-movie__contents-nav {
  width: 76.5%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-movie__contents-nav {
    width: 96.2%;
  }
}
.p-movie__contents-nav-item {
  width: 6.5%;
  max-width: 90px;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  transition: transform 0.4s var(--ease-bound);
}
@media (hover: hover) {
  .p-movie__contents-nav-item:hover {
    transform: translateY(-50%) scale(0.92);
  }
}
@media screen and (max-width: 899px) {
  .p-movie__contents-nav-item {
    width: 9.5%;
  }
}
.p-movie__contents-nav-item img {
  width: 100%;
}
.p-movie__contents-nav-item.--prev {
  left: 0;
}
.p-movie__contents-nav-item.--prev img {
  transform: rotate(180deg);
}
.p-movie__contents-nav-item.--next {
  right: 0;
}
.p-movie__contents-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 899px) {
  .p-movie__contents-pagination {
    margin-top: 14px;
  }
}
.p-movie__contents-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 28px;
  margin: 0 9px !important;
  border-radius: 0;
  opacity: 1;
  background: url(../img/slide_dot_deff.svg) no-repeat center/contain;
  transition: transform 0.6s var(--ease-bound);
}
@media (hover: hover) {
  .p-movie__contents-pagination .swiper-pagination-bullet:hover {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 899px) {
  .p-movie__contents-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 6px !important;
  }
}
.p-movie__contents-pagination .swiper-pagination-bullet.is-current {
  pointer-events: none;
  background: url(../img/slide_dot_active.svg) no-repeat center/contain;
}

.p-movie__link {
  width: 340px;
  margin: 36px auto 0;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.6s var(--ease-bound) 0.2s, opacity 0.6s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-movie__link {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-movie__link {
    width: 65%;
    margin: 27px auto 0;
  }
}
.p-member {
  padding-top: 160px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-member {
    padding-top: 80px;
  }
}

.p-member__title {
  width: 766px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 899px) {
  .p-member__title {
    width: 92%;
    margin: 0 auto 31px;
  }
}

.p-member__contents {
  width: 72.5%;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-member__contents {
    width: 87.3%;
  }
}
.p-member__contents-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 899px) {
  .p-member__contents-list {
    flex-wrap: wrap;
  }
}
.p-member__contents-list-item {
  width: 25%;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: transform 0.6s var(--ease-bound), opacity 0.6s var(--ease-main);
}
.p-member__contents-list-item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.p-member__contents-list-item:nth-of-type(1) .p-in-item::before {
  transition-delay: 0.4s !important;
}
.p-member__contents-list-item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-member__contents-list-item:nth-of-type(2) .p-in-item::before {
  transition-delay: 0.5s !important;
}
.p-member__contents-list-item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-member__contents-list-item:nth-of-type(3) .p-in-item::before {
  transition-delay: 0.6s !important;
}
.p-member__contents-list-item:nth-of-type(4) {
  transition-delay: 0.5s;
}
.p-member__contents-list-item:nth-of-type(4) .p-in-item::before {
  transition-delay: 0.7s !important;
}
@media (hover: hover) {
  .p-member__contents-list-item:hover:nth-of-type(even) .p-member__contents-list-item-image .p-in-item:nth-of-type(2) img {
    transform: translateX(-50%) scale(1.04) rotate(5deg);
  }
  .p-member__contents-list-item:hover:nth-of-type(odd) .p-member__contents-list-item-image .p-in-item:nth-of-type(2) img {
    transform: translateX(-50%) scale(1.04) rotate(-5deg);
  }
}
.p-scroll.is-active .p-member__contents-list-item {
  opacity: 1;
  transform: translateY(0);
}
.p-member__contents-list-item:nth-of-type(1) .p-in-item:nth-of-type(2)::before {
  background-color: var(--color-pekora-main);
  -webkit-mask: url(../img/chara_img_pekora.png) no-repeat center top/125%;
  mask: url(../img/chara_img_pekora.png) no-repeat center top/125%;
}
.p-member__contents-list-item:nth-of-type(2) .p-in-item:nth-of-type(2)::before {
  background-color: var(--color-flare-main);
  -webkit-mask: url(../img/chara_img_flare.png) no-repeat center top/125%;
  mask: url(../img/chara_img_flare.png) no-repeat center top/125%;
}
.p-member__contents-list-item:nth-of-type(3) .p-in-item:nth-of-type(2)::before {
  background-color: var(--color-noel-main);
  -webkit-mask: url(../img/chara_img_noel.png) no-repeat center top/125%;
  mask: url(../img/chara_img_noel.png) no-repeat center top/125%;
}
.p-member__contents-list-item:nth-of-type(4) .p-in-item:nth-of-type(2)::before {
  background-color: var(--color-marine-main);
  -webkit-mask: url(../img/chara_img_marine.png) no-repeat center top/125%;
  mask: url(../img/chara_img_marine.png) no-repeat center top/125%;
}
@media screen and (max-width: 899px) {
  .p-member__contents-list-item {
    width: 50%;
    margin-bottom: 32px;
  }
}
.p-member__contents-list-item-image {
  width: 100%;
  position: relative;
}
.p-member__contents-list-item-image .p-in-item {
  position: relative;
}
.p-member__contents-list-item-image .p-in-item:nth-of-type(1) {
  width: 116.2%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-member__contents-list-item-image .p-in-item:nth-of-type(2) {
  width: 93.1%;
  padding-top: 157.5%;
  border-radius: 50rem 50rem 0 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.p-member__contents-list-item-image .p-in-item:nth-of-type(2)::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-clip-path: polygon(50% -50%, 150% 50%, 50% 150%, -50% 50%);
  clip-path: polygon(50% -50%, 150% 50%, 50% 150%, -50% 50%);
  transition: -webkit-clip-path 0.8s var(--ease-main);
  transition: clip-path 0.8s var(--ease-main);
  transition: clip-path 0.8s var(--ease-main), -webkit-clip-path 0.8s var(--ease-main);
}
.p-scroll.is-active .p-member__contents-list-item-image .p-in-item:nth-of-type(2)::before {
  -webkit-clip-path: polygon(150% 50%, 150% 50%, 50% 150%, 50% 150%);
  clip-path: polygon(150% 50%, 150% 50%, 50% 150%, 50% 150%);
}
.p-member__contents-list-item-image .p-in-item:nth-of-type(2) img {
  width: 125%;
  max-width: none;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: transform 0.5s var(--ease-main);
}
.p-member__contents-list-item-image .p-in-item:nth-of-type(3) {
  width: 116.2%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.p-member__contents-list-item-image .p-in-item img {
  width: 100%;
}

.p-member_modal {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-main);
  pointer-events: none;
  z-index: 11;
  background-color: var(--color-white);
}
.is-member_modal-open .p-member_modal {
  opacity: 1;
  pointer-events: auto;
}
.p-member_modal-close {
  width: 80px;
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.4s var(--ease-bound);
}
@media (hover: hover) {
  .p-member_modal-close:hover {
    transform: scale(0.92);
  }
}
@media screen and (max-width: 899px) {
  .p-member_modal-close {
    width: 50px;
    position: fixed;
    z-index: 3;
  }
}
.p-member_modal-nav-item {
  width: 5%;
  max-width: 80px;
  position: absolute;
  top: 48.2%;
  z-index: 2;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.4s var(--ease-bound);
}
@media (hover: hover) {
  .p-member_modal-nav-item:hover {
    transform: translateY(-50%) scale(0.92);
  }
}
@media screen and (max-width: 899px) {
  .p-member_modal-nav-item {
    width: 10%;
    top: 50%;
    position: fixed;
  }
}
.p-member_modal-nav-item.--prev {
  left: 2.9%;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 899px) {
  .p-member_modal-nav-item.--prev {
    right: 2.3%;
  }
}
.p-member_modal-nav-item.--next {
  right: 2.9%;
}
@media screen and (max-width: 899px) {
  .p-member_modal-nav-item.--next {
    right: 2.3%;
  }
}
.p-member_modal-list {
  height: auto;
  min-height: 100vh;
}
.p-member_modal-list-item {
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  pointer-events: none !important;
}
.p-member_modal-list-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 45px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: loopBgRight 20s linear infinite;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item::before {
    height: 35px;
  }
}
.p-member_modal-list-item.swiper-slide-active {
  z-index: 1;
}
.is-member_modal-open .p-member_modal-list-item {
  pointer-events: auto !important;
}
.p-member_modal-list-item.--marine {
  color: var(--color-marine-main);
}
.p-member_modal-list-item.--marine::before {
  background: url(../img/chara_modal/marine/loop_deco_marine.jpg) repeat-x left top/601px 45px;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item.--marine::before {
    background: url(../img/chara_modal/marine/loop_deco_marine.jpg) repeat-x left top/467px 35px;
  }
}
.p-member_modal-list-item.--marine .p-member_modal-list-item-image .p-in-main::before {
  background-color: var(--color-marine-main);
  -webkit-mask: url(../img/chara_modal/marine/chara_img_marine.png) no-repeat center top/contain;
  mask: url(../img/chara_modal/marine/chara_img_marine.png) no-repeat center top/contain;
}
.p-member_modal-list-item.--marine .p-member_modal-list-item-head {
  background: url(../img/chara_modal/dot_sperkle_ptn.png) repeat left top/8px, var(--color-marine-grad);
}
.p-member_modal-list-item.--marine .p-member_modal-list-item-head .p-in-name-top {
  background-color: var(--color-marine-main);
}
.p-member_modal-list-item.--marine .p-member_modal-list-item-head .p-in-name-main {
  width: 52.1%;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item.--marine .p-member_modal-list-item-head .p-in-name-main {
    width: 84%;
  }
}
.p-member_modal-list-item.--marine .p-member_modal-list-item-head .p-in-name-sns svg {
  fill: var(--color-marine-main);
}
.p-member_modal-list-item.--marine .p-member_modal-list-item-detail .p-in-profile-head {
  background-color: var(--color-marine-main);
}
.p-member_modal-list-item.--noel {
  color: var(--color-noel-main);
}
.p-member_modal-list-item.--noel::before {
  background: url(../img/chara_modal/noel/loop_deco_noel.jpg) repeat-x left top/601px 45px;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item.--noel::before {
    background: url(../img/chara_modal/noel/loop_deco_noel.jpg) repeat-x left top/467px 35px;
  }
}
.p-member_modal-list-item.--noel .p-member_modal-list-item-image .p-in-main::before {
  background-color: var(--color-noel-main);
  -webkit-mask: url(../img/chara_modal/noel/chara_img_noel.png) no-repeat center top/contain;
  mask: url(../img/chara_modal/noel/chara_img_noel.png) no-repeat center top/contain;
}
.p-member_modal-list-item.--noel .p-member_modal-list-item-head {
  background: url(../img/chara_modal/dot_sperkle_ptn.png) repeat left top/8px, var(--color-noel-grad);
}
.p-member_modal-list-item.--noel .p-member_modal-list-item-head .p-in-name-top {
  background-color: var(--color-noel-main);
}
.p-member_modal-list-item.--noel .p-member_modal-list-item-head .p-in-name-main {
  width: 52.1%;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item.--noel .p-member_modal-list-item-head .p-in-name-main {
    width: 84%;
  }
}
.p-member_modal-list-item.--noel .p-member_modal-list-item-head .p-in-name-sns svg {
  fill: var(--color-noel-main);
}
.p-member_modal-list-item.--noel .p-member_modal-list-item-detail .p-in-profile-head {
  background-color: var(--color-noel-main);
}
.p-member_modal-list-item.--flare {
  color: var(--color-flare-main);
}
.p-member_modal-list-item.--flare::before {
  background: url(../img/chara_modal/flare/loop_deco_flare.jpg) repeat-x left top/601px 45px;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item.--flare::before {
    background: url(../img/chara_modal/flare/loop_deco_flare.jpg) repeat-x left top/467px 35px;
  }
}
.p-member_modal-list-item.--flare .p-member_modal-list-item-image .p-in-main::before {
  background-color: var(--color-flare-main);
  -webkit-mask: url(../img/chara_modal/flare/chara_img_flare.png) no-repeat center top/contain;
  mask: url(../img/chara_modal/flare/chara_img_flare.png) no-repeat center top/contain;
}
.p-member_modal-list-item.--flare .p-member_modal-list-item-head {
  background: url(../img/chara_modal/dot_sperkle_ptn.png) repeat left top/8px, var(--color-flare-grad);
}
.p-member_modal-list-item.--flare .p-member_modal-list-item-head .p-in-name-top {
  background-color: var(--color-flare-main);
}
.p-member_modal-list-item.--flare .p-member_modal-list-item-head .p-in-name-main {
  width: 52.1%;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item.--flare .p-member_modal-list-item-head .p-in-name-main {
    width: 84%;
  }
}
.p-member_modal-list-item.--flare .p-member_modal-list-item-head .p-in-name-sns svg {
  fill: var(--color-flare-main);
}
.p-member_modal-list-item.--flare .p-member_modal-list-item-detail .p-in-profile-head {
  background-color: var(--color-flare-main);
}
.p-member_modal-list-item.--pekora {
  color: var(--color-pekora-main);
}
.p-member_modal-list-item.--pekora::before {
  background: url(../img/chara_modal/pekora/loop_deco_pekora.jpg) repeat-x left top/601px 45px;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item.--pekora::before {
    background: url(../img/chara_modal/pekora/loop_deco_pekora.jpg) repeat-x left top/467px 35px;
  }
}
.p-member_modal-list-item.--pekora .p-member_modal-list-item-image .p-in-main::before {
  background-color: var(--color-pekora-main);
  -webkit-mask: url(../img/chara_modal/pekora/chara_img_pekora.png) no-repeat center top/contain;
  mask: url(../img/chara_modal/pekora/chara_img_pekora.png) no-repeat center top/contain;
}
.p-member_modal-list-item.--pekora .p-member_modal-list-item-head {
  background: url(../img/chara_modal/dot_sperkle_ptn.png) repeat left top/8px, var(--color-pekora-grad);
}
.p-member_modal-list-item.--pekora .p-member_modal-list-item-head .p-in-name-top {
  background-color: var(--color-pekora-main);
}
.p-member_modal-list-item.--pekora .p-member_modal-list-item-head .p-in-name-main {
  width: 52.1%;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item.--pekora .p-member_modal-list-item-head .p-in-name-main {
    width: 84%;
  }
}
.p-member_modal-list-item.--pekora .p-member_modal-list-item-head .p-in-name-sns svg {
  fill: var(--color-pekora-main);
}
.p-member_modal-list-item.--pekora .p-member_modal-list-item-detail .p-in-profile-head {
  background-color: var(--color-pekora-main);
}
.p-member_modal-list-item-head .p-in-name {
  width: 70.8%;
  max-width: 1200px;
  padding: 109px 0 58px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-head .p-in-name {
    width: 83%;
    padding: 62px 0;
    margin: 0 auto;
  }
}
.p-member_modal-list-item-head .p-in-name-top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 23px;
  color: var(--color-white);
  font-size: 1.7rem;
  border-radius: 50rem;
  padding: 6px 19px 7px;
  background-color: var(--color-marine-main);
  transform: translateX(10px);
  opacity: 0;
  transition: opacity 0.7s var(--ease-main) 0.4s, transform 0.6s var(--ease-bound) 0.4s;
}
.swiper-slide-active .p-member_modal-list-item-head .p-in-name-top {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-head .p-in-name-top {
    margin-bottom: 4px;
    font-size: 1.3rem;
    padding: 5px 17px 7px;
  }
}
.p-member_modal-list-item-head .p-in-name-main {
  position: relative;
}
.p-member_modal-list-item-head .p-in-name-main img {
  width: 100%;
  transform: translateX(10px);
  opacity: 0;
  transition: opacity 0.7s var(--ease-main) 0.5s, transform 0.6s var(--ease-bound) 0.5s;
}
.swiper-slide-active .p-member_modal-list-item-head .p-in-name-main img {
  transform: translateX(0);
  opacity: 1;
}
.p-member_modal-list-item-head .p-in-name-sns {
  position: absolute;
  bottom: 12px;
  right: 6px;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-head .p-in-name-sns {
    bottom: 5px;
    right: -6px;
  }
}
.p-member_modal-list-item-head .p-in-name-sns ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-member_modal-list-item-head .p-in-name-sns li {
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.7s var(--ease-main) 0.6s, transform 0.6s var(--ease-bound) 0.6s;
}
.p-member_modal-list-item-head .p-in-name-sns li:nth-of-type(1) {
  transition-delay: 0.6s;
}
.p-member_modal-list-item-head .p-in-name-sns li:nth-of-type(2) {
  transition-delay: 0.7s;
}
.swiper-slide-active .p-member_modal-list-item-head .p-in-name-sns li {
  transform: translateY(0);
  opacity: 1;
}
.p-member_modal-list-item-head .p-in-name-sns a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: url(../img/chara_modal/chara_sns_bg.png) no-repeat center/contain;
  transition: transform 0.6s var(--ease-bound);
}
@media (hover: hover) {
  .p-member_modal-list-item-head .p-in-name-sns a:hover {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-head .p-in-name-sns a {
    width: 30px;
    height: 30px;
  }
}
.p-member_modal-list-item-head .p-in-name-sns svg {
  display: block;
  width: 50%;
}
.p-member_modal-list-item-inner {
  flex: 1;
  background: url(../img/chara_modal/bg_ptn.png) repeat left top/789px auto;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-inner {
    position: relative;
    background: url(../img/chara_modal/bg_ptn.png) repeat left top/450px auto;
  }
  .p-member_modal-list-item-inner::before {
    content: "";
    display: block;
    width: 100%;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/chara_modal/bg_white_repeat.png) repeat-x left top/auto 100%;
    transform: translateY(-100%);
  }
}
.p-member_modal-list-item-image {
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .p-member_modal-list-item-image {
    width: 40%;
    max-width: 670px;
    position: absolute;
    left: 54.6vw;
    top: 52%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-image {
    width: 84%;
    margin: -17.5% auto 0;
    position: relative;
  }
}
.p-member_modal-list-item-image img {
  width: 100%;
}
.p-member_modal-list-item-image .p-in-deco {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(4deg) scale(1.1);
  opacity: 0;
  transition: opacity 0.4s var(--ease-main), transform 0.4s var(--ease-bound) 0.4s;
}
.swiper-slide-active .p-member_modal-list-item-image .p-in-deco {
  transition: opacity 0.7s var(--ease-main) 0.4s, transform 0.6s var(--ease-bound) 0.4s;
  transform: rotate(0deg) scale(1);
  opacity: 1;
}
.p-member_modal-list-item-image .p-in-main {
  position: relative;
  transform: rotate(-2deg) scale(0.9);
  opacity: 0;
  transition: opacity 0.4s var(--ease-main), transform 0.4s var(--ease-bound) 0.4s;
}
.swiper-slide-active .p-member_modal-list-item-image .p-in-main {
  transition: opacity 0.7s var(--ease-main) 0.4s, transform 0.6s var(--ease-bound) 0.4s;
  transform: rotate(0deg) scale(1);
  opacity: 1;
}
.p-member_modal-list-item-image .p-in-main::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-clip-path: polygon(50% -50%, 150% 50%, 50% 150%, -50% 50%);
  clip-path: polygon(50% -50%, 150% 50%, 50% 150%, -50% 50%);
  transition: -webkit-clip-path 0.8s var(--ease-main) 0.7s;
  transition: clip-path 0.8s var(--ease-main) 0.7s;
  transition: clip-path 0.8s var(--ease-main) 0.7s, -webkit-clip-path 0.8s var(--ease-main) 0.7s;
}
.swiper-slide-active .p-member_modal-list-item-image .p-in-main::before {
  -webkit-clip-path: polygon(150% 50%, 150% 50%, 50% 150%, 50% 150%);
  clip-path: polygon(150% 50%, 150% 50%, 50% 150%, 50% 150%);
}
.p-member_modal-list-item-detail {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-member_modal-list-item-detail::before {
    content: "";
    display: block;
    width: 100%;
    height: 23px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/chara_modal/bg_white_repeat.png) repeat-x left top/auto 100%;
    transform: translateY(-100%);
  }
}
.p-member_modal-list-item-detail .p-in-inner {
  width: 71%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 0;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-detail .p-in-inner {
    width: 100%;
    padding: 15px 12px 130px;
  }
}
.p-member_modal-list-item-detail .p-in-copy {
  width: 63%;
  margin-bottom: 17px;
  margin-right: auto;
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 700;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.7s var(--ease-main) 0.4s, transform 0.6s var(--ease-bound) 0.4s;
}
.swiper-slide-active .p-member_modal-list-item-detail .p-in-copy {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-detail .p-in-copy {
    width: 74%;
    margin: 0 auto 20px;
    font-size: 2.1rem;
    line-height: 1.4;
  }
}
.p-member_modal-list-item-detail .p-in-text {
  width: 51%;
  margin-bottom: 30px;
  margin-right: auto;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 700;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.7s var(--ease-main) 0.5s, transform 0.6s var(--ease-bound) 0.5s;
}
.swiper-slide-active .p-member_modal-list-item-detail .p-in-text {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-detail .p-in-text {
    width: 74.5%;
    margin: 0 auto 26px;
    font-size: 1.3rem;
    line-height: 2;
  }
}
.p-member_modal-list-item-detail .p-in-profile {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 10px;
  width: 49%;
  margin-left: 5px;
  margin-right: auto;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-detail .p-in-profile {
    display: block;
    width: 74.5%;
    margin: 0 auto;
  }
}
.p-member_modal-list-item-detail .p-in-profile-item {
  display: flex;
  align-items: center;
  width: calc(50% - 5px);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.7s var(--ease-main) 0.6s, transform 0.6s var(--ease-bound) 0.6s;
}
.p-member_modal-list-item-detail .p-in-profile-item:nth-of-type(1) {
  transition-delay: 0.6s;
}
.p-member_modal-list-item-detail .p-in-profile-item:nth-of-type(2) {
  transition-delay: 0.7s;
}
.p-member_modal-list-item-detail .p-in-profile-item:nth-of-type(3) {
  transition-delay: 0.8s;
}
.p-member_modal-list-item-detail .p-in-profile-item:nth-of-type(4) {
  transition-delay: 0.9s;
}
.swiper-slide-active .p-member_modal-list-item-detail .p-in-profile-item {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-detail .p-in-profile-item {
    width: 100%;
    margin-bottom: 12px;
  }
  .p-member_modal-list-item-detail .p-in-profile-item:last-of-type {
    margin-bottom: 0;
  }
}
.p-member_modal-list-item-detail .p-in-profile-head {
  width: 110px;
  margin-right: 16px;
  padding: 4.4px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  border-radius: 50rem;
  color: var(--color-white);
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-detail .p-in-profile-head {
    width: 96px;
    margin-right: 13px;
    padding: 4px;
    font-size: 1rem;
  }
}
.p-member_modal-list-item-detail .p-in-profile-text {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .p-member_modal-list-item-detail .p-in-profile-text {
    font-size: 1.3rem;
  }
}

.p-poem {
  width: 100%;
  position: relative;
}
.p-poem.p-scroll.is-active::before {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
}
.p-poem::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/poem_bg_pc.png) no-repeat center top/cover;
  opacity: 0;
  transform: scale(1.03);
  filter: brightness(2);
  transition: transform 3s var(--ease-main), opacity 1s var(--ease-main), filter 1s var(--ease-main);
}
@media screen and (max-width: 899px) {
  .p-poem::before {
    height: 130%;
    top: -30%;
    background: url(../img/poem_bg_sp.png) no-repeat center top/cover;
  }
}

.p-poem__deco-item {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 899px) {
  .p-poem__deco-item {
    top: -30%;
    transition: transform 0.6s var(--ease-main);
  }
}
.p-poem__deco-item:nth-of-type(1) img {
  transform: translateY(10px);
}
.p-scroll.is-active .p-poem__deco-item:nth-of-type(1) img {
  transform: translateY(0);
}
.p-poem__deco-item:nth-of-type(2) img {
  transform: translateY(-10px);
}
.p-scroll.is-active .p-poem__deco-item:nth-of-type(2) img {
  transform: translateY(0);
}
.p-poem__deco-item img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  opacity: 0;
  filter: brightness(2);
  transition: transform 1s var(--ease-main), opacity 1s var(--ease-main), filter 1s var(--ease-main);
}
.p-scroll.is-active .p-poem__deco-item img {
  opacity: 1;
  filter: brightness(1);
}

.p-poem__detail {
  padding: 455px 0 272px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-poem__detail {
    padding: 212px 0 130px;
  }
}
.p-poem__detail-item {
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.9);
  filter: blur(10px);
  transition: transform 0.8s var(--ease-bound), opacity 1s var(--ease-main), filter 1s var(--ease-main);
}
.p-poem__detail-item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.p-poem__detail-item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-poem__detail-item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-poem__detail-item:nth-of-type(4) {
  transition-delay: 0.5s;
}
.p-poem__detail-item:nth-of-type(5) {
  transition-delay: 0.6s;
}
.p-scroll.is-active .p-poem__detail-item {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.p-poem__detail-item + .p-poem__detail-item {
  margin-top: 78px;
}
@media screen and (max-width: 899px) {
  .p-poem__detail-item + .p-poem__detail-item {
    margin-top: 38px;
  }
}
.p-poem__detail-item:nth-of-type(1) {
  width: 524px;
}
@media screen and (max-width: 899px) {
  .p-poem__detail-item:nth-of-type(1) {
    width: 80%;
  }
}
.p-poem__detail-item:nth-of-type(2) {
  width: 700px;
}
@media screen and (max-width: 899px) {
  .p-poem__detail-item:nth-of-type(2) {
    width: 53%;
  }
}