.p-visual_in {
  position: relative;
  overflow: hidden;
}
.p-visual_in::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: var(--gradient-red);
}
.p-visual_in__wrapper {
  position: relative;
  width: 100%;
}
.p-visual_in__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding-top: 6.2rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__inner {
    padding-top: 6.1rem;
    padding-bottom: 4rem;
  }
}
.p-visual_in__content {
  position: relative;
  width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-visual_in__content {
    width: 95%;
  }
}
.p-visual_in__title {
  position: relative;
  width: 36rem;
  margin: 0 auto;
  transform: scale(1.1);
  opacity: 0;
}
.on-load .p-visual_in__title {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart) 0.5s, opacity 0.5s var(--ease-out-quart) 0.5s;
}
@media screen and (max-width: 750px) {
  .p-visual_in__title {
    width: 27.4rem;
    margin: 0 auto;
  }
}
.p-visual_in__title-img {
  display: block;
}
.p-visual_in__title-img img {
  height: auto;
}
.p-visual_in__title-info {
  display: block;
  width: 88%;
  margin: 0 auto;
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__title-info {
    margin-top: 1.5rem;
  }
}
.p-visual_in__title-info img {
  height: auto;
}
.p-visual_in__official {
  position: absolute;
  top: 2.3rem;
  right: 2rem;
  width: 12.6rem;
  height: 12.6rem;
  transform: scale(1.1);
  opacity: 0;
}
.on-load .p-visual_in__official {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart) 0.7s, opacity 0.4s var(--ease-out-quart) 0.7s;
}
@media screen and (max-width: 750px) {
  .p-visual_in__official {
    top: -3.1rem;
    right: -3rem;
  }
}
.p-visual_in__official-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.p-visual_in__official-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/officialx_bg.png) no-repeat center center/100% auto;
  animation: rotateReverse 40s linear infinite;
}
.p-visual_in__official-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
  transition: transform 0.6s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-visual_in__official-link:hover img {
    transform: translate(-50%, -50%) scale(1.15);
  }
}

@media screen and (max-width: 750px) {
  .p-visual_in__official-link img {
    top: 53%;
    left: 47.5%;
    width: 28%;
  }
}
.p-visual_in__nav {
  margin-top: 4rem;
  transform: translateY(1rem);
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .p-visual_in__nav {
    width: 94%;
    margin: 0 auto;
    margin-top: 2.6rem;
  }
}
.on-load .p-visual_in__nav {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart) 0.7s, opacity 0.5s var(--ease-out-quart) 0.7s;
}
.p-visual_in__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .p-visual_in__nav-list {
    justify-content: space-between;
  }
}
.p-visual_in__nav-list-item {
  width: 20%;
  margin: 0 0.62%;
}
@media screen and (max-width: 750px) {
  .p-visual_in__nav-list-item {
    width: 31.5%;
    margin: 0;
  }
}
.p-visual_in__nav-list-item:nth-child(n+5) {
  margin-top: 1.8%;
}
@media screen and (max-width: 750px) {
  .p-visual_in__nav-list-item:nth-child(n+4) {
    margin-top: 1.2rem;
  }
}
.p-visual_in__nav-link {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 25%;
  background: var(--color-black);
  border-radius: 50rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__nav-link {
    padding-top: 42%;
  }
}
.p-visual_in__nav-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-red);
  border-radius: 50rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-visual_in__nav-link:hover::before {
    opacity: 1;
  }
}

.p-visual_in__nav-list-item.is-active .p-visual_in__nav-link::before {
  opacity: 1;
}
.p-visual_in__nav-link-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-eng);
  font-size: 1.3rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__nav-link-text {
    font-size: 1.2rem;
  }
}
.p-visual_in__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: hidden;
}
.p-visual_in__deco-item {
  position: absolute;
  transform: translateY(5rem);
  opacity: 0;
}
.on-load .p-visual_in__deco-item {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s var(--ease-out-back), opacity 0.5s var(--ease-out-quart);
}
.on-load .p-visual_in__deco-item:nth-child(1) {
  transition-delay: 0.8s;
}
.on-load .p-visual_in__deco-item:nth-child(2) {
  transition-delay: 0.9s;
}
.on-load .p-visual_in__deco-item:nth-child(3) {
  transition-delay: 1s;
}
.on-load .p-visual_in__deco-item:nth-child(4) {
  transition-delay: 1.1s;
}
.on-load .p-visual_in__deco-item:nth-child(5) {
  transition-delay: 0.8s;
}
.on-load .p-visual_in__deco-item:nth-child(6) {
  transition-delay: 0.9s;
}
.on-load .p-visual_in__deco-item:nth-child(7) {
  transition-delay: 1s;
}
.on-load .p-visual_in__deco-item:nth-child(8) {
  transition-delay: 1.1s;
}
.p-visual_in__deco-item:nth-child(1) {
  top: 39.2%;
  left: 14.6rem;
  width: 4.6rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(1) {
    top: 18%;
    left: 6.2rem;
    width: 1.8rem;
  }
}
.p-visual_in__deco-item:nth-child(2) {
  top: 64.2%;
  left: -2.2rem;
  width: 10rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(2) {
    top: 70.4%;
    left: -1.7rem;
    width: 4rem;
  }
}
.p-visual_in__deco-item:nth-child(3) {
  top: 60.5%;
  left: 29.1rem;
  width: 4.2rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(3) {
    top: 48.8%;
    left: 2.6rem;
    width: 1.7rem;
  }
}
.p-visual_in__deco-item:nth-child(4) {
  top: 72.5%;
  left: -2.2rem;
  width: 15.5rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(4) {
    top: 78.1%;
    left: -1.4rem;
    width: 10.4rem;
  }
}
.p-visual_in__deco-item:nth-child(5) {
  top: 22.8%;
  right: 30rem;
  width: 6.7rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(5) {
    top: 5.3%;
    right: 7.9rem;
    width: 3.9rem;
  }
}
.p-visual_in__deco-item:nth-child(6) {
  top: 34.5%;
  right: -3.4rem;
  width: 13.5rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(6) {
    top: 37%;
    right: -2.4rem;
    width: 5.5rem;
  }
}
.p-visual_in__deco-item:nth-child(7) {
  top: 57.7%;
  right: 25.5rem;
  width: 3.8rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(7) {
    top: 65%;
    right: 5.4rem;
    width: 1.5rem;
  }
}
.p-visual_in__deco-item:nth-child(8) {
  top: 52%;
  right: -0.9rem;
  width: 16rem;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(8) {
    top: 47.4%;
    right: -4.2rem;
    width: 10.3rem;
  }
}
.p-visual_in__deco-item:nth-child(9) {
  top: 15.2rem;
  left: -4rem;
  transform: rotate(-20deg);
  transform-origin: left center;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}
.on-load .p-visual_in__deco-item:nth-child(9) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition: opacity 0.5s var(--ease-out-quart), -webkit-clip-path 1.2s var(--ease-inout-expo);
  transition: clip-path 1.2s var(--ease-inout-expo), opacity 0.5s var(--ease-out-quart);
  transition: clip-path 1.2s var(--ease-inout-expo), opacity 0.5s var(--ease-out-quart), -webkit-clip-path 1.2s var(--ease-inout-expo);
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(9) {
    top: 5.2rem;
    left: -2rem;
  }
}
.p-visual_in__deco-item:nth-child(9)::before {
  right: 0;
  background-image: url(../img/listband1.jpg);
}
@media screen and (min-width: 751px) {
  .p-visual_in__deco-item:nth-child(9)::before {
    animation: loopListBandRightInPC 20s linear infinite;
  }
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(9)::before {
    animation: loopListBandRightSP 20s linear infinite;
  }
}
.p-visual_in__deco-item:nth-child(10) {
  top: 23.4rem;
  left: -4rem;
  transform: rotate(-40deg);
  transform-origin: left center;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}
.on-load .p-visual_in__deco-item:nth-child(10) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition: opacity 0.5s var(--ease-out-quart), -webkit-clip-path 1.2s var(--ease-inout-expo);
  transition: clip-path 1.2s var(--ease-inout-expo), opacity 0.5s var(--ease-out-quart);
  transition: clip-path 1.2s var(--ease-inout-expo), opacity 0.5s var(--ease-out-quart), -webkit-clip-path 1.2s var(--ease-inout-expo);
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(10) {
    top: 8.8rem;
    left: -2rem;
  }
}
.p-visual_in__deco-item:nth-child(10)::before {
  right: 0;
  background-image: url(../img/listband2.jpg);
}
@media screen and (min-width: 751px) {
  .p-visual_in__deco-item:nth-child(10)::before {
    animation: loopListBandRightInPC 20s linear infinite;
  }
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(10)::before {
    animation: loopListBandRightSP 20s linear infinite;
  }
}
.p-visual_in__deco-item:nth-child(11) {
  bottom: 9.3rem;
  right: -4rem;
  transform: rotate(-20deg);
  transform-origin: right center;
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  opacity: 0;
}
.on-load .p-visual_in__deco-item:nth-child(11) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition: opacity 0.5s var(--ease-out-quart), -webkit-clip-path 1.4s var(--ease-inout-expo);
  transition: clip-path 1.4s var(--ease-inout-expo), opacity 0.5s var(--ease-out-quart);
  transition: clip-path 1.4s var(--ease-inout-expo), opacity 0.5s var(--ease-out-quart), -webkit-clip-path 1.4s var(--ease-inout-expo);
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(11) {
    bottom: 4.2rem;
    right: -2rem;
  }
}
.p-visual_in__deco-item:nth-child(11)::before {
  left: 0;
  background-image: url(../img/listband3.jpg);
}
@media screen and (min-width: 751px) {
  .p-visual_in__deco-item:nth-child(11)::before {
    animation: loopListBandLeftInPC 20s linear infinite;
  }
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item:nth-child(11)::before {
    animation: loopListBandLeftSP 20s linear infinite;
  }
}
.p-visual_in__deco-item.--listband {
  width: 100%;
  padding-top: 5.8797rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item.--listband {
    padding-top: 3.9198rem;
  }
}
.p-visual_in__deco-item.--listband::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 200%;
  min-width: 280rem;
  height: 100%;
  background-repeat: repeat-x;
  background-position: left center;
  background-size: auto 100%;
}
@media screen and (max-width: 750px) {
  .p-visual_in__deco-item.--listband::before {
    min-width: 112.5rem;
  }
}