@charset "utf-8";

/*================================
common
================================*/
:root {
  --color_BLK: #191919;
  --color_RED: #e61b20;
  --colo-yellow: #faed00;
  --colo-blue: #188fa7;
  --gap_96px: clamp(32px, 12vw, 96px);
  --gap_80px: clamp(27px, 10vw, 80px);
  --gap_64px: clamp(21px, 8vw, 64px);
  --gap_48px: clamp(16px, 6vw, 48px);
  --gap_32px: clamp(11px, 4vw, 32px);
  --gap_24px: clamp(8px, 3vw, 24px);
  --gap_16px: clamp(5px, 2vw, 16px);
  --gap_8px: clamp(3px, 1vw, 8px);
}

body {
  width: 100%;
  position: relative;
}

body,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: normal;
}

li,
ol,
ul {
  list-style-type: none;
}

table {
  width: 100%;
}

#page {
  font-size: clamp(18px, 2.2vw, 20px);
  color: #fff;
  background: #191919;
  font-feature-settings: "palt";
  font-family: YakuHanMP, "Noto Serif JP", serif;
  line-height: 1.4;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  position: relative;
}

#page * {
  box-sizing: border-box;
}

#page img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

#page a {
  transition: all 0.3s;
  /* text-decoration: none; */
}

#page a[tabindex*="-1"] {
  pointer-events: none;
}

#page a[tabindex*="-1"]:hover {
  opacity: 1;
}

/* リンクとボタンのoutlineを非表示にする */
#page a,
#page button {
  outline: none;
  cursor: pointer;
}

/* ボタンとリンクにフォーカスした時にoutlineが表示されるようにする */
#page a:focus-visible {
  outline: #3683BF solid 2px;
  outline-offset: 2px;
}

#page button:focus-visible {
  outline: #3683BF solid 2px;
  outline-offset: 1px;
}

#page a:hover {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.7;
}

#page label {
  cursor: pointer;
}

#page em {
  font-style: normal;
  font-weight: bold;
}

#page picture {
  display: block;
}

/* #page section {
  padding-top: 10px;
  margin-top: -10px;
} */

.pc {
  display: block;
}

.sp {
  display: none;
}

.ib {
  font-size: inherit !important;
  display: inline-block;
}

.bold {
  font-weight: 700;
}

#page_top {
  position: fixed;
  right: 3%;
  bottom: 2%;
  display: block;
  width: min(13vw, 60px);
  height: auto;
  z-index: 999;
}

#page_top img {
  width: 100%;
  height: auto;
}


#event,
#ticket_info,
#faq,
#ticket01,
#ticket02,
#ticket03,
#ticket04 {
  padding-top: min(5vw,70px);
  margin-top: min(-5vw,-70px);
}



@media not screen and (min-width: 767px) {
  #page_top {
    z-index: 0;
  }
}

.top__movie {
  margin: var(--gap_64px) auto 0;
}

.movie {
  position: relative;
  max-width: 900px;
  aspect-ratio: 16/9;
  margin: 0 auto var(--gap_32px);
  overflow: hidden;
}

.tvo-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

/*================================
container
================================*/
#container {
  margin: 0 auto;
  position: relative;
  width: 100%;
}
#contents {
  margin: 0 auto;
  width: 100%;
  position: relative;
  background-color: #191919;
}
@media screen and (min-width: 768px) {
  #contents {
    max-width: 500px;
    border-left: 3px solid rgba(230, 27, 32, 0.25);
    border-right: 3px solid rgba(230, 27, 32, 0.25);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
    min-height: 100vh;
  }
}


.fixBox {
  display: grid;
  grid-template-columns: 1fr min(30rem, 480px) 1fr;
  width: 100%;
  top: 6vw;
  transition: opacity 0.3s ease;
}


.fixBox.is-hide {
  opacity: 0;
  pointer-events: none;
}

.fixBox .fixBoxLeft {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0 var(--gap_16px);
}

@media screen and (min-width: 768px) {
  .fixBox  {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* z-index: 0; */
  }

  .fixBoxLeft,
  .fixBoxRight {
    pointer-events: auto;
    height: 100vh;
  }

  .fixBox.is-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .fixBox .fixBoxLeft {
    display: none;
  }
}

.fixBox .fixBoxRight {
  text-align: center;
  align-items: center;
  display: flex;
  grid-column: 3;
  /* height: 100%; */
  justify-content: center;
}

@media screen and (max-width: 750px) {
  .fixBox .fixBoxRight {
    display: none;
  }
}

/*================================
spMenu
================================*/
@media screen and (min-width: 758px) {
  .spMenuWrap {
    display: none;
  }
}

@media not screen and (min-width: 768px) {
  .spMenuWrap {
    display: block;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: rgba(25, 25, 25, 0.75);
    /* height: 12vw; */
  }

  #menu {
    z-index: 9999;
    margin-top: 0;
    padding: 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
  #menu.current #menuBtn span:nth-of-type(1) {
    display: none;
  }
  #menu.current #menuBtn span:nth-of-type(2) {
    transform: rotate(30deg);
    margin-top: 0;
  }
  #menu.current #menuBtn span:nth-of-type(3) {
    transform: rotate(-30deg);
    margin-top: 0;
  }
  #menu.current #menuBtn span:nth-of-type(4) {
    display: none;
  }
  #menu.current .menuContents {
    display: block;
  }
  #menu .lang {
    position: absolute;
    top: 3.5vw;
    right: 18vw;
  }
  #menu #menuBtn {
    display: block;
    width: 90px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 99;
    width: 16vw;
    height: 12vw;
  }
  #menu #menuBtn span {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 40px;
    width: 60px;
    height: 2px;
    background-color: #e61b20;
    transition: all 0.2s ease-in;
    right: 3vw;
    top: 6vw;
    width: 10vw;
  }
  #menu #menuBtn span:nth-of-type(1) {
    margin-top: -15px;
  }
  #menu #menuBtn span:nth-of-type(2) {
    background-color: #e61b20;
  }
  #menu #menuBtn span:nth-of-type(3) {
    background-color: #e61b20;
  }
  #menu #menuBtn span:nth-of-type(4) {
    margin-top: 15px;
  }
  #menu #menuBtn span:nth-of-type(1) {
    margin-top: -2vw;
  }
  #menu #menuBtn span:nth-of-type(4) {
    margin-top: 2vw;
  }
  #menu .menuContents {
    display: none;
    transition: all 0.2s ease-in;
    background-color: rgba(25, 25, 25, 0.95);
    color: #FFF;
    width: 100%;
    height: 100vh;
  }
  #menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    padding: 22vw 5vw 0 5vw;
  }
  #menu ul li {
    text-align: center;
    padding: 0 10px;
    font-size: 28px;
    font-weight: 500;
    display: block;
    width: 100%;
    font-size: 5.4vw;
  }
  #menu ul li a {
    display: block;
    padding: 20px 0;
    color: #e61b20;
    display: block;
    padding: 3vw;
    line-height: 1;
  }
  #menu ul li a:hover {
    text-decoration: none;
  }
  #menu ul li:after {
    display: none;
  }
  #menu ul li img {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: auto;
    height: 6vw;
  }
  #menu ul li.mnStory img {
    height: 9vw;
  }
  #menu ul li.mnTicket img, #menu ul li.goods img {
    height: 8vw;
  }
  #menu.move {
    margin-top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    left: 0;
  }
  
}





/*-------------------------------------------------
	++ MENU
-------------------------------------------------*/
.pcMenu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcMenu li a:hover {
  color: #e61b20;
}


.snsBtn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: min(5px, 1.4vw);
}
@media not screen and (min-width: 768px) {
  .snsBtn {
    margin-top: 5vw;
  }
}

.snsBtn a {
  border: 1px solid #f2f2f2;
  border-radius: 100%;
  padding: .3em !important;
  aspect-ratio: 1/1;
  /* width: min(30px, 8vw); */
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media not screen and (min-width: 768px) {
  .snsBtn a img {
    width: 100% !important;
    height: auto !important;
  }
}

/*================================
共通パーツ
================================*/
#page h1 {
  font-size: 0;
}

#wrapper section {
  padding-bottom: var(--gap_64px);
}

.inner {
  width: 96%;
  max-width: 530px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.mb10 {
  margin-bottom: var(--gap_16px);
}

.mb20 {
  margin-bottom: var(--gap_24px);
}

.mb30 {
  margin-bottom: var(--gap_32px);
}

.mb50 {
  margin-bottom: var(--gap_48px);
}

.mb60 {
  margin-bottom: var(--gap_64px);
}

.mb80 {
  margin-bottom: var(--gap_80px);
}

.red {
  color: #be1c10 !important;
}

.bg_red {
  background: #be1c10 !important;
}

.contents__box {
  margin-bottom: var(--gap_48px);
}


.main_title {
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--color_RED);
  text-align: center;
  margin-bottom: var(--gap_8px);
}

.h2_sub {
  display: inline-block;
  background-color: var(--color_RED);
  color: var(--color_BLK);
  margin-bottom: var(--gap_48px);
}



@media not screen and (min-width: 768px) {
  .inner {
    width: 94%;
    padding-inline: calc((16/750)*100vw);
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}



@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);

#wrapper {
  width: 100%;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wrapper {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}

.box_cnt {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.small {
  font-size: .8em;
}

.logo_bg {
  width: 100%;
  text-align: center;
  background: #fff;
}

.logo_bg > img {
  padding: var(--gap_16px) var(--gap_8px);
}


/*================================
.swiper
================================*/
.mv__img .swiper-pagination {
  position: static;
}

.mv__img .swiper-pagination-bullet {
  background: #777;
}

.mv__img .swiper-pagination-bullet-active {
  background: #fff;
}


/*================================
contents
================================*/
.contents__list {
  margin-bottom: var(--gap_16px);
}

.contents__list > dt,
.sub__title01 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--gap_16px);
}

.contents__list > dt::before,
.sub__title01::before {
  display: block;
  content: "";
  margin-top: 3px;
  margin-right: .3em;
  width: 1em;
  height: 1em;
  background-color: var(--color_RED);
}

.contents__list > dd {
  font-size: .85em;
}

.list__text01 > li {
  font-size: .8em;
}

.sub__title02 {
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  background: #474747;
  padding: var(--gap_8px) 0;
  margin-bottom: var(--gap_16px);
}

.sub__title02.mb30 {
  margin-bottom: var(--gap_32px);
}

.sub__title03 {
  font-size: .95em;
  margin: 3% auto 10px;
  padding: 0 .4em var(--gap_8px);
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  border-bottom: 2px solid #fff;
  margin-bottom: var(--gap_24px);
}

.common_btn {
  background: #be1c10;
}


/*================================
mv
================================*/
.mv__list {
  margin: var(--gap_48px) auto 0;
}
.mv__list > div {
  font-size: 1.1em;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  width: fit-content;
  margin: 0 auto;
}

.mv__list > div:not(:last-child) {
  margin-bottom: var(--gap_16px);
}

@media not screen and (min-width: 768px) {
.mv__img {
  margin: 0 calc(50% - 50vw);
	width: 100vw;
}

}


/*================================
announce
================================*/


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

/*================================
event
================================*/
#event .contents__list > dt {
  margin-bottom: var(--gap_8px);
}

.event_map {
  margin-top: var(--gap_16px);
}



/*================================
ticket
================================*/
.ticket_detail {
  margin: var(--gap_16px) 0 ;
}

.ticket_detail > a {
  background: #be1c10;
  border: 1px solid #fff;
  padding: .2em 1em;
  border-radius: 20px;
}

.ticket_detail > a .icon {
  margin-left: 1.5em;
}

.timeTbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2px;
}

.timeTbl tr th {
  background-color: #252525;
  font-weight: normal;
}

.timeTbl tr th,
.timeTbl tr td {
  font-size: .95em;
  border: 1px solid #252525;
  width: 50%;
  padding: 3px;
  text-align: center;
  vertical-align: middle;
}

.about_ticket {
  font-size: 1.1em;
}

.ticket__pre {
  text-align: center;
}

.ticket__list02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap_32px) var(--gap_24px);
  margin: 0 0.5%;
}

.ticket__list02 .ticket__pre {
  text-align: center;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  align-items: center;
  gap: .25em;
}

.ticket__pre > a {
  width: 100%;
}

.ticket__contents {
  width: min(70vw, 350px);
  margin-inline: auto;
}

.pgw {
  font-size: .95em;
  margin-bottom: var(--gap_8px);
}

.code__list {
  width: fit-content;
  margin: var(--gap_16px) auto var(--gap_32px);
  
}

.code__list > li {
  border: 1px solid #3d3d3d;
}

.code__list > li .bold {
  font-size: .9em !important;
  font-weight: 600 !important;
  color: #fff;
  background: #252525;
  text-align: center;
  padding: .15em 3em;
}

.code__list > li .code {
  font-size: .9em !important;
  font-weight: 600 !important;
  color: #be1c10;
  background: #fff;
  padding: .15em 3em;
}

.ticket__text01 {
  font-size: .8em;
}

.ticket__text--red {
  display: inline-block;
  background-color: var(--color_RED);
  color: #edff36;
  text-indent: -1em;
  padding-left: 1em;
}


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

/*================================
faq
================================*/

.faq__list {
	margin-bottom: var(--gap_24px);
  border: 1px solid #777;
}

.faq__list:last-child {
	margin-bottom: var(--gap_64px);
}

/*================================
accordion style
================================*/
.module-accordion{
	margin: 0 auto;
}

.module-accordion:not(:last-child){
	margin-bottom: .2rem;
}

.module-accordion_title{
	margin-bottom: .1rem;
}

.module-accordion_btn{
	font-size: .85em;
	cursor: pointer;
	padding: var(--gap_8px) clamp(24px, 2.2em, 50px) var(--gap_8px) var(--gap_16px);
	font-weight: bold;
	line-height: 1.4;
	position: relative;
	display: flex;
	align-items: center;
}

.module-accordion_btn::after{
	font-size: 1.1em;
	color: var(--color_RED);
	content: '\f107';
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
  font-weight: 900;
	position: absolute;
	right: .8em;
	margin: auto;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.module-accordion_btn.is-open::after{
	-ms-transform: rotate(180deg);
    transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

.module-accordion_contents{
	font-size: .8em;
	line-height: 1.4em;
	display: none;
	padding: var(--gap_16px) clamp(24px,6vw,40px) var(--gap_16px) var(--gap_16px);
  border-top: 1px dotted #777;
}

.module-accordion_contents > div {
	display: flex;
}

.module-accordion_text {
	line-height: 1.8;
	position: relative;
	padding: var(--gap_24px) 0 var(--gap_24px) var(--gap_24px);
}

.module-accordion_btn > span, .module-accordion_contents > div > span {
	font-size: 1.1em;
    font-weight: 700;
    color: var(--color_RED);
    width: min(10vw, 30px);
    height: min(10vw, 30px);
    margin-right: .3em;
    border-radius: var(--gap_64px);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
}

@media not screen and (min-width: 768px) {
	.module-accordion_contents{
		padding: var(--gap_24px) var(--gap_16px);
	}
}


/*================================
attention
================================*/
.dotList {
  text-align: left;
}
.dotList:not(.sizeSS) {
  font-size: min(15px, 3vw);
}
.dotList li, .dotList dd {
  padding-left: 1em;
  line-height: 1.6;
  position: relative;
  margin-bottom: 5px;
}
.dotList li::before, .dotList dd::before {
  display: inline-block;
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}





/*================================
contact
================================*/
#contact {
  padding-bottom: var(--gap_80px) !important;
}

#contact .h2_sub {
  margin-bottom: var(--gap_64px);
}

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