@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap");

:root {
  --main-color: #fff100;
  --color-blue01: #a4d9f7;
  --color-blue02: #3ebff0;
  --color-blue03: #0091db;
  --color-blue04: #004098;
  --color-yellow: #feea80;
  --color-red: #e60033;
  --text-color: #001c44;
  --link-text-color: #ffffff;
  --link-button: linear-gradient(90deg, #a4d9f7 0%, #3ebff0 50%, #004098 100%);
  --loading: linear-gradient(0deg, #a4d9f7 0%, #3ebff0 50%, #004098 100%);
  --line-color01: #14ae67;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

html,
body {
  overflow-x: hidden;
}
html {
  font-size: 62.5%;
  line-height: 1.7;
  letter-spacing: 0.5;
  font-family: "M PLUS 1", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  background-color: #fff;
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0 auto;
}

body {
  color: var(--text-color);
  font-size: 1.6rem;
}

div {
  box-sizing: border-box;
  flex-wrap: wrap;
}

table {
  font-size: 1.6rem;
  border-collapse: collapse;
}

ul,
ol {
  padding-left: 0;
  flex-wrap: wrap;
}

li {
  list-style: none;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

h2,
.c-heading01 {
  font-size: 6rem;
  font-weight: 700;
  font-family: "Archivo Black", sans-serif, "YuGothic", "游ゴシック体";
}

h3 {
  font-size: 2.3rem;
  font-weight: 700;
  font-family: "Archivo Black", sans-serif;
  text-align: center;
}

h4 {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Archivo Black", sans-serif;
}
.c-heading02 {
  font-family: "M PLUS 1", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: 600;
}

a {
  display: block;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.button-wrapper {
  margin-top: 5rem;
}
.button {
  position: relative;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: var(--link-text-color);
  height: 6rem;
  max-width: 28rem;
  background-image: linear-gradient(
    to right,
    #ffe391 0%,
    #fecf00 20%,
    #ff8400 100%
  );
  border-radius: 3rem;
  margin: 0 auto;
  padding: 1rem;
  background-size: 140% 100%;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  display: inline-block;
  color: currentColor;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.15em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.button:hover {
  background-position: 100% 0;
  opacity: 1;
  transition: all 0.4s ease-in-out;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.15));
}
.button:hover::after {
  right: 0.75em;
}
.p-sns-instagram .button:hover {
  background-color: var(--color-blue04);
  transition: all 0.4s ease-in-out;
  opacity: 1;
}
.button.c-button02 {
  font-size: 1.5rem;
  margin: 2rem 0 0;
  height: 5rem;
  max-width: 20rem;
  background: var(--color-yellow);
  border: 1px solid;
  color: var(--color-blue04);
}
.button.c-button02:hover {
  background: var(--color-blue01);
}

.sp {
  display: none;
}

img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.l-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10rem 3rem;
}

.wrapper {
  margin: 0;
  padding: 3rem 0 0;
}

.asterisk {
  padding-left: 1.5rem;
  margin-left: 0.5rem;
  color: var(--color-red);
}
.asterisk._black {
  color: var(--text-color);
}

.asterisk li {
  text-indent: -2rem;
  font-weight: 600;
}

.asterisk li:before {
  content: "※";
  margin-right: 0.5rem;
}

.coming {
  font-family: "Archivo Black", sans-serif;
  font-size: 6rem;
  text-align: center;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(45deg, #3ebff0 0%, #004098 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  display: inline-block;
  margin: 0 auto;
  padding: 2rem 1rem 2rem 0;
}

/* -------------------- */
/* header
/* -------------------- */
header {
  background: var(--main-color);
  padding: 1rem 3rem;
  width: 100%;
  height: 10rem;
  /* max-height: 10rem; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: height 0.5s ease;
}
.logo-heading {
  max-height: 7.5rem;
}
.logo-heading img {
  width: auto;
  height: 100%;
}
nav {
  display: flex;
  justify-content: space-between;
  /* height: auto; */
  height: 100%;
  width: 100%;
  color: var(--color-blue04);
}
nav ul {
  font-size: 1.5rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}

nav ul li a {
  color: var(--text-color);
  display: flex;
}

nav ul a img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
}

/* -------------------- */
/* section01
/* -------------------- */
#sc01 {
  max-width: 100%;
  background-color: var(--main-color);
  padding: 10rem 0 0 0;
}

.info {
  width: 40%;
  margin: 0 auto;
  padding-right: 5rem;
}

.info .logo {
  max-width: 30rem;
  display: block;
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.info .Annotation {
  font-size: 15px;
  /*7/26追加*/
}

.news {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

.news .title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  background: var(--color-blue02);
  border: var(--color-blue02) solid 2px;
  border-radius: 3rem 0 0 3rem;
  width: 11rem;
  padding: 1.5rem 2rem 1.5rem 3rem;
}

.news .content {
  border: var(--color-blue02) solid 2px;
  border-radius: 0 3rem 3rem 0;
  width: calc(100% - 11rem);
  padding: 1rem 2rem;
}

.news span {
  display: flex;
  justify-content: start;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news time {
  font-size: 1.25rem;
  line-height: 1.25;
  text-align: right;
  padding-right: 1rem;
}
#introduction {
  position: relative;
  z-index: 0;
}
.mv .sp {
  position: relative;
  overflow: hidden;
}
.mv {
  width: 100%;
  max-height: 62.5svw;
  height: 100rem;
  position: relative;
  background-image: url(../images/mv-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.p-mv-bgCont {
  position: relative;
}
.p-mv-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.p-mv-anim {
  transform-origin: bottom;
  opacity: 0;
  scale: 0;
}
.p-mv-anim.is-active {
  animation: zoomUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes zoomUp {
  0% {
    scale: 0;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
.p-mv-image:nth-child(1) {
  animation-delay: 0.5s;
}
.p-mv-imageCont {
  width: 100%;
  height: 100%;
  max-width: 60svw;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.p-mv-bgCont img {
  width: 100%;
  height: 100%;
}
.p-mv-title {
  position: absolute;
  top: 25%;
  right: 5vw;
  width: 7.5svw;
  height: auto;
}
.p-mv-logo {
  position: relative;
  display: block;
  width: 50vw;
  margin: 0 auto;
  padding-top: 2rem;
  z-index: 12;
}
.p-mv-limit {
  width: 100%;
  max-width: 60vw;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  z-index: 12;
}
._shadow {
  filter: drop-shadow(10px 10px 0 rgba(0, 0, 0, 0.25));
}
.sc01-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.p-sc01-slider_right {
  position: absolute;
  right: 0;
  top: 0;
}
.p-sc01-slider_right .p-sc01-sliderWrap {
  animation-direction: reverse;
  left: auto;
  right: 0;
}
.p-sc01-sliderWrap {
  display: flex;
  flex-direction: column;
  width: 17.5vw;
  animation: mvSlideLoops 20s infinite linear;
}
.p-sc01-sliderWrap li {
  width: 100%;
  height: 18rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.p-sc01-slider_left li {
  border-top-right-radius: 2vw;
  border-bottom-right-radius: 2vw;
}
.p-sc01-slider_right li {
  border-top-left-radius: 2vw;
  border-bottom-left-radius: 2vw;
}
.p-sc01-sliderWrap li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes mvSlideLoops {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}
/* -------------------- */
/* parts
/* -------------------- */
._note {
  margin-top: 2rem;
  font-size: 1.45rem;
}
._center {
  text-align: center;
}
._right {
  text-align: right;
}
/* -------------------- */
/* section02
/* -------------------- */
#amusement {
  max-width: 100%;
  padding: 0;
  background: none;
}
.p-mv_underBg {
  position: relative;
  background-image: url(../images/haikei_180907_01.jpg);
  background-attachment: fixed;
  background-size: cover;
  padding: 15rem 3rem;
  z-index: -5;
  mask-image: url(../images/mv-text_bgmask.svg);
  mask-size: cover;
  mask-position: top center;
  mask-repeat: no-repeat;
  margin-top: -11.5rem;
  color: #fff;
}

.p-mv_underBg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #00409873;
  z-index: -5;
}

.p-mv-heading {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.p-mv_underBg h3 span {
  display: block;
}
.p-amuse_heading {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.p-limited_heading img {
  width: auto;
}

#amusement .content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

._border {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  position: relative;
  overflow: hidden;
}

#amusement .xspact-wrapper,
.event-wrapper {
  border-radius: 10svh;
  background: #ffffff;
  /* border: 1.15vmax solid; */
}
._border {
  padding: 4vmax 2vmax;
}

.xspact._border {
  padding: 2vmax;
  background: var(--color-blue02);
}
.event._border {
  background: var(--color-blue03);
}
#event-page .event {
  background: #feea80;
}
.amusement._border {
  background: var(--color-yellow);
}

.xspact-item ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2rem;
  row-gap: 3rem;
}
._new,
._powerup,
._inside,
._outside {
  position: relative;
}
._new::after,
._powerup::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9rem;
  height: 7.5rem;
  background-image: url(../images/event-powerup.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
._new::after {
  background-image: url(../images/event-new.svg);
}
._inside::before,
._outside::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 5rem;
  height: 4.5rem;
  background-image: url(../images/icon_inside.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
._outside::before {
  background-image: url(../images/icon_outside.svg);
}
._inside:empty,
._outside:empty {
  width: 5rem;
  height: 4.5rem;
}
/* 見出し */
.c-heading01Wrap {
  margin-bottom: 6.5rem;
  position: relative;
}
.c-heading01 {
  font-size: 7.5rem;
  line-height: 1;
  color: var(--color-blue02);
  position: relative;
  text-align: center;
}
.c-heading01Wrap .c-heading02 {
  margin-top: 1rem;
}
.p-amuse-data {
  display: inline-flex;
}
.p-amuse-dataCont {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.c-heading02 {
  /* font-size: max(1rem, 1.6vw); */
  font-size: 3rem;
}
.c-text-rl {
  writing-mode: vertical-rl;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: -2.5px;
  margin-left: 0.5rem;
  margin-right: 0.75rem;
}
.c-time {
  width: auto;
  height: 5rem;
  vertical-align: text-bottom;
}

/* event */
.c-eventWrap {
  text-align: center;
}
.xspact a {
  position: relative;
}

.xspact-item img {
  object-fit: cover;
}
.xspact-items:last-child img {
  object-fit: contain;
}

.xspact-item ul li span {
  color: var(--color-blue03);
  display: block;
  text-align: left;
  margin-top: 1rem;
}
.xspact-items img {
  aspect-ratio: 1 / 1;
  height: auto;
  width: 100%;
}

.p-top-eventWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.p-top-event_title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-blue03);
  margin-top: 1rem;
}

.event-item img {
  border-radius: 1.25rem;
  height: auto;
}

.event-day {
  border-bottom: 2px solid;
  margin: 0 0 1.5rem;
  padding: 0 0 1rem;
  text-align: left;
}

.event-day img {
  width: auto;
  height: 4rem;
  max-width: 100%;
}
.p-event-date {
  font-family: "futura", sans-serif, "YuGothic", "游ゴシック体";
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1;
  display: flex;
  align-items: flex-end;
}
.p-event-date > * {
  display: inline-flex;
  align-items: center;
}
._manth {
  font-size: 3rem;
  line-height: 1.5;
  vertical-align: text-bottom;
}
._manth::after {
  content: "/";
  font-size: 3rem;
}
._sat {
  color: var(--color-blue03);
}
._sun,
._mon {
  color: var(--color-red);
}
.p-event-date .c-text-rl,
._sat::after,
._sun::after,
._mon::after,
._day::after {
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 0.1rem;
  margin-left: 0.5rem;
  margin-right: 0.75rem;
  display: inline-block;
}
._sat::after {
  content: "SAT";
}
._sun::after {
  content: "SUN";
}
._mon::after {
  content: "MON";
  font-size: 1.35rem;
  margin: 0;
}
._wed::after {
  content: "WED";
}
._thu::after {
  content: "THU";
}
._fri::after {
  content: "FRI";
}
._time {
  font-size: 2.5rem;
  margin-left: 1rem;
}
.event-cont {
  margin-bottom: 4rem;
}
.p-top-eventImg_mochiCont {
  position: relative;
}
.p-top-eventImg_mochi {
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 10rem;
}

/* -------------------- */
/* SNS
/* -------------------- */
#sns {
  background-image: url(../images/sns-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.p-snsWrap {
  display: flex;
}
.p-snsWrap > div {
  width: 50%;
  text-align: center;
}
.p-sns-heading {
  font-size: 4rem;
  display: block;
  margin-bottom: 3.5rem;
}
.p-sns-instagram .p-sns-heading {
  color: #e6007f;
}
.p-sns-instagram .button {
  background: #e6007f;
}
.p-sns-line b {
  font-size: 2rem;
}
.p-sns-line .p-sns-heading {
  color: #4fb564;
}
.p-sns-line .button {
  background: #4fb564;
}
.p-sns-line_img {
  width: 18rem;
}
.p-sns-line_text {
  margin-top: 3rem;
}
.p-sns-line_text p {
  margin-top: 2rem;
}
.p-top-lineAddBtn {
  width: 30rem;
}
.p-sns-instagram_widget {
  position: relative;
}
.p-sns-instagram_widget-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -------------------- */
/* point
/* -------------------- */
#point {
  background-image: linear-gradient(
    90deg,
    #a3d9f7 0%,
    #0190dc 50%,
    #004098 100%
  );
  color: #fff;
}
#point .c-heading01 {
  color: currentColor;
}
.p-pointWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.p-pointCont {
  display: block;
  text-align: center;
  padding-inline: 3rem;
}
.p-pointCont img {
  max-width: 30rem;
}
.p-pointCont .c-heading02 {
  font-size: 2.5rem;
  margin-top: 3rem;
}
/* -------------------- */
/* mystery
/* -------------------- */
#mysterylarry {
  background-color: #feea80;
}
#mysterylarry .c-heading01 {
  color: currentColor;
}

/* -------------------- */
/* section04
/* -------------------- */
#stamplarry {
  max-width: 100%;
  background-image: url(../images/bg_stamp.svg);
  background-size: cover;
  background-position: center;
}

.stamplurry-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

#stamplarry h2 {
  color: var(--line-color01);
}

#stamplarry h4 {
  font-size: 3rem;
}

#stamplarry .p-stamp-step {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p-stamp-step li {
  background: #ffffff;
  width: calc(100% / 3 - 2rem);
}

.p-stamp-step li h4 {
  text-align: center;
  padding: 1rem;
  color: #ffffff;
}

.p-stamp-step li:first-child {
  border: 3px solid #dae684;
}

.p-stamp-step li:first-child h4 {
  background: #dae684;
  border: 3px solid #dae684;
}

.p-stamp-step li:nth-child(2) {
  border: 3px solid #96cc8e;
}

.p-stamp-step li:nth-child(2) h4 {
  background: #96cc8e;
  border: 3px solid #96cc8e;
}

.p-stamp-step li:nth-child(3) {
  border: 3px solid #61c0b0;
}

.p-stamp-step li:nth-child(3) h4 {
  background: #61c0b0;
  border: 3px solid #61c0b0;
}

.p-stamp-step li img {
  padding: 2.5rem 2rem 1rem;
}

.p-stamp-step li p {
  padding: 0 2rem 2rem;
}
.p-stamp-note {
  margin-top: 2rem;
  font-size: 1.5rem;
  text-align: right;
}
a:has(.p-stamp-step_01) {
  text-align: center;
}
.p-stamp-step_01 {
  max-width: 17.5rem;
}

/* -------------------- */
/* section05
/* -------------------- */
#sc05 {
  max-width: 768px;
}

#sc05 h2 {
  color: var(--color-blue02);
}

#sc05 ul li {
  border-bottom: 1px dashed lightgray;
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#sc05 time {
  line-height: 1;
  font-family: "Archivo Black", sans-serif;
  padding-right: 2rem;
}

#sc05 span {
  display: block;
}

#sc05 .ym {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

#sc05 .day {
  font-size: 3.5rem;
}

#sc05 .category {
  color: var(--link-text-color);
  font-size: 1.3rem;
  text-align: center;
  background: var(--color-blue02);
  border: 1px solid var(--color-blue02);
  border-radius: 3rem;
  min-width: 5rem;
  margin-right: 1rem;
  padding: 0.25rem 1rem;
}

#sc05 ul li a {
  color: var(--text-color);
  /*7/26追加*/
}

/* -------------------- */
/* section06
/* -------------------- */
#access h2 {
  color: var(--main-color);
}

#access h3 {
  text-align: left;
  border-bottom: 2px solid var(--main-color);
  margin: 0 0 1.5rem;
  padding: 0 0 1rem;
}

#access .access {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#access .access .content {
  width: calc(50% - 3rem);
}

#access .access iframe {
  width: 50%;
  height: auto;
}

#access table {
  width: 100%;
}

#access table th,
#access table td {
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px dashed lightgray;
  padding: 1.5rem;
}

#access table th {
  width: 9rem;
  padding-left: 0;
}

#access table a {
  color: var(--text-color);
  text-decoration: underline;
}

/* -------------------- */
/* section07
/* -------------------- */
#sc07 {
  padding: 0rem 3rem 5rem;
}

#sc07 .link-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 960px;
}

#sc07 .link-banner li {
  width: calc(100% / 3 - 1rem);
  padding: 0 0.5rem;
}

/* -------------------- */
/* section09
/* -------------------- */
#sc09 {
  max-width: 100%;
  background: #e1d1be;
}

.sc09-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

#sc09 h2 {
  color: #b90504;
  font-weight: 900;
  font-size: 3.25rem;
}

/* -------------------- */
/* footer
/* -------------------- */
footer {
  background: var(--color-blue04);
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}

/* ==================== */
/* xpact-page
/* ==================== */
.lower {
  padding: 10rem 0 0 0;
}
/*--------------------- */
/* 背景写真のところ(XSPACT/EVENT共通)
/*--------------------- */
.lower-titleCont {
  position: relative;
  height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lower-titleCont__img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.lower-titleCont::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-blue04);
  display: inline-block;
  position: absolute;
  top: 0%;
  right: 0;
  left: 0;
  opacity: 30%;
  z-index: -1;
}

.lower-titleCont__txt {
  font-size: max(2.9vw, 36px);
  color: #fff;
  text-align: center;
}

/*--------------------- */
/* 内容
/*--------------------- */

/* -----EVENT共通CSS----- */
.xpact_content_background {
  background: var(--color-blue01);
  /* padding: 10% 5% 5%; */
  padding: 10% 8% 5%;
}

/* -----xpactページ内容----- */
.xpact_content_flex-1 {
  display: flex;
  justify-content: space-between;
}

.xpact_in-content_wrapper .content_illust {
  width: 30%;
}

.xpact_in-content_wrapper {
  width: 48%;
  position: relative;
}

.xpact_in-content_wrapper .xpact_content_span {
  font-size: 1.6em;
  color: var(--main-color);
  font-weight: bold;
  border-bottom: 2px solid var(--color-blue02);
  padding-top: 2%;
  display: inline-block;
}

.xpact_in-content_wrapper .xpact_content_p {
  width: 74%;
  font-weight: bold;
}

.xpact_in-content_wrapper .content_illust {
  position: absolute;
  bottom: 4vw;
  right: 0;
}

.xpact_content_grid {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  justify-content: space-between;
  margin-top: 3%;
}

.xpact_content_grid .xpact_in-content_wrapper {
  width: 100%;
  margin-top: 5%;
}

.xpact_content_grid .xpact_content_p {
  width: 100%;
}

/* -----限定体験----- */
#xpact_gentei_wrapper {
  background: #fff;
  padding: max(5.5vw, 66px);
  font-family: "Archivo Black", sans-serif;
  margin-top: 5%;
}

#xpact_gentei_wrapper .xpact_gentei_title__img {
  width: 25%;
  margin: 0 auto 7% auto;
  position: relative;
}

#xpact_gentei_wrapper .xpact_gentei_title__illust {
  position: absolute;
  width: 60%;
  top: -76%;
  right: -80%;
}

.xpact_gentei_flex {
  display: flex;
  justify-content: space-between;
}

.xpact_gentei_flex:not(:last-child) {
  margin-bottom: 5%;
}

.xpact_gentei_flex .xpact_gentei_content_1 {
  width: 50%;
}

.xpact_gentei_flex .xpact_gentei_content_2 {
  width: 47%;
}

.xpact_gentei_flex .xpact_gentei_content_2 img {
  width: 47%;
}

.xpact_gentei_flex .xpact_gentei_content_2 .xpact_gentei_content_title {
  font-size: max(2.4vw, 30px);
  color: var(--main-color);
  font-weight: bold;
  display: inline-block;
  margin-top: 3rem;
  /* font-size: max(1.9vw, 28px); */
  font-size: clamp(24px, 1.9vw, 28px);
  margin: 3% 0 0;
}

.xpact_gentei_flex .xpact_gentei_content_2 .xpact_gentei_content_sub-title {
  font-weight: bold;
  /* font-size: max(1.4vw, 20px); */
  font-size: 1.3em;
  display: inline-block;
  /* margin-bottom: 3%; */
}

/* -----EVENTページ内容----- */
.event_background_color {
  background: #0190dc;
}

#c-eventItem_wrap .planet9_flex_wra {
  display: flex;
  align-items: flex-start;
  font-weight: bold;
}

#c-eventItem_wrap .day_flex {
  display: flex;
  align-items: center;
}

.planet9_flex_content_img {
  width: 45%;
  margin: 0 0 2rem;
}

.planet9_flex_content_tex {
  width: 52%;
  margin-left: 3%;
}

#c-eventItem_wrap .day_flex img {
  width: 45%;
  margin-right: 2%;
}

#c-eventItem_wrap .day_flex p {
  border-left: 5px solid var(--color-blue01);
  padding-left: 3%;
  margin-bottom: 2%;
  font-size: 1.3em;
  line-height: 1.4;
}

.planet9_content_title {
  font-size: max(1.9vw, 28px);
}

.c-eventItem_target {
  display: block;
  color: #fff;
  width: 15rem;
  padding: 1rem;
  font-size: 1.75rem;
  line-height: 1;
  text-align: center;
}

.c-eventItem_target._black {
  background: #111;
}

.c-eventItem_target._red {
  background: #e60012;
}

.c-eventItem_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  justify-content: space-between;
  text-align: left;
}
.c-eventItem_wrap._1col {
  grid-template-columns: repeat(1, 1fr);
}
._1col .c-eventItem {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
._1col .c-eventItem img {
  width: 50%;
  object-fit: contain;
}
._1col .c-eventItem_inner {
  width: 45%;
}
.p-event-titleText,
.p-event_textCont {
  margin-top: 1rem;
}
.p-event-title {
  font-weight: 700;
}
.c-eventItem {
  margin-bottom: 5rem;
}
.c-eventItem .day-img {
  width: 50%;
}

.c-eventItem .day-img-100 {
  width: 100%;
}

.p-event-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-event-title {
  margin-top: 1.5rem;
}
.c-eventItem .day-img,
.c-eventItem .day-img-100 {
  /* margin-top: 3%; */
  margin-top: 3rem;
}
c-eventItem_target {
  font-size: 1.75rem;
}

.c-eventItem_title {
  /* font-size: max(1.9vw, 28px); */
  font-size: clamp(24px, 1.9vw, 28px);
  /* margin: 3% 0 0; */
}

.c-eventItem_sub-title {
  font-size: 1.3em;
  display: inline-block;
  margin-bottom: 3%;
}

.p-event-title .day-img {
  margin-top: 0;
}
.p-event_textCont .asterisk {
  margin-top: 1rem;
}

/* ---------------------- */
/* amuse
/* ---------------------- */
.p-amuse-limited_img {
  position: absolute;
  top: 0;
  right: 10svw;
  width: auto;
}
.p-amuse-listWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 1.5rem;
}
.p-amuse-listWrap._main {
  grid-template-columns: repeat(2, 47.5%);
  justify-content: space-between;
  gap: 5rem;
  margin-bottom: 5rem;
}
.p-amuse-list_titleCont {
  text-align: left;
}
.p-amuse-list_title {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: var(--color-blue04);
  padding-bottom: 0.25rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--color-blue02);
  display: inline-block;
}
/* 装飾 */
.p-amuse-listWrap._main li:last-child {
  position: relative;
}
.p-amuse-listWrap._main li:last-child::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  right: 1rem;
  width: 20vmin;
  height: 15vmin;
  background-image: url("../images/amuse-illust01.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.p-amuse-list_imgCont img {
  height: auto;
}
/* powerup */
.p-amuse-list_imgCont._new::after,
.p-amuse-list_imgCont._powerup::after {
  left: -1rem;
  right: auto;
}
/* ---------------------- */
/* access
/* ---------------------- */
#access h2 {
  color: var(--color-blue02);
}

@media screen and (min-width: 1501px) {
}

@media screen and (max-width: 1440px) {
  /* -------------------- */
  /* section02
	/* -------------------- */
  .p-mv_underBg {
    margin-top: 0;
  }
  .l-inner {
    max-width: 90vw;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 1vw;
  }

  body {
    font-size: 1.6rem;
  }

  /* -------------------- */
  /* section02
	/* -------------------- */
  #amusement .content {
    display: block;
  }

  #amusement .xspact,
  #amusement .event,
  ._border {
    width: 100%;
  }
  /* -------------------- */
  /* event
	/* -------------------- */
  .p-top-eventWrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 769px) {
  header.is-fixed {
    height: 7.5rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: max(30%, 1.3vw);
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
  header {
    position: relative;
    padding: 1.75rem 3rem;
    max-height: none;
  }
  header.is-fixed {
    position: fixed;
    padding: 1.75rem;
  }
  .l-inner {
    max-width: 97.5vw;
    padding: 5rem 2rem;
  }
  .c-heading02 {
    font-size: 2rem;
  }
  .c-text-rl {
    font-size: 1.25rem;
    line-height: 0.25;
    letter-spacing: 0.5px;
    margin-bottom: -0.25rem;
  }
  .p-mv-heading {
    font-size: 4rem;
  }
  nav ul {
    flex-wrap: wrap;
  }
  .lower {
    padding: 0;
  }
  .c-eventItem_wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  ._1col .c-eventItem {
    flex-wrap: wrap;
    flex-direction: column;
  }
  ._1col .c-eventItem img,
  ._1col .c-eventItem_inner {
    width: 100%;
  }

  /* -------------------- */
  /* section01
	/* -------------------- */
  #sc01 {
    padding: 0;
  }
  .mv {
    height: auto;
    max-height: none;
    padding-top: 1.5rem;
  }
  .p-mv-imageCont,
  .p-mv-logo {
    max-width: 100%;
    width: 100%;
  }
  .p-mv-bgCont {
    position: absolute;
  }
  .p-mv-imageCont {
    height: auto;
  }
  .p-mv-logo {
    position: absolute;
    padding-top: 0;
    padding-inline: 1.5rem;
  }
  .p-mv-image:not(._around) {
    width: 125%;
  }
  .p-mv_underBg {
    padding: 10rem 3rem;
    mask-image: none;
  }
  .mv-img {
    padding: 0 2rem;
  }

  .mv-day {
    padding: 2rem 3rem;
  }

  .info img.title,
  .info img.logo {
    display: none;
  }

  .info {
    width: 100%;
    order: 2;
    margin: 2rem auto 0;
    padding: 0 3rem;
  }
  /* -------------------- */
  /* amusement
	/* -------------------- */
  .event-wrapper {
    border-radius: 5rem;
  }
  .xspact-item ul {
    grid-template-columns: repeat(2, 1fr);
  }
  /* -------------------- */
  /* stamp
	/* -------------------- */
  #stamplarry h4 span {
    display: block;
  }

  .p-stamp-step li {
    width: 100%;
    margin: 1.5rem 0 0;
  }

  /* -------------------- */
  /* Sns
	/* -------------------- */
  .p-snsWrap > div {
    width: 100%;
  }
  .p-snsWrap {
    gap: 3rem;
  }
  /* -------------------- */
  /* point
	/* -------------------- */
  .p-pointWrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
  .p-pointCont {
    padding-inline: 1rem;
  }
  /* -------------------- */
  /* section06
	/* -------------------- */
  #access .access .content {
    width: 100%;
  }

  #access .access .content h3 {
    text-align: center;
  }

  #access .access iframe {
    width: 100%;
    height: 30vh;
    padding-top: 2rem;
  }

  /* ---------------------- */
  /* amuse
/* ---------------------- */
  .p-amuse-listWrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-amuse-listWrap._main {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-amuse-limited_img {
    width: 25vmin;
    top: 2.5rem;
    right: 0;
  }
}

@media screen and (max-width: 440px) {
  html {
    font-size: max(50%, 1.5vw);
  }

  h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin: 0 auto;
  }

  h2 {
    font-size: 4rem;
    font-weight: 700;
    font-family: "Archivo Black", sans-serif;
    text-align: center;
    margin: 0 auto;
  }

  h3 {
    font-size: 2rem;
    font-weight: 700;
    font-family: "Archivo Black", sans-serif;
    text-align: center;
    margin: 0 auto;
  }

  h4 {
    font-size: 2rem;
    font-weight: 700;
    font-family: "Archivo Black", sans-serif;
    margin: 0 auto;
  }
  .c-heading01 {
    font-size: 5rem;
  }
  /* -------------------- */
  /* section06
	/* -------------------- */
  .xspact-item ul li {
    width: 100%;
  }

  .xspact-item ul li:nth-child(7) {
    padding-bottom: 2rem;
  }

  .p-top-eventWrap {
    grid-template-columns: repeat(1, 1fr);
  }

  /* -------------------- */
  /* XPACTページ
	/* -------------------- */
  .xpact_content_background {
    padding: 14% 6% 5%;
  }

  .lower-titleCont__txt {
    top: 2vw;
  }

  .xpact_content_flex-1 {
    display: block;
  }

  .xpact_in-content_wrapper {
    width: 100%;
  }

  .xpact_in-content_wrapper .xpact_content_p,
  .xpact_gentei_content_p {
    font-size: min(15px);
  }

  .xpact_content_grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .xpact_in-content_wrapper {
    padding-bottom: 10%;
  }

  .xpact_in-content_wrapper .content_illust {
    bottom: 20vw;
  }

  .xpact_in-content_wrapper .jungre-illust {
    bottom: 9vw;
  }

  #xpact_gentei_wrapper {
    padding: 6%;
  }

  /* -----EVENTページ----- */
  .planet9_content_title {
    line-height: 1.2;
    margin-top: 3%;
  }

  .c-eventItem_title {
    font-size: 6vw;
  }

  #c-eventItem_wrap,
  .c-eventItem_target {
    font-size: min(15px);
  }

  #c-eventItem_wrap .day_flex {
    display: block;
    margin-top: 4%;
  }

  #c-eventItem_wrap .sp-none {
    display: none;
  }

  #event_content_wrappe .Annotation {
    margin-top: 5%;
    display: inline-block;
  }
}

/* -------------------- */
/* アニメーション
/* -------------------- */

/* スクロールに合わせて下から表示 */
.scroll-up,
.scroll-up2,
.scroll-up3 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.3s;
}

.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
@keyframes popanimation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    visibility: visible;
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    visibility: visible;
  }
}
/* 拡大しながら表示 */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  0% {
    transform: scale(0.6);
  }

  75% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.zoomIn2 {
  opacity: 0;
  animation-name: zoomInAnime;
  animation-duration: 0.25s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}

.zoomIn.active,
.zoomIn2.active {
  animation-name: zoomInAnime;
  animation-duration: 0.25s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}

.scrollTrigger {
  opacity: 0;
  transform: scale(0.6);
  transition: transform 0.25s, opacity 0.25s;
}

.zoomIn.active {
  animation-name: zoomInAnime;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  75% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.zoomIn2 {
  opacity: 0;
  /* 初期状態で非表示 */
  transform: scale(0.6);
  transition: transform 0.25s, opacity 0.25s;
}

.zoomIn2.active {
  animation-name: zoomIn2Anime;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
}

@keyframes zoomIn2Anime {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  75% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ローディング設定 */
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active2 {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  /* background: var(--loading); */
  background: var(--color-yellow);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  max-width: 100%;
}

.loading-animation.is-active2 {
  opacity: 1;
  visibility: visible;
}

.loading-animation {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  margin: 0 auto;
}

@keyframes fadeIn {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-100px);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}
/* ローディング */
.loading-illust {
  position: absolute;
  width: 100%;
  max-width: 70vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
}

.loading-illust img {
  width: auto;
  height: 15rem;
  opacity: 0;
  transition: opacity 0.3s;
  animation: loadingIllust infinite 1s steps(1);
}

.loading-illust img.is-active {
  opacity: 1;
}

.loading-illust img:nth-child(2n + 1) {
  animation-delay: 1s;
}

@keyframes loadingIllust {
  50% {
    rotate: 15deg;
  }
  0%,
  100% {
    rotate: 0deg;
  }
}
