@keyframes scrollDown {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@keyframes scrollDown2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@keyframes loop_x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pcircle {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}
@keyframes rotate_y {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes top_logo {
  0% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes loading {
  0% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(720deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@keyframes deco_kaku {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(10deg);
  }
}
@keyframes deco_kaku2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-10deg);
  }
}
.p-hero {
  position: fixed;
  width: 100%;
  height: 100vh;
  min-height: 45vw;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-content .p-hero {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__inner {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.p-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 20%;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  z-index: 1;
}
.p-hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/kv_bg_ptn_pc.jpg) repeat center center;
  background-size: 499px;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-hero__bg {
    background: url(../img/kv_bg_ptn_sp.jpg) repeat center center;
    background-size: 248px;
  }
}
.is-content .p-hero__bg {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65.5%;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .p-hero__content {
    width: 122.5%;
  }
}
.p-hero__content-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 65.5%;
}
@media screen and (max-width: 959px) {
  .p-hero__content-inner {
    width: 93.5%;
  }
}
.p-hero__base {
  filter: drop-shadow(20px 20px 60px rgba(0, 0, 0, 0.1));
  transform: scale(0.9);
  opacity: 0;
}
.is-end .p-hero__base {
  opacity: 1;
  transform: scale(1);
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__logo {
  width: 64%;
  margin: 0 auto;
  transform: translateY(18%);
  opacity: 0;
}
@media screen and (max-width: 959px) {
  .p-hero__logo {
    width: 94%;
  }
}
.is-end .p-hero__logo {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.p-hero__logo img {
  transform: rotateY(360deg);
}
.is-end .p-hero__logo img {
  animation: top_logo 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.1s forwards;
}
.p-hero__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-hero__deco-item {
  width: 16.5%;
  position: absolute;
  transform: scale(0.7);
  opacity: 0;
}
.is-end .p-hero__deco-item {
  opacity: 1;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-end .p-hero__deco-item:nth-child(1) {
  transition-delay: 0.3s;
}
.is-end .p-hero__deco-item:nth-child(2) {
  transition-delay: 0.43s;
}
.is-end .p-hero__deco-item:nth-child(3) {
  transition-delay: 0.56s;
}
.is-end .p-hero__deco-item:nth-child(4) {
  transition-delay: 0.69s;
}
.is-end .p-hero__deco-item:nth-child(5) {
  transition-delay: 0.82s;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item {
    width: 22%;
  }
}
.p-hero__deco-item.-d1 {
  top: 11.5%;
  left: 2.5%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d1 {
    top: -10.5%;
    left: 4.5%;
  }
}
.p-hero__deco-item.-d2 {
  top: 24.5%;
  right: -1%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d2 {
    top: auto;
    bottom: -6%;
    right: 1%;
  }
}
.p-hero__deco-item.-d3 {
  top: -15.5%;
  left: 22%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d3 {
    top: -37.5%;
    left: 23%;
  }
}
.p-hero__deco-item.-d4 {
  top: -9.5%;
  right: 12%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d4 {
    top: 0%;
    right: 7%;
  }
}
.p-hero__deco-item.-d5 {
  top: 67.5%;
  left: 5%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d5 {
    bottom: -16.5%;
    left: 6%;
    top: auto;
  }
}
.p-hero__scroll {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1%;
  opacity: 0;
}
.is-end .p-hero__scroll {
  animation: scrollDown2 2s cubic-bezier(0.25, 1, 0.5, 1) infinite forwards 0.5s;
}
.p-hero__scroll-item {
  opacity: 0;
  width: 8px;
  transform: translateY(-15px);
}
@media screen and (max-width: 959px) {
  .p-hero__scroll-item {
    width: 6px;
  }
}
.p-hero__scroll-item + .p-hero__scroll-item {
  margin-top: 8px;
}
@media screen and (max-width: 959px) {
  .p-hero__scroll-item + .p-hero__scroll-item {
    margin-top: 7px;
  }
}
.is-end .p-hero__scroll-item:nth-child(1) {
  animation: scrollDown 2s cubic-bezier(0.25, 1, 0.5, 1) infinite forwards 0.5s;
}
.is-end .p-hero__scroll-item:nth-child(2) {
  animation: scrollDown 2s cubic-bezier(0.25, 1, 0.5, 1) infinite forwards 0.7s;
}
.is-end .p-hero__scroll-item:nth-child(3) {
  animation: scrollDown 2s cubic-bezier(0.25, 1, 0.5, 1) infinite forwards 0.9s;
}
.p-hero__main {
  transform: translateY(7%);
}
@media screen and (max-width: 959px) {
  .p-hero__main {
    transform: translateY(8%);
  }
}
.p-hero__ribbonarea {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 55vw;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-content .p-hero__ribbonarea {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__ribbon {
  position: absolute;
  top: -187px;
  left: -10.5%;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .p-hero__ribbon {
    top: -6%;
    transform: rotate(-17deg);
    width: 198%;
    left: -77.5%;
  }
}
.p-hero__ribbon img {
  transform: translateY(-20%);
  opacity: 0;
}
.is-end .p-hero__ribbon img {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__ribbon2 {
  position: absolute;
  top: -66px;
  right: -10%;
  width: 35%;
}
@media screen and (max-width: 959px) {
  .p-hero__ribbon2 {
    top: -0.5%;
    right: -25%;
    transform: rotate(-29deg);
    width: 65%;
  }
}
.p-hero__ribbon2 img {
  transform: translateY(-40%);
  opacity: 0;
}
.is-end .p-hero__ribbon2 img {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__ribbon3 {
  position: absolute;
  left: 60.5%;
  transform: translateX(-50%);
  bottom: -154px;
  width: 137%;
}
@media screen and (max-width: 959px) {
  .p-hero__ribbon3 {
    width: 255%;
    bottom: -7%;
    left: 41%;
  }
}
.p-hero__ribbon3 img {
  transform: translateY(20%);
  opacity: 0;
}
.is-end .p-hero__ribbon3 img {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.empty_area {
  height: 100vh;
  min-height: 50vw;
}

.l-content__inner {
  padding: 50vh 0 0;
}

.p-about {
  position: relative;
  padding: 19.9% 0 36%;
}
@media screen and (max-width: 959px) {
  .p-about {
    padding: 27.9% 0 78%;
  }
}
.p-about__inner {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
}
.p-about__ttl {
  margin: 0 auto;
  width: 90%;
  max-width: 530px;
  margin-bottom: 67px;
  transform: translateY(45px);
  opacity: 0;
  transition: transform 1.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-about.is-active .p-about__ttl {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 959px) {
  .p-about__ttl {
    width: 78%;
    margin-bottom: 35px;
  }
}
.p-about__catch {
  text-align: center;
  margin-bottom: 49px;
  transform: translateY(35px);
  opacity: 0;
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-about.is-active .p-about__catch {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
@media screen and (max-width: 959px) {
  .p-about__catch {
    margin-bottom: 30px;
  }
}
.p-about__catch-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #a22525;
  color: #fff;
  margin: 0 auto;
  font-size: 2.8rem;
  color: #e9deb6;
  padding: 5px 15px;
  font-weight: 600;
}
@media screen and (max-width: 959px) {
  .p-about__catch-item {
    padding: 3px 10px 5px;
    font-size: 1.5rem;
  }
}
.p-about__catch-item + .p-about__catch-item {
  margin-top: 18px;
}
@media screen and (max-width: 959px) {
  .p-about__catch-item + .p-about__catch-item {
    margin-top: 11px;
  }
}
.p-about__imgs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 2000px;
}
.p-about__imgs-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-about__imgs-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.p-about__imgs-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-about__imgs-slide.is-current img {
  opacity: 1;
  transform: scale(1);
  transition: transform 5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-about__imgs-slide img {
  opacity: 0;
  transform: scale(1.05);
  transition: transform 5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-about__imgs-item {
  position: absolute;
}
.p-about__imgs-item.-img1 {
  top: 0;
  right: 15%;
  width: 23%;
  padding-top: 13%;
}
@media screen and (max-width: 959px) {
  .p-about__imgs-item.-img1 {
    top: 0;
    right: 0%;
    width: 31%;
    padding-top: 17%;
  }
}
.p-about__imgs-item.-img2 {
  top: 9.5vw;
  left: 1%;
  width: 23%;
  padding-top: 16%;
}
@media screen and (max-width: 959px) {
  .p-about__imgs-item.-img2 {
    top: 11.5vw;
    left: 1%;
    width: 30%;
    padding-top: 21%;
  }
}
.p-about__imgs-item.-img3 {
  top: 34vw;
  right: -2%;
  width: 20.5%;
  padding-top: 13%;
}
@media screen and (max-width: 959px) {
  .p-about__imgs-item.-img3 {
    top: 97vw;
    right: -2%;
    width: 29.5%;
    padding-top: 16.5%;
  }
}
.p-about__imgs-item.-img4 {
  top: 45.5vw;
  left: 8.5%;
  width: 23%;
  padding-top: 13%;
}
@media screen and (max-width: 959px) {
  .p-about__imgs-item.-img4 {
    top: 120.5vw;
    left: 0.5%;
    width: 27%;
    padding-top: 17%;
  }
}
.p-about__imgs-item.-img5 {
  bottom: 24vw;
  left: -3%;
  width: 23%;
  padding-top: 13%;
}
@media screen and (max-width: 959px) {
  .p-about__imgs-item.-img5 {
    bottom: 39vw;
    left: 1%;
    width: 25%;
    padding-top: 17%;
  }
}
.p-about__imgs-item.-img6 {
  bottom: 18.5vw;
  right: -7%;
  width: 23%;
  padding-top: 13%;
}
@media screen and (max-width: 959px) {
  .p-about__imgs-item.-img6 {
    bottom: 21vw;
    right: -2%;
    width: 30%;
    padding-top: 17%;
  }
}
.p-about__imgs-item.-img7 {
  bottom: 5.5vw;
  right: 13%;
  width: 28.5%;
  padding-top: 16%;
}
@media screen and (max-width: 959px) {
  .p-about__imgs-item.-img7 {
    bottom: 4vw;
    right: 12%;
    width: 37.5%;
    padding-top: 21%;
  }
}
.p-about__imgs-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-about__confetti {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 2000px;
  pointer-events: none;
}
.p-about__confetti-item {
  position: absolute;
}
.p-about__confetti-item.-ribbon1 {
  top: 7vw;
  right: -2%;
  width: 12%;
}
@media screen and (max-width: 959px) {
  .p-about__confetti-item.-ribbon1 {
    top: 10vw;
    right: -6%;
    width: 23%;
  }
}
.p-about__confetti-item.-ribbon2 {
  top: 25.5vw;
  right: 6%;
  width: 15.5%;
}
@media screen and (max-width: 959px) {
  .p-about__confetti-item.-ribbon2 {
    top: 53.5vw;
    right: 10%;
    width: 28.5%;
  }
}
.p-about__confetti-item.-ribbon3 {
  bottom: 5.5vw;
  left: -14.5%;
  width: 64.5%;
}
@media screen and (max-width: 959px) {
  .p-about__confetti-item.-ribbon3 {
    bottom: 7.5vw;
    left: -36.5%;
    width: 119.5%;
  }
}
.p-about__confetti-item.-ribbon4 {
  bottom: -2vw;
  right: 6%;
  width: 15.5%;
}
@media screen and (max-width: 959px) {
  .p-about__confetti-item.-ribbon4 {
    bottom: -6vw;
    right: 0%;
    width: 28.5%;
  }
}
.p-about__lead {
  position: relative;
  text-align: center;
  line-height: 2.5;
  color: #b39242;
  font-weight: 600;
  font-size: 1.8rem;
  transform: translateY(35px);
  opacity: 0;
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-about.is-active .p-about__lead {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
@media screen and (max-width: 959px) {
  .p-about__lead {
    font-size: 1.3rem;
  }
}
.p-about__lead-item.-large {
  font-size: 23px;
  line-height: 2;
}
@media screen and (max-width: 959px) {
  .p-about__lead-item.-large {
    font-size: 1.5rem;
  }
}
.p-about__lead-item + .p-about__lead-item {
  margin-top: 35px;
}
@media screen and (max-width: 959px) {
  .p-about__lead-item + .p-about__lead-item {
    margin-top: 25px;
  }
}

.p-news {
  margin: 0 auto;
  margin-top: -4.3%;
  width: 85%;
  max-width: 1200px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-news {
    width: 84%;
    margin-top: 2.5%;
  }
}
.p-news__content {
  margin: 0 auto;
  width: 83.5%;
}
@media screen and (max-width: 959px) {
  .p-news__content {
    width: 100%;
  }
}
.p-news__ttl {
  width: 27.7rem;
  margin-bottom: 78px;
  transform: translateX(-35px);
  opacity: 0;
  transition: transform 1.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-news.is-active .p-news__ttl {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 959px) {
  .p-news__ttl {
    width: 14rem;
    margin-bottom: 30px;
  }
}
.p-news__list-item {
  border-top: 1px solid #b39242;
  transform: translateY(35px);
  opacity: 0;
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-news.is-active .p-news__list-item {
  opacity: 1;
  transform: translateY(0);
}
.p-news.is-active .p-news__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.p-news.is-active .p-news__list-item:nth-child(2) {
  transition-delay: 0.33s;
}
.p-news.is-active .p-news__list-item:nth-child(3) {
  transition-delay: 0.46s;
}
.p-news__list-item:last-child {
  border-bottom: 1px solid #b39242;
}
.p-news__list-inner {
  padding: 21px 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-news__list-inner {
    padding: 14px 0px;
    display: block;
  }
}
.p-news__list-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(179, 146, 66, 0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .p-news__list-inner:hover::before {
    opacity: 1;
  }
  .p-news__list-inner:hover .p-news__list-ttl {
    color: #b39242;
  }
}
.p-news__list-date {
  display: flex;
  align-items: center;
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  color: #ca4949;
  flex-shrink: 0;
  width: 18.2rem;
  height: 100%;
  position: relative;
  margin-right: 26px;
}
@media screen and (max-width: 959px) {
  .p-news__list-date {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
  }
  .p-news__list-date.is-pc {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .p-news__list-date.is-sp {
    display: none;
  }
}
.p-news__list-date::before {
  content: "";
  width: 1.4rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/ic_star.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-news__list-date::before {
    width: 1rem;
  }
}
.p-news__list-date .p-in_year {
  font-size: 1.9rem;
  flex-shrink: 0;
  letter-spacing: -0.5px;
  margin-right: 9px;
}
.p-news__list-date .p-in_date {
  font-size: 3.7rem;
}
.p-news__list-ttl {
  position: relative;
  line-height: 1.6;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0.3px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .p-news__list-ttl {
    letter-spacing: 0;
    line-height: 1.5;
    font-size: 1.2rem;
  }
}
.p-news__more {
  text-align: right;
  margin-top: 22px;
  transform: translateY(35px);
  opacity: 0;
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-news.is-active .p-news__more {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
@media screen and (max-width: 959px) {
  .p-news__more {
    margin-top: 16px;
  }
}

.p-movie {
  padding: 0 20px;
  margin-top: 13.3%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .p-movie {
    padding: 0 12px;
    margin-top: 32.5%;
  }
}
.p-movie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-mask: url(../img/movie_mask_pc.svg) no-repeat center center;
  mask: url(../img/movie_mask_pc.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media screen and (max-width: 959px) {
  .p-movie::before {
    -webkit-mask: url(../img/movie_mask_sp.svg) no-repeat center center;
    mask: url(../img/movie_mask_sp.svg) no-repeat center center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}
.p-movie__frame {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.p-movie__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.p-movie__ribbon.is-sp {
  z-index: 0;
}
.p-movie__ribbon-item {
  position: absolute;
}
.p-movie__ribbon-item.-ribbon1 {
  top: -46%;
  right: -14%;
  width: 67%;
}
@media screen and (max-width: 959px) {
  .p-movie__ribbon-item.-ribbon1 {
    top: -64%;
    right: -42%;
    width: 120%;
  }
}
.p-movie__ribbon-item.-ribbon2 {
  top: -17%;
  left: 5%;
  width: 19.5%;
}
@media screen and (max-width: 959px) {
  .p-movie__ribbon-item.-ribbon2 {
    top: -29%;
    left: -7%;
    width: 36.5%;
  }
}
.p-movie__ribbon-item.-ribbon3 {
  bottom: -15%;
  right: 3%;
  width: 12%;
}
@media screen and (max-width: 959px) {
  .p-movie__ribbon-item.-ribbon3 {
    bottom: -6%;
    right: 2%;
    width: 21%;
  }
}
.p-movie__ribbon-item.-ribbon4 {
  bottom: -50%;
  left: -34%;
  width: 100%;
}
.p-movie__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding-top: 44%;
  cursor: pointer;
  background-color: gray;
  -webkit-mask: url(../img/movie_mask_pc.svg) no-repeat center center;
  mask: url(../img/movie_mask_pc.svg) no-repeat center center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}
@media screen and (max-width: 959px) {
  .p-movie__content {
    -webkit-mask: url(../img/movie_mask_sp.svg) no-repeat center center;
    mask: url(../img/movie_mask_sp.svg) no-repeat center center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    padding-top: 57%;
  }
}
@media (hover: hover) {
  .p-movie__content:hover .p-movie__thumb::after {
    opacity: 1;
  }
}
.p-movie__thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  pointer-events: none;
}
.p-movie__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-movie__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-movie__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.5%;
}
@media screen and (max-width: 959px) {
  .p-movie__play {
    width: 18.5%;
  }
}
.p-movie__play-base {
  animation: loop_rotate 15s linear infinite;
}
.p-movie__play-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.p-campaign {
  padding-top: 149px;
  margin-top: -3.5%;
  padding-bottom: 72px;
  position: relative;
  background: url(../img/bg_ptn_red_pc.jpg) repeat center top;
  background-size: 504px;
}
@media screen and (max-width: 959px) {
  .p-campaign {
    padding-top: 75px;
    margin-top: -4%;
    background: url(../img/bg_ptn_red_sp.jpg) repeat center top;
    background-size: 248px;
  }
}
.p-campaign__ribbon {
  position: absolute;
  top: 3.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 96.5%;
  pointer-events: none;
}
.p-campaign__ribbon-item {
  position: absolute;
}
.p-campaign__ribbon-item.-ribbon1 {
  top: 0;
  left: -14.5%;
  width: 64%;
  transform: translateY(11%);
}
.p-campaign__ribbon-item.-ribbon1 img {
  transform: translate(-5%, -5%);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-campaign.is-active .p-campaign__ribbon-item.-ribbon1 img {
  opacity: 1;
  transform: translate(0, 0);
}
.p-campaign__ribbon-item.-ribbon2 {
  top: 0;
  right: 11.5%;
  width: 15.5%;
  transform: translateY(73%) rotate(21deg);
}
@media screen and (max-width: 959px) {
  .p-campaign__ribbon-item.-ribbon2 {
    right: -4.5%;
    width: 29.5%;
    transform: translateY(35%) rotate(21deg);
  }
}
.p-campaign__ribbon-item.-ribbon2 img {
  transform: translate(10%, 10%);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-campaign.is-active .p-campaign__ribbon-item.-ribbon2 img {
  opacity: 1;
  transform: translate(0, 0);
}
.p-campaign__ttl {
  margin: 0 auto;
  margin-bottom: 80px;
  width: 50.7rem;
  transform: translateY(35px);
  opacity: 0;
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-campaign__ttl {
    width: 25.2rem;
    margin-bottom: 30px;
  }
}
.p-campaign.is-active .p-campaign__ttl {
  opacity: 1;
  transform: translateY(0);
}
.p-campaign__inner {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1080px;
}
.p-campaign__bnr {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(35px);
  opacity: 0;
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-campaign.is-active .p-campaign__bnr {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
@media screen and (max-width: 959px) {
  .p-campaign__bnr {
    display: block;
  }
}
.p-campaign__bnr-item {
  width: 46.5%;
  margin-right: 7%;
  margin-bottom: 7%;
  text-align: center;
  position: relative;
}
.p-campaign__bnr-item:nth-child(2n+1) .p-campaign__bnr-thumb::after {
  animation: deco_kaku steps(2) 1.8s infinite forwards;
}
.p-campaign__bnr-item:nth-child(2n) .p-campaign__bnr-thumb::after {
  animation: deco_kaku2 steps(2) 1.8s infinite forwards;
}
@media screen and (max-width: 959px) {
  .p-campaign__bnr-item {
    width: 88.5%;
    margin: 0 auto;
  }
  .p-campaign__bnr-item + .p-campaign__bnr-item {
    margin-top: 8%;
  }
}
@media screen and (min-width: 960px) {
  .p-campaign__bnr-item:nth-child(2n) {
    transform: translateY(21%);
    margin-right: 0;
  }
}
.p-campaign__bnr-item a {
  display: block;
  text-decoration: none;
}
@media (hover: hover) {
  .p-campaign__bnr-item a:hover img {
    transform: scale(1.05);
  }
}
.p-campaign__bnr-thumb {
  position: relative;
}
.p-campaign__bnr-thumb::after {
  content: "";
  width: 28%;
  padding-top: 28%;
  position: absolute;
  bottom: -4%;
  right: -12%;
}
@media screen and (max-width: 959px) {
  .p-campaign__bnr-thumb::after {
    right: -10%;
  }
}
.p-campaign__bnr-item:nth-child(2n) .p-campaign__bnr-thumb::after {
  bottom: 2%;
}
.p-campaign__bnr-item:nth-child(5n+1) .p-campaign__bnr-thumb::after {
  background: url(../img/illust_popcorn.png) no-repeat center center;
  background-size: contain;
}
.p-campaign__bnr-item:nth-child(5n+2) .p-campaign__bnr-thumb::after {
  background: url(../img/illust_clapperboard.png) no-repeat center center;
  background-size: contain;
}
.p-campaign__bnr-item:nth-child(5n+3) .p-campaign__bnr-thumb::after {
  background: url(../img/illust_tickets.png) no-repeat center center;
  background-size: contain;
}
.p-campaign__bnr-item:nth-child(5n+4) .p-campaign__bnr-thumb::after {
  background: url(../img/illust_pretzels.png) no-repeat center center;
  background-size: contain;
}
.p-campaign__bnr-item:nth-child(5n+5) .p-campaign__bnr-thumb::after {
  right: -8%;
  background: url(../img/illust_film.png) no-repeat center center;
  background-size: contain;
}
.p-campaign__bnr-thumb img {
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-campaign__bnr-ttl {
  color: #e9deb6;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-top: 17px;
}
@media screen and (max-width: 959px) {
  .p-campaign__bnr-ttl {
    margin-top: 6px;
    font-size: 1.2rem;
  }
}

.p-gallery {
  position: relative;
  z-index: 2;
}
.p-gallery__bg {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_ptn_black.jpg) repeat 0 0;
  background-size: 750px;
  box-shadow: inset 0px 0px 100px 0px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.37, 0, 0.63, 1) 0.2s;
}
.is-gallery .p-gallery__bg {
  opacity: 1;
  transition-delay: 0s;
}
.p-gallery__base {
  width: 100%;
  height: 10000px;
  display: block;
  position: relative;
  background-color: red;
}
.p-gallery__inner {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.p-gallery__content {
  height: 100vh;
  overflow: hidden;
}
.p-gallery__content-inner {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  position: relative;
}
.p-gallery__shadow {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-gallery .p-gallery__shadow {
  opacity: 1;
  transition-delay: 0.1s;
}
.p-gallery__block {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  padding: 20px 0;
}
.p-gallery__block.-first {
  width: 100vw;
}
.p-gallery__block.-long {
  width: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .p-gallery__block.-long {
    padding-left: 10vh;
  }
}
@media screen and (max-width: 959px) {
  .p-gallery__block {
    padding: 50px 0;
  }
}
.p-gallery__first {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 85vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(3.5%);
}
@media screen and (max-width: 959px) {
  .p-gallery__first {
    flex-direction: column;
    justify-content: center;
    transform: translateX(0);
    text-align: center;
  }
}
.p-gallery__first-ttl {
  color: #b39242;
  font-size: 3rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-gallery .p-gallery__first-ttl {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 959px) {
  .p-gallery__first-ttl {
    margin-bottom: 12.5vh;
    font-size: 2rem;
  }
}
.p-gallery__first-logo {
  width: 28%;
  transform: translateY(18%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-gallery .p-gallery__first-logo {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 959px) {
  .p-gallery__first-logo {
    margin: 0 auto;
    margin-bottom: 11vh;
    width: 74%;
  }
}
.p-gallery__first-logo img {
  transform: rotateY(360deg);
}
.is-gallery .p-gallery__first-logo img {
  animation: top_logo 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.2s forwards;
}
.p-gallery__first-arrow {
  width: 29%;
  flex-shrink: 0;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-gallery .p-gallery__first-arrow {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 959px) {
  .p-gallery__first-arrow {
    margin: 0 auto;
    width: 64%;
  }
}
.p-gallery__poster {
  display: flex;
  padding: 20px 0;
}
.p-gallery__poster-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
}
.p-gallery__poster-head-text {
  font-family: "Bodoni Moda", serif;
  color: #e9deb6;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  margin: 0 18px;
}
@media screen and (max-width: 959px) {
  .p-gallery__poster-head-text {
    margin: 0 13px;
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
}
.p-gallery__poster-head-deco {
  flex-shrink: 0;
  width: 3.2rem;
}
@media screen and (max-width: 959px) {
  .p-gallery__poster-head-deco {
    width: 2.6rem;
  }
}
.p-gallery__poster-item {
  width: 23.3%;
  width: 400px;
  width: clamp(25rem, 1.923rem + 38.46vw, 80rem);
  height: 100%;
  flex-shrink: 0;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .p-gallery__poster-item {
    width: clamp(26rem, 1.923rem + 38.46vw, 80rem);
  }
}
.p-gallery__poster-item + .p-gallery__poster-item {
  margin-left: 3.6rem;
}
@media screen and (max-width: 959px) {
  .p-gallery__poster-item + .p-gallery__poster-item {
    margin-left: 2.3rem;
  }
}
.p-gallery__poster-thumb {
  position: relative;
  height: 85%;
  height: 70vh;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .p-gallery__poster-thumb {
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  .p-gallery__poster-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.p-gallery__poster-thumb-img img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 959px) {
  .p-gallery__poster-thumb-img img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 960px) {
  .p-gallery__poster-thumb-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-gallery__poster-frame {
  position: relative;
  height: 100%;
}
.p-gallery__poster-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
}
@media screen and (max-width: 959px) {
  .p-gallery__poster-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.p-gallery__poster-ttl {
  color: #e9deb6;
  font-family: "Bodoni Moda", "Noto Serif JP", serif;
  line-height: 1.6;
  margin-top: 2rem;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 959px) {
  .p-gallery__poster-ttl {
    margin-top: 1.5rem;
    font-size: 1.2rem;
  }
}
.p-gallery__poster-ttl .is-small {
  vertical-align: baseline;
  padding-left: 4px;
  font-size: 1.3rem;
}
@media screen and (max-width: 959px) {
  .p-gallery__poster-ttl .is-small {
    font-size: 1rem;
  }
}
.p-gallery__foot {
  flex-shrink: 0;
  width: 100vw;
  padding: 40px 40px;
}
@media screen and (max-width: 959px) {
  .p-gallery__foot {
    padding: 40px 2.2rem;
  }
}
.p-gallery__foot-text {
  color: #e9deb6;
  font-family: "Bodoni Moda", serif;
  margin: 0 auto;
  width: 34vw;
  height: 100%;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  filter: blur(3px);
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.37, 0, 0.63, 1), filter 0.7s cubic-bezier(0.37, 0, 0.63, 1);
}
.p-gallery__foot.is-end .p-gallery__foot-text {
  opacity: 1;
  filter: blur(0);
}
@media screen and (max-width: 959px) {
  .p-gallery__foot-text {
    width: 100%;
    font-size: 1.6rem;
  }
}