.p-opening {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: #eB002d;
  animation: op_fedeout 2s cubic-bezier(0.31, 1.35, 0.64, 1) 2.2s forwards;
  pointer-events: none;
}
@keyframes op_fedeout {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.p-opening::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  right: 10%;
  width: 120%;
  height: 0;
  padding-top: 120%;
  transform: translate(0, -50%) scale(0.1);
  transform-origin: bottom center;
  border-radius: 50%;
  background: #ffffff;
}
@media screen and (max-width: 900px) {
  .p-opening::after {
    left: -100%;
    right: 100%;
    width: 300%;
    padding-top: 300%;
  }
}
@keyframes scale_opbg {
  0% {
    transform: translate(0, -50%) scale(0.1);
  }
  100% {
    transform: translate(0, -50%) scale(1);
  }
}
.is-ready .p-opening::after {
  animation: scale_opbg 1.2s cubic-bezier(0.23, 0.93, 0.5, 1) 2.2s forwards;
}
.p-opening__container {
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-opening__logo {
  width: 26%;
  max-width: 500px;
  position: relative;
  display: flex;
}
@media screen and (max-width: 900px) {
  .p-opening__logo {
    width: 50%;
  }
}
.p-opening__logo-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24.5%;
  transform: translate(-50%, -50%);
}
.is-ready .p-opening__logo-mark {
  animation: move_mark 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
}
@keyframes move_mark {
  0% {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 0%;
    transform: translate(0, -50%);
  }
}
.is-ready .p-opening__logo-mark .p-in-mark {
  animation: rotate_mark 0.8s forwards;
}
.p-opening__logo-mark .p-in-mark svg {
  fill: #ffffff;
}
@keyframes rotate_mark {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.p-opening__logo-txt {
  flex: 1 1 0;
  margin-left: 29.5%;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.is-ready .p-opening__logo-txt {
  animation: show_logotext 0.8s cubic-bezier(0.23, 0.93, 0.5, 1) 1s forwards;
}
@keyframes show_logotext {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
.p-opening__logo-txt svg {
  fill: #ffffff;
}

.p-hero {
  margin-bottom: 8.5%;
}
@media screen and (max-width: 900px) {
  .p-hero {
    margin-bottom: 15.8%;
  }
}
.p-hero__container {
  position: relative;
}
.p-hero__list:hover .p-hero__img-inner {
  transform: scale(1.05);
}
.p-hero__list-item {
  position: relative;
}
.p-hero__ttl {
  position: absolute;
  bottom: 7.7%;
  left: 5.7%;
  z-index: 2;
  opacity: 0;
  transform: translateX(-50px);
}
@media screen and (max-width: 900px) {
  .p-hero__ttl {
    bottom: 7.2%;
  }
}
.swiper-slide-active .p-hero__ttl, .swiper-slide-duplicate-active .p-hero__ttl {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.7s cubic-bezier(0.23, 0.93, 0.5, 1), opacity 0.3s cubic-bezier(0.23, 0.93, 0.5, 1);
}

.p-hero__ttl-txt:nth-child(1) span::before {
  transition-delay: 0s;
}
.p-hero__ttl-txt:nth-child(2) span::before {
  transition-delay: 0.2s;
}
.p-hero__ttl-txt:nth-child(3) span::before {
  transition-delay: 0.4s;
}
.p-hero__ttl-txt:nth-child(4) span::before {
  transition-delay: 0.6s;
}
.p-hero__ttl-txt span {
  position: relative;
  display: inline-block;
  padding: 5px 17px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02rem;
  transform: rotate(0.03deg);
}
@media screen and (max-width: 900px) {
  .p-hero__ttl-txt span {
    padding: 4px 7px;
    font-size: 15px;
  }
}
.p-hero__ttl-txt span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eB002d;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
}
.swiper-slide-active .p-hero__ttl-txt span::before, .swiper-slide-duplicate-active .p-hero__ttl-txt span::before {
  transform: scaleX(1);
  transition-property: transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.23, 0.93, 0.5, 1);
}

.p-hero__ttl-txt + .p-hero__ttl-txt {
  margin-top: 5px;
}
@media screen and (max-width: 900px) {
  .p-hero__ttl-txt + .p-hero__ttl-txt {
    margin-top: 4px;
  }
}
.p-hero__img {
  position: relative;
  display: block;
  width: 92.8571428571%;
  margin-left: auto;
  border-radius: 120px 0 0 120px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .p-hero__img {
    width: 89.3333333333%;
    border-radius: 60px 0 0 60px;
  }
}
.p-hero__img-inner {
  width: 100%;
  padding-top: 50%;
  transition: transform 0.8s cubic-bezier(0.23, 0.93, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-hero__img-inner {
    padding-top: 122.3880597015%;
  }
}
.p-hero__img-inner .p-in-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
}
.p-hero__pagination {
  position: absolute;
  top: 50%;
  left: 2.5%;
  z-index: 1;
  transform: translateY(-58%);
}
@media screen and (max-width: 900px) {
  .p-hero__pagination {
    transform: translateY(-50%);
  }
}

.p-intro {
  margin-bottom: 10.6%;
}
@media screen and (max-width: 900px) {
  .p-intro {
    margin-bottom: 19%;
  }
}
.p-intro__container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.is-menu-open .p-intro__container {
  z-index: 0;
}
.p-intro__deco-item {
  position: absolute;
  z-index: -1;
  transform: scale(0.3);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.31, 1.35, 0.64, 1), opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
}
.is-active .p-intro__deco-item {
  transform: scale(1);
  opacity: 1;
}
.p-intro__deco-item01 {
  top: -5.5%;
  right: 0;
  width: 20%;
}
.p-intro__deco-item02 {
  top: 14.4%;
  left: -8.5%;
  width: 21.6666666667%;
  transition-delay: 0.1s;
}
.p-intro__deco-item03 {
  top: 79%;
  left: 6.7%;
  width: 13.3333333333%;
  transition-delay: 0.2s;
  z-index: 1;
}
.p-intro__logo {
  width: 117px;
  margin: 0 auto 29px;
}
@media screen and (max-width: 900px) {
  .p-intro__logo {
    width: 91px;
    margin-bottom: 22px;
  }
}
.p-intro__desc {
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 800;
  font-size: 18px;
  transform: rotate(0.03deg);
}
@media screen and (max-width: 900px) {
  .p-intro__desc {
    margin: 0 calc(-50vw + 50%) 18px;
    font-size: 14.5px;
    line-height: 1.75;
  }
}
@media not all and (max-width: 900px) {
  .p-intro__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70.8333333333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 900px) {
  .p-intro__link {
    width: 65.671641791%;
    margin: 0 auto;
  }
}
.p-intro__link-btn {
  width: 31.7647058824%;
}
@media screen and (max-width: 900px) {
  .p-intro__link-btn {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
}
@media not all and (max-width: 900px) {
  .p-intro__link-btn + .p-intro__link-btn {
    margin-left: 2.3529411765%;
  }
}
@media screen and (max-width: 900px) {
  .p-intro__link-btn + .p-intro__link-btn {
    margin-top: 10px;
  }
}

.p-topics {
  position: relative;
  padding-top: 9.3%;
  padding-bottom: 11.7%;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1), opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-topics {
    padding-top: 14.6%;
    padding-bottom: 17.2%;
  }
}
.p-topics.is-active {
  transform: translateY(0);
  opacity: 1;
}
.p-topics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f2efed;
  border-radius: 125px 125px 0 0;
}
@media screen and (max-width: 900px) {
  .p-topics::before {
    border-radius: 60px 60px 0 0;
  }
}
.p-topics__container {
  position: relative;
}
.p-topics__ttl {
  margin-bottom: 55px;
  color: #eB002d;
  text-align: center;
  font-size: 64px;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 1060px) {
  .p-topics__ttl {
    font-size: 52px;
  }
}
@media screen and (max-width: 900px) {
  .p-topics__ttl {
    margin-bottom: 30px;
    font-size: 44px;
  }
}
.p-topics__ttl span {
  display: inline-block;
  transform: rotate(30deg) translateY(30px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1), opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
}
.p-topics__ttl span:nth-child(1) {
  transition-delay: 0s;
}
.p-topics__ttl span:nth-child(2) {
  transition-delay: 0.08s;
}
.p-topics__ttl span:nth-child(3) {
  transition-delay: 0.16s;
}
.p-topics__ttl span:nth-child(4) {
  transition-delay: 0.24s;
}
.p-topics__ttl span:nth-child(5) {
  transition-delay: 0.32s;
}
.p-topics__ttl span:nth-child(6) {
  transition-delay: 0.4s;
}
.p-topics__ttl span:nth-child(7) {
  transition-delay: 0.48s;
}
.p-topics__ttl span:nth-child(8) {
  transition-delay: 0.56s;
}
.p-topics__ttl span:nth-child(9) {
  transition-delay: 0.64s;
}
.p-topics__ttl span:nth-child(10) {
  transition-delay: 0.72s;
}
.is-active .p-topics__ttl span {
  transform: rotate(0) translateY(0);
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .p-topics__slide {
    margin-bottom: 27px;
    margin-right: calc(-50vw + 50%);
    padding-right: 5%;
  }
}
.p-topics__list-item {
  max-width: 480px;
}
@media not all and (max-width: 900px) {
  .p-topics__more {
    position: absolute;
    top: 4.8%;
    right: 0;
    width: 130px;
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .p-topics__more {
    width: 107px;
    margin: 0 auto;
  }
}

.p-sns {
  background: #f2efed;
}
.p-sns__container {
  display: flex;
}
.p-sns__head {
  position: relative;
  background: #eB002d;
  border-radius: 0 120px 0 0;
  z-index: 2;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1), opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
}
@media not all and (max-width: 900px) {
  .p-sns__head {
    width: 34.2857142857%;
  }
}
@media screen and (max-width: 900px) {
  .p-sns__head {
    width: 21.3333333333%;
    border-radius: 0 60px 0 0;
  }
}
.is-active .p-sns__head {
  transform: translateY(0);
  opacity: 1;
}
.p-sns__head-inner {
  width: 80%;
  height: 100%;
  margin: 0 auto;
}
@media not all and (max-width: 900px) {
  .p-sns__head-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 900px) {
  .p-sns__head-inner {
    padding-top: 59%;
  }
}
.p-sns__ttl {
  color: #ffffff;
  font-size: 64px;
  letter-spacing: 0.08rem;
  line-height: 1;
}
@media not all and (max-width: 900px) {
  .p-sns__ttl {
    transform: translateY(8%);
  }
  @media screen and (max-width: 1060px) {
    .p-sns__ttl {
      font-size: 52px;
    }
  }
}
@media screen and (max-width: 900px) {
  .p-sns__ttl {
    margin: 0 auto;
    font-size: 28px;
    letter-spacing: 0.1rem;
    writing-mode: vertical-rl;
    transform: translateX(-18%);
  }
}
.p-sns__ttl span {
  display: inline-block;
  transform: rotate(30deg) translateY(30px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1), opacity 0.4s cubic-bezier(0.23, 0.93, 0.5, 1);
}
.p-sns__ttl span:nth-child(1) {
  transition-delay: 0s;
}
.p-sns__ttl span:nth-child(2) {
  transition-delay: 0.04s;
}
.p-sns__ttl span:nth-child(3) {
  transition-delay: 0.08s;
}
.p-sns__ttl span:nth-child(4) {
  transition-delay: 0.12s;
}
.p-sns__ttl span:nth-child(5) {
  transition-delay: 0.16s;
}
.p-sns__ttl span:nth-child(6) {
  transition-delay: 0.2s;
}
.p-sns__ttl span:nth-child(7) {
  transition-delay: 0.24s;
}
.p-sns__ttl span:nth-child(8) {
  transition-delay: 0.28s;
}
.p-sns__ttl span:nth-child(9) {
  transition-delay: 0.32s;
}
.p-sns__ttl span:nth-child(10) {
  transition-delay: 0.36s;
}
.p-sns__ttl span:nth-child(11) {
  transition-delay: 0.4s;
}
.p-sns__ttl span:nth-child(12) {
  transition-delay: 0.44s;
}
.p-sns__ttl span:nth-child(13) {
  transition-delay: 0.48s;
}
.p-sns__ttl span:nth-child(14) {
  transition-delay: 0.52s;
}
.p-sns__ttl span:nth-child(15) {
  transition-delay: 0.56s;
}
.p-sns__ttl span:nth-child(16) {
  transition-delay: 0.6s;
}
.p-sns__ttl span:nth-child(17) {
  transition-delay: 0.64s;
}
.p-sns__ttl span:nth-child(18) {
  transition-delay: 0.68s;
}
.p-sns__ttl span:nth-child(19) {
  transition-delay: 0.72s;
}
.p-sns__ttl span:nth-child(20) {
  transition-delay: 0.76s;
}
.is-active .p-sns__ttl span {
  transform: rotate(0) translateY(0);
  opacity: 1;
}
.p-sns__link {
  position: absolute;
  top: 20%;
  right: 0;
  width: 33.5%;
  transform: translate(50%, 0);
}
@media screen and (max-width: 900px) {
  .p-sns__link {
    top: auto;
    bottom: 8%;
    width: 120%;
    max-width: 120px;
  }
}
.p-sns__link:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
}
.p-sns__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  padding-top: 20%;
  transform: translate(-50%, -50%);
  background: #eB002d;
  -webkit-mask: url(../img/common/icon/icon_twitter.svg) center center no-repeat;
  mask: url(../img/common/icon/icon_twitter.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.23, 0.93, 0.5, 1);
}
.p-sns__link-img {
  display: block;
  transition: transform 1s cubic-bezier(0.23, 0.93, 0.5, 1);
}
.p-sns__link-img:hover {
  transform: rotate(360deg);
}
.p-sns__inner {
  position: relative;
  padding-bottom: 8%;
  flex-grow: 1;
}
@media screen and (max-width: 900px) {
  .p-sns__inner {
    padding-bottom: 5.8%;
  }
}
.p-sns__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26%;
  padding-top: 26%;
  background: #f2efed;
  border-radius: 50%;
}
@media screen and (max-width: 900px) {
  .p-sns__inner::after {
    width: 40%;
    padding-top: 40%;
  }
}
.p-sns__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 13%;
  padding-top: 13%;
  background: #eB002d;
}
@media screen and (max-width: 900px) {
  .p-sns__inner::before {
    width: 20%;
    padding-top: 20%;
  }
}
.p-sns__twitter {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media not all and (max-width: 900px) {
  .p-sns__twitter {
    width: 78%;
    padding-top: 8px;
  }
}
@media screen and (max-width: 900px) {
  .p-sns__twitter {
    width: 84%;
    padding-bottom: 8px;
  }
}
.p-sns__twitter-inner {
  position: relative;
  width: 100%;
  padding-top: min(56.96%, 400px);
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .p-sns__twitter-inner {
    padding-top: min(160.85%, 400px);
  }
}
.p-sns__twitter-inner > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-sns__twitter-inner > div iframe {
  width: 100% !important;
}