.p-kv__image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .p-kv__image {
    margin-top: 13%;
  }
}
.p-kv__image-catch {
  width: 23.3%;
  position: absolute;
  right: 10.7%;
  top: 15.3%;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 1s var(--ease-main) 1s, transform 1s var(--ease-main) 1s;
}
.is-load .p-kv__image-catch {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-kv__image-catch {
    width: 26.3%;
    right: 5.8%;
    top: 5.9%;
  }
}
.p-kv__image-catch img {
  width: 100%;
}
.p-kv__image-date {
  width: 28.5%;
  position: absolute;
  left: 1.6%;
  bottom: 2.2%;
  z-index: 1;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 1s var(--ease-main) 1s, transform 1s var(--ease-main) 1s;
}
.is-load .p-kv__image-date {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-kv__image-date {
    width: 63.7%;
    left: -0.4%;
    bottom: -0.2%;
  }
}
.p-kv__image-date img {
  width: 100%;
}
.p-kv__image img {
  width: 100%;
  opacity: 0;
  filter: brightness(2);
  transform: rotate(2deg) scale(1.05);
  transition: filter 1s var(--ease-main) 0.8s, opacity 1s var(--ease-main) 0.8s, transform 3s var(--ease-main) 0.8s;
}
.is-load .p-kv__image img {
  opacity: 1;
  filter: brightness(1);
  transform: rotate(0deg) scale(1);
}

.p-kv__banner {
  padding: 20px 0;
  background-color: var(--color-blue);
  position: relative;
}
.p-kv__banner-inner {
  width: 85.7%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .p-kv__banner-inner {
    width: 100%;
  }
}
.p-kv__banner-nav {
  width: 85.7%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.is-banner-alone .p-kv__banner-nav {
  display: none;
}
@media screen and (max-width: 899px) {
  .p-kv__banner-nav {
    width: 90%;
  }
}
.p-kv__banner-nav-item {
  width: 23px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 899px) {
  .p-kv__banner-nav-item {
    width: 6%;
  }
}
.p-kv__banner-nav-item svg {
  display: block;
  width: 100%;
}
.p-kv__banner-nav-item.--prev {
  left: 0;
  transform: translate(-50%, -50%) rotate(180deg);
}
@media screen and (max-width: 899px) {
  .p-kv__banner-nav-item.--prev {
    left: 5%;
  }
}
.p-kv__banner-nav-item.--next {
  right: 0;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 899px) {
  .p-kv__banner-nav-item.--next {
    right: 5%;
  }
}
.p-kv__banner-list {
  display: flex;
}
.is-banner-alone .p-kv__banner-list {
  justify-content: center;
}
.p-kv__banner-list-item {
  width: calc(25% - 10px);
  transition: transform 0.5s var(--ease-bound);
}
.is-banner-alone .p-kv__banner-list-item {
  margin-right: 10px;
}
.is-banner-alone .p-kv__banner-list-item:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 900px) {
  .p-kv__banner-list-item:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 899px) {
  .p-kv__banner-list-item {
    width: 78%;
  }
}
.p-kv__banner-list-item .p-in-link {
  display: block;
  width: 100%;
}
.p-kv__banner-list-item .p-in-link img {
  width: 100%;
}

.p-info {
  position: relative;
  background: url(../img/bg/bg_ptn1.jpg) repeat left top/30px;
}

.p-info__inner {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 899px) {
  .p-info__inner {
    display: block;
    width: 89%;
    max-width: 560px;
    padding: 59px 0;
  }
}

.p-info__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-info__news {
  width: 23.5%;
}
@media screen and (max-width: 899px) {
  .p-info__news {
    width: 100%;
  }
}
.p-info__news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
.p-info__news-header-link {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.5s var(--ease-main) 0.1s, transform 0.5s var(--ease-bound) 0.1s;
}
.p-scroll.is-active .p-info__news-header-link {
  opacity: 1;
  transform: translateX(0);
}
.p-info__news-header-link .p-in-text-icon {
  width: 6px;
}
.p-info__news-contents {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(10px) rotate(-5deg);
  transition: opacity 0.7s var(--ease-main) 0.2s, transform 0.7s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-info__news-contents {
  opacity: 1;
  transform: translateX(0) rotate(-2deg);
}
.p-info__news-contents a {
  display: block;
}
@media screen and (min-width: 900px) {
  .p-info__news-contents a:hover .p-in-title-text {
    color: var(--color-pink);
  }
}
.p-info__news-contents-item-border .p-in-item:nth-of-type(1) {
  height: 100%;
  width: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-black);
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-border .p-in-item:nth-of-type(1) {
    height: 100%;
    top: auto;
    bottom: 0;
  }
}
.p-info__news-contents-item-border .p-in-item:nth-of-type(2) {
  height: calc(100% - 40px);
  width: 1px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-black);
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-border .p-in-item:nth-of-type(2) {
    height: calc(100% - 34px);
    top: 0;
  }
}
.p-info__news-contents-item-border .p-in-item:nth-of-type(3) {
  width: calc(100% - 40px);
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-black);
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-border .p-in-item:nth-of-type(3) {
    width: calc(100% - 34px);
  }
}
.p-info__news-contents-item-inner {
  height: 176px;
  padding: 30px 22px 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner {
    height: 74px;
    padding: 13px 17px 0;
  }
}
.p-info__news-contents-item-inner .p-in-date {
  margin-bottom: 7px;
  font-family: var(--font-en);
  color: var(--color-pink);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-date {
    font-size: 1.2rem;
  }
}
.p-info__news-contents-item-inner .p-in-title .p-in-border {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border {
    height: calc(100% + 2px);
  }
}
.p-info__news-contents-item-inner .p-in-title .p-in-border-item {
  width: 84%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item {
    width: 94%;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(1) {
    top: 70px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(1) {
    top: 25px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(2) {
    top: 101px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(2) {
    top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(3) {
    top: 132px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(3) {
    top: 55px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(4) {
    top: 163px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(4) {
    top: 70px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(5) {
    top: 194px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(5) {
    top: 85px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(6) {
    top: 225px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(6) {
    top: 100px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(7) {
    top: 256px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(7) {
    top: 115px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(8) {
    top: 287px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(8) {
    top: 130px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(9) {
    top: 318px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(9) {
    top: 145px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(10) {
    top: 349px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-border-item:nth-of-type(10) {
    top: 160px;
  }
}
.p-info__news-contents-item-inner .p-in-title .p-in-title-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  padding-bottom: 6px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  color: var(--color-black);
  position: relative;
  z-index: 2;
  transition: color 0.5s var(--ease-main);
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-item-inner .p-in-title .p-in-title-text {
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding-bottom: 0;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }
}
.p-info__news-contents-btm {
  width: calc(100% - 40px);
  height: 40px;
  position: relative;
  background-color: var(--color-white);
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-btm {
    width: calc(100% - 34px);
    height: 34px;
  }
}
.p-info__news-contents-btm::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
  background: url(../img/corner.png) no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-info__news-contents-btm::before {
    width: 34px;
    height: 34px;
  }
}

.p-info__x {
  margin-top: 40px;
  width: 23.2%;
}
@media screen and (max-width: 899px) {
  .p-info__x {
    width: 100%;
    margin-top: 49px;
  }
}
.p-info__x-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 899px) {
  .p-info__x-header {
    margin-bottom: 18px;
  }
}
.p-info__x-header-link .p-in-text-icon {
  width: 6px;
}
.p-info__x .p-info__x-contents {
  position: relative;
  opacity: 0;
  transform: translateX(-10px) rotate(5deg);
  transition: opacity 0.7s var(--ease-main) 0.2s, transform 0.7s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-info__x .p-info__x-contents {
  opacity: 1;
  transform: translateX(0) rotate(2deg);
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents {
    padding-top: 12px;
  }
}
.p-info__x .p-info__x-contents-border .p-in-item:nth-of-type(1) {
  height: 100%;
  width: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-black);
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-border .p-in-item:nth-of-type(1) {
    height: 80%;
    top: auto;
    bottom: 0;
  }
}
.p-info__x .p-info__x-contents-border .p-in-item:nth-of-type(2) {
  height: calc(100% - 40px);
  width: 1px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-black);
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-border .p-in-item:nth-of-type(2) {
    height: calc(80% - 34px);
    top: 20%;
  }
}
.p-info__x .p-info__x-contents-border .p-in-item:nth-of-type(3) {
  width: calc(100% - 40px);
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-black);
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-border .p-in-item:nth-of-type(3) {
    width: calc(100% - 34px);
  }
}
.p-info__x .p-info__x-contents .p-in-frame {
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-info__x .p-info__x-contents-inner {
  width: 100%;
  background-color: var(--color-white);
}
.p-info__x .p-info__x-contents-chara_main {
  width: 42%;
  position: absolute;
  top: -14%;
  right: 0px;
  transform: translateY(-50%);
}
.p-info__x .p-info__x-contents-chara_main img {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-main) 0.3s, transform 0.5s var(--ease-bound) 0.3s;
}
.p-scroll.is-active .p-info__x .p-info__x-contents-chara_main img {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-chara_main {
    width: 28%;
    right: -3.3%;
    top: -20%;
  }
}
.p-info__x .p-info__x-contents-chara_sub {
  width: 42%;
  position: absolute;
  top: -14%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 2;
}
.p-info__x .p-info__x-contents-chara_sub img {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-main) 0.3s, transform 0.5s var(--ease-bound) 0.3s;
}
.p-scroll.is-active .p-info__x .p-info__x-contents-chara_sub img {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-chara_sub {
    width: 28%;
    right: -3.3%;
    top: -20%;
  }
}
.p-info__x .p-info__x-contents-detail {
  padding: 61px 0 12px;
  width: 99%;
  margin: 0 auto;
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail {
    padding: 4% 0 0;
  }
}
.p-info__x .p-info__x-contents-detail .p-in-border {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border {
    height: calc(100% + 2px);
  }
}
.p-info__x .p-info__x-contents-detail .p-in-border-item {
  width: 84%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item {
    width: 94%;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(1) {
    top: 18px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(1) {
    top: 20px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(2) {
    top: 49px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(2) {
    top: 35px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(3) {
    top: 80px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(3) {
    top: 50px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(4) {
    top: 111px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(4) {
    top: 65px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(5) {
    top: 142px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(5) {
    top: 80px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(6) {
    top: 173px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(6) {
    top: 95px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(7) {
    top: 204px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(7) {
    top: 110px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(8) {
    top: 235px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(8) {
    top: 125px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(9) {
    top: 266px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(9) {
    top: 140px;
  }
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(10) {
    top: 297px;
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-border-item:nth-of-type(10) {
    top: 155px;
  }
}
.p-info__x .p-info__x-contents-detail .p-in-item {
  width: 89%;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-item {
    width: 58%;
  }
}
.p-info__x .p-info__x-contents-detail .p-in-link {
  width: 34%;
  margin: 23px auto 0;
  transition: transform 0.5s var(--ease-bound);
}
@media screen and (min-width: 900px) {
  .p-info__x .p-info__x-contents-detail .p-in-link:hover {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 899px) {
  .p-info__x .p-info__x-contents-detail .p-in-link {
    width: 25%;
    margin: 3% auto 0;
  }
}

.p-info__tt {
  margin-top: 80px;
  width: 43.2%;
}
@media screen and (max-width: 899px) {
  .p-info__tt {
    width: 100%;
  }
}
.p-info__tt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
.p-info__tt-header-link {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.5s var(--ease-main) 0.1s, transform 0.5s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-info__tt-header-link {
  opacity: 1;
  transform: translateX(0);
}
.p-info__tt-header-link .p-in-text-icon {
  width: 6px;
}
.p-info__tt-contents {
  position: relative;
}
.p-info__tt-contents-list {
  display: flex;
  justify-content: flex-start;
  justify-content: space-between;
}
.p-info__tt-contents-list-item {
  width: 30.7%;
  margin-top: 20px;
  position: relative;
  border-bottom: 1px solid var(--color-black);
  opacity: 0;
  transition: opacity 0.5s var(--ease-main) 0.2s, transform 0.5s var(--ease-main) 0.2s;
}
.p-info__tt-contents-list-item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.p-info__tt-contents-list-item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-info__tt-contents-list-item:nth-of-type(3) {
  transition-delay: 0.3s;
}
.p-info__tt-contents-list-item:nth-of-type(4) {
  transition-delay: 0.4s;
}
.p-info__tt-contents-list-item:nth-of-type(5) {
  transition-delay: 0.5s;
}
.p-info__tt-contents-list-item:nth-of-type(6) {
  transition-delay: 0.6s;
}
.p-info__tt-contents-list-item:nth-of-type(7) {
  transition-delay: 0.7s;
}
.p-info__tt-contents-list-item:nth-of-type(8) {
  transition-delay: 0.8s;
}
.p-info__tt-contents-list-item:nth-of-type(9) {
  transition-delay: 0.9s;
}
.p-info__tt-contents-list-item:nth-of-type(10) {
  transition-delay: 1s;
}
.p-scroll.is-active .p-info__tt-contents-list-item {
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-info__tt-contents-list-item {
    margin-top: 0;
  }
}
.p-info__tt-contents-list-item:nth-of-type(odd) {
  transform: translateX(10px) rotate(-5deg);
}
.p-scroll.is-active .p-info__tt-contents-list-item:nth-of-type(odd) {
  transform: translateX(0) rotate(-2deg);
}
.p-info__tt-contents-list-item:nth-of-type(even) {
  transform: translateX(10px) rotate(5deg);
}
.p-scroll.is-active .p-info__tt-contents-list-item:nth-of-type(even) {
  transform: translateX(0) rotate(2deg);
}
.p-info__tt-contents-list-item-inner {
  padding: 20px 6px 6px 6px;
  position: relative;
  background-color: var(--color-white);
  border-right: 1px solid var(--color-black);
  border-left: 1px solid var(--color-black);
}
@media screen and (max-width: 899px) {
  .p-info__tt-contents-list-item-inner {
    padding: 5% 4% 4% 4%;
    border-width: min(0.3vw, 2px);
  }
}
.p-info__tt-contents-list-item-inner a {
  display: block;
}
@media screen and (min-width: 900px) {
  .p-info__tt-contents-list-item-inner a:hover .p-in-icon img {
    transform: scale(0.9);
  }
}
.p-info__tt-contents-list-item-inner .p-in-image {
  width: 100%;
  position: relative;
}
.p-info__tt-contents-list-item-inner .p-in-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-black);
  opacity: 0.3;
}
.p-info__tt-contents-list-item-inner .p-in-image img {
  width: 100%;
}
.p-info__tt-contents-list-item-inner .p-in-icon {
  width: 34%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-info__tt-contents-list-item-inner .p-in-icon img {
  transition: transform 0.5s var(--ease-bound);
}
.p-info__tt-contents-list-item-inner .tiktok-embed {
  width: 50%;
  max-width: 100% !important;
  min-width: auto !important;
}
.p-info__tt-contents-list-item-inner .tiktok-embed blockquote {
  width: 100%;
}
.p-info__tt-contents-list-item-inner .tiktok-embed iframe {
  width: 100% !important;
  height: auto !important;
}

.p-movie {
  width: 100%;
}

.p-movie__label {
  width: 100%;
  height: 160px;
  position: relative;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  background: url(../img/bg/bg_ptn3.jpg) repeat left top/10px;
}
@media screen and (max-width: 899px) {
  .p-movie__label {
    height: 80px;
  }
}
.p-movie__label::before, .p-movie__label::after {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  left: 0;
  background: url(../img/line2.png) repeat-x left top/2335px 80px;
}
@media screen and (min-width: 900px) {
  @keyframes line02ToLeft {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -2335px;
    }
  }
  @keyframes line02ToRight {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: 2335px;
    }
  }
}
@media screen and (max-width: 899px) {
  .p-movie__label::before, .p-movie__label::after {
    height: 40px;
    background: url(../img/line2.png) repeat-x left top/1167.5px 40px;
  }
  @keyframes line02ToLeft {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1167.5px;
    }
  }
  @keyframes line02ToRight {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: 1167.5px;
    }
  }
}
.p-movie__label::before {
  top: 0;
  animation: line02ToRight 40s linear infinite;
}
.p-movie__label::after {
  bottom: 0;
  animation: line02ToLeft 40s linear infinite;
}

.p-movie__bg {
  width: 100%;
  padding-top: 56.25%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 899px) {
  .p-movie__bg {
    width: 200%;
    height: 100%;
    padding-top: 0;
  }
}
.p-movie__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-pink);
  opacity: 0.8;
  z-index: 1;
}
.p-movie__bg-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-movie__bg-item iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-movie__block {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .p-movie__block {
    padding: 12.6% 0 34.2%;
  }
}

.p-movie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 84.6%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-movie__inner {
    display: flex;
    flex-direction: column-reverse;
    width: 90%;
  }
}

.p-movie__main {
  width: 67.6%;
  border: 4px solid var(--color-white);
  box-sizing: border-box;
  position: relative;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s var(--ease-main) 0.1s, transform 0.5s var(--ease-bound) 0.1s;
}
.p-scroll.is-active .p-movie__main {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-movie__main {
    width: 100%;
    border: 2px solid var(--color-white);
  }
}
.p-movie__main::before, .p-movie__main::after {
  content: "";
  display: block;
  width: 10.8%;
  padding-top: 61%;
  position: absolute;
  top: 51.4%;
  transform: translateY(-50%);
  background: url(../img/curtain_pink.png) no-repeat center/contain;
  z-index: 1;
}
.p-movie__main::before {
  left: -2.1%;
  transform: translateY(-50%) rotateY(180deg);
}
.p-movie__main::after {
  right: -2.1%;
}
.p-movie__main-item iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-movie__detail {
  width: 23.8%;
  margin-right: 2.8%;
}
@media screen and (max-width: 899px) {
  .p-movie__detail {
    width: 100%;
  }
}
.p-movie__detail-title .p-in-text {
  font-size: 7rem;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}
@media screen and (max-width: 899px) {
  .p-movie__detail-title .p-in-text {
    font-size: 13.2vw;
    text-align: center;
    letter-spacing: 0.01em;
    margin-bottom: 4.5%;
  }
}
.p-movie__detail-title .p-in-text-item {
  width: 100%;
}
.p-movie__detail-link {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-main) 0.1s, transform 0.5s var(--ease-bound) 0.1s;
}
.p-scroll.is-active .p-movie__detail-link {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-movie__detail-link {
    width: 240px;
    position: absolute;
    left: 50%;
    transform: translate(10px, -50%);
    bottom: -29%;
  }
  .p-scroll.is-active .p-movie__detail-link {
    opacity: 1;
    transform: translate(-50%);
  }
}
.p-movie__detail-link .p-in-text {
  padding: 22px 27px;
  font-size: 1.6rem;
}
@media screen and (max-width: 899px) {
  .p-movie__detail-link .p-in-text {
    padding: 17px 27px;
  }
}
.p-movie__detail-link .p-in-text-icon {
  width: 10px;
  top: 50%;
  right: 22px;
}
@media screen and (max-width: 899px) {
  .p-movie__detail-link .p-in-text-icon {
    width: 8px;
    right: 18px;
  }
}

.p-introduction {
  padding: 134px 0 170px;
  background: url(../img/bg/bg_ptn2.jpg) repeat left top/30px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .p-introduction {
    padding: 20% 5% 57.2%;
  }
}

.p-introduction__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-introduction__deco-item {
  position: absolute;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s var(--ease-main) 0.1s, transform 0.5s var(--ease-bound) 0.1s, filter 0.5s var(--ease-main) 0.1s;
}
.p-introduction__deco-item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.p-introduction__deco-item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-introduction__deco-item:nth-of-type(3) {
  transition-delay: 0.3s;
}
.p-introduction__deco-item:nth-of-type(4) {
  transition-delay: 0.4s;
}
.p-introduction__deco-item:nth-of-type(5) {
  transition-delay: 0.5s;
}
.p-introduction__deco-item:nth-of-type(6) {
  transition-delay: 0.6s;
}
.p-introduction__deco-item:nth-of-type(7) {
  transition-delay: 0.7s;
}
.p-introduction__deco-item:nth-of-type(8) {
  transition-delay: 0.8s;
}
.p-introduction__deco-item:nth-of-type(9) {
  transition-delay: 0.9s;
}
.p-introduction__deco-item:nth-of-type(10) {
  transition-delay: 1s;
}
.p-scroll.is-active .p-introduction__deco-item {
  opacity: 1;
  transform: translateY(0);
}
.p-introduction__deco-item img {
  width: 100%;
}
.p-introduction__deco-item:nth-of-type(1) {
  width: 14.3%;
  top: -4.1%;
  left: 4.3%;
}
@media screen and (max-width: 899px) {
  .p-introduction__deco-item:nth-of-type(1) {
    width: 26.4%;
    top: -4.7%;
    left: 4.3%;
  }
}
.p-introduction__deco-item:nth-of-type(2) {
  width: 10%;
  top: 47.2%;
  right: -2.8%;
}
@media screen and (max-width: 899px) {
  .p-introduction__deco-item:nth-of-type(2) {
    width: 18.8%;
    top: 34.1%;
    right: -9.1%;
  }
}
.p-introduction__deco-item:nth-of-type(3) {
  width: 10%;
  bottom: 4.4%;
  left: 9.3%;
}
@media screen and (max-width: 899px) {
  .p-introduction__deco-item:nth-of-type(3) {
    width: 19%;
    bottom: 35.7%;
    left: -5.7%;
  }
}

.p-introduction__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 899px) {
  .p-introduction__title {
    margin-bottom: 9%;
  }
}
.p-introduction__title .p-in-text {
  font-size: 7.8rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--color-pink);
}
@media screen and (max-width: 899px) {
  .p-introduction__title .p-in-text {
    font-size: 10.3vw;
    letter-spacing: 0.02em;
  }
}
.p-introduction__title .p-in-text-item {
  width: 100%;
}

.p-introduction__contents {
  width: 71.4%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 67px 0 87px;
  text-align: center;
  border: 1px solid var(--color-black);
  box-shadow: 0px 4px 0px 0px var(--color-black);
  border-radius: 30px;
  position: relative;
  background: var(--color-pink03) url(../img/bg/bg_ptn4-pink.png) repeat center/27.5px;
  opacity: 0;
  transition: opacity 0.7s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-introduction__contents {
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-introduction__contents {
    width: 100%;
    padding: 11% 0 13.7%;
    border-radius: 16px;
  }
}
.p-introduction__contents-detail p {
  font-size: 1.8rem;
  margin-bottom: 23px;
  font-weight: 500;
  line-height: 1.96;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.7s var(--ease-main) 0.1s, transform 0.7s var(--ease-bound) 0.1s, filter 0.5s var(--ease-main) 0.1s;
}
.p-introduction__contents-detail p:nth-of-type(1) {
  transition-delay: 0.2s;
}
.p-introduction__contents-detail p:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-introduction__contents-detail p:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-introduction__contents-detail p:nth-of-type(4) {
  transition-delay: 0.5s;
}
.p-introduction__contents-detail p:nth-of-type(5) {
  transition-delay: 0.6s;
}
.p-introduction__contents-detail p:nth-of-type(6) {
  transition-delay: 0.7s;
}
.p-introduction__contents-detail p:nth-of-type(7) {
  transition-delay: 0.8s;
}
.p-introduction__contents-detail p:nth-of-type(8) {
  transition-delay: 0.9s;
}
.p-introduction__contents-detail p:nth-of-type(9) {
  transition-delay: 1s;
}
.p-introduction__contents-detail p:nth-of-type(10) {
  transition-delay: 1.1s;
}
.p-scroll.is-active .p-introduction__contents-detail p {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-detail p {
    margin-bottom: 5.6%;
    font-size: 3.5vw;
  }
}
.p-introduction__contents-detail p:nth-of-type(2) {
  font-size: 2rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-detail p:nth-of-type(2) {
    font-size: 3.8vw;
    margin-top: 3%;
    line-height: 1.95;
  }
}
.p-introduction__contents-detail .p-in-head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 28px;
  font-size: 2.3rem;
  line-height: 1;
  padding: 9px;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-pink);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-detail .p-in-head {
    display: inline;
    padding: 0 2.2%;
    font-size: 4.3vw;
    line-height: 1.7;
  }
}
.p-introduction__contents-detail .p-in-strong {
  margin-bottom: 0;
  font-size: 2.6rem;
  color: var(--color-pink);
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-detail .p-in-strong {
    font-size: 4.6vw;
  }
}
.p-introduction__contents-image-item {
  position: absolute;
}
.p-introduction__contents-image-item img {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s var(--ease-main) 0.1s, transform 0.7s var(--ease-bound) 0.1s, filter 0.5s var(--ease-main) 0.1s;
}
.p-introduction__contents-image-item:nth-of-type(1) img {
  transition-delay: 0.2s;
}
.p-introduction__contents-image-item:nth-of-type(2) img {
  transition-delay: 0.3s;
}
.p-introduction__contents-image-item:nth-of-type(3) img {
  transition-delay: 0.4s;
}
.p-introduction__contents-image-item:nth-of-type(4) img {
  transition-delay: 0.5s;
}
.p-introduction__contents-image-item:nth-of-type(5) img {
  transition-delay: 0.6s;
}
.p-introduction__contents-image-item:nth-of-type(6) img {
  transition-delay: 0.7s;
}
.p-introduction__contents-image-item:nth-of-type(7) img {
  transition-delay: 0.8s;
}
.p-introduction__contents-image-item:nth-of-type(8) img {
  transition-delay: 0.9s;
}
.p-introduction__contents-image-item:nth-of-type(9) img {
  transition-delay: 1s;
}
.p-introduction__contents-image-item:nth-of-type(10) img {
  transition-delay: 1.1s;
}
.p-scroll.is-active .p-introduction__contents-image-item img {
  opacity: 1;
  transform: translateY(0);
}
.p-introduction__contents-image-item:nth-of-type(1) {
  width: 36.7%;
  top: 0;
  right: 0;
  transform: translate(58.8%, -36.3%);
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-image-item:nth-of-type(1) {
    width: 35.6%;
    transform: translate(12.4%, -28.3%);
  }
}
.p-introduction__contents-image-item:nth-of-type(2) {
  width: 33.3%;
  top: 24.6%;
  left: 0;
}
@media screen and (min-width: 900px) {
  .p-introduction__contents-image-item:nth-of-type(2) {
    transform: translateX(-54.8%);
  }
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-image-item:nth-of-type(2) {
    width: 49.5%;
    top: auto;
    bottom: -18.6%;
    right: 0;
  }
}
.p-introduction__contents-image-item:nth-of-type(3) {
  width: 30.5%;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 900px) {
  .p-introduction__contents-image-item:nth-of-type(3) {
    transform: translate(16.8%, 19.7%);
  }
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-image-item:nth-of-type(3) {
    width: 45.5%;
    bottom: -24.9%;
  }
}
.p-introduction__contents-link {
  width: 280px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) scale(1.05);
  opacity: 0;
  transition: opacity 0.7s var(--ease-main) 0.1s, transform 0.7s var(--ease-bound) 0.1s, filter 0.5s var(--ease-main) 0.1s;
}
.p-introduction__contents-link:nth-of-type(1) {
  transition-delay: 0.2s;
}
.p-introduction__contents-link:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-introduction__contents-link:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-introduction__contents-link:nth-of-type(4) {
  transition-delay: 0.5s;
}
.p-introduction__contents-link:nth-of-type(5) {
  transition-delay: 0.6s;
}
.p-introduction__contents-link:nth-of-type(6) {
  transition-delay: 0.7s;
}
.p-introduction__contents-link:nth-of-type(7) {
  transition-delay: 0.8s;
}
.p-introduction__contents-link:nth-of-type(8) {
  transition-delay: 0.9s;
}
.p-introduction__contents-link:nth-of-type(9) {
  transition-delay: 1s;
}
.p-introduction__contents-link:nth-of-type(10) {
  transition-delay: 1.1s;
}
.p-scroll.is-active .p-introduction__contents-link {
  opacity: 1;
  transform: translate(-50%, 50%) scale(1);
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-link {
    width: 72%;
  }
}
.p-introduction__contents-link .p-in-text {
  padding: 20px 27px 21px;
  font-size: 1.7rem;
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-link .p-in-text {
    padding: 7% 4%;
    font-size: 4vw;
  }
}
.p-introduction__contents-link .p-in-text-icon {
  width: 9px;
  right: 25px;
}
@media screen and (max-width: 899px) {
  .p-introduction__contents-link .p-in-text-icon {
    width: 2.8%;
    right: 8%;
  }
}