@charset "UTF-8";
/* CSS Document */
/*Copyright 2017 The Barlow Project Authors (https://github.com/jpt/barlow)
This Font Software is licensed under the SIL Open Font License, Version 1.1 . This license is copied below, and is also available with a FAQ at: https://openfontlicense.org
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007*/
/***********************
  init
***********************/
:root {
  --Site-color-Brand-Color: #4f2727;
  --Site-color-CTA-Color: #e62131;
  --Site-color-Background1: #ffebeb;
  --Site-color-Background2: #ffd0d1;
  --color-black: #010103;
  --Semantic-color-White: #ffffff;
  --font-family-JP: "Hiragino Kaku Gothic ProN", sans-serif;
  --font-family-EN: "Barlow", sans-serif;
  --font-size-text-xxs: 10px;
  --font-size-text-xs: 10px;
  --font-size-text-sm: 12px;
  --font-size-text-base: 14px;
  --font-size-text-lg: 16px;
  --font-size-text-xl: 18px;
  --font-size-text-2xl: 20px;
  --font-size-text-3xl: 22px;
  --font-size-text-4xl: 24px;
  --font-size-text-5xl: 32px;
  --font-size-text-6xl: 36px;
  --font-size-text-7xl: 56px;
  --rounded-lg: 8px;
  --rounded-xl: 10px;
  --rounded-2xl: 12px;
  --rounded-3xl: 18px;
  --rounded-full: 9999px;
}

@media screen and (min-width: 1025px) {
  :root {
    --font-size-text-xxs: 10px;
    --font-size-text-xs: 12px;
    --font-size-text-sm: 14px;
    --font-size-text-base: 16px;
    --font-size-text-lg: 18px;
    --font-size-text-xl: 20px;
    --font-size-text-2xl: 24px;
    --font-size-text-3xl: 28px;
    --font-size-text-4xl: 32px;
    --font-size-text-5xl: 40px;
    --font-size-text-6xl: 52px;
    --font-size-text-7xl: 64px;
    --rounded-xl: 12px;
    --rounded-2xl: 16px;
    --rounded-3xl: 24px;
  }
}
html {
  overflow-x: hidden;
  /* scroll-behavior: smooth; */
}
html.is-open {
  overflow: hidden;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

a.link {
  text-decoration: underline;
}

a,
button,
details {
  -webkit-tap-highlight-color: transparent;
}

em {
  font-style: normal;
}

summary {
  list-style: none;
}

details summary {
  list-style-type: none;
}

summary::-webkit-details-marker {
  display: none;
}

body {
  color: var(--Site-color-Brand-Color);
  font-family: var(--font-family-JP);
  background: var(--Site-color-Background2);
}

/***************************
	anime
/***************************/
@keyframes slideInTicket {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInHeader {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes gradationAnim {
  0% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 100%;
  }
}
@keyframes hero {
  0% {
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
/***************************
	common
/***************************/
.section-inner {
  width: 100%;
  padding: 96px 16px;
}
@media (min-width: 641px) {
  .section-inner {
    padding: 96px 40px;
  }
}
@media (min-width: 1025px) {
  .section-inner {
    max-width: 1104px;
    margin: 0 auto;
    padding: 128px 40px;
  }
}

.round-table table {
  width: 100%;
  border-radius: var(--rounded-3xl);
  border-spacing: 0;
}
.round-table table tr th.r-left-top {
  border-radius: var(--rounded-3xl) 0 0 0;
}
.round-table table tr th.r-right-top {
  border-radius: 0 var(--rounded-3xl) 0 0;
}
.round-table table tr th.r-top {
  border-radius: var(--rounded-3xl) var(--rounded-3xl) 0 0;
}
.round-table table tr td.r-left-bottom {
  border-radius: 0 0 0 var(--rounded-3xl);
}
.round-table table tr td.r-right-bottom {
  border-radius: 0 0 var(--rounded-3xl) 0;
}
.round-table table tr td:last-child {
  border-right: none !important;
}

/***************************
	container
/***************************/
.container .js-effect {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.7s ease;
}
.container .js-effect.is-show {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0px);
}

/***************************
	header
/***************************/
.header {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  z-index: 100;
  background: linear-gradient(0deg, rgba(230, 33, 49, 0) 0%, rgba(230, 33, 49, 0.5) 100%);
  animation: slideInHeader 0.4s ease-in-out 0.5s forwards;
}
@media (min-width: 1025px) {
  .header {
    height: 64px;
    /* backdrop-filter: blur(5px); */
  }
}
.header .header__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex; /* SP用スタイル */
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}
@media (min-width: 1025px) {
  .header .header__inner {
    padding: 0 32px;
  }
}
.header .header__inner .header__logo {
  position: relative;
  pointer-events: none;
}
.header .header__inner .header__logo > img {
  width: 52px;
}
@media screen and (min-width: 1025px) {
  .header .header__inner .header__logo > img {
    width: 65px;
  }
}
.header .header__inner .btn-menu-sp {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .header .header__inner .btn-menu-sp {
    display: none;
  }
}
.header .header__inner .btn-menu-sp span {
  display: block;
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  margin: auto;
  background: var(--Semantic-color-White);
  transition: all 0.3s linear;
}
.header .header__inner .btn-menu-sp span:nth-of-type(1) {
  top: 7px;
}
.header .header__inner .btn-menu-sp span:nth-of-type(2) {
  top: 15px;
}
.header .header__inner .btn-menu-sp span:nth-of-type(3) {
  bottom: 7px;
}
.header .header__inner .btn-menu-sp.is-open span:nth-of-type(1) {
  top: 15px;
  transform: rotate(45deg);
}
.header .header__inner .btn-menu-sp.is-open span:nth-of-type(2) {
  opacity: 0;
}
.header .header__inner .btn-menu-sp.is-open span:nth-of-type(3) {
  bottom: 15px;
  transform: rotate(-45deg);
}
.header .header__inner nav {
  position: fixed;
  top: 0;
  left: 200%;
  width: 80%;
  height: 100vh;
  background: linear-gradient(180deg, #e62131 0%, #ff7d7f 100%);
  padding-right: 0;
  transition: all 0.3s linear;
  z-index: 2;
}
.header .header__inner nav.is-open {
  left: 20%;
}
@media (min-width: 1025px) {
  .header .header__inner nav {
    display: flex;
    position: relative;
    height: 100%;
    padding-right: 0;
    justify-content: center;
    align-items: center;
    left: initial;
    width: initial;
    height: 100%;
    background: initial;
  }
}
.header .header__inner nav ul {
  padding: 112px 32px 0;
}
@media screen and (min-width: 1025px) {
  .header .header__inner nav ul {
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 64px;
    padding: initial;
  }
}
.header .header__inner nav ul li {
  width: 100%;
  padding: 12px 0;
}
@media screen and (min-width: 1025px) {
  .header .header__inner nav ul li {
    width: initial; /* PC用スタイル */
    padding: initial;
  }
}
.header .header__inner nav ul li a {
  text-align: left;
  font-weight: 600;
  color: var(--Semantic-color-White);
  font-size: var(--font-size-text-lg);
  font-style: normal;
  line-height: 137.5%; /* 22px */
  letter-spacing: 0.8px;
}
.header .header__inner nav ul li a:hover {
  color: #f9c2c6;
}
@media screen and (min-width: 1025px) {
  .header .header__inner nav ul li a:hover {
    color: var(--Semantic-color-White);
  }
}
.header .header__inner .shadow {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  transition: opacity 0.3s linear;
  pointer-events: none;
}
.header .header__inner .shadow.is-show {
  opacity: 1;
}

/***************************
	main
/***************************/
.main {
  background: var(--Site-color-Brand-Color);
}

/***************************
	hero
/***************************/
.hero {
  width: 100%;
  background: var(--Site-color-Background2);
}
.hero img, .hero picture {
  opacity: 0;
  display: block;
  width: 100%;
  animation: hero 1s ease-in-out forwards;
}

/***************************
	introduction
/***************************/
.introduction {
  position: relative;
  background: var(--Site-color-Background1);
}
.introduction .introduction__inner {
  position: relative;
  background: url(../images/bg_introduction.webp) no-repeat center top;
}
.introduction .introduction__inner::after {
  content: "";
  position: absolute;
  top: 963px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 235, 235, 0) 0%, rgb(255, 235, 235) 100%);
  pointer-events: none;
  z-index: 0;
}
.introduction .introduction__inner2 {
  position: relative;
}
@media (min-width: 1921px) {
  .introduction .introduction__inner2::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -960px;
    width: 100px;
    height: 1063px;
    background: linear-gradient(90deg, rgba(255, 235, 235, 0) 0%, rgb(255, 235, 235) 100%);
    transform: scale(-1, 1);
    pointer-events: none;
    z-index: 0;
  }
  .introduction .introduction__inner2::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: 860px;
    width: 100px;
    height: 1063px;
    background: linear-gradient(90deg, rgba(255, 235, 235, 0) 0%, rgb(255, 235, 235) 100%);
    pointer-events: none;
    z-index: 0;
  }
}
.introduction .section-inner {
  position: relative;
  z-index: 1;
}
.introduction .introduction__name {
  text-align: center;
}
.introduction .introduction__name p {
  padding: 12px 10px;
  display: inline-block;
  border-top: 1px solid var(--Site-color-Brand-Color);
  border-bottom: 1px solid var(--Site-color-Brand-Color);
  font-family: var(--font-family-EN);
  font-size: var(--font-size-text-2xl);
  font-weight: 700;
  line-height: 120%; /* 24px */
  letter-spacing: 1px;
}
@media (min-width: 641px) {
  .introduction .introduction__name p {
    padding: 12px 5px;
  }
  .introduction .introduction__name p br {
    display: none;
  }
}
@media (min-width: 1025px) {
  .introduction .introduction__name p {
    letter-spacing: 1.2px;
  }
}
.introduction .introduction__ttl {
  padding: 16px 0 46px;
  color: var(--Site-color-Brand-Color);
  text-align: center;
  font-size: var(--font-size-text-6xl);
  font-weight: 600;
  line-height: 120%; /* 45.6px */
  letter-spacing: 1.6px;
}
@media (max-width: 391px) {
  .introduction .introduction__ttl {
    font-size: var(--font-size-text-5xl);
  }
}
@media (min-width: 1025px) {
  .introduction .introduction__ttl {
    padding: 16px 0 64px;
    letter-spacing: 2.6px;
  }
}
.introduction .introduction__ttl span {
  color: var(--Site-color-CTA-Color);
}
.introduction .introduction__ttl::after {
  content: "";
  display: block;
  width: 72px;
  height: 23px;
  margin: 16px auto 0;
  background: url(../images/logo_txt_brown.svg) no-repeat 0 0;
}
@media (min-width: 641px) {
  .introduction .introduction__ttl br {
    display: none;
  }
}
.introduction .introduction__txt {
  padding-bottom: 24px;
  text-align: center;
  font-size: var(--font-size-text-base);
  font-weight: 300;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.7px;
}
.introduction .introduction__txt.small {
  padding-bottom: 48px;
  font-size: var(--font-size-text-xxs);
}
.introduction .introduction__vr {
  border-radius: var(--rounded-3xl);
  background: var(--Site-color-Brand-Color);
}
.introduction .introduction__vr .introduction__vr__summary > h3 {
  display: flex;
  padding: 24px 24px 24px 16px;
  color: var(--Semantic-color-White);
  font-size: var(--font-size-text-xl);
  font-style: normal;
  font-weight: 600;
  line-height: 162.5%; /* 29.25px */
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .introduction .introduction__vr .introduction__vr__summary > h3 {
    padding: 24px 32px;
  }
}
.introduction .introduction__vr .introduction__vr__summary > h3 .icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}
.introduction .introduction__vr .introduction__vr__summary > h3 .icon::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 7px;
  display: block;
  width: 2px;
  height: 16px;
  background: var(--Semantic-color-White);
  transition: all 0.3s ease-in-out;
}
.introduction .introduction__vr .introduction__vr__summary > h3 .icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 16px;
  height: 2px;
  background: var(--Semantic-color-White);
  transition: all 0.3s ease-in-out;
}
.introduction .introduction__vr .introduction__vr__summary.is-active > h3 .icon::before {
  transform: rotate(90deg);
}
.introduction .introduction__vr .introduction__vr__summary.is-active > h3 .icon::after {
  opacity: 0;
}
.introduction .introduction__vr .introduction__vr__inner {
  padding: 0 16px 24px;
}
@media (min-width: 1025px) {
  .introduction .introduction__vr .introduction__vr__inner {
    padding: 0 32px 24px;
  }
}
.introduction .introduction__vr .introduction__vr__inner .introduction__vr__video {
  width: 100%;
}
.introduction .introduction__vr .introduction__vr__inner .introduction__vr__txt {
  padding-top: 40px;
  color: var(--Semantic-color-White);
  font-size: var(--font-size-text-base);
  font-weight: 300;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.7px;
}
.introduction .introduction__vr .introduction__vr__inner .introduction__vr__txt strong {
  color: var(--Site-color-CTA-Color);
  font-weight: 600;
  line-height: 162.5%;
  letter-spacing: 0.35px;
}
@media (min-width: 1025px) {
  .introduction .introduction__vr .introduction__vr__inner .layout-pc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
  .introduction .introduction__vr .introduction__vr__inner .layout-pc .introduction__vr__txt {
    padding-top: 0;
  }
  .introduction .introduction__vr .introduction__vr__inner .layout-pc .introduction__video {
    grid-area: 1/1/2/2;
  }
  .introduction .introduction__vr .introduction__vr__inner .layout-pc .txt-layout-pc {
    grid-area: 1/2/2/3;
  }
  .introduction .introduction__vr .introduction__vr__inner .layout-pc .txt-layout-pc .introduction__vr__txt:first-child {
    padding-bottom: 32px;
  }
  .introduction .introduction__vr .introduction__vr__inner .layout-pc > .introduction__vr__txt {
    grid-area: 2/1/3/3;
  }
}

/***************************
	ticket
/***************************/
.ticket {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #e62131 0%, #ff7d7f 99.99%);
}
.ticket .ticket__ttl-wrap {
  padding-bottom: 48px;
}
.ticket .ticket__ttl-wrap .ticket__ttl-wrap__parts {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  grid-column-gap: 12px;
  place-items: center;
  height: 22px;
}
.ticket .ticket__ttl-wrap .ticket__ttl-wrap__parts .line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--Semantic-color-White);
}
.ticket .ticket__ttl-wrap .ticket__ttl-wrap__parts .icon {
  display: block;
  width: 24px;
  height: 22px;
  background: url(../images/icon_heart_white.svg) no-repeat 0 0;
}
.ticket .ticket__ttl-wrap .ticket__ttl-wrap__ttl {
  padding-top: 24px;
  text-align: center;
  color: var(--Semantic-color-White);
  font-size: var(--font-size-text-6xl);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 45.6px */
  letter-spacing: 1.9px;
}
.ticket .ticket__ttl-wrap .ticket__ttl-wrap__sub {
  display: block;
  padding-top: 8px;
  color: var(--Semantic-color-White, #fff);
  text-align: center;
  font-family: var(--font-family-EN);
  font-size: var(--font-size-text-2xl);
  font-weight: 700;
  line-height: 137.5%; /* 27.5px */
  letter-spacing: 10px;
}
.ticket .ticket__box {
  margin-bottom: 32px;
  padding: 32px 20px 36px;
  border-radius: var(--rounded-3xl);
  background: linear-gradient(180deg, rgba(255, 235, 235, 0.65) 0%, rgba(255, 255, 255, 0.65) 100%);
  box-shadow: 10px 14px 24px 0 #ef3340;
}
.ticket .ticket__box .ticket__box__sttl {
  padding-bottom: 8px;
  text-align: center;
  color: var(--Site-color-CTA-Color);
  font-size: var(--font-size-text-2xl);
  font-style: normal;
  font-weight: 600;
  line-height: 162.5%; /* 32.5px */
  letter-spacing: 0.5px;
}
.ticket .ticket__box .ticket__box__desc {
  padding-bottom: 24px;
  text-align: center;
  font-size: var(--font-size-text-base);
  font-weight: 600;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.35px;
}
.ticket .ticket__box .ticket__box__desc.normal {
  padding-bottom: 0;
  font-weight: 300;
}
.ticket .ticket__box .ticket__box__price {
  padding-bottom: 8px;
  text-align: center;
  font-size: var(--font-size-text-base);
  font-weight: 300;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.7px;
}
.ticket .ticket__box .ticket__box__price strong {
  display: inline-block;
  padding: 0 8px;
  font-family: var(--font-family-EN);
  font-size: var(--font-size-text-5xl);
  font-weight: 700;
  line-height: 120%; /* 38.4px */
  letter-spacing: 1.6px;
}
.ticket .ticket__box .ticket__box__at {
  padding-bottom: 24px;
  text-align: center;
  color: var(--Site-color-CTA-Color);
  font-size: var(--font-size-text-xs);
  font-weight: 300;
  line-height: 162.5%; /* 16.25px */
  letter-spacing: 0.5px;
}
.ticket .ticket__box .ticket__box__period {
  padding-bottom: 24px;
  text-align: center;
  font-family: var(--font-family-JP, "Hiragino Kaku Gothic ProN");
  font-size: var(--font-size-text-base);
  font-weight: 600;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.35px;
}
@media (min-width: 641px) {
  .ticket .ticket__box .ticket__box__period br {
    display: none;
  }
}
.ticket .ticket__box .ticket__box__period span {
  display: inline-block;
  margin: 0 0 5px 0;
  padding: 0 8px;
  font-size: var(--font-size-text-sm);
  font-weight: 300;
  border-radius: var(--rounded-full);
  border: 1px solid var(--Site-color-Brand-Color);
}
@media (min-width: 641px) {
  .ticket .ticket__box .ticket__box__period span {
    margin: 0 4px 0 0;
  }
}
.ticket .ticket__box .ticket__box__btn {
  position: relative;
  height: 58px;
  border-radius: var(--rounded-lg);
  border: 1px solid #b9000e;
  background: var(--Site-color-CTA-Color);
  filter: url(#filter);
  transition: opacity 0.3s ease;
}
.ticket .ticket__box .ticket__box__btn:hover {
  opacity: 0.85;
}
@media (min-width: 1025px) {
  .ticket .ticket__box .ticket__box__btn {
    max-width: 450px;
    margin: 0 auto;
  }
}
.ticket .ticket__box .ticket__box__btn a {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: var(--Semantic-color-White);
  font-size: var(--font-size-text-lg);
  font-weight: 600;
  line-height: 137.5%; /* 22px */
  letter-spacing: 0.4px;
}
.ticket .ticket__schedule-sttl {
  padding: 40px 0 24px;
  color: var(--Semantic-color-White);
  text-align: center;
  font-size: var(--font-size-text-2xl);
  font-weight: 600;
  line-height: 162.5%; /* 32.5px */
  letter-spacing: 0.5px;
}
.ticket .ticket__table table tr th {
  padding: 14px 0;
  color: var(--Semantic-color-White);
  text-align: center;
  font-size: var(--font-size-text-base);
  font-style: normal;
  font-weight: 300;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.7px;
  background: var(--Site-color-CTA-Color);
}
.ticket .ticket__table table tr th:first-child, .ticket .ticket__table table tr th:last-child {
  width: 40%;
}
@media (min-width: 641px) {
  .ticket .ticket__table table tr th:first-child, .ticket .ticket__table table tr th:last-child {
    width: 43%;
  }
}
@media (min-width: 1025px) {
  .ticket .ticket__table table tr th:first-child, .ticket .ticket__table table tr th:last-child {
    width: 40%;
  }
}
.ticket .ticket__table table tr td {
  padding: 12px;
  text-align: center;
  font-size: var(--font-size-text-base);
  font-weight: 300;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.7px;
  background: #fdc5c6;
  border-bottom: 1px solid #f89ca1; /*#f89ca1*/
  border-right: 1px solid #f89ca1;
}
.ticket .ticket__table table tr td:last-child {
  border-right: none;
}
.ticket .ticket__table table tr td.r-left-bottom {
  border-bottom: none;
}
.ticket .ticket__table table tr:last-child td {
  border-bottom: none !important;
}

/***************************
	novelty
/***************************/
.novelty {
  background: var(--Site-color-Background2) url(../images/bg_novelty.webp) repeat-y center -150px;
}
@media (min-width: 1025px) {
  .novelty {
    background: var(--Site-color-Background2) url(../images/bg_novelty_pc.webp) repeat-y center 0;
  }
}
.novelty .novelty__ttl-wrap {
  padding-bottom: 48px;
}
.novelty .novelty__ttl-wrap .novelty__ttl-wrap__parts {
  display: grid;
  grid-template-columns: 1fr 24px 24px 1fr;
  grid-column-gap: 12px;
  place-items: center;
  height: 22px;
}
.novelty .novelty__ttl-wrap .novelty__ttl-wrap__parts .line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--Site-color-CTA-Color);
}
.novelty .novelty__ttl-wrap .novelty__ttl-wrap__parts .icon {
  display: block;
  width: 24px;
  height: 22px;
  background: url(../images/icon_heart_red.svg) no-repeat 0 0;
}
.novelty .novelty__ttl-wrap .novelty__ttl-wrap__ttl {
  padding-top: 24px;
  text-align: center;
  color: var(--Site-color-CTA-Color);
  font-size: var(--font-size-text-6xl);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 45.6px */
  letter-spacing: 1.9px;
}
.novelty .novelty__ttl-wrap .novelty__ttl-wrap__sub {
  display: block;
  padding-top: 8px;
  color: var(--Site-color-CTA-Color);
  text-align: center;
  font-family: var(--font-family-EN);
  font-size: var(--font-size-text-2xl);
  font-weight: 700;
  line-height: 137.5%; /* 27.5px */
  letter-spacing: 10px;
}
.novelty .novelty__sttl {
  padding: 0 0 24px;
  text-align: center;
  font-size: var(--font-size-text-2xl);
  font-weight: 600;
  line-height: 162.5%; /* 32.5px */
  letter-spacing: 0.5px;
}
@media (min-width: 1025px) {
  .novelty .novelty__sttl br {
    display: none;
  }
}
.novelty .novelty__table table tr th {
  width: 25%;
  padding: 12px 8px;
  color: var(--Semantic-color-White);
  text-align: center;
  font-size: var(--font-size-text-base);
  font-style: normal;
  font-weight: 300;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.7px;
}
.novelty .novelty__table table tr th.txt-bold {
  padding-bottom: 0;
  font-weight: 600;
}
.novelty .novelty__table table tr:nth-child(2) th:first-child {
  width: 20%;
}
.novelty .novelty__table table tr td {
  padding: 12px 8px;
  text-align: center;
  font-size: var(--font-size-text-base);
  font-weight: 300;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.7px;
}
@media (min-width: 641px) {
  .novelty .novelty__table table tr td br {
    display: none;
  }
}
.novelty .novelty__table table tr td span {
  display: inline-block;
  padding: 4px 16px;
  border-radius: var(--rounded-lg);
  font-weight: 600;
  font-size: var(--font-size-text-sm);
  line-height: 162.5%; /* 19.5px */
  letter-spacing: 0.3px;
}
.novelty .novelty__table table tr td:first-child {
  border-right: none !important;
}
.novelty .novelty__table table tr td:last-child {
  border-right: none;
}
.novelty .novelty__table.color-red {
  padding-bottom: 24px;
}
@media (min-width: 1025px) {
  .novelty .novelty__table.color-red {
    padding-bottom: 40px;
  }
}
.novelty .novelty__table.color-red table tr th {
  background: var(--Site-color-CTA-Color);
}
.novelty .novelty__table.color-red table tr td {
  border-right: 1px solid #f9c3c7;
}
.novelty .novelty__table.color-red table tr td span {
  background: #ffa5a6;
}
.novelty .novelty__table.color-red table tr.c1 td {
  background: rgba(255, 255, 255, 0.4);
}
.novelty .novelty__table.color-red table tr.c2 td {
  background: rgba(255, 255, 255, 0.7);
}
.novelty .novelty__table.color-blue {
  padding-bottom: 72px;
}
.novelty .novelty__table.color-blue table tr th {
  background: #0b69d8;
}
.novelty .novelty__table.color-blue table tr td {
  color: #293341;
  border-right: 1px solid #a5cbf5;
}
.novelty .novelty__table.color-blue table tr td span {
  background: #84bdff;
}
.novelty .novelty__table.color-blue table tr.c1 td {
  background: #d5e9ff;
}
.novelty .novelty__table.color-blue table tr.c2 td {
  background: rgba(255, 255, 255, 0.7);
}
.novelty .novelty__list {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 760px) {
  .novelty .novelty__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
}
@media (min-width: 1025px) {
  .novelty .novelty__list {
    gap: 16px;
  }
}
.novelty .novelty__list > li {
  opacity: 0.8; /*後ほど調整*/
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  gap: 8px 0;
  border-radius: var(--rounded-3xl);
  filter: url(#filter);
}
.novelty .novelty__list > li:nth-child(1) {
  order: 1;
}
.novelty .novelty__list > li:nth-child(2) {
  order: 3;
}
.novelty .novelty__list > li:nth-child(3) {
  order: 5;
}
.novelty .novelty__list > li:nth-child(4) {
  order: 2;
}
.novelty .novelty__list > li:nth-child(5) {
  order: 4;
}
.novelty .novelty__list > li:nth-child(6) {
  order: 6;
}
@media (min-width: 760px) {
  .novelty .novelty__list > li:nth-child(1) {
    order: 1;
  }
  .novelty .novelty__list > li:nth-child(2) {
    order: 2;
  }
  .novelty .novelty__list > li:nth-child(3) {
    order: 3;
  }
  .novelty .novelty__list > li:nth-child(4) {
    order: 4;
  }
  .novelty .novelty__list > li:nth-child(5) {
    order: 5;
  }
  .novelty .novelty__list > li:nth-child(6) {
    order: 6;
  }
}
.novelty .novelty__list > li .release {
  display: block;
  padding: 0 24px;
  border-radius: var(--rounded-full);
  font-size: var(--font-size-text-xs);
  font-style: normal;
  font-weight: 600;
  line-height: 137.5%; /* 13.75px */
  letter-spacing: 0.25px;
}
.novelty .novelty__list > li .novelty {
  background: none;
  color: var(--Semantic-color-White);
  font-size: var(--font-size-text-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 137.5%; /* 22px */
  letter-spacing: 0.4px;
  text-align: center;
}
@media (min-width: 760px) {
  .novelty .novelty__list > li .novelty br {
    display: none;
  }
}
.novelty .novelty__list > li .coming-soon {
  padding: 0 16px;
  border-radius: var(--rounded-full);
  color: var(--Semantic-color-White);
  font-family: var(--font-family-EN);
  font-size: var(--font-size-text-base);
  font-weight: 500;
  line-height: 137.5%; /* 19.25px */
  letter-spacing: 0.35px;
}
.novelty .novelty__list > li.color-red {
  border: 1px solid #b9000e;
  background: var(--Site-color-CTA-Color);
}
.novelty .novelty__list > li.color-red .release {
  color: var(--Site-color-CTA-Color);
  background: #ffa5a6;
}
.novelty .novelty__list > li.color-red .coming-soon {
  background: #4f2727;
}
.novelty .novelty__list > li.color-blue {
  border: 1px solid #005ecb;
  background: #0066dc;
}
.novelty .novelty__list > li.color-blue .release {
  color: #2574d7;
  background: #84bdff;
}
.novelty .novelty__list > li.color-blue .coming-soon {
  background: #293341;
}

/***************************
	news
/***************************/
.news {
  background: var(--Site-color-Background1);
}
.news .section-inner {
  padding-bottom: 48px;
}
@media (min-width: 1025px) {
  .news .section-inner {
    padding-bottom: 64px;
  }
}
.news .news__ttl-wrap {
  padding-bottom: 48px;
}
@media (min-width: 1025px) {
  .news .news__ttl-wrap {
    padding-bottom: 64px;
  }
}
.news .news__ttl-wrap .news__ttl-wrap__ttl {
  text-align: center;
  font-size: var(--font-size-text-6xl);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 45.6px */
  letter-spacing: 1.9px;
}
.news .news__ttl-wrap .news__ttl-wrap__sub {
  display: block;
  padding-top: 8px;
  text-align: center;
  font-family: var(--font-family-EN);
  font-size: var(--font-size-text-2xl);
  font-weight: 700;
  line-height: 137.5%; /* 27.5px */
  letter-spacing: 10px;
}
.news .news-wrap {
  padding: 24px 16px;
  border-radius: var(--rounded-3xl);
  background: linear-gradient(180deg, rgba(255, 37, 37, 0.2) 0%, rgba(255, 37, 37, 0.02) 100%);
  box-shadow: 10px 14px 24px 0 var(--Site-color-Background2);
}
@media (min-width: 1025px) {
  .news .news-wrap {
    padding: 24px 32px;
  }
}
.news .news__list {
  height: 152px;
  overflow: auto;
}
.news .news__list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1025px) {
  .news .news__list {
    height: 140px;
  }
}
.news .news__list .news__item {
  border-bottom: 1px solid #dcb7b7;
}
.news .news__list .news__item:last-child {
  border-bottom: none;
}
.news .news__list .news__item > a {
  display: block;
  padding: 16px 0;
}
@media (min-width: 1025px) {
  .news .news__list .news__item > a {
    display: flex;
    align-items: center;
    gap: 0px 16px;
  }
}
.news .news__list .news__item > a .news__item-date {
  display: flex;
  align-items: center;
  color: #ff4680;
  font-family: var(--font-family-EN, Barlow);
  font-size: var(--font-size-text-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 162.5%; /* 26px */
  letter-spacing: 0.8px;
}
.news .news__list .news__item > a .news__item-date.new::before {
  display: block;
  margin-right: 8px;
  padding: 0 6px;
  content: "NEW";
  color: var(--Site-color-Background1);
  font-family: var(--font-family-EN, Barlow);
  font-size: var(--font-size-text-xs);
  font-style: normal;
  font-weight: 600;
  line-height: 137.5%; /* 13.75px */
  letter-spacing: 0.25px;
  border-radius: var(--rounded-full);
  background: var(--Site-color-CTA-Color);
}
.news .news__list .news__item > a .news__item-title {
  font-size: var(--font-size-text-base);
  font-style: normal;
  font-weight: 600;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.35px;
}

/***************************
	profile
/***************************/
.profile {
  background: var(--Site-color-Background1);
}
.profile .section-inner {
  padding-top: 48px;
}
@media (min-width: 1025px) {
  .profile .section-inner {
    padding-top: 64px;
  }
}
.profile .profile__ttl-wrap {
  padding-bottom: 48px;
}
@media (min-width: 1025px) {
  .profile .profile__ttl-wrap {
    padding-bottom: 64px;
  }
}
.profile .profile__ttl-wrap .profile__ttl-wrap__logo {
  display: block;
  padding-bottom: 8px;
}
.profile .profile__ttl-wrap .profile__ttl-wrap__logo img {
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .profile .profile__ttl-wrap .profile__ttl-wrap__logo img {
    width: 360px;
  }
}
.profile .profile__ttl-wrap .profile__ttl-wrap__ttl {
  text-align: center;
  font-size: var(--font-size-text-6xl);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 45.6px */
  letter-spacing: 1.9px;
}
.profile .profile__ttl-wrap .profile__ttl-wrap__sub {
  display: block;
  padding-top: 8px;
  text-align: center;
  font-family: var(--font-family-EN);
  font-size: var(--font-size-text-2xl);
  font-weight: 700;
  line-height: 137.5%; /* 27.5px */
  letter-spacing: 10px;
}
.profile .profile__img {
  padding-bottom: 32px;
}
.profile .profile__img .txt-credit {
  display: block;
  padding-top: 8px;
  text-align: center;
  font-size: var(--font-size-text-xs, 10px);
  font-weight: 300;
  line-height: 162.5%; /* 16.25px */
  letter-spacing: 0.5px;
}
.profile .profile__txt {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.profile .profile__txt > p {
  font-size: var(--font-size-text-base);
  font-weight: 300;
  line-height: 162.5%; /* 22.75px */
  letter-spacing: 0.7px;
}

/***************************
	information
/***************************/
.information {
  background: var(--Site-color-Brand-Color);
}
.information .section-inner {
  padding-bottom: 48px;
}
@media (min-width: 1025px) {
  .information .section-inner {
    padding-bottom: 64px;
  }
}
.information .information__box {
  padding: 32px 16px;
  border-radius: var(--rounded-3xl);
  background: rgba(255, 235, 235, 0.08);
  color: var(--Semantic-color-White);
}
@media (min-width: 1025px) {
  .information .information__box {
    padding: 32px;
  }
}
.information .information__box:first-child {
  margin-bottom: 24px;
}
.information .information__box .information__box__ttl {
  padding-bottom: 24px;
  text-align: center;
  font-size: var(--font-size-text-4xl);
  font-style: normal;
  font-weight: 600;
  line-height: 162.5%; /* 39px */
  letter-spacing: 1.2px;
}
@media (min-width: 1025px) {
  .information .information__box .information__box__ttl {
    padding-bottom: 40px;
  }
}
.information .information__box .information__box__ttl.sp0 {
  padding-bottom: 0;
}
.information .information__box .information__box__at {
  padding-bottom: 24px;
  text-align: center;
  color: var(--Site-color-CTA-Color);
}
@media (min-width: 1025px) {
  .information .information__box .information__box__at {
    padding-bottom: 40px;
  }
}
.information .information__box .information__box__list {
  font-size: var(--font-size-text-sm);
  font-weight: var(--font-weight-font-nomal, 300);
  line-height: 162.5%; /* 19.5px */
  letter-spacing: 0.3px;
}
.information .information__box .information__box__list .bold {
  font-weight: 600;
}
.information .information__box .information__box__list .sp {
  padding-bottom: 20px;
}
.information .information__box .information__box__list a {
  text-decoration: underline;
}

/***************************
	ticket btn
/***************************/
.ticket-btn {
  position: sticky;
  left: 0;
  bottom: 0;
  height: 62px;
  pointer-events: none;
  z-index: 50;
}
@media (min-width: 641px) {
  .ticket-btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 5px;
    height: 100px;
  }
}
.ticket-btn .ticket-btn__inner {
  opacity: 0;
  pointer-events: all;
  width: 100%;
  height: 100%;
  animation: slideInTicket 0.4s ease-in-out 0.5s forwards;
}
@media (min-width: 641px) {
  .ticket-btn .ticket-btn__inner {
    position: relative;
    width: 328px;
    height: 100px;
    background: url(../images/img_ticket.svg) no-repeat 0 0;
  }
}
.ticket-btn .ticket-btn__inner > a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: var(--Semantic-color-White);
  font-size: var(--font-size-text-lg);
  font-style: normal;
  font-weight: 600;
  line-height: 162.5%; /* 26px */
  letter-spacing: 0.4px;
  background: var(--Site-color-CTA-Color);
}
.ticket-btn .ticket-btn__inner > a::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background: url(../images/icon_ticket_white.svg) no-repeat 0 0;
}
@media (min-width: 641px) {
  .ticket-btn .ticket-btn__inner > a {
    display: block;
    position: absolute;
    top: 12px;
    left: 14px;
    opacity: 0.3;
    width: 280px;
    height: 72px;
    background: none;
  }
  .ticket-btn .ticket-btn__inner > a::before {
    content: none;
  }
  .ticket-btn .ticket-btn__inner > a span {
    display: none;
  }
}

/***************************
	footer
/***************************/
.footer {
  background: var(--Site-color-Brand-Color);
}
.footer .section-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1025px) {
  .footer .section-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.footer .footer__pgtp {
  padding-bottom: 40px;
}
.footer .footer__pgtp a {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto;
}
.footer .footer__pgtp a img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--rounded-full);
  border: 1px solid var(--Semantic-color-White);
  padding: 4px;
}
.footer .footer__pgtp span {
  display: block;
  margin-top: 12px;
  color: var(--Semantic-color-White);
  text-align: center;
  font-family: var(--font-family-EN);
  font-size: var(--font-size-text-base);
  font-style: normal;
  font-weight: 500;
  line-height: 137.5%; /* 19.25px */
  letter-spacing: 0.7px;
}
.footer .footer__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 80px;
}
@media (min-width: 641px) {
  .footer .footer__list {
    display: flex;
    justify-content: center;
    gap: 0px 80px;
  }
}
.footer .footer__list > li {
  display: flex;
  align-items: center;
}
.footer .footer__list > li:nth-child(odd) {
  justify-content: flex-end;
}
.footer .footer__copy {
  padding-top: 40px;
}
.footer .footer__copy > p {
  color: var(--Semantic-color-White);
  text-align: center;
  font-family: var(--font-family-EN);
  font-size: var(--font-size-text-xxs);
  font-weight: 500;
  line-height: 162.5%; /* 16.25px */
  letter-spacing: 0.25px;
}

/*# sourceMappingURL=style.css.map */
