html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yuji Syuku", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  background: #c5b296;
}

img {
  max-width: 100%;
  height: auto;
}

body.scroll-lock {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-out;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-header {
    left: 22px;
    padding: 1.3vw 0 0;
    max-width: 492px;
    max-height: 136px;
    width: 25.6%;
    height: 7vw;
    background: url(../images/nav/bg_nav.png) no-repeat center center/contain;
  }
}
.l-header .l-header__navbtn {
  z-index: 1;
  position: relative;
  width: 16vw;
  height: 16vw;
  background: url(../images/nav/bg_nav_sp.png) no-repeat center center/contain;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .l-header .l-header__navbtn {
    display: none;
  }
}
.l-header .l-header__navbtn span {
  display: inline-block;
  transition: all 0.2s ease-in-out;
  position: absolute;
  left: 4vw;
  height: 4px;
  background-color: #dae3da;
  border-radius: 10px;
}
.l-header .l-header__navbtn span:nth-of-type(1) {
  transition: all 0.2s ease-in-out;
  top: 7vw;
  width: 50%;
}
.l-header .l-header__navbtn span:nth-of-type(2) {
  transition: all 0.2s ease-in-out;
  top: 10.5vw;
  width: 50%;
}
.l-header .l-header__navbtn span:nth-of-type(3) {
  transition: all 0.2s ease-in-out;
  top: 11.5vw;
  left: 0;
  transform: rotate(-45deg);
  width: 50%;
  background: #b23c0d;
  opacity: 0;
}
.l-header .l-header__navbtn span:nth-of-type(4) {
  transition: all 0.2s ease-in-out;
  top: 11.5vw;
  left: 7vw;
  transform: rotate(45deg);
  width: 50%;
  background: #b23c0d;
  opacity: 0;
}
.l-header .l-header__navbtn.is-navbtn__active span:nth-of-type(1) {
  animation: navbtnElement01 0.1s forwards;
}
@keyframes navbtnElement01 {
  0% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0 100% 0 0);
  }
}
.l-header .l-header__navbtn.is-navbtn__active span:nth-of-type(2) {
  animation: navbtnElement02 0.1s forwards;
}
@keyframes navbtnElement02 {
  0% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}
.l-header .l-header__navbtn.is-navbtn__active span:nth-of-type(3) {
  animation: navbtnElement03 0.1s forwards;
}
@keyframes navbtnElement03 {
  0% {
    top: 11.5vw;
    left: 0;
    opacity: 0;
    background: #b23c0d;
  }
  100% {
    top: 8.5vw;
    left: 4vw;
    opacity: 1;
    background: #ffffff;
  }
}
.l-header .l-header__navbtn.is-navbtn__active span:nth-of-type(4) {
  animation: navbtnElement04 0.1s 0.05s forwards;
}
@keyframes navbtnElement04 {
  0% {
    top: 11.5vw;
    left: 4vw;
    opacity: 0;
    background: #b23c0d;
  }
  100% {
    top: 8.5vw;
    left: 4vw;
    opacity: 1;
    background: #ffffff;
  }
}
.l-header .l-header__nav {
  display: none;
}
.l-header .l-header__nav.is-nav__open {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  right: 0;
  top: 0;
  animation: navOpen 0.2s ease-in-out forwards;
  position: absolute;
  width: 100vw;
  height: 100vh;
  padding: 5vh 0;
  background: rgb(87, 124, 116);
  background: linear-gradient(180deg, rgb(87, 124, 116) 0%, rgb(111, 149, 142) 100%);
  overflow: auto;
}
@keyframes navOpen {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}
.l-header .l-header__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 0 0 10vh;
}
@media screen and (min-width: 769px) {
  .l-header .l-header__nav-list {
    padding: 0;
  }
}
.l-header .l-header__nav-item a {
  display: block;
}
.l-header .l-header__nav-item a.current {
  color: #b23c0d;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__nav-item {
    width: 100%;
    margin: 5vw 0;
    overflow: hidden;
  }
  .l-header .l-header__nav-item a {
    padding: 5vw 0 0;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .l-header .l-header__nav {
    display: block;
    width: 100%;
    height: 100%;
  }
  .l-header .l-header__nav .l-header__nav-list {
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .l-header .l-header__nav .l-header__nav-list {
    gap: 0px;
  }
}
@media screen and (min-width: 769px) {
  .l-header .l-header__nav .l-header__nav-list .l-header__nav-item {
    height: 100%;
    width: 13%;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .l-header .l-header__nav .l-header__nav-list .l-header__nav-item {
    width: auto;
    height: auto;
  }
  .l-header .l-header__nav .l-header__nav-list .l-header__nav-item a img {
    height: 1.5vw;
    max-height: 29px;
    width: auto;
  }
}
@media screen and (min-width: 769px) {
  .l-header .l-header__nav .l-header__nav-list .l-header__nav-item a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
  }
  .l-header .l-header__nav .l-header__nav-list .l-header__nav-item a:hover {
    color: #b23c0d;
  }
}
@media screen and (min-width: 769px) {
  .l-header .l-header__nav .l-header__nav-list .l-header__nav-item .l-header__nav-item__blank {
    width: 15px;
  }
}

.hide__header {
  top: -15vw;
}

.l-wrapper {
  position: relative;
  z-index: 0;
  background: url(../images/header/bg_wrapper.jpg) no-repeat center top #b43000;
  background-size: 100% 30vh;
  color: #000000;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .l-wrapper {
    background-size: contain;
  }
}
.l-wrapper::before, .l-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40vw;
  height: 30vw;
  background-color: #b15d1f;
  filter: blur(100px);
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: plus-lighter;
  opacity: 0.3;
  border-radius: 50%;
}
.l-wrapper::before {
  animation: light-move01 infinite ease-in-out 15s alternate;
}
@keyframes light-move01 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(25vw, 50vh) scale(1.5);
  }
  50% {
    transform: translate(50vw, 0) scale(1);
  }
  75% {
    transform: translate(75vw, 50vh) scale(1.5);
  }
  100% {
    transform: translate(100vw, 0) scale(1);
  }
}
.l-wrapper::after {
  animation: light-move02 infinite ease-in-out 20s alternate;
}
@keyframes light-move02 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50vw, 25vh) scale(1.2);
  }
  50% {
    transform: translate(100vw, 0) scale(1);
  }
  75% {
    transform: translate(50vw, 75vh) scale(1.2);
  }
  100% {
    transform: translate(0, 100vh) scale(1);
  }
}

.l-main {
  position: relative;
  z-index: 3;
  font-size: clamp(15px, 1.5vw, 24px);
}

.l-footer {
  z-index: 3;
  position: relative;
  width: 100%;
  padding: 5vw;
  background: #1f170f;
}
@media screen and (min-width: 769px) {
  .l-footer {
    padding: 50px;
  }
}
.l-footer .l-footer__logo .l-footer__logo__item a {
  display: block;
  margin: 0 auto 5vw;
  width: 40%;
  max-width: 230px;
}
@media screen and (min-width: 769px) {
  .l-footer .l-footer__logo .l-footer__logo__item a {
    margin: 0 auto 50px;
  }
}
.l-footer .c-copy {
  max-height: 29px;
  width: 40%;
  max-width: 230px;
  margin: 0 auto;
}

.c-copy {
  width: 100%;
  text-align: center;
}

.c-btn__ticket {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 13vw;
  padding: 4vw 2vw;
  overflow: hidden;
  color: #fff;
  text-align: center;
  font-size: clamp(11px, 1.1vw, 16px);
}
@media screen and (min-width: 769px) {
  .c-btn__ticket {
    position: absolute;
    top: -20px;
    right: -20px;
    padding: 30px 20px;
    width: 40%;
    min-height: 110px;
    font-size: clamp(15px, 1.5vw, 24px);
  }
}
.c-btn__ticket::before {
  content: "TICKET";
  position: absolute;
  top: -15%;
  right: 0;
  color: #000;
  font-size: 7vw;
  font-weight: bold;
  mix-blend-mode: overlay;
}
@media screen and (min-width: 769px) {
  .c-btn__ticket::before {
    font-size: 50px;
  }
}
.c-btn__ticket:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #000000 transparent;
}
.c-btn__ticket .limited {
  margin: 0 3px 0 0;
  padding: 2px;
  background: #fff;
  color: #000;
  font-size: clamp(11px, 1.1vw, 16px);
}
.c-btn__ticket .tax {
  padding: 2px;
  border: 1px solid #ffffff;
  font-size: clamp(11px, 1.1vw, 16px);
}

.p-mv {
  position: relative;
  z-index: 2;
  background: url(../images/header/bg_header.png) no-repeat center bottom/contain;
  transform-origin: center bottom;
  transition: transform 0.5s ease;
}

.p-mv__logo {
  display: block;
  position: relative;
  z-index: 5;
  margin: 0 auto;
  width: 100%;
  max-width: 1232px;
  padding: 35vw 0 0;
}
@media screen and (min-width: 769px) {
  .p-mv__logo {
    padding: 3% 0 0;
    width: 64.2%;
  }
}
.p-mv__logo img {
  animation: logo-appear 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
  transform-origin: center center;
}
@keyframes logo-appear {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0;
  }
  80% {
    transform: scale(1.2) rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}

.p-mv__chara01,
.p-mv__chara02 {
  position: absolute;
  animation: chara-fall 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) 1s forwards;
  transform-origin: center bottom;
  opacity: 0;
}
@keyframes chara-fall {
  0% {
    transform: translate(0, -50px);
    opacity: 0;
  }
  30% {
    transform: translate(0, 0);
    opacity: 1;
  }
  45% {
    transform: translate(0, -10px);
    opacity: 1;
  }
  60% {
    transform: translate(0, 0);
    opacity: 1;
  }
  80% {
    transform: translate(0, -5px);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.p-mv__chara02 {
  animation-delay: 1.1s;
}

.p-mv__chara01 {
  z-index: 6;
  max-width: 198px;
  top: 24%;
  left: 13%;
  width: 23.9%;
}
@media screen and (min-width: 769px) {
  .p-mv__chara01 {
    top: 35%;
    left: auto;
    right: 11.7%;
    width: 10.3%;
  }
}

.p-mv__chara02 {
  z-index: 6;
  top: 17%;
  right: 12%;
  max-width: 215px;
  width: 26.5%;
}
@media screen and (min-width: 769px) {
  .p-mv__chara02 {
    top: 33%;
    right: 2%;
    width: 11.2%;
  }
}

.p-mv__self-introduction {
  z-index: 10;
  position: absolute;
  right: 35vw;
  width: 30vw;
  top: 3vw;
  height: 190px;
  opacity: 0;
  transition: opacity 1s;
}
.p-mv__self-introduction.visible {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .p-mv__self-introduction {
    top: 1vw;
    right: 3%;
    max-width: 285px;
    width: 15%;
  }
}
.p-mv__self-introduction::before, .p-mv__self-introduction::after,
.p-mv__self-introduction .p-mv__self-introduction__inner {
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: image-fade 6s infinite, sway 3s infinite alternate-reverse;
  text-indent: -9999px;
}
.p-mv__self-introduction::before {
  content: "";
  background-image: url("../images/header/speech_bubble_01_sp.png");
  animation-delay: 0s;
}
@media screen and (min-width: 769px) {
  .p-mv__self-introduction::before {
    background-image: url("../images/header/speech_bubble_01.png");
  }
}
.p-mv__self-introduction::after {
  content: "";
  background-image: url("../images/header/speech_bubble_02.png");
  animation-delay: 0.5s;
}
.p-mv__self-introduction .p-mv__self-introduction__inner {
  background-image: url("../images/header/speech_bubble_03.png");
  animation-delay: 1s;
}
@keyframes image-fade {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  16.67% {
    opacity: 1;
    transform: scale(1);
  }
  33.33%, 76.66% {
    opacity: 1;
  }
  83.33% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
  }
}
@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.p-news {
  position: relative;
  z-index: 0;
  padding: 0;
  background: url(../images/news/bg_movie-news.jpg) no-repeat center top/cover;
  margin: -2.5vw 0 24vw;
  overflow: hidden;
  --translateX: 0vw;
  transform-origin: center top;
  transition: transform 0.5s ease;
  font-size: clamp(15px, 1.5vw, 24px);
}
@media screen and (min-width: 769px) {
  .p-news {
    display: flex;
    justify-content: center;
    align-items: end;
    margin: -2.5vw 0 0;
    padding: 0 0 4vw;
  }
}
.p-news::after {
  content: "";
  display: inline-block;
  z-index: 1;
  position: absolute;
  top: -2%;
  left: 0;
  max-width: 307px;
  width: 29%;
  height: 102%;
  background: url(../images/news/img_door-l.png) no-repeat right top/cover;
  transition: transform 0.5s ease;
  transform: translateX(calc(-1 * var(--translateX)));
}
@media screen and (min-width: 769px) {
  .p-news::after {
    width: 16%;
    top: 0;
  }
}
.p-news::before {
  content: "";
  display: inline-block;
  z-index: 1;
  position: absolute;
  top: -2%;
  right: 0;
  max-width: 307px;
  width: 29%;
  height: 102%;
  background: url(../images/news/img_door-r.png) no-repeat left top/cover;
  transition: transform 0.5s ease;
  transform: translateX(var(--translateX));
}
@media screen and (min-width: 769px) {
  .p-news::before {
    top: 0;
    width: 16%;
  }
}

.p-news__topics {
  z-index: 4;
  position: relative;
  padding: 0;
  margin: -8vw 0 0;
  width: 100%;
  transform-origin: center bottom;
  transition: transform 0.5s ease;
  transform: scale(0.9);
}
@media screen and (min-width: 769px) {
  .p-news__topics {
    padding: 4.5vw 0 0;
    margin: -5vw 0 0;
    width: 45%;
    transform-origin: right top;
  }
}
.p-news__topics .p-news__videoWrap {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__videoWrap {
    height: auto;
    max-width: 872px;
    max-height: 653px;
    aspect-ratio: 872/653;
    margin: auto;
  }
}
.p-news__topics .p-news__videoWrap .p-news__video__iframe {
  width: 58.4%;
  height: auto;
  aspect-ratio: 16/9;
  margin: 19% 12% 7% 14%;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__videoWrap .p-news__video__iframe {
    width: 54.4%;
    margin: 17% 0 0 17%;
  }
}
.p-news__topics .p-news__videoWrap::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 10%;
  left: 10%;
  width: 70%;
  height: 55vw;
  background: #000000;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__videoWrap::before {
    height: 22vw;
  }
}
.p-news__topics .p-news__videoWrap::after {
  content: "";
  display: block;
  z-index: 4;
  position: absolute;
  top: 0;
  left: -15%;
  width: 130%;
  height: 140%;
  background: url(../images/movie/frame_youtube.png) no-repeat center top/contain;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__videoWrap::after {
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.p-news__topics .p-news__video__link {
  margin: 9vw auto 0;
}
.p-news__topics .p-news__video__link a {
  display: block;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__video__link {
    margin: -4vw auto 0;
  }
}
.p-news__topics .p-news__wrap {
  position: relative;
  z-index: 5;
  background: url(../images/news/bg_news.png) no-repeat center top/contain;
  max-width: 663px;
  max-height: 248px;
  aspect-ratio: 663/248;
  margin: 0 auto;
  padding: 3vw 3.1vw 5vw;
  width: 88%;
  transform-origin: center top;
  transform: scale(0.9);
  transition: transform 0.5s ease;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__wrap {
    width: 100%;
    padding: 2.5% 2.4% 2%;
    margin: 2vw auto 0;
  }
}
@media screen and (min-width: 1921px) {
  .p-news__topics .p-news__wrap {
    padding: 27px 24px 0;
  }
}
.p-news__topics .p-news__wrap .p-news__list {
  overflow-y: scroll;
  height: 25.5vw;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__wrap .p-news__list {
    overflow-y: scroll;
    height: 14vw;
    max-height: 200px;
  }
}
.p-news__topics .p-news__wrap .p-news__list .p-news__item {
  padding: 0.5vw;
  border-bottom: 3px dotted #ffffff;
  line-height: 1.4em;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__wrap .p-news__list .p-news__item {
    padding: 15px;
  }
}
.p-news__topics .p-news__wrap .p-news__list .p-news__item.p-news__tit {
  height: 10vw;
  padding: 2vw 0;
}
.p-news__topics .p-news__wrap .p-news__list .p-news__item.p-news__tit img {
  max-height: 32px;
  height: 100%;
  width: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__wrap .p-news__list .p-news__item.p-news__tit {
    height: auto;
    padding: 15px;
  }
}
.p-news__topics .p-news__wrap .p-news__list .p-news__item .p-news__stit {
  font-weight: bold;
}
.p-news__topics .p-news__wrap .p-news__list .p-news__item .emphasis {
  color: #ede868;
  font-weight: bold;
}
.p-news__topics .p-news__wrap .p-news__list .p-news__item p {
  margin: 0 0 2vw;
}
.p-news__topics .p-news__wrap .p-news__list .p-news__item p:last-child {
  margin: 0;
}
@media screen and (min-width: 769px) {
  .p-news__topics .p-news__wrap .p-news__list .p-news__item p {
    margin: 0 0 20px;
  }
}
.p-news__topics .p-news__wrap .p-news__list .p-news__item a {
  color: #f7521b;
}

.p-comic__wrap {
  position: relative;
  z-index: 3;
  background: url(../images/comic/bg_comic.png) no-repeat center top/contain;
  max-width: 1117px;
  aspect-ratio: 1117/1050;
  margin: -4vw 0 6vw 0;
  width: 98%;
  padding: 22% 12.5% 7.4% 15.5%;
  transform-origin: center top;
  transform: scale(0.9);
  transition: transform 0.5s ease;
}
@media screen and (min-width: 769px) {
  .p-comic__wrap {
    width: 58.2%;
    padding: 13% 7.7% 4% 9.3%;
    margin: 2vw 0 0 -6vw;
    transform-origin: left top;
  }
}
@media screen and (min-width: 1921px) {
  .p-comic__wrap {
    padding: 250px 145px 72px 175px;
  }
}
.p-comic__wrap .p-comic__list {
  height: 61vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .p-comic__wrap .p-comic__list {
    height: 36.5vw;
    max-height: 720px;
  }
}

.p-goods {
  position: relative;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
.p-goods.is-animated:before {
  animation: goodsCharaSlideInL 6s ease-out forwards infinite;
}
@keyframes goodsCharaSlideInL {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  18% {
    opacity: 1;
    transform: translateX(0) rotate(30deg);
  }
  20%, 23%, 25%, 27%, 29% {
    transform: translateX(0) rotate(30deg);
    opacity: 1;
  }
  21%, 24%, 26%, 28%, 30% {
    transform: translateX(-2%) rotate(28deg);
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
.p-goods.is-animated:after {
  animation: goodsCharaSlideInR 6s ease-out forwards infinite;
}
@keyframes goodsCharaSlideInR {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  18% {
    opacity: 1;
    transform: translateX(0) rotate(-30deg);
  }
  20%, 23%, 25%, 27%, 29% {
    transform: translateX(0) rotate(-30deg);
    opacity: 1;
  }
  21%, 24%, 26%, 28%, 30% {
    transform: translateX(2%) rotate(-28deg);
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.p-goods:before, .p-goods:after {
  z-index: 6;
  content: "";
  position: absolute;
  top: 70vw;
  opacity: 0;
  display: block;
  width: 50vw;
  height: 70vw;
}
@media screen and (min-width: 769px) {
  .p-goods:before, .p-goods:after {
    width: 20vw;
    height: 20vw;
    max-width: 300px;
    max-height: 500px;
    top: 20vw;
  }
}
.p-goods:before {
  left: -35vw;
  background: url("../images/common/img_chara_nyan.png") no-repeat center top;
  background-size: contain;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .p-goods:before {
    left: -10%;
  }
}
.p-goods:after {
  right: -35vw;
  background: url("../images/common/img_chara_kon.png") no-repeat center top;
  background-size: contain;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .p-goods:after {
    right: -10%;
  }
}
.p-goods .p-goods__titleWrap {
  width: 100%;
  margin: 0 auto;
  padding: 13vw 0 0;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__titleWrap {
    padding: 8vw 0 0;
  }
}
.p-goods .p-goods__titleWrap::before {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  top: -5vw;
  left: 0;
  width: 100%;
  height: 29vw;
  background: url(../images/goods/tit_goods-roof.png) no-repeat center top;
  background-size: 160%;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__titleWrap::before {
    top: -3vw;
    height: 18vw;
    background-size: contain;
  }
}
.p-goods .p-goods__titleWrap .p-goods__title {
  position: relative;
  text-align: center;
  background: url(../images/goods/img_lantern.png) no-repeat center top;
  background-size: 140%;
  height: 23vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__titleWrap .p-goods__title {
    height: 16vw;
    background-size: contain;
  }
}
.p-goods .p-goods__titleWrap .p-goods__title img {
  max-width: 945px;
  max-height: 316px;
  width: 77%;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__titleWrap .p-goods__title img {
    width: 47%;
  }
}
.p-goods .p-goods__titleWrap .p-goods__title::before, .p-goods .p-goods__titleWrap .p-goods__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 22vw;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__titleWrap .p-goods__title::before, .p-goods .p-goods__titleWrap .p-goods__title::after {
    left: 0;
    width: 100%;
    height: 16vw;
  }
}
.p-goods .p-goods__titleWrap .p-goods__title::before {
  background: url(../images/goods/img_lantern_light_02.png) no-repeat center top/contain;
  mix-blend-mode: hard-light;
  animation: lanternLight01 4s infinite;
}
.p-goods .p-goods__titleWrap .p-goods__title::after {
  background: url(../images/goods/img_lantern_light_01.png) no-repeat center top/contain;
  mix-blend-mode: soft-light;
  animation: lanternLight02 3s infinite;
}
@keyframes lanternLight01 {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes lanternLight02 {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
.p-goods .p-goods__list {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
  }
}
@media screen and (min-width: 769px) and (min-width: 1600px) {
  .p-goods .p-goods__list {
    gap: 70px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 769px) and (min-width: 1920px) {
  .p-goods .p-goods__list {
    gap: 120px;
  }
}
.p-goods .p-goods__list.list01 {
  background-image: url(../images/goods/bg_goods_line_01.png), url(../images/goods/bg_goods-wall_01.jpg);
  background-position: center bottom, center bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 150%, cover;
  margin: -45vw 0 0;
  padding: 45vw 0 6vw;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__list.list01 {
    background-repeat: repeat-x, no-repeat;
    background-size: 100%, cover;
    margin: -300px 0 0;
    padding: 300px 0 3vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 1600px) {
  .p-goods .p-goods__list.list01 {
    background-size: 1600px, cover;
    padding: 370px 0 80px;
  }
}
.p-goods .p-goods__list.list02 {
  background-image: url(../images/goods/bg_goods_line_01.png), url(../images/goods/bg_goods-wall_01.jpg);
  background-position: center bottom, center bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 150%, cover;
  margin: 0;
  padding: 5vw 0 4vw;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__list.list02 {
    background-repeat: repeat-x, no-repeat;
    background-size: 100%, cover;
    margin: 0;
    padding: 100px 0 3vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 1600px) {
  .p-goods .p-goods__list.list02 {
    background-size: 1600px, cover;
    padding: 150px 0 110px;
  }
}
@media screen and (min-width: 769px) and (min-width: 1920px) {
  .p-goods .p-goods__list.list02 {
    background-size: 1600px, cover;
    padding: 150px 0 130px;
  }
}
.p-goods .p-goods__list.list03 {
  background-image: url(../images/goods/bg_goods_line_02.png), url(../images/goods/bg_goods-wall_02.jpg);
  background-position: center bottom, center bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 150%, cover;
  padding: 10vw 0 25vw;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__list.list03 {
    padding: 100px 0 19vw;
    background-repeat: repeat-x, no-repeat;
    background-size: 100%, cover;
  }
}
@media screen and (min-width: 769px) and (min-width: 1600px) {
  .p-goods .p-goods__list.list03 {
    padding: 150px 0 350px;
    background-size: 1600px, cover;
  }
}
.p-goods .p-goods__stit {
  display: none;
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__stit {
    display: block;
    width: 7%;
    max-width: 186px;
  }
}
.p-goods .p-goods__item {
  display: inline-block;
  transform: scale(0.85);
  border: 3px solid #b7b7b7;
  border-radius: 3px;
  box-shadow: -8px 8px 10px 0px rgba(0, 0, 0, 0.45);
}
@media screen and (min-width: 769px) {
  .p-goods .p-goods__item {
    transform: scale(0.8);
    margin: 0 5vw;
  }
}
@media screen and (min-width: 1400px) {
  .p-goods .p-goods__item {
    transform: scale(0.9);
    margin: 0;
  }
}
@media screen and (min-width: 1600px) {
  .p-goods .p-goods__item {
    transform: scale(1);
    margin: 0;
  }
}
@media screen and (min-width: 1920px) {
  .p-goods .p-goods__item {
    transform: scale(1.2);
    margin: 0;
  }
}

.p-goods__link {
  display: inline-block;
  width: 50%;
}
.p-goods__link img {
  width: 80%;
}
@media screen and (min-width: 769px) {
  .p-goods__link {
    width: 394px;
    margin: 1vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 1400px) {
  .p-goods__link {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (min-width: 1920px) {
  .p-goods__link {
    margin: 4vw 0 0;
  }
}

.swiper {
  position: relative;
  width: 100%;
  padding: 10vw 0 10vw;
}
@media screen and (min-width: 769px) {
  .swiper {
    max-height: 678px;
    margin: 0 auto;
  }
}
.swiper .swiper-item {
  display: inline-block;
  border: 3px solid #b7b7b7;
  border-radius: 3px;
  box-shadow: -8px 8px 10px 0px rgba(0, 0, 0, 0.45);
}
.swiper .swiper-item img {
  width: 100%;
  height: auto;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7vw;
  height: 7vw;
  border-radius: 10vw;
  color: #ffffff;
  cursor: pointer;
  font-size: clamp(16px, 3vw, 32px);
  font-weight: lighter;
  transition: 0.2s;
  border: 1px solid #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media screen and (min-width: 769px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 3vw;
    height: 3vw;
    padding: 0 0 0.2vw 0;
  }
}
.swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 4vw;
  margin: 2vw auto 0;
  z-index: 2;
  position: relative;
}
.swiper .swiper-pagination-bullet {
  background: url(../images/goods/btn_slider.png) no-repeat center top/contain;
  width: 8vw;
  height: 10vw;
  display: block;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .swiper .swiper-pagination-bullet {
    width: 64px;
    height: 52px;
  }
}
.swiper .swiper-pagination-bullet-active {
  background: url(../images/goods/btn_slider-on.png) no-repeat center top/contain;
}

.underCol {
  background: url(../images/tweet/bg_floor-inside.png), url(../images/tweet/bg_floor.jpg);
  background-repeat: no-repeat, repeat;
  background-position: center top, center top;
  background-size: 100%, auto;
}

.p-timeline {
  z-index: 1;
  position: relative;
  width: 100%;
  padding: 10vw 0;
}
@media screen and (min-width: 769px) {
  .p-timeline {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px 0 90px;
  }
}
.p-timeline .p-timeline__item {
  position: relative;
  z-index: 2;
}
.p-timeline .p-timeline__item .twitter-timeline {
  opacity: 0;
  border: 15px solid #e7ded5;
  border-radius: 28px;
  min-width: 300px;
  min-height: 700px;
}
.p-timeline .p-timeline__item .twitter-timeline::before {
  content: "";
  position: absolute;
  top: 50vw;
  width: 10vw;
  height: 10vw;
}
@media screen and (min-width: 769px) {
  .p-timeline .p-timeline__item .twitter-timeline::before {
    top: 20vw;
    width: 5vw;
    height: 5vw;
  }
}
@media screen and (min-width: 769px) {
  .p-timeline .p-timeline__item {
    width: 35%;
    margin: -150px 0 5vw;
  }
}
.p-timeline .p-timeline__item::after {
  content: "";
  position: absolute;
  top: 10vw;
  width: 35vw;
  height: 60vw;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .p-timeline .p-timeline__item::after {
    top: 0px;
    width: 25vw;
    height: 30vw;
  }
}
.p-timeline .p-timeline__item.is-animated .twitter-timeline {
  animation: tlFadeIn 1s 0.5s ease-out forwards;
}
@keyframes tlFadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  65% {
    opacity: 1;
    transform: scale(1.2, 1);
  }
  75% {
    transform: scale(0.9, 1.1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.p-timeline .p-timeline__item.is-animated:first-of-type:after {
  animation: tlCharaFadeInCharaL 0.5s ease-out forwards;
}
@keyframes tlCharaFadeInCharaL {
  0% {
    opacity: 0;
    transform: rotate(15deg) translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: rotate(30deg) translateX(0);
  }
}
.p-timeline .p-timeline__item.is-animated:last-of-type:after {
  animation: tlCharaFadeInCharaR 0.5s ease-out forwards;
}
@keyframes tlCharaFadeInCharaR {
  0% {
    opacity: 0;
    transform: rotate(-15deg) translateX(10%);
  }
  100% {
    opacity: 1;
    transform: rotate(-30deg) translateX(0);
  }
}
.p-timeline .p-timeline__item:first-of-type {
  margin: 10vw 5vw 0 15vw;
}
@media screen and (min-width: 769px) {
  .p-timeline .p-timeline__item:first-of-type {
    margin: 0;
  }
}
.p-timeline .p-timeline__item:first-of-type .twitter-timeline:before {
  left: -10vw;
  background: url(../images/tweet/bg_tw-l.png) no-repeat center top/contain;
}
@media screen and (min-width: 769px) {
  .p-timeline .p-timeline__item:first-of-type .twitter-timeline:before {
    left: -5vw;
  }
}
.p-timeline .p-timeline__item:first-of-type:after {
  background: url(../images/common/img_chara_nyan.png) no-repeat center top/contain;
  left: -38vw;
}
@media screen and (min-width: 769px) {
  .p-timeline .p-timeline__item:first-of-type:after {
    left: -27vw;
  }
}
.p-timeline .p-timeline__item:last-of-type {
  margin: 10vw 15vw 0 5vw;
}
@media screen and (min-width: 769px) {
  .p-timeline .p-timeline__item:last-of-type {
    margin: 0;
  }
}
.p-timeline .p-timeline__item:last-of-type .twitter-timeline:before {
  right: -10vw;
  background: url(../images/tweet/bg_tw-r.png) no-repeat center top/contain;
}
@media screen and (min-width: 769px) {
  .p-timeline .p-timeline__item:last-of-type .twitter-timeline:before {
    right: -5vw;
  }
}
.p-timeline .p-timeline__item:last-of-type:after {
  background: url(../images/common/img_chara_kon.png) no-repeat center top/contain;
  right: -38vw;
}
@media screen and (min-width: 769px) {
  .p-timeline .p-timeline__item:last-of-type:after {
    right: -27vw;
  }
}

.u-spOnly {
  display: block;
}
@media screen and (min-width: 769px) {
  .u-spOnly {
    display: none;
  }
}

.u-pcOnly {
  display: none;
}
@media screen and (min-width: 769px) {
  .u-pcOnly {
    display: block;
  }
}

.u-font-bold {
  font-weight: bold;
}

.u-font-emphasis {
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 700;
}

.u-font-accent {
  color: #b23c0d;
}

.u-font-center {
  text-align: center;
}

.u-box-in {
  margin-top: 5vw;
}
@media screen and (min-width: 769px) {
  .u-box-in {
    margin-top: 50px;
  }
}

.u-box-end {
  margin-bottom: 10vw;
}
@media screen and (min-width: 769px) {
  .u-box-end {
    margin-bottom: 100px;
  }
}

.u-title-in {
  margin-top: 50vw;
}
@media screen and (min-width: 769px) {
  .u-title-in {
    margin-top: 400px;
  }
}/*# sourceMappingURL=style.css.map */