.p-fixed_bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.p-fixed_bg__moon-item {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-fixed_bg__moon-item:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 899px) {
  .p-fixed_bg__moon-item:nth-of-type(1) {
    width: 98%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-fixed_bg__moon-item:nth-of-type(2) {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 899px) {
  .p-fixed_bg__moon-item:nth-of-type(2) {
    top: -2.4%;
  }
}
.p-fixed_bg__moon-item:nth-of-type(2) .p-in-item {
  width: 53vw;
  height: 53vw;
  margin: auto;
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 899px) {
  .p-fixed_bg__moon-item:nth-of-type(2) .p-in-item {
    width: 92vw;
    height: 92vw;
  }
}

.p-fixed_bg__deco {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-fixed_bg__deco-item:nth-of-type(1) {
  width: 49vw;
  height: 49vw;
  margin: auto;
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 899px) {
  .p-fixed_bg__deco-item:nth-of-type(1) {
    width: 90vw;
    height: 90vw;
  }
}
.p-fixed_bg__deco-item:nth-of-type(1) svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.p-fixed_bg__deco-item:nth-of-type(1) svg circle {
  fill: none;
  stroke: var(--color-text);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}
.p-fixed_bg__deco-item:nth-of-type(2) {
  width: 49vw;
  height: 49vw;
  margin: auto;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  border: 4px solid var(--color-text);
}
@media screen and (max-width: 899px) {
  .p-fixed_bg__deco-item:nth-of-type(2) {
    width: 90vw;
    height: 90vw;
    border: 2px solid var(--color-text);
  }
}

.p-op {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  z-index: 99;
  transition: opacity 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.is-op-end .p-op {
  opacity: 0;
  pointer-events: none;
}
.p-op::before, .p-op::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-op::before {
  background: url(../img/loading/deco_left.png) no-repeat left center/contain;
}
@media screen and (max-width: 899px) {
  .p-op::before {
    background: url(../img/sp/loading/deco_left.png) no-repeat left center/contain;
  }
}
.p-op::after {
  background: url(../img/loading/deco_right.png) no-repeat right center/contain;
}
@media screen and (max-width: 899px) {
  .p-op::after {
    background: url(../img/sp/loading/deco_right.png) no-repeat right center/contain;
  }
}

.p-op__contents {
  width: 30%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  [data-lang=kr] .p-op__contents {
    width: 32%;
  }
  [data-lang=tc] .p-op__contents {
    width: 23%;
  }
}
@media screen and (max-width: 899px) {
  .p-op__contents {
    width: 86%;
  }
  [data-lang=tc] .p-op__contents {
    width: 74%;
  }
}
.p-op__contents-bg {
  width: 100%;
}
.p-op__contents-text {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.p-op__contents-text p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4% auto 0;
  padding: 0 1.1% 1.1%;
  font-size: 1.4vw;
  color: var(--color-white);
  font-family: var(--font-jp-serif);
  background-color: var(--color-black);
  visibility: hidden;
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
[data-lang]:not([data-lang=jp]) .p-op__contents-text p {
  width: 100%;
  text-align: center;
  line-height: 1.4;
}
[data-lang]:not([data-lang=jp]) .p-op__contents-text p span {
  white-space: normal;
}
@media screen and (max-width: 899px) {
  .p-op__contents-text p {
    margin: 5.4% auto 0;
    padding: 0 1.1% 2%;
    font-size: 4.1vw;
  }
  [data-lang=kr] .p-op__contents-text p {
    font-size: 3.9vw;
  }
}
.p-op__contents-text p:first-of-type {
  margin-top: 0;
}
.p-op__contents-text p span {
  white-space: nowrap;
}

.p-op__movie {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  background-color: transparent;
}
.is-op-movie .p-op__movie {
  opacity: 1;
}
.p-op__movie video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -o-object-fit: cover;
  object-fit: cover;
  background-color: transparent;
}

.p-kv__main {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.p-kv__bg-item {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-kv__bg-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-kv__pf {
  width: 32.2%;
  position: absolute;
  top: -0.3%;
  left: 64px;
  z-index: 2;
}
@media screen and (max-width: 899px) {
  .p-kv__pf {
    width: 89.2%;
    top: 0;
    left: auto;
    right: -2.6%;
  }
}
.p-kv__pf img {
  width: 100%;
}

.p-kv__link {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 13.6%;
}
.p-kv__link-item {
  display: block;
  border: none;
  cursor: pointer;
}
.p-kv__link-item.--gold {
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-kv__link-item.--gold {
    width: 52.5%;
    padding: 1.05% 1%;
  }
}
.p-kv__link-item .c-link__text {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
[data-lang=en] .p-kv__link-item .c-link__text, [data-lang=fr] .p-kv__link-item .c-link__text, [data-lang=it] .p-kv__link-item .c-link__text, [data-lang=es] .p-kv__link-item .c-link__text, [data-lang=de] .p-kv__link-item .c-link__text {
  font-size: 1.3vw;
}
@media screen and (max-width: 899px) {
  .p-kv__link-item .c-link__text {
    font-size: 5.7vw;
  }
  [data-lang=en] .p-kv__link-item .c-link__text, [data-lang=fr] .p-kv__link-item .c-link__text, [data-lang=it] .p-kv__link-item .c-link__text, [data-lang=es] .p-kv__link-item .c-link__text, [data-lang=de] .p-kv__link-item .c-link__text {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 899px) {
  .p-kv__link-item .c-link__line {
    width: 12%;
  }
}

.p-kv__scroll {
  width: 7.3%;
  position: absolute;
  left: 50%;
  bottom: 0.4%;
  transform: translateX(-50%);
}
@media screen and (max-width: 899px) {
  .p-kv__scroll {
    width: 26.5%;
    left: 50%;
    bottom: 1.8%;
  }
}
.p-kv__scroll::before {
  content: "";
  display: block;
  width: 1px;
  padding-top: 28%;
  position: absolute;
  left: 51.8%;
  bottom: -4%;
  transform: translateX(-50%);
  background-color: var(--color-text);
}
@media screen and (max-width: 899px) {
  .p-kv__scroll::before {
    padding-top: 37%;
    left: 51.5%;
    bottom: -17%;
  }
}
.p-kv__scroll img {
  width: 100%;
}

.p-kv__date {
  width: 18.4%;
  position: absolute;
  top: 24.6%;
  left: 50%;
  transform: translateX(-50%);
}
[data-lang=en] .p-kv__date, [data-lang=fr] .p-kv__date, [data-lang=it] .p-kv__date, [data-lang=es] .p-kv__date, [data-lang=de] .p-kv__date {
  width: 24%;
  top: 19.6%;
  max-width: 410px;
}
@media screen and (max-width: 899px) {
  [data-lang=en] .p-kv__date, [data-lang=fr] .p-kv__date, [data-lang=it] .p-kv__date, [data-lang=es] .p-kv__date, [data-lang=de] .p-kv__date {
    width: 70%;
    top: 23%;
  }
}
@media screen and (max-width: 899px) {
  .p-kv__date {
    width: 47.4%;
    top: 27.1%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-kv__title {
  width: 47.5%;
  position: absolute;
  left: 50%;
  bottom: 16.5%;
  transform: translateX(-50%);
}
[data-lang=jp] .p-kv__title {
  left: 49.7%;
  bottom: 20.5%;
}
.p-kv__title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-kv__title {
    width: 91.1%;
    left: 52%;
    bottom: 22.1%;
    transform: translateX(-50%);
  }
  [data-lang=jp] .p-kv__title {
    left: 52%;
    bottom: 23.1%;
  }
}

.p-kv__banner {
  padding: 3.4% 0;
  background-color: var(--color-black);
}
@media screen and (max-width: 899px) {
  .p-kv__banner {
    padding: 9.4% 0;
  }
}
.p-kv__banner-inner {
  width: 70.6%;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-kv__banner-inner {
    width: 100%;
  }
}
.p-kv__banner-item {
  width: 32.2%;
}
.p-kv__banner-item a {
  display: block;
  transition: transform 0.4s var(--ease-out);
}
@media (hover: hover) {
  .p-kv__banner-item a:hover {
    transform: scale(0.97);
  }
}
.p-kv__banner-item img {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-kv__banner-item {
    width: 58%;
  }
}
.p-kv__banner-pagination {
  display: flex;
  justify-content: center;
  gap: 0.2%;
  margin-top: 0.6%;
}
@media screen and (max-width: 899px) {
  .p-kv__banner-pagination {
    margin-top: 1.9%;
  }
}
.p-kv__banner-pagination .swiper-pagination-bullet {
  display: block;
  width: 5%;
  height: auto;
  margin: 0 !important;
  padding-top: 0.6%;
  border-radius: 0;
  opacity: 1 !important;
  background: url(../img/top/slider_dot.png) no-repeat center/contain;
}
@media screen and (max-width: 899px) {
  .p-kv__banner-pagination .swiper-pagination-bullet {
    width: 12.3%;
    padding-top: 1.3%;
  }
}
.p-kv__banner-pagination .swiper-pagination-bullet-active {
  background: url(../img/top/slider_dot_active.png) no-repeat center/contain;
}

.p-lead {
  width: 100%;
}

.p-lead__inner {
  height: 200vh;
}

.p-lead__text {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}
.p-lead__text-item {
  padding: 0.8vw 0.7vw;
  letter-spacing: 0.3em;
  font-size: 1.66667vw;
  font-weight: 300;
  background-color: var(--color-black);
}
@media screen and (max-width: 899px) {
  .p-lead__text-item {
    width: 92%;
    margin: 0 auto;
    padding: 2.2vw 3.8vw;
    letter-spacing: 0.2em;
    font-size: 3.8vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  [data-lang=tc] .p-lead__text-item, [data-lang=sc] .p-lead__text-item, [data-lang=kr] .p-lead__text-item, [data-lang=jp] .p-lead__text-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 2.2vw 1.7vw;
    letter-spacing: 0.3em;
    font-size: 4.4vw;
  }
}
[data-lang=tc] .p-lead__text-item, [data-lang=sc] .p-lead__text-item, [data-lang=kr] .p-lead__text-item, [data-lang=jp] .p-lead__text-item {
  white-space: nowrap;
  writing-mode: vertical-lr;
}

@media screen and (max-width: 899px) {
  .p-about {
    position: relative;
    overflow: hidden;
    margin-top: -17.6vh;
  }
}

.p-about__inner {
  position: relative;
}

.p-about__movie {
  width: 35.6%;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: scale(1.05);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
  cursor: pointer;
}
.p-scroll.is-scroll-active .p-about__movie {
  opacity: 1;
  transform: scale(1.05);
}
@media screen and (max-width: 899px) {
  .p-about__movie {
    width: 93.7%;
    position: absolute;
    left: 50%;
    top: 52.4%;
    transform: translate(-50%, -50%);
  }
  .p-scroll.is-scroll-active .p-about__movie {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.p-about__movie-bg {
  width: 100%;
  padding-top: 100%;
  border-radius: 50rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (hover: hover) {
  .p-about__movie-bg:hover::before {
    opacity: 0.5;
  }
}
.p-about__movie-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-blue01);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.p-about__movie-bg-item {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  pointer-events: none;
}
.p-about__movie-bg #js-about-movie_player_wrap {
  display: block;
  width: 250%;
  height: 250%;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.p-about__movie-circle {
  width: 120%;
  height: 120%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.p-about__movie-circle-item {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}
.is-animation-stop .p-about__movie-circle-item {
  animation-play-state: paused;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.p-about__movie-circle-item:nth-of-type(1) {
  width: 110%;
  height: 110%;
}
.p-about__movie-circle-item:nth-of-type(2) {
  width: 97%;
  height: 97%;
}
.p-about__movie-circle-item:nth-of-type(3) {
  width: 93%;
  height: 93%;
}
.p-about__movie-circle-item:nth-of-type(4) {
  width: 72%;
  height: 72%;
}
.p-about__movie-circle-item img {
  width: 100%;
}
.p-about__movie-text {
  width: 43%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.p-about__movie-text img {
  width: 100%;
}

.p-about__detail {
  width: 43.6%;
}
@media screen and (min-width: 900px) {
  .p-about__detail {
    position: absolute;
    top: 36%;
    right: 0;
    pointer-events: none;
    overflow: hidden;
  }
}
@media screen and (max-width: 899px) {
  .p-about__detail {
    position: relative;
    pointer-events: none;
    width: 100%;
  }
}
.p-about__detail-head {
  width: 56%;
  margin-left: auto;
  margin-right: 9.2%;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
  pointer-events: none;
}
.p-scroll.is-scroll-active .p-about__detail-head {
  animation: flash 0.1s linear 2 forwards 0.2s;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-about__detail-head {
    width: 75%;
    margin: 0 auto;
    padding-bottom: 84%;
  }
}
.p-about__detail-head img {
  width: 100%;
}
.p-about__detail-text {
  font-size: 1.1vw;
  line-height: 1.8;
  margin-top: 0.9%;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.6s var(--ease-out) 0.3s, opacity 0.6s var(--ease-out) 0.3s;
  pointer-events: none;
}
.p-scroll.is-scroll-active .p-about__detail-text {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-about__detail-text {
    width: 93%;
    margin: 0 auto;
    font-size: 3.4vw;
  }
}
.p-about__detail-text p {
  display: inline-block;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  margin-bottom: 0.6vw;
  background-color: var(--color-black);
}
[data-lang=tc] .p-about__detail-text p {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-about__detail-text p span {
  display: block;
  padding: 0.1vw 0.8vw;
}
@media screen and (max-width: 899px) {
  .p-about__detail-text p span {
    padding: 0.1vw 0.8vw 0.8vw;
  }
}
@media screen and (max-width: 899px) {
  .p-about__detail-text p {
    margin-bottom: 2vw;
  }
}
.p-about__detail-link {
  margin-top: 0.9vw;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.6s var(--ease-out) 0.4s, opacity 0.6s var(--ease-out) 0.4s;
  pointer-events: all;
}
.p-scroll.is-scroll-active .p-about__detail-link {
  opacity: 1;
  transform: translateX(0);
}
.p-about__detail-link-item {
  width: 27.1%;
  margin-right: 29.7%;
  margin-left: auto;
}
@media screen and (max-width: 899px) {
  .p-about__detail-link-item {
    width: 44.6%;
    margin: 3.1% auto 0;
  }
}

.p-world {
  padding-top: 36.1vh;
}
@media screen and (max-width: 899px) {
  .p-world {
    padding-top: 92.9%;
  }
}

@media screen and (min-width: 900px) {
  .p-world__detail {
    position: -webkit-sticky;
    position: sticky;
    top: 50vh;
    left: 0;
    transform: translateY(-50%);
  }
}
.p-world__detail-title {
  width: 26.5%;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
@media screen and (min-width: 900px) {
  .p-world__detail-title {
    transition-delay: 0s;
  }
  .is-about-end .p-world__detail-title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
    animation: flash 0.1s linear 2 forwards;
  }
}
@media screen and (max-width: 899px) {
  .p-world__detail-title {
    width: 80%;
    margin: 0 auto;
    position: relative;
    left: -1.2%;
  }
  .p-scroll.is-scroll-active .p-world__detail-title {
    transform: translateX(0);
    animation: flash 0.1s linear 2 forwards 0.2s;
  }
}
.p-world__detail-title img {
  width: 100%;
}
.p-world__detail-text {
  width: 27%;
  opacity: 0;
  margin-top: -0.4%;
  margin-left: 4.1%;
  position: relative;
  overflow: hidden;
  transform: translateX(-10px);
  transition: transform 0.6s var(--ease-out) 0.3s, opacity 0.6s var(--ease-out) 0.3s;
}
[data-lang=jp] .p-world__detail-text {
  overflow: visible;
}
@media screen and (min-width: 900px) {
  .p-world__detail-text {
    transition-delay: 0s;
  }
  .is-about-end .p-world__detail-text {
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (max-width: 899px) {
  .p-scroll.is-scroll-active .p-world__detail-text {
    transform: translateX(0);
    opacity: 1;
  }
}
.p-world__detail-text-item {
  font-size: 1vw;
  color: var(--color-text);
  text-shadow: 0 0 10px var(--color-blue03), 0 0 10px var(--color-blue03), 0 0 10px var(--color-blue03), 0 0 10px var(--color-blue03);
  line-height: 1.95;
  position: absolute;
  padding: 0.8vw;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-world__detail-text-item:nth-of-type(1) {
  position: relative;
}
.p-world__detail-text-item span {
  vertical-align: baseline;
}
.p-world__detail-link {
  margin-top: 1.6%;
  margin-left: 4.6%;
  width: 11.8%;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.6s var(--ease-out) 0.4s, opacity 0.6s var(--ease-out) 0.4s;
}
@media screen and (min-width: 900px) {
  .p-world__detail-link {
    transition-delay: 0s;
  }
  .is-about-end .p-world__detail-link {
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (max-width: 899px) {
  .p-scroll.is-scroll-active .p-world__detail-link {
    transform: translateX(0);
    opacity: 1;
  }
}
.p-world__image {
  width: 68vw;
  margin-top: -50vh;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-world__image {
    width: 100%;
    margin-top: 0;
    padding-top: 28.6%;
    overflow: hidden;
  }
}
.p-world__image-item-block {
  position: relative;
}
.p-world__image-item-block:nth-of-type(1) {
  z-index: 2;
}
.p-world__image-item-block:nth-of-type(1) .p-world__image-item-line {
  width: 32.9%;
  right: 0;
  top: -2.9%;
}
[data-lang=de] .p-world__image-item-block:nth-of-type(1) .p-world__image-item-line {
  top: -3%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(1) .p-world__image-item-line {
    width: 52.2%;
    top: 0;
  }
}
.p-world__image-item-block:nth-of-type(1) .p-world__image-item-circle .p-in-item {
  width: 27.5%;
  top: -20.8%;
  right: 14.8vw;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(1) .p-world__image-item-circle .p-in-item {
    width: 45.6%;
    top: -11.6%;
    right: -13.2%;
    transform: rotate(6deg);
  }
}
.p-world__image-item-block:nth-of-type(1) .p-world__image-item-head {
  margin-left: auto;
  padding-bottom: min(33.5%, 420px);
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(1) .p-world__image-item-head {
    padding-bottom: 0;
    margin-top: 3.2%;
  }
}
.p-world__image-item-block:nth-of-type(1) .p-world__image-item-head-en {
  margin-right: 8.8%;
  margin-left: auto;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(1) .p-world__image-item-head-en {
    margin-right: 5.3%;
  }
}
.p-world__image-item-block:nth-of-type(1) .p-world__image-item-head-text {
  margin-left: auto;
  margin-right: 7.2%;
  margin-top: 0.5%;
  text-align: right;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(1) .p-world__image-item-head-text {
    margin-left: auto;
    margin-right: 2%;
    margin-top: 1.6%;
    padding-bottom: 1%;
    text-align: right;
  }
}
.p-world__image-item-block:nth-of-type(1) .p-world__image-item-head-line {
  margin-left: auto;
  margin-top: 0.7%;
  margin-right: 8.9%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(1) .p-world__image-item-head-line {
    margin-top: 0.8%;
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(1) .p-world__image-item-main {
    padding-top: 71.7%;
    position: relative;
    overflow: hidden;
  }
}
.p-world__image-item-block:nth-of-type(1) .p-world__image-item-main .p-in-item:nth-of-type(1) {
  width: 50.9%;
  top: -22%;
  left: 7%;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(1) .p-world__image-item-main .p-in-item:nth-of-type(1) {
    width: 89.2%;
    top: -2.5%;
    left: 0;
  }
}
.p-world__image-item-block:nth-of-type(1) .p-world__image-item-main .p-in-item:nth-of-type(2) {
  width: 71.8%;
  right: 3.8%;
  bottom: 13%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(1) .p-world__image-item-main .p-in-item:nth-of-type(2) {
    width: 100%;
    right: 0;
    bottom: -6.4%;
  }
}
.p-world__image-item-block:nth-of-type(2) {
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) {
    margin-top: 11.6%;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-line {
  width: 37%;
  left: 22.1%;
  top: -2.5%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-line {
    width: 82.9%;
    left: 0;
    top: -0.7%;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-circle .p-in-item {
  width: 21.2%;
  top: -13.5%;
  left: 34.4%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-circle .p-in-item {
    width: 52.2%;
    top: -7.6%;
    left: -8%;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-head {
  margin-left: 34%;
  padding-bottom: min(47.1%, 635px);
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-head {
    margin-left: 0;
    padding-bottom: 0;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-head-en {
  margin-right: auto;
  margin-left: 11.2%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-head-en {
    margin-left: 5.5%;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-head-text {
  margin-right: auto;
  margin-right: 7.2%;
  padding: 1% 0;
  text-align: right;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-head-text {
    margin-left: 5.8%;
    margin-right: 0;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-head-line {
  margin-right: auto;
  margin-left: 0.7%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-head-line {
    margin-left: 0.7%;
    margin-top: 1.5%;
  }
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-main {
    padding-top: 182.7%;
    position: relative;
    overflow: hidden;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-main .p-in-item:nth-of-type(1) {
  width: 44.9%;
  top: -8.6%;
  right: 4%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-main .p-in-item:nth-of-type(1) {
    width: 77.2%;
    top: -0.3%;
    right: 0;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-main .p-in-item:nth-of-type(2) {
  width: 46.8%;
  top: 12%;
  left: 7.8%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-main .p-in-item:nth-of-type(2) {
    width: 76.6%;
    top: 33.4%;
    left: 0;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-main .p-in-item:nth-of-type(3) {
  width: 41%;
  left: 7%;
  bottom: -0.8%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-main .p-in-item:nth-of-type(3) {
    width: 70.5%;
    top: 53.7%;
    right: 0;
    left: auto;
    bottom: auto;
  }
}
.p-world__image-item-block:nth-of-type(2) .p-world__image-item-main .p-in-item:nth-of-type(4) {
  width: 41.1%;
  bottom: -43.7%;
  left: 8.6%;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(2) .p-world__image-item-main .p-in-item:nth-of-type(4) {
    width: 72.1%;
    top: 71.7%;
    right: 14%;
    left: auto;
    bottom: auto;
  }
}
.p-world__image-item-block:nth-of-type(3) .p-world__image-item-line {
  width: 39%;
  right: 0;
  top: -2.1%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(3) .p-world__image-item-line {
    width: 63%;
    top: -1.3%;
  }
}
.p-world__image-item-block:nth-of-type(3) .p-world__image-item-head {
  margin-left: auto;
  padding-bottom: min(48.5%, 652px);
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(3) .p-world__image-item-head {
    padding-bottom: 0;
  }
}
.p-world__image-item-block:nth-of-type(3) .p-world__image-item-head-en {
  margin-right: 8.8%;
  margin-left: auto;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(3) .p-world__image-item-head-en {
    margin-right: 5.7%;
    margin-top: 1.7%;
  }
}
.p-world__image-item-block:nth-of-type(3) .p-world__image-item-head-text {
  margin-left: auto;
  margin-right: 7.2%;
  padding: 0.5% 0;
  text-align: right;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(3) .p-world__image-item-head-text {
    margin-right: 1.9%;
    padding: 0.8% 0 1.8%;
  }
}
.p-world__image-item-block:nth-of-type(3) .p-world__image-item-head-line {
  margin-left: auto;
  margin-right: 8.9%;
}
.p-world__image-item-block:nth-of-type(3) .p-world__image-item-circle .p-in-item {
  width: 27.6%;
  top: -14.8%;
  right: 25.5%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(3) .p-world__image-item-circle .p-in-item {
    width: 52.8%;
    top: -15.4%;
    right: -10.4%;
  }
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(3) .p-world__image-item-main {
    padding-top: 87.9%;
    position: relative;
    overflow: hidden;
  }
}
.p-world__image-item-block:nth-of-type(3) .p-world__image-item-main .p-in-item:nth-of-type(1) {
  width: 50.5%;
  top: 11.3%;
  right: 4.2%;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(3) .p-world__image-item-main .p-in-item:nth-of-type(1) {
    width: 89.1%;
    top: 0.2%;
    left: 5.2%;
    z-index: 2;
  }
}
.p-world__image-item-block:nth-of-type(3) .p-world__image-item-main .p-in-item:nth-of-type(2) {
  width: 86.7%;
  left: 7%;
  bottom: 1.1%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-block:nth-of-type(3) .p-world__image-item-main .p-in-item:nth-of-type(2) {
    width: 100%;
    top: 42.2%;
    left: 0;
  }
}
.p-world__image-item-block:nth-of-type(3) .p-world__image-item-main .p-in-item:nth-of-type(3) {
  width: 86.7%;
  left: 7%;
  bottom: 1.1%;
}
.p-world__image-item-line {
  position: absolute;
}
.p-world__image-item-line img {
  width: 100%;
}
.p-world__image-item-circle {
  opacity: 0;
  transition: transform 0.6s var(--ease-out) 0.1s, opacity 0.6s var(--ease-out) 0.1s;
}
.p-world-scroll.is-scroll-active .p-world__image-item-circle {
  opacity: 1;
}
.p-world__image-item-circle .p-in-item {
  display: block;
  position: absolute;
}
@media screen and (min-width: 900px) {
  .p-world__image-item-circle .p-in-item.is-sp {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .p-world__image-item-circle .p-in-item.is-pc {
    display: none;
  }
}
.p-world__image-item-head {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-world-scroll.is-scroll-active .p-world__image-item-head {
  transform: translateX(0);
  opacity: 1;
}
.p-world__image-item-head-en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 0.7vw;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-head-en {
    height: 2.46vw;
  }
}
.p-world__image-item-head-en img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-world__image-item-head-text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2vw;
  letter-spacing: 0.03em;
  background: var(--color-grad02);
}
@media screen and (min-width: 900px) {
  [data-lang=jp] .p-world__image-item-head-text {
    font-size: 2.7vw;
    letter-spacing: 0.35em;
  }
}
[data-lang=jp] .p-world__image-item-head-text {
  transform: scaleX(0.9);
  transform-origin: right;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-head-text {
    font-size: 8.3vw;
  }
  [data-lang=en] .p-world__image-item-head-text, [data-lang=fr] .p-world__image-item-head-text, [data-lang=it] .p-world__image-item-head-text, [data-lang=es] .p-world__image-item-head-text, [data-lang=de] .p-world__image-item-head-text {
    font-size: 6vw;
  }
}
.p-world__image-item-head-line {
  display: block;
  height: 0.41vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-head-line {
    height: 1.41vw;
  }
}
.p-world__image-item-head-line img {
  height: 100%;
}
@media screen and (max-width: 899px) {
  .p-world__image-item-detail {
    width: 92%;
    margin: 4% auto 0;
    font-size: 3.2vw;
    line-height: 1.85;
    text-shadow: 0 0 10px var(--color-blue03), 0 0 10px var(--color-blue03), 0 0 10px var(--color-blue03), 0 0 10px var(--color-blue03);
    opacity: 0;
    transform: translateY(-10px);
    transition: transform 0.6s var(--ease-out) 0.1s, opacity 0.6s var(--ease-out) 0.1s;
  }
  .p-world-scroll.is-scroll-active .p-world__image-item-detail {
    transform: translateX(0);
    opacity: 1;
  }
}
.p-world__image-item-main .p-in-item {
  position: absolute;
  opacity: 0;
  transform: translateY(-10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-world__image-item-main .p-in-item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.p-world__image-item-main .p-in-item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-world__image-item-main .p-in-item:nth-of-type(3) {
  transition-delay: 0.3s;
}
.p-world__image-item-main .p-in-item:nth-of-type(4) {
  transition-delay: 0.4s;
}
.p-world__image-item-main .p-in-item:nth-of-type(5) {
  transition-delay: 0.5s;
}
.p-world__image-item-main .p-in-item:nth-of-type(6) {
  transition-delay: 0.6s;
}
.p-world__image-item-main .p-in-item:nth-of-type(7) {
  transition-delay: 0.7s;
}
.p-world__image-item-main .p-in-item:nth-of-type(8) {
  transition-delay: 0.8s;
}
.p-world__image-item-main .p-in-item:nth-of-type(9) {
  transition-delay: 0.9s;
}
.p-world__image-item-main .p-in-item:nth-of-type(10) {
  transition-delay: 1s;
}
.p-world-scroll.is-scroll-active .p-world__image-item-main .p-in-item {
  transform: translateX(0);
  opacity: 1;
}
.p-world__image-item-main .p-in-item img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (min-width: 900px) {
  .p-world__image-item-main .p-in-item img {
    margin-left: auto;
  }
}

.p-world__link {
  width: 40%;
}
@media screen and (max-width: 899px) {
  .p-world__link {
    width: 44%;
    margin: 8.8% auto 0;
  }
}

.p-character {
  padding-top: 12.2%;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-character {
    padding-top: 21.3%;
  }
}

.p-character__deco {
  width: 100%;
  position: absolute;
  top: -2.4%;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-character__deco.p-scroll.is-scroll-active {
  animation: flash 0.1s linear 2 forwards 0.2s;
  transform: translateY(0);
}
.p-character__deco img {
  width: 100%;
}

.p-character__title {
  width: 48.4%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-character__title.p-scroll.is-scroll-active {
  animation: flash 0.1s linear 2 forwards 0.2s;
  transform: translateY(0);
}
.p-character__title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-character__title {
    width: 100%;
  }
}

.p-character__contents {
  margin-top: 1.1%;
}
@media screen and (max-width: 899px) {
  .p-character__contents {
    margin-top: 0;
    padding-top: 6.1%;
    position: relative;
    overflow: hidden;
  }
}
.p-character__contents-main {
  width: 51.3%;
  margin: 0 auto;
  position: relative;
  left: 0.5%;
}
@media screen and (max-width: 899px) {
  .p-character__contents-main {
    width: 94.2%;
    left: 1.5%;
  }
}
.p-character__contents-main img {
  width: 100%;
}
.p-character__contents-main-image {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.p-character__contents-main-image-frame-item {
  position: absolute;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: -webkit-clip-path 0.6s var(--ease-out);
  transition: clip-path 0.6s var(--ease-out);
  transition: clip-path 0.6s var(--ease-out), -webkit-clip-path 0.6s var(--ease-out);
}
.p-character-scroll.is-scroll-active .p-character__contents-main-image-frame-item {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.p-character__contents-main-image-frame-item img {
  width: 100%;
}
.p-character__contents-main-image-frame-item:nth-of-type(1) {
  width: 47%;
  left: 0;
}
@media screen and (max-width: 899px) {
  .p-character__contents-main-image-frame-item:nth-of-type(1) {
    width: 49.4%;
    left: -2.4%;
  }
}
.p-character__contents-main-image-frame-item:nth-of-type(2) {
  width: 1.53%;
  left: 49%;
  top: -0.5%;
  transform: translateX(-50%);
}
@media screen and (max-width: 899px) {
  .p-character__contents-main-image-frame-item:nth-of-type(2) {
    width: 1.696%;
    left: 48.46%;
    top: -0.5%;
  }
}
.p-character__contents-main-image-frame-item:nth-of-type(3) {
  width: 49.1%;
  right: 0;
}
@media screen and (max-width: 899px) {
  .p-character__contents-main-image-frame-item:nth-of-type(3) {
    width: 49.4%;
    right: 0.8%;
  }
}
.p-character__contents-main-image-block {
  display: flex;
  gap: 3.1%;
  width: 120%;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 899px) {
  .p-character__contents-main-image-block {
    width: 113%;
    gap: 2.1%;
    top: 44.6%;
  }
}
.p-character__contents-main-image-item {
  width: 47.7%;
  flex-shrink: 0;
  opacity: 0;
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-character-scroll.is-scroll-active .p-character__contents-main-image-item {
  opacity: 1;
}
.p-character__contents-main-image-item:nth-of-type(1) {
  transform: translateX(0.9vw);
}
.p-character-scroll.is-scroll-active .p-character__contents-main-image-item:nth-of-type(1) {
  transform: translateX(0);
}
.p-character__contents-main-image-item:nth-of-type(2) {
  transform: translateX(-1vw);
}
.p-character-scroll.is-scroll-active .p-character__contents-main-image-item:nth-of-type(2) {
  transform: translateX(0);
}
.p-character__contents-main-image-name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 48.8%;
  bottom: 20.5%;
  transform: translateX(-50%);
}
@media screen and (max-width: 899px) {
  .p-character__contents-main-image-name {
    left: 48.5%;
    bottom: 12%;
  }
}
.p-character__contents-main-image-name-text {
  font-size: 4vw;
  font-weight: 200;
  text-align: center;
  text-shadow: 0 0 10px var(--color-blue03), 0 0 10px var(--color-blue03), 0 0 10px var(--color-blue03), 0 0 10px var(--color-blue03);
}
[data-lang=jp] .p-character__contents-main-image-name-text {
  transform: scaleX(0.9);
  transform-origin: center;
}
@media screen and (max-width: 899px) {
  .p-character__contents-main-image-name-text {
    font-size: 9vw;
  }
}
.p-character__contents-main-image-name-bg {
  width: 73%;
  margin: 3% auto 0;
}
[data-lang=en] .p-character__contents-main-image-name-bg, [data-lang=fr] .p-character__contents-main-image-name-bg, [data-lang=it] .p-character__contents-main-image-name-bg, [data-lang=es] .p-character__contents-main-image-name-bg, [data-lang=de] .p-character__contents-main-image-name-bg {
  margin: 6% auto 0;
}
@media screen and (max-width: 899px) {
  .p-character__contents-main-image-name-bg {
    width: 100%;
    margin: 5% auto 0;
  }
}
.p-character__contents-servant {
  margin-top: 0.7%;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant {
    margin-top: 2.8%;
    padding-bottom: 17%;
  }
}
.p-character__contents-servant.p-scroll-servant.is-scroll-active::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.p-character__contents-servant::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 142.6%;
  position: absolute;
  top: -9.8%;
  left: 0;
  background: url(../img/top/character_se_bg.png) no-repeat top left/100% auto;
  pointer-events: none;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: -webkit-clip-path 0.7s var(--ease-in);
  transition: clip-path 0.7s var(--ease-in);
  transition: clip-path 0.7s var(--ease-in), -webkit-clip-path 0.7s var(--ease-in);
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant::before {
    padding-top: 487.6%;
    top: -1.7%;
    background: url(../img/sp/top/character_se_bg.png) no-repeat top left/100% auto;
  }
}
.p-character__contents-servant-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-character__contents-servant-title-text {
  margin: 0 auto;
  font-size: 2.5vw;
  font-weight: 200;
  box-sizing: content-box;
}
.p-character__contents-servant-title-text .p-in-item {
  padding: 0.5vw 1.3vw 0.9vw;
  background-color: var(--color-black);
}
.p-character__contents-servant-title-text.is-scroll-active + .p-character__contents-servant-title-deco {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-title-text {
    font-size: 4.5vw;
    letter-spacing: 0.12em;
  }
  .p-character__contents-servant-title-text .p-in-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 2.2vw 2.9vw 2.6vw;
  }
}
.p-character__contents-servant-title-deco {
  width: 60.4%;
  margin: 0.8% auto 0;
  transform: scale(1.05);
  filter: blur(5px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out), filter 0.8s var(--ease-out);
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-title-deco {
    width: 56.4%;
    margin: 1.6% auto 0;
  }
}
.p-character__contents-servant-image {
  margin-top: -0.6%;
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-image {
    width: 91%;
    margin: 3.2% auto 0;
  }
}
.p-character__contents-servant-image-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-image-list {
    display: block;
  }
}
.p-character__contents-servant-image-item {
  position: relative;
}
.p-character__contents-servant-image-item:nth-of-type(1) .p-in-image {
  transition-delay: 0.5s;
}
.p-character__contents-servant-image-item:nth-of-type(1) .p-in-detail {
  transition-delay: 0.6s;
  animation-delay: 0.6s !important;
}
.p-character__contents-servant-image-item:nth-of-type(2) .p-in-image {
  transition-delay: 0.6s;
}
.p-character__contents-servant-image-item:nth-of-type(2) .p-in-detail {
  transition-delay: 0.7s;
  animation-delay: 0.7s !important;
}
.p-character__contents-servant-image-item:nth-of-type(3) .p-in-image {
  transition-delay: 0.7s;
}
.p-character__contents-servant-image-item:nth-of-type(3) .p-in-detail {
  transition-delay: 0.8s;
  animation-delay: 0.8s !important;
}
.p-scroll.is-scroll-active .p-character__contents-servant-image-item .p-in-image {
  transform: translateY(0);
  opacity: 1;
}
.p-scroll.is-scroll-active .p-character__contents-servant-image-item .p-in-detail {
  transform: translateX(0);
  animation: flash 0.1s linear 2 forwards;
}
.p-character__contents-servant-image-item img {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-image-item {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .p-character__contents-servant-image-item:nth-of-type(1) {
    width: 21%;
  }
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-image-item:nth-of-type(1) {
    left: 0.9%;
  }
}
.p-character__contents-servant-image-item:nth-of-type(1) .p-in-detail {
  width: 87.1%;
  left: -6.7%;
  bottom: 13%;
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-image-item:nth-of-type(1) .p-in-detail {
    width: 68.1%;
    left: 1.2%;
    bottom: 10.4%;
  }
}
@media screen and (min-width: 900px) {
  .p-character__contents-servant-image-item:nth-of-type(2) {
    width: 23.8%;
    margin-left: -0.3%;
    margin-top: 3%;
  }
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-image-item:nth-of-type(2) {
    left: -1.4%;
    margin-top: -19.5%;
  }
}
.p-character__contents-servant-image-item:nth-of-type(2) .p-in-detail {
  width: 76.9%;
  left: 5.3%;
  bottom: 14%;
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-image-item:nth-of-type(2) .p-in-detail {
    width: 68%;
    left: auto;
    right: 1%;
    bottom: 15%;
  }
}
@media screen and (min-width: 900px) {
  .p-character__contents-servant-image-item:nth-of-type(3) {
    width: 21.1%;
    margin-top: -3%;
    margin-left: 2.2%;
  }
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-image-item:nth-of-type(3) {
    margin-top: -26%;
    left: 1.2%;
  }
}
.p-character__contents-servant-image-item:nth-of-type(3) .p-in-detail {
  width: 87%;
  left: -7.7%;
  bottom: 12.2%;
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-image-item:nth-of-type(3) .p-in-detail {
    width: 68.2%;
    left: 1.1%;
    bottom: 9.8%;
  }
}
.p-character__contents-servant-image-item .p-in-image {
  width: 100%;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.p-character__contents-servant-image-item .p-in-detail {
  position: absolute;
  transform: translateX(10px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.p-character__contents-servant-other {
  position: relative;
  margin-top: 4.5%;
}
.p-character__contents-servant-other-deco {
  width: 42.3%;
  position: absolute;
  left: 4.7%;
  bottom: -5.2%;
  transform: translateX(10px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out) 0.3s, opacity 0.6s var(--ease-out) 0.3s;
}
.p-scroll.is-scroll-active .p-character__contents-servant-other-deco {
  transform: translateX(0);
  animation: flash 0.1s linear 2 forwards;
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-other-deco {
    width: 91.5%;
    position: absolute;
    left: 50%;
    bottom: 11.9%;
    transform: translateX(-50%);
  }
}
.p-character__contents-servant-other-deco img {
  width: 100%;
}
.p-character__contents-servant-other-head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-character__contents-servant-other-head-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  margin: 0 auto;
  padding: 2.1% 1.3vw;
  background-color: var(--color-black);
  font-size: 2.4vw;
  letter-spacing: 0.1em;
  font-weight: 200;
  box-sizing: content-box;
}
.p-character__contents-servant-other-head-text.is-scroll-active + .p-character__contents-servant-other-head-deco {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-other-head-text {
    font-size: 4.7vw;
    padding: 3.1% 3.8vw 4%;
  }
  [data-lang=en] .p-character__contents-servant-other-head-text, [data-lang=fr] .p-character__contents-servant-other-head-text, [data-lang=it] .p-character__contents-servant-other-head-text, [data-lang=es] .p-character__contents-servant-other-head-text, [data-lang=de] .p-character__contents-servant-other-head-text {
    font-size: 4.2vw;
    padding: 2.9% 1.8vw 3%;
  }
}
.p-character__contents-servant-other-head-deco {
  width: 74%;
  margin: 2% auto 0;
  transform: scale(1.05);
  filter: blur(5px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out), filter 0.8s var(--ease-out);
}
.p-character__contents-servant-other-head-deco img {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-other-head-deco {
    width: 68%;
    margin: 2% auto 0;
  }
}
.p-character__contents-servant-other-image {
  margin-top: -16.6%;
  filter: blur(10px);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s, filter 0.6s var(--ease-out) 0.2s;
}
.p-scroll.is-scroll-active .p-character__contents-servant-other-image {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-other-image {
    margin-top: -22.3%;
  }
}
.p-character__contents-servant-other-image img {
  width: 100%;
}
.p-character__contents-servant-other-link {
  width: 11.8%;
  position: absolute;
  bottom: 10.8%;
  left: 50%;
  filter: blur(10px);
  transform: translate(-50%, 10px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s, filter 0.6s var(--ease-out) 0.2s;
}
.p-scroll.is-scroll-active .p-character__contents-servant-other-link {
  opacity: 1;
  filter: blur(0);
  transform: translateX(-50%);
}
@media screen and (max-width: 899px) {
  .p-character__contents-servant-other-link {
    width: 44.7%;
    bottom: 24.3%;
  }
}
.p-character__contents-servant-other-link-item {
  margin: 0 auto;
}

.p-contents__bg {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  overflow: hidden;
}
@keyframes bgRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}
.p-contents__bg-item {
  width: 98vw;
  height: 98vw;
  transform: rotate(-90deg);
}
@media screen and (max-width: 899px) {
  .p-contents__bg-item {
    width: 158vw;
    height: 158vw;
    position: relative;
    left: 50vw;
    transform: translateX(-50%) rotate(-90deg);
  }
}
.p-contents__bg svg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.p-contents__bg svg circle {
  fill: none;
  stroke: var(--color-text);
  stroke-width: 2px;
}
.p-contents__bg svg #fixed-anim-system-deco {
  animation: bgRotate 20s linear infinite;
  transform-origin: center center;
  stroke: #caf1ff;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.is-animation-stop .p-contents__bg svg #fixed-anim-system-deco {
  animation-play-state: paused;
}
.p-contents__bg svg #fixed-anim-system-deco.is-scroll-active {
  opacity: 1;
}

.p-contents__item {
  margin-top: -95vw;
}
@media screen and (max-width: 899px) {
  .p-contents__item {
    margin-top: -178vw;
  }
}

.p-system {
  padding-top: 10.3%;
}
@media screen and (max-width: 899px) {
  .p-system {
    padding-top: 22.8%;
    position: relative;
    overflow: hidden;
  }
}

.p-system__title {
  width: 32.4%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.p-scroll.is-scroll-active .p-system__title {
  opacity: 1;
  transform: translateY(0);
}
.p-system__title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 899px) {
  .p-system__title {
    width: 97.4%;
  }
}
.p-system__title img {
  width: 100%;
}

.p-system__contents {
  width: 80%;
  margin: 0.7% auto 0;
}
@media screen and (max-width: 899px) {
  .p-system__contents {
    width: 100%;
    margin: 7.3% auto 0;
  }
}
.p-system__contents-item {
  position: relative;
}
.p-system__contents-item + .p-system__contents-item {
  margin-top: 4.6%;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item + .p-system__contents-item {
    margin-top: 10%;
  }
}
@media screen and (max-width: 899px) and (max-width: 899px) {
  .p-system__contents-item + .p-system__contents-item {
    margin-top: 18%;
  }
}
.p-system__contents-item.--battle .p-system__contents-item-detail {
  margin-top: -1.7%;
  left: 0.6%;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item.--battle .p-system__contents-item-detail {
    margin-top: 2.9%;
    left: 0;
  }
}
.p-system__contents-item.--battle .p-system__contents-item-head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 8%;
}
.p-system__contents-item.--battle .p-system__contents-item-head::before {
  right: -4%;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item.--battle .p-system__contents-item-head {
    margin-right: 1%;
  }
}
@media screen and (max-width: 899px) {
  .p-system__contents-item.--battle .p-system__contents-item-head-top {
    right: -13%;
  }
}
.p-system__contents-item.--battle .p-system__contents-item-head-main {
  position: relative;
  right: 12%;
}
[data-lang=kr] .p-system__contents-item.--battle .p-system__contents-item-head-main {
  justify-content: flex-end;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item.--battle .p-system__contents-item-head-main {
    right: 0;
    justify-content: flex-end;
  }
}
.p-system__contents-item.--battle .p-system__contents-item-head-main::before {
  right: 0;
}
.p-system__contents-item.--battle .p-system__contents-item-head-main .p-in-text {
  margin-top: 1%;
}
.p-system__contents-item.--war .p-system__contents-item-detail {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 53.5%;
  bottom: 18.4%;
}
[data-lang=tc] .p-system__contents-item.--war .p-system__contents-item-detail {
  bottom: 13.4%;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item.--war .p-system__contents-item-detail {
    width: 90%;
    position: static;
    margin-top: -2.8%;
  }
}
.p-system__contents-item.--war .p-system__contents-item-head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: 10.2%;
}
.p-system__contents-item.--war .p-system__contents-item-head::before {
  left: -4%;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item.--war .p-system__contents-item-head {
    margin-left: 3.6%;
  }
}
.p-system__contents-item.--war .p-system__contents-item-head-top {
  position: relative;
  left: 0;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item.--war .p-system__contents-item-head-top {
    left: -15.8%;
  }
}
.p-system__contents-item.--war .p-system__contents-item-head-bg {
  transform: translate(78%, -50%);
}
.p-system__contents-item.--war .p-system__contents-item-head-main {
  position: relative;
}
.p-system__contents-item.--war .p-system__contents-item-head-main .p-in-text {
  margin-top: 1%;
}
.p-system__contents-item-movie {
  width: 100%;
  margin-top: 0.7%;
  opacity: 0;
  transform: translateY(-10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-system-scroll.is-scroll-active .p-system__contents-item-movie {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-movie {
    margin-top: 4.5%;
  }
}
.p-system__contents-item-movie .p-in-item {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-movie .p-in-item {
    width: 93%;
  }
}
.p-system__contents-item-movie .p-in-item::before {
  content: "";
  display: block;
  width: 106.5%;
  height: 106.5%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/top/system_sec1_frame.png) no-repeat center/cover;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-movie .p-in-item::before {
    background: url(../img/sp/top/system_sec1_frame.png) no-repeat center/cover;
  }
}
.p-system__contents-item-movie .p-in-item video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.p-system__contents-item-head {
  position: relative;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.6s var(--ease-out) 0.1s, opacity 0.6s var(--ease-out) 0.1s;
}
.p-system-scroll.is-scroll-active .p-system__contents-item-head {
  opacity: 1;
  transform: translateX(0);
}
.p-system__contents-item-head::before {
  content: "";
  display: block;
  width: 60vw;
  height: 0.2vw;
  background: linear-gradient(90deg, transparent, var(--color-blue02), transparent);
  position: absolute;
  bottom: -18%;
}
.p-system__contents-item-head-bg {
  width: 16.4vw;
  position: absolute;
  top: 75%;
  left: 0;
  transform: translate(-100%, -50%);
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-head-bg {
    width: 47vw;
    left: 0;
    top: 66%;
    transform: translate(-90%, -50%);
  }
}
.p-system__contents-item-head-top {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 0.94vw;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-head-top {
    height: 3.74vw;
    position: relative;
  }
}
.p-system__contents-item-head-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-system__contents-item-head-main {
  display: flex;
  align-items: center;
  gap: 0.3vw;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-head-main {
    gap: 0.8vw;
  }
}
.p-system__contents-item-head-main::before {
  content: "";
  display: block;
  width: 28vw;
  height: 120%;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background: var(--color-grad02);
  opacity: 0.8;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-head-main::before {
    right: 0;
    width: 100vw;
    height: 135%;
    position: absolute;
    top: 75%;
  }
}
.p-system__contents-item-head-main .p-in-icon {
  width: 0.7vw;
  position: relative;
  z-index: 1;
  top: 0.1vw;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-head-main .p-in-icon {
    width: 2.8vw;
    top: 0.8vw;
  }
}
.p-system__contents-item-head-main .p-in-icon img {
  width: 100%;
}
.p-system__contents-item-head-main .p-in-text {
  font-size: 1.6vw;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
[data-lang=jp] .p-system__contents-item-head-main .p-in-text {
  letter-spacing: 0.2em;
}
@media screen and (min-width: 900px) {
  [data-lang=fr] .p-system__contents-item-head-main .p-in-text, [data-lang=it] .p-system__contents-item-head-main .p-in-text, [data-lang=es] .p-system__contents-item-head-main .p-in-text, [data-lang=de] .p-system__contents-item-head-main .p-in-text {
    letter-spacing: 0.02em;
    font-size: 1.55vw;
  }
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-head-main .p-in-text {
    font-size: 6vw;
  }
}
.p-system__contents-item-image {
  display: flex;
  width: 85.2%;
  margin: -1.6% auto 0;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-image {
    display: block;
    width: 100%;
    margin: -1% auto 0;
  }
}
.p-system__contents-item-image .p-in-item {
  flex-shrink: 0;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-system__contents-item-image .p-in-item:nth-of-type(1) {
  transition-delay: 0.3s;
}
.p-system__contents-item-image .p-in-item:nth-of-type(2) {
  transition-delay: 0.4s;
}
.p-system-scroll.is-scroll-active .p-system__contents-item-image .p-in-item {
  opacity: 1;
  transform: translateX(0);
}
.p-system__contents-item-image .p-in-item img {
  width: 100%;
}
.p-system__contents-item-image .p-in-item:nth-of-type(1) {
  width: 55%;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-image .p-in-item:nth-of-type(1) {
    width: 95.6%;
  }
}
.p-system__contents-item-image .p-in-item:nth-of-type(2) {
  width: 51%;
  margin-left: -7.1%;
  margin-top: -3.5%;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-image .p-in-item:nth-of-type(2) {
    width: 87.3%;
    margin-left: auto;
    margin-top: -18.2%;
  }
}
.p-system__contents-item-detail {
  width: 80%;
  margin: 0 auto;
  font-size: 1.1vw;
  line-height: 1.5;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-detail {
    width: 90%;
    font-size: 3.5vw;
  }
}
.p-system__contents-item-detail p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.7vw;
  background-color: var(--color-black);
}
[data-lang=jp] .p-system__contents-item-detail p {
  white-space: nowrap;
}
.p-system__contents-item-detail p span {
  display: block;
  vertical-align: baseline;
  padding: 0.2vw 0.4vw;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-detail p {
    margin-bottom: 2vw;
    padding: 0.8vw 1.5vw;
  }
}
.p-system__contents-item-link {
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out) 0.3s, opacity 0.6s var(--ease-out) 0.3s;
}
.p-system-scroll.is-scroll-active .p-system__contents-item-link {
  opacity: 1;
  transform: translateX(0);
}
.p-system__contents-item-link .p-in-item {
  width: 14.6%;
  margin: 0.4% auto 0;
}
@media screen and (max-width: 899px) {
  .p-system__contents-item-link .p-in-item {
    width: 44.6%;
    margin: 8.1% auto 0;
  }
}

.p-product {
  padding-top: 6.6%;
}
@media screen and (max-width: 899px) {
  .p-product {
    padding-top: 16.4%;
    position: relative;
    overflow: hidden;
  }
}

.p-product__title {
  width: 35.4%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.p-scroll.is-scroll-active .p-product__title {
  animation: flash 0.1s linear 2 forwards;
  transform: translateY(0);
}
.p-product__title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 899px) {
  .p-product__title {
    width: 106.1%;
    margin: 0 auto;
    position: relative;
    left: -4.9%;
  }
}
.p-product__title img {
  width: 100%;
}

.p-product__contents {
  margin-top: 0.5%;
}
@media screen and (max-width: 899px) {
  .p-product__contents {
    margin-top: 5.6%;
  }
}
.p-product__contents-nav {
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out) 0.1s, opacity 0.6s var(--ease-out) 0.1s;
}
.p-scroll.is-scroll-active .p-product__contents-nav {
  opacity: 1;
  transform: translateY(0);
}
.p-product__contents-nav-list {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 899px) {
  .p-product__contents-nav-list {
    gap: 1.4%;
  }
}
.p-product__contents-nav-item {
  width: 18%;
  position: relative;
  cursor: pointer;
}
@media (hover: hover) {
  .p-product__contents-nav-item:hover .p-in-bg-item:nth-of-type(2) {
    opacity: 1;
  }
  .p-product__contents-nav-item:hover .p-in-text {
    color: var(--color-black);
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-nav-item {
    width: 46.2%;
  }
}
.p-product__contents-nav-item.is-current .p-in-bg-item:nth-of-type(2) {
  opacity: 1;
}
.p-product__contents-nav-item.is-current .p-in-text {
  color: var(--color-black);
}
.p-product__contents-nav-item .p-in-bg {
  position: relative;
}
.p-product__contents-nav-item .p-in-bg-item {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  transition: opacity 0.5s var(--ease-out);
}
.p-product__contents-nav-item .p-in-bg-item:nth-of-type(1) {
  position: absolute;
}
.p-product__contents-nav-item .p-in-bg-item:nth-of-type(2) {
  opacity: 0;
}
.p-product__contents-nav-item .p-in-text {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.35vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: color 0.5s var(--ease-out);
}
@media screen and (max-width: 899px) {
  .p-product__contents-nav-item .p-in-text {
    font-size: 5vw;
  }
}
.p-product__contents-main {
  width: 64.2%;
  margin: 1.7% auto 0;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-scroll.is-scroll-active .p-product__contents-main {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-product__contents-main {
    width: 93%;
    margin: 4.7% auto 0;
  }
}
.p-product__contents-main-block {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.p-product__contents-main-block.is-current {
  opacity: 1;
  position: relative;
  pointer-events: all;
}
.p-product__contents-main-block-nav-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-block-nav-list {
    flex-wrap: wrap;
  }
}
.p-product__contents-main-block-nav-item {
  display: grid;
  place-items: center;
  width: 22%;
  padding: 0.5% 0;
  border: 1px solid var(--color-blue01);
  border-bottom: 0;
  text-align: center;
  font-size: 1.1vw;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 500;
  background: url(../img/top/product_sub_tab_re.png) repeat left top/auto;
  cursor: pointer;
  position: relative;
  transition: color 0.4s var(--ease-out);
}
.p-product__contents-main-block-nav-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-blue01);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.p-product__contents-main-block-nav-item.--wide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5% 4%;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-block-nav-item.--wide {
    width: 61.7%;
    padding: 3.7% 0;
  }
}
.p-product__contents-main-block-nav-item.--small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5% 4%;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-block-nav-item.--small {
    width: 38%;
    padding: 3.7% 0;
  }
}
.p-product__contents-main-block-nav-item .p-in-text {
  position: relative;
}
@media (hover: hover) {
  .p-product__contents-main-block-nav-item:hover {
    color: var(--color-blue03);
  }
  .p-product__contents-main-block-nav-item:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-block-nav-item {
    width: 50%;
    padding: 3.7% 0;
    font-size: 3.6vw;
  }
}
.p-product__contents-main-block-nav-item.is-current {
  color: var(--color-blue03);
  background: var(--color-blue01);
  pointer-events: none;
}
.p-product__contents-main-list {
  position: relative;
}
.p-product__contents-main-item {
  -o-border-image: url(../img/top/product_frame.png);
  border-image: url(../img/top/product_frame.png);
  border-image-width: 6.25vw;
  border-image-slice: 120;
  border-image-repeat: repeat;
  margin: 0 auto;
  padding: 3vw 3vw 2.3vw;
  background-color: rgba(0, 26, 88, 0.9);
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out);
}
.is-current .p-product__contents-main-item.is-current {
  opacity: 1;
  position: relative;
  pointer-events: all;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item {
    padding: 15.4% 3% 15.4%;
    -o-border-image: url(../img/sp/top/product_frame.png);
    border-image: url(../img/sp/top/product_frame.png);
    border-image-width: 12vw;
    border-image-slice: 90;
  }
}
.p-product__contents-main-item-link {
  margin: 2.4vw 0 5.3vw;
}
.p-product__contents-main-item-link .p-in-item {
  width: 31vw;
  margin: 3.3vw auto 0;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-link .p-in-item {
    width: 54vw;
  }
}
.p-product__contents-main-item-link .p-in-item:first-of-type {
  margin-top: 0;
}
.p-product__contents-main-item-category {
  width: 72.3%;
  margin: 0 auto;
}
.--tujo .p-product__contents-main-item-category {
  width: 89.1%;
}
@media screen and (max-width: 899px) {
  .--tujo .p-product__contents-main-item-category {
    width: 94.1%;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-category {
    width: 89.1%;
  }
}
.p-product__contents-main-item-category .p-in-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4vw;
}
.--tujo .p-product__contents-main-item-category .p-in-list {
  width: 100% !important;
  margin: 0 auto !important;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-category .p-in-list {
    gap: 1vw;
  }
}
.p-product__contents-main-item-category .p-in-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-blue02);
  color: var(--color-black);
  text-align: center;
  font-size: 0.73vw;
  padding: 1.5% 2.1%;
  flex-shrink: 0;
}
.--tujo .p-product__contents-main-item-category .p-in-item {
  border: none;
  margin-top: 0;
  padding: 1.5% 2.1%;
}
@media screen and (max-width: 899px) {
  .--tujo .p-product__contents-main-item-category .p-in-item {
    padding: 1.3% 2.1%;
  }
}
.--tujo .p-product__contents-main-item-category .p-in-item::before, .--tujo .p-product__contents-main-item-category .p-in-item::after {
  display: none;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-category .p-in-item {
    font-size: 2.8vw;
    letter-spacing: 0.02em;
    padding: 1.3% 1.4%;
  }
}
.p-product__contents-main-item-head {
  width: 76%;
  margin: 0 auto;
  padding: 0.7% 1.7% 0.9%;
  border-bottom: 1px solid var(--color-blue01);
  position: relative;
}
.--tujo .p-product__contents-main-item-head {
  width: 90.7%;
  margin: 1.4% auto 5.3%;
  padding: 0.7% 1.7% 2.5%;
}
@media screen and (max-width: 899px) {
  .--tujo .p-product__contents-main-item-head {
    width: 97.7%;
    margin: 1.2% auto 5.3%;
    padding: 0.7% 1.7% 4.5%;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-head {
    width: 90.8%;
    padding: 1.2% 1.7% 2.7%;
  }
}
.p-product__contents-main-item-head .p-in-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-head .p-in-inner {
    display: block;
  }
}
.p-product__contents-main-item-head .p-in-inner::before, .p-product__contents-main-item-head .p-in-inner::after {
  display: block;
  content: "";
  width: 1.5vw;
  height: 1vw;
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  -webkit-mask: url(../img/common/link_icon.svg) no-repeat center/contain;
  mask: url(../img/common/link_icon.svg) no-repeat center/contain;
  background-color: var(--color-blue01);
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-head .p-in-inner::before, .p-product__contents-main-item-head .p-in-inner::after {
    width: 2.4vw;
    height: 1.6vw;
  }
}
.p-product__contents-main-item-head .p-in-inner::before {
  right: 0;
  transform: translate(90%, 50%);
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-head .p-in-inner::before {
    transform: translate(90%, 62%);
  }
}
.p-product__contents-main-item-head .p-in-inner::after {
  left: 0;
  transform: translate(-90%, 50%) rotate(180deg);
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-head .p-in-inner::after {
    transform: translate(-90%, 62%) rotate(180deg);
  }
}
.p-product__contents-main-item-head .p-in-main {
  font-size: 1.5vw;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-head .p-in-main {
    width: 100%;
    font-size: 4.5vw;
    font-weight: 700;
    margin-top: 1.5vw;
    letter-spacing: 0.05em;
  }
}
.p-product__contents-main-item-head .p-in-val {
  display: flex;
  align-items: flex-end;
  gap: 0.4vw;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-head .p-in-val {
    margin-top: 1.5vw;
  }
}
.p-product__contents-main-item-head .p-in-val-head {
  font-size: 0.7vw;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-head .p-in-val-head {
    font-size: 2.7vw;
  }
}
.p-product__contents-main-item-head .p-in-val-text {
  font-size: 0.9vw;
  line-height: 1.2;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-head .p-in-val-text {
    font-size: 2.7vw;
    letter-spacing: 0.1em;
  }
}
.p-product__contents-main-item-head .p-in-val-text small {
  font-size: 0.8vw;
}
.p-product__contents-main-item-lead {
  width: 86%;
  margin: 0.3vw auto 0;
  font-size: 0.85vw;
  letter-spacing: 0.05em;
  line-height: 2.1;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-lead {
    width: 93%;
    margin: 2.5vw auto 0;
    font-size: 3.25vw;
    line-height: 1.9;
  }
}
.p-product__contents-main-item-about {
  display: flex;
  gap: 0.4%;
  width: 100%;
  margin-top: 1.1vw;
}
.--tujo .p-product__contents-main-item-about {
  width: 78.2%;
  margin: 0 auto;
}
[data-lang=en] .--tujo .p-product__contents-main-item-about, [data-lang=fr] .--tujo .p-product__contents-main-item-about, [data-lang=it] .--tujo .p-product__contents-main-item-about, [data-lang=es] .--tujo .p-product__contents-main-item-about, [data-lang=de] .--tujo .p-product__contents-main-item-about {
  width: 90.2%;
}
@media screen and (max-width: 899px) {
  .--tujo .p-product__contents-main-item-about {
    width: 100%;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about {
    display: block;
  }
}
.p-product__contents-main-item-about-image {
  width: 56.3%;
  position: relative;
  left: 0.3%;
  cursor: pointer;
}
.--tujo .p-product__contents-main-item-about-image {
  width: 36%;
  left: 0;
  margin-right: 2%;
  cursor: auto;
  pointer-events: none;
}
.--tujo .p-product__contents-main-item-about-image .swiper-fade .swiper-slide {
  pointer-events: none;
}
@media screen and (max-width: 899px) {
  .--tujo .p-product__contents-main-item-about-image {
    width: 89%;
    margin: 0 auto;
  }
}
.--tujo.is-current .p-product__contents-main-item-about-image {
  pointer-events: auto;
}
.--tujo.is-current .p-product__contents-main-item-about-image .swiper-fade .swiper-slide {
  pointer-events: auto;
}
.p-product__contents-main-item-about-image img {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-image {
    width: 100%;
    left: 0;
  }
  .p-product__contents-main-item-about-image img {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
}
.is-slide-disabled .p-product__contents-main-item-about-image-nav {
  display: none;
}
.p-product__contents-main-item-about-image-nav-item {
  width: 2.4vw;
  padding: 2.6% 0;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  background: linear-gradient(-90deg, rgba(13, 40, 97, 0.8), rgba(11, 25, 49, 0.8));
}
.p-product__contents-main-item-about-image-nav-item img {
  width: 26%;
  margin: 0 auto;
  transition: transform 0.6s var(--ease-out);
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-image-nav-item {
    width: 7.8vw;
    padding: 3.5% 0;
  }
}
@media (hover: hover) {
  .p-product__contents-main-item-about-image-nav-item:hover img {
    transform: scale(0.9);
  }
}
.p-product__contents-main-item-about-image-nav-item.--prev {
  left: 0.7vw;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-image-nav-item.--prev {
    left: 3.4vw;
  }
}
.p-product__contents-main-item-about-image-nav-item.--next {
  right: 0.8vw;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-image-nav-item.--next {
    right: 3.5vw;
  }
}
.p-product__contents-main-item-about-image-pagination {
  display: flex;
  justify-content: center;
  gap: 3%;
  margin-top: 5.3%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-image-pagination {
    gap: 1%;
    margin-top: 4%;
  }
}
.p-product__contents-main-item-about-image-pagination .swiper-pagination-bullet {
  display: block;
  width: 4.6vw;
  height: auto;
  margin: 0 !important;
  opacity: 1 !important;
  padding-top: 0.6vw;
  border-radius: 0;
  background: url(../img/top/slider_dot.png) no-repeat center/contain;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-image-pagination .swiper-pagination-bullet {
    width: 14vw;
    padding-top: 2.3%;
  }
}
.p-product__contents-main-item-about-image-pagination .swiper-pagination-bullet-active {
  background: url(../img/top/slider_dot_active.png) no-repeat center/contain;
}
.p-product__contents-main-item-about-detail {
  flex: 1;
  margin-top: 1.1%;
}
.--tujo .p-product__contents-main-item-about-detail {
  margin-top: 0;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-detail {
    width: 94%;
    margin: 0 auto;
  }
}
.p-product__contents-main-item-about-detail .p-in-list {
  width: 96.3%;
}
.--tujo .p-product__contents-main-item-about-detail .p-in-list {
  width: 87.3%;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .--tujo .p-product__contents-main-item-about-detail .p-in-list {
    width: 100%;
    margin: 3% auto 0;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-detail .p-in-list {
    width: 100%;
  }
}
.p-product__contents-main-item-about-detail .p-in-item {
  margin-top: 2%;
  padding: 0.4vw;
  position: relative;
  border-bottom: 1px solid var(--color-blue01);
  padding-bottom: 2px;
}
.p-product__contents-main-item-about-detail .p-in-item:first-of-type {
  margin-top: 0;
}
.p-product__contents-main-item-about-detail .p-in-item::before, .p-product__contents-main-item-about-detail .p-in-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  position: absolute;
  bottom: 0;
  background-color: var(--color-blue01);
}
.--dl .p-product__contents-main-item-about-detail .p-in-item::before, .--dl .p-product__contents-main-item-about-detail .p-in-item::after {
  display: none;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-detail .p-in-item::before, .p-product__contents-main-item-about-detail .p-in-item::after {
    height: 5px;
  }
}
.p-product__contents-main-item-about-detail .p-in-item::before {
  left: 0;
}
.p-product__contents-main-item-about-detail .p-in-item::after {
  right: 0;
}
.p-product__contents-main-item-about-detail .p-in-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  padding-bottom: 0.2vw;
  font-size: 0.9vw;
  letter-spacing: -0.018em;
  color: var(--color-blue02);
  font-weight: 700;
  line-height: 1.7;
}
.p-product__contents-main-item-about-detail .p-in-item-head.js-accordion-head {
  cursor: pointer;
  transition: opacity 0.5s var(--ease-out);
}
@media (hover: hover) {
  .p-product__contents-main-item-about-detail .p-in-item-head.js-accordion-head:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-detail .p-in-item-head {
    font-size: 2.85vw;
    padding: 0.2% 2%;
  }
}
.p-product__contents-main-item-about-detail .p-in-item-head.is-open .p-in-item-head-icon {
  transform: rotate(180deg);
}
.p-product__contents-main-item-about-detail .p-in-item-head-text {
  width: 97%;
}
.p-product__contents-main-item-about-detail .p-in-item-head-icon {
  width: 0.46875vw;
  height: 0.36458vw;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: var(--color-blue02);
  transition: transform 0.6s var(--ease-out);
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-detail .p-in-item-head-icon {
    width: 1vw;
    height: 1vw;
  }
}
.p-product__contents-main-item-about-detail .p-in-item-text {
  display: none;
  padding: 1vw 0 1.5vw;
  font-size: 1vw;
  line-height: 1.5;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-about-detail .p-in-item-text {
    padding: 5% 2% 3%;
    font-size: 2.8vw;
    line-height: 1.7;
  }
}
.p-product__contents-main-item-reservation {
  width: 97%;
  margin: 3% auto 0;
}
.--dl .p-product__contents-main-item-reservation {
  margin: 6% auto 0;
}
@media screen and (max-width: 899px) {
  [data-lang=tc] .--dl .p-product__contents-main-item-reservation {
    margin-top: 12%;
  }
}
[data-lang=tc] .--dl .p-product__contents-main-item-reservation-block {
  margin-top: 6%;
}
[data-lang=tc] .--dl .p-product__contents-main-item-reservation-block:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 899px) {
  [data-lang=tc] .--dl .p-product__contents-main-item-reservation-block {
    margin-top: 12%;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation {
    width: 95.5%;
    margin: 11.5% auto 0;
  }
}
.p-product__contents-main-item-reservation-head {
  display: flex;
  align-items: flex-start;
}
.p-product__contents-main-item-reservation-head .p-in-frame {
  width: 6.8%;
}
.--dl .p-product__contents-main-item-reservation-head .p-in-frame {
  position: relative;
  top: 0.2vw;
}
.p-product__contents-main-item-reservation-head .p-in-frame img {
  width: 100%;
}
.p-product__contents-main-item-reservation-head .p-in-text {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 0.7vw;
  color: var(--color-yellow02);
  letter-spacing: 0.4em;
}
[data-lang=tc] .p-product__contents-main-item-reservation-head .p-in-text {
  font-size: 0.85vw;
}
@media screen and (max-width: 899px) {
  [data-lang=tc] .p-product__contents-main-item-reservation-head .p-in-text {
    font-size: 3vw;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-head .p-in-text {
    font-size: 2.6vw;
    letter-spacing: 0.7em;
  }
}
.p-product__contents-main-item-reservation-head .p-in-text-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.7vw;
}
[data-lang=tc] .p-product__contents-main-item-reservation-head .p-in-text-item {
  padding: 0 2.2vw;
}
@media screen and (max-width: 899px) {
  [data-lang=tc] .p-product__contents-main-item-reservation-head .p-in-text-item {
    padding: 0 2vw;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-head .p-in-text-item {
    padding: 0 0.4vw;
  }
}
.p-product__contents-main-item-reservation-head .p-in-text::before, .p-product__contents-main-item-reservation-head .p-in-text::after {
  content: "";
  display: block;
  flex: 1;
  height: 0.06vw;
  background-color: #5e94cd;
  position: relative;
  top: -0.05vw;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-head .p-in-text::before, .p-product__contents-main-item-reservation-head .p-in-text::after {
    height: 1px;
    top: -0.45vw;
  }
}
.p-product__contents-main-item-reservation-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 84.8%;
  margin: 2.9vw auto 0;
  gap: 2.7vw;
}
.--dl .p-product__contents-main-item-reservation-list {
  width: 100%;
  margin: 2vw auto 0;
}
[data-lang=tc] .--dl .p-product__contents-main-item-reservation-list {
  margin: 1.4vw auto 0;
}
@media screen and (max-width: 899px) {
  [data-lang=tc] .--dl .p-product__contents-main-item-reservation-list {
    margin: 5.4vw auto 0;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-list {
    display: block;
    width: 98%;
    margin: 5.4vw auto 0;
  }
}
.p-product__contents-main-item-reservation-list .p-in-item {
  width: 48%;
  padding: 3.7% 4%;
  border: 1px solid #2358ad;
}
.--dl .p-product__contents-main-item-reservation-list .p-in-item {
  width: 100%;
  padding: 0;
  border: none;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-list .p-in-item {
    width: 100%;
    padding: 7.2% 4%;
    margin-top: 7%;
  }
  .p-product__contents-main-item-reservation-list .p-in-item:first-of-type {
    margin-top: 0;
  }
}
.p-product__contents-main-item-reservation-list .p-in-item-head {
  margin-bottom: 6.2%;
  text-align: center;
  font-size: 1.4vw;
  color: var(--color-blue02);
  text-align: center;
  position: relative;
  padding-bottom: 0.72vw;
  border-bottom: 1px solid var(--color-blue01);
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-list .p-in-item-head {
    width: 95%;
    margin: 0 auto 4.7%;
    padding-bottom: 2.32vw;
    font-size: 3.7vw;
  }
}
.p-product__contents-main-item-reservation-list .p-in-item-link {
  display: flex;
  justify-content: center;
  gap: 3.6%;
}
.--dl .p-product__contents-main-item-reservation-list .p-in-item-link {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1vw;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-list .p-in-item-link {
    display: block;
  }
}
.p-product__contents-main-item-reservation-list .p-in-item-link-main {
  width: 42%;
}
@media screen and (min-width: 900px) {
  .--dl .p-product__contents-main-item-reservation-list .p-in-item-link-main {
    width: 30%;
  }
}
.p-product__contents-main-item-reservation-list .p-in-item-link-main::before, .p-product__contents-main-item-reservation-list .p-in-item-link-main::after {
  width: 3%;
  height: auto;
  padding-top: 37.5%;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-list .p-in-item-link-main::before, .p-product__contents-main-item-reservation-list .p-in-item-link-main::after {
    width: 2.3%;
    height: auto;
    padding-top: 29.6%;
  }
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-list .p-in-item-link-main {
    width: 57%;
    margin: 0 auto;
    margin-top: 3.5%;
  }
  .p-product__contents-main-item-reservation-list .p-in-item-link-main:first-of-type {
    margin-top: 0;
  }
}
.p-product__contents-main-item-reservation-list .p-in-item-link-main .c-link__img {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-product__contents-main-item-reservation-list .p-in-item-link-main .c-link__img {
    width: 73%;
  }
}
@media screen and (min-width: 900px) {
  .p-product__contents-main-item-reservation-list .p-in-item-link-main .c-link__line {
    width: 13%;
  }
}
.p-product__contents-link {
  margin-top: 2.4%;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out) 0.3s, opacity 0.6s var(--ease-out) 0.3s;
}
.p-scroll.is-scroll-active .p-product__contents-link {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-product__contents-link {
    margin-top: 4%;
  }
}
.p-product__contents-link-item.--gold {
  width: 14.5%;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-product__contents-link-item.--gold {
    width: 50.5%;
    padding: 2.05% 1.5% 2.7%;
  }
}
.p-product__contents-link-item .c-link__text {
  font-size: 1.4vw;
}
@media screen and (max-width: 899px) {
  .p-product__contents-link-item .c-link__text {
    font-size: 5vw;
  }
  [data-lang=it] .p-product__contents-link-item .c-link__text, [data-lang=es] .p-product__contents-link-item .c-link__text, [data-lang=it] .p-product__contents-link-item .c-link__text {
    font-size: 4.3vw;
  }
}
.p-product__contents-link-item .c-link__line {
  width: 12%;
}
@media screen and (max-width: 899px) {
  .p-product__contents-link-item .c-link__line {
    width: 18%;
  }
  [data-lang=it] .p-product__contents-link-item .c-link__line, [data-lang=en] .p-product__contents-link-item .c-link__line, [data-lang=es] .p-product__contents-link-item .c-link__line, [data-lang=it] .p-product__contents-link-item .c-link__line {
    width: 12%;
  }
}

.p-spec {
  width: 64.2%;
  margin: 7.7% auto 0;
  -o-border-image: url(../img/top/product_frame.png);
  border-image: url(../img/top/product_frame.png);
  border-image-width: 6.25vw;
  border-image-slice: 120;
  border-image-repeat: repeat;
  padding: 3.9% 4.1% 5.1%;
  background-color: rgba(0, 26, 88, 0.9);
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.p-spec.p-scroll.is-scroll-active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-spec {
    width: 93.2%;
    margin: 21.7% auto 0;
    padding: 10.9% 5.7% 15%;
    -o-border-image: url(../img/sp/top/product_frame.png);
    border-image: url(../img/sp/top/product_frame.png);
    border-image-width: 90px;
    border-image-slice: 90;
  }
}

.p-spec__title {
  width: 47%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-scroll.is-scroll-active .p-spec__title {
  animation: flash 0.1s linear 2 forwards 0.2s;
  transform: translateY(0);
}
.p-spec__title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 899px) {
  .p-spec__title {
    width: 100%;
    position: relative;
    left: -4%;
  }
}
.p-spec__title img {
  width: 100%;
}

.p-spec__contents {
  margin-top: 0.4%;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out) 0.2s, opacity 0.6s var(--ease-out) 0.2s;
}
.p-scroll.is-scroll-active .p-spec__contents {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-spec__contents {
    margin-top: 4.8%;
  }
}
.p-spec__contents-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.55vw 0;
}
@media screen and (max-width: 899px) {
  .p-spec__contents-list {
    gap: 3.55vw 0;
  }
}
.p-spec__contents-item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--color-blue01);
}
.p-spec__contents-item.--helf {
  width: 48%;
}
.p-spec__contents-item-head {
  width: 14.4vw;
  font-size: 1vw;
}
@media screen and (max-width: 899px) {
  .p-spec__contents-item-head {
    width: 20.8vw;
    font-size: 3.2vw;
  }
  [data-lang=en] .p-spec__contents-item-head, [data-lang=fr] .p-spec__contents-item-head, [data-lang=it] .p-spec__contents-item-head, [data-lang=es] .p-spec__contents-item-head, [data-lang=de] .p-spec__contents-item-head {
    width: 22.3vw;
  }
}
.p-spec__contents-item-head span {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding-bottom: 0.3vw;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-spec__contents-item-head span {
    place-items: end;
    padding-bottom: 1.6vw;
  }
}
.p-spec__contents-item-head span::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-blue01);
}
@media screen and (max-width: 899px) {
  .p-spec__contents-item-head span::before {
    height: 0.9vw;
  }
}
.p-spec__contents-item-detail {
  flex: 1;
  padding: 0.5vw;
  font-size: 1vw;
  line-height: 1.3;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-spec__contents-item-detail {
    padding: 1%;
    padding-left: 2%;
    font-size: 3vw;
    line-height: 1.4;
  }
}
.p-spec__contents-item-detail::before, .p-spec__contents-item-detail::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  position: absolute;
  bottom: 0;
  background-color: var(--color-blue01);
}
.p-spec__contents-item-detail::before {
  left: 0;
}
.p-spec__contents-item-detail::after {
  right: 0;
}

.p-staff {
  width: 61.7%;
  margin: 0 auto;
  padding: 7.4% 0 6.2%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .p-staff {
    width: 100%;
    padding: 20.6% 0 20.3%;
  }
}

.p-staff__bg {
  width: 100%;
  position: absolute;
  top: 50.8%;
  left: 48.6%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 899px) {
  .p-staff__bg {
    width: 185%;
    top: 52.6%;
  }
}
.p-staff__bg img {
  width: 100%;
  opacity: 0;
  transform: scale(1.1);
  filter: brightness(1.2);
  transition: transform 4s var(--ease-out), opacity 0.8s var(--ease-out), filter 0.6s var(--ease-out);
}
.p-scroll.is-scroll-active .p-staff__bg img {
  filter: brightness(1);
  opacity: 1;
  transform: translateY(0);
}

.p-staff__inner {
  padding: 6% 0 16.1%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-staff__inner {
    padding: 0 0 12%;
  }
}

.p-staff__title {
  width: 26.8%;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.p-scroll.is-scroll-active .p-staff__title {
  transform: translateX(0);
  animation: flash 0.1s linear 2 forwards;
}
.p-staff__title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 899px) {
  .p-staff__title {
    width: 50.5%;
  }
}
.p-staff__title img {
  width: 100%;
}

.p-staff__contents {
  margin-top: 2.1%;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-staff__contents {
    margin-top: 4%;
  }
}
.p-staff__contents-item {
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.p-staff__contents-item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.p-staff__contents-item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-staff__contents-item:nth-of-type(3) {
  transition-delay: 0.3s;
}
.p-staff__contents-item:nth-of-type(4) {
  transition-delay: 0.4s;
}
.p-staff__contents-item:nth-of-type(5) {
  transition-delay: 0.5s;
}
.p-staff__contents-item:nth-of-type(6) {
  transition-delay: 0.6s;
}
.p-staff__contents-item:nth-of-type(7) {
  transition-delay: 0.7s;
}
.p-staff__contents-item:nth-of-type(8) {
  transition-delay: 0.8s;
}
.p-staff__contents-item:nth-of-type(9) {
  transition-delay: 0.9s;
}
.p-staff__contents-item:nth-of-type(10) {
  transition-delay: 1s;
}
.p-scroll.is-scroll-active .p-staff__contents-item {
  opacity: 1;
  transform: translateX(0);
}
.p-staff__contents-item + .p-staff__contents-item {
  margin-top: 1.8vw;
}
@media screen and (max-width: 899px) {
  .p-staff__contents-item + .p-staff__contents-item {
    margin-top: 5%;
  }
}
.p-staff__contents-item-head {
  font-size: 1vw;
  transform: scaleY(0.6);
  letter-spacing: 0.2em;
  color: var(--color-blue01);
}
[data-lang=tc] .p-staff__contents-item-head, [data-lang=sc] .p-staff__contents-item-head {
  transform: scaleY(1);
}
@media screen and (max-width: 899px) {
  .p-staff__contents-item-head {
    font-size: 3.3vw;
  }
}
.p-staff__contents-item-name {
  margin-top: 0.4vw;
  font-size: 1.8vw;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  color: var(--color-blue03);
}
@media screen and (max-width: 899px) {
  .p-staff__contents-item-name {
    width: 90%;
    margin: 0 auto;
    margin-top: 1.4vw;
    font-size: 5.2vw;
    letter-spacing: 0.57em;
  }
  [data-lang=kr] .p-staff__contents-item-name {
    letter-spacing: 0.1em;
  }
}
.p-staff__contents-item-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5% 1.2%;
  margin: 0 auto;
  margin-top: 1%;
  font-size: 0.9vw;
  letter-spacing: 0.27em;
  color: var(--color-blue03);
  background-color: var(--color-blue04);
}
@media screen and (max-width: 899px) {
  .p-staff__contents-item-label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.5% 2.5% 0.6%;
    margin: 0 auto;
    margin-top: 2%;
    font-size: 3.3vw;
    letter-spacing: 0.4em;
  }
}