@charset "UTF-8";

/**************************************************/
/* 構造 */
/**************************************************/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #e4007f;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
}

h1,
h2,
h3,
div,
p,
ul,
dt,
dd {
  padding: 0;
  margin: 0;
}

img {
  vertical-align: bottom;
}

li {
  list-style: none;
}

/* link */
a {
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
}

a,
a:hover,
a:visited {
  color: inherit;
}

/* font-color */
.font-color-w {
  color: white;
}

/* font-style */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* font-size */
.font12 {
  font-size: 1.2rem;
}

.font15 {
  font-size: 1.5rem;
  line-height: 25px;
}

.font20 {
  font-size: 2rem;
}

.font25 {
  font-size: 2.5rem;
  line-height: 45px;
}
@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  .font25 {
    font-size: 2rem;
    line-height: 40px;
  }
}

.font30 {
  font-size: 3rem;
}
@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  .font30 {
    font-size: 2.5rem;
  }
}

.font50 {
  font-size: 5rem;
}
@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  .font50 {
    font-size: 4rem;
  }
}

/* padding */
.pt--10 {
  padding-top: 10px;
}

.pb--10 {
  padding-bottom: 10px;
}

/* margin */
.mt--10 {
  margin-top: 10px;
}

.mt--20 {
  margin-top: 20px;
}

.mt--30 {
  margin-top: 30px;
}

.mt--50 {
  margin-top: 50px;
}

.mt--100 {
  margin-top: 100px;
}

.mt--150 {
  margin-top: 150px;
}

.mb--10 {
  margin-bottom: 10px;
}

.mb--20 {
  margin-bottom: 20px;
}

.mb--30 {
  margin-bottom: 30px;
}

.mb--50 {
  margin-bottom: 50px;
}

.mb--100 {
  margin-bottom: 100px;
}

.mb--150 {
  margin-bottom: 150px;
}

/* font-family */
.josefin-sans-uniquifier {
  font-family: 'Josefin Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.noto-serif-jp-uniquifier {
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.f-bold {
  font-weight: bold;
}

.wrapper {
  position: relative;
}
/**************************************************/
/* PC */
/**************************************************/

.wrapper-pc {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.logo-pc,
.nav-pc {
  flex-basis: 30%;
}

.logo-pc {
  text-align: center;
}

.content-space {
}

/**************************************************/
/* SP */
/**************************************************/
.wrapper-sp {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 500px;
  border-right: #000 solid 5px;
  border-left: #000 solid 5px;
}

@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  .wrapper-sp {
    width: 100%;
    border-right: none;
    border-left: none;
  }
}

header {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

header img {
  max-width: 100%;
  height: auto;
}

/**************************************************/
/* 概要 */
/**************************************************/
.overview {
  width: 100%;
  margin: 0 auto;
  background: url(../img/top/overview-bg.png) no-repeat bottom;
  background-size: 100% auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.overview-text,
.sns-x {
  width: 90%;
}

.sns-x {
  height: 350px;
  overflow-y: scroll;
}

.sns-x::-webkit-scrollbar {
  width: 16px;
}

.sns-x::-webkit-scrollbar-track {
  background-color: #e4007f;
  border: 1px solid #000;
  border-radius: 8px;
}

.sns-x::-webkit-scrollbar-thumb {
  background-color: #000;
  border: 1px solid #e4007f;
  border-radius: 8px;
}

/**************************************************/
/* common */
/**************************************************/
h2,
h3 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
}

.big-title {
  width: 100%;
}

.title-fluffy {
  animation: floating-x 7.2s ease-in-out infinite alternate-reverse;
  width: 100%;
  z-index: 1;
}

.title-fluffy img {
  width: 100%;
  object-fit: cover;
}

.target {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
  0% {
    transform: translateX(-2.5%);
  }
  100% {
    transform: translateX(2.5%);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}

.title-fluffy2 {
  animation: floating2-x 5.1s ease-in-out infinite alternate-reverse;
  width: 100%;
  z-index: 1;
}

.title-fluffy2 img {
  width: 100%;
  object-fit: cover;
}

.target2 {
  animation: floating2-y 3.5s ease-in-out infinite alternate-reverse;
}
@keyframes floating2-x {
  0% {
    transform: translateX(-1%);
  }
  100% {
    transform: translateX(1%);
  }
}
@keyframes floating2-y {
  0% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(3%);
  }
}

.bg-w {
  background: #fff;
  width: 100%;
}

.bg-b {
  background: #000;
  width: 100%;
}

.title-bg {
  width: 100%;
  position: absolute;
}

.title-bg img {
  width: 100%;
}

.imposter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
}

.inner {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.small-title-container {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.small-title {
  width: 40%;
  border: #000 solid 3px;
}

@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  .small-title {
    width: 60%;
  }
}

.inner ul {
  width: 100%;
}

.inner li {
  border-top: #000 solid 1px;
}

.inner li a {
  display: block;
  padding: 10px 0;
}

.text-holder {
  width: 90%;
  text-align: center;
}
/**************************************************/
/* MOVIE */
/**************************************************/
.move {
  background: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.move h3 p {
  background: url(../img/top/jagged-pink.png) no-repeat center;
  background-size: 250px 40px;
  width: 250px;
  height: 40px;
  display: grid;
  place-items: center;
}

.youtube {
  width: 85%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/**************************************************/
/* MONSTERS */
/**************************************************/
.monsters {
  background: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.monsters h3 p {
  background: url(../img/top/jagged-yellow.png) no-repeat center;
  background-size: 200px 40px;
  width: 200px;
  height: 40px;
  display: grid;
  place-items: center;
}

/**************************************************/
/* TICKET */
/**************************************************/
.ticket {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.ticket .title-bg {
  background: linear-gradient(180deg, #000 0%, #000 99%, #fff 99%, #fff 100%);
}

.ticket h3 p {
  background: url(../img/top/jagged-blue.png) no-repeat center;
  background-size: 200px 40px;
  width: 200px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
}

.ticket .inner {
  border: #000 solid 5px;
}

.ticket .small-title {
  background: #0d6fb8;
}

.price-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  box-sizing: border-box;
}

.price-list dt {
  width: 100%;
  background: #000;
  text-align: center;
  padding: 5px 0;
}

.price-list dd {
  width: 50%;
  padding-bottom: 5px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  box-sizing: border-box;
}

.text-holder-sub {
  width: 100%;
}

.price-sub {
  width: 100%;
  background: #000;
  padding: 10px 0;
}

.price-sub p {
  padding: 0 20px;
}

.notes {
  padding: 20px;
}

/**************************************************/
/* INFORMATION */
/**************************************************/
.information {
  background: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.information .title-bg {
  background: linear-gradient(180deg, #fff 0%, #fff 99%, #000 99%, #000 100%);
}

.information h3 p {
  background: url(../img/top/jagged-green.png) no-repeat center;
  background-size: 150px 40px;
  width: 150px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
}

.information .inner {
  border: #fff solid 5px;
}

.information .small-title {
  background: #3eb134;
}

/**************************************************/
/* フッター */
/**************************************************/

footer {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  background: #fff;
}

footer .bg-b {
  background: linear-gradient(180deg, #000 0%, #000 99%, #fff 99%, #fff 100%);
}

footer img {
  max-width: 100%;
  height: auto;
}

footer .small-title {
  background: #fff;
}

.sponsorship {
  width: 100%;
}

.sponsorship img {
  width: 70%;
}

/*********************************/
/* コピーライト */
/*********************************/
.copyright {
  text-align: center;
  padding: 15px 0;
  color: #fff;
  background: #000;
}

/**************************************************/
/* fade */
/**************************************************/

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flowing05 {
  100% {
    transform: translateX(-100%);
  }
}

/* フェードイン用のCSS */
/* 上からフェードイン */
.slide-top {
  opacity: 0;
  transform: translate(0, -20px);
  transition: all 1s ease-out;
}

/* 下からフェードイン */
.slide-bottom {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1s ease-out;
}

/* 下からフェードイン */
.slide-bottom2 {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1s 1s ease-out;
}

/* 左からフェードイン */
.slide-left {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 1s ease-out;
}

/* 左からフェードイン2 */
.slide-left2 {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 1s 0.5s ease-out;
}

/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(20px, 0);
  transition: all 1s ease-out;
}
