@charset "utf-8";
html {
  scroll-behavior: smooth;
}
body {
  color: #fff;
  font-size: 16px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(15, 50, 120, 0.4) 0%, transparent 68%), linear-gradient(180deg, #050818 0%, #010108 40%, #000 100%);
  background-attachment: fixed; /* PC用 */
  min-height: 100vh;
} 
/* スマホではfixedを解除 */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}
img {
  max-width: 100%;
  height: auto;
}
.imgcenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
a {
  color: #fff;
  text-decoration: underline;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
a:hover {
  opacity: 0.75;
  text-decoration: none;
}

a {
  font-size: 16px;
  text-decoration:underline;
/*  color: rgba(255, 80, 0, 1);*/
}

.bg-fixed {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.bg-fixed::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../img/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
/*-------------------------------------
			PC/SP出し分け
---------------------------------------*/
.pcOnly {
  display: ;
   !important
}
.spOnly {
  display: none;
}
.spOnlyTxt {
  display: none;
}
@media(max-width:768px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
  .spOnlyTxt {
    display: inline;
  }
}
/*========= ページ全体　===============*/
header {
  text-align: center;
	background:
  url("../img/back.png") center / cover no-repeat,
  radial-gradient(120% 90% at 15% 25%, rgba(0, 60, 120, 0.22), transparent 60%),
  radial-gradient(100% 80% at 70% 30%, rgba(0, 40, 100, 0.20), transparent 65%),
  radial-gradient(90% 70% at 40% 75%, rgba(0, 50, 110, 0.18), transparent 70%),
  radial-gradient(110% 85% at 80% 70%, rgba(0, 30, 80, 0.20), transparent 65%),
  radial-gradient(70% 60% at 25% 60%, rgba(0, 70, 140, 0.15), transparent 75%),
  linear-gradient(
    180deg,
    #01172e 0%,
    #001326 40%,
    #000a18 100%
  );
}
header h2 {
  text-align: center;
  margin: 4rem 0;
}
footer p {
  text-align: center;
  font-size: 12px;
  margin: 5rem 0 1rem;
}
header h1 {
  width: 100%;
  margin: 0 auto;
}
section {
  margin: 8rem 0;
}
.inner {
  padding: 1rem;
}
.fantasy-text {
  font-weight: 900;
  font-size: clamp(27px, 4vw, 52px); /* サイズは適宜調整 */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  /* 金→オレンジ→赤のグラデーション */
  background: linear-gradient(180deg, #fff5aa 0%, #ffdd00 15%, #ff9900 40%, #cc2200 60%, #ff5500 78%, #ffcc44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* 炎のような発光 + 立体感の影 */
  filter:
    drop-shadow(0 0 8px rgba(255, 80, 0, 0.8)) drop-shadow(0 0 3px rgba(200, 20, 0, 0.9)) drop-shadow(3px 3px 1px rgba(0, 0, 0, 0.9)) drop-shadow(-1px -1px 0px rgba(80, 20, 0, 0.6));
}
h2 {
  text-align: center;
  margin: 1rem auto;
}
p {
  text-align: center;
  font-size: 16px;
}

.h2-a-wrap {
  text-align: center;
  margin-top: 5rem;
}
.h2-a {
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 46px);
  letter-spacing: 0.1em;
  display: block;
  line-height: 1.3;
  background: linear-gradient(180deg, #fff5aa 0%, #ffdd00 18%, #ff9900 42%, #cc2200 62%, #ff5500 80%, #ffcc44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(0 0 6px rgba(255, 80, 0, 0.7)) drop-shadow(0 0 2px rgba(200, 20, 0, 0.8)) drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.95));
}
.h2-a-sub {
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 0.3em;
  color: rgba(255, 80, 0, 1);
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
}
.h2-b-wrap {
  text-align: center;
}
.h2-b-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.h2-b-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cc6600, #ffaa00);
  position: relative;
}
.h2-b-line.right {
  background: linear-gradient(90deg, #ffaa00, #cc6600, transparent);
}
/* 菱形マーク */
.h2-b-line::after {
  content: '';
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  background: #ffaa00;
  transform: rotate(45deg);
  box-shadow: 0 0 4px #ff6600;
}
.h2-b-line.right::after {
  left: 0;
  right: auto;
}
.h2-b {
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 34px);
  letter-spacing: 0.12em;
  white-space: nowrap;
  background: linear-gradient(180deg, #fff5aa 0%, #ffdd00 18%, #ff9900 42%, #cc2200 62%, #ff5500 80%, #ffcc44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(0 0 6px rgba(255, 80, 0, 0.7)) drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.95));
}
.btn-a {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #ffcc44;
  border: 1px solid #cc7700;
  background: transparent;
  padding: 12px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-a:hover {
  background: rgba(180, 80, 0, 0.15);
  border-color: #ffaa00;
  color: #fff5aa;
}
.btn-a-icon {
  font-size: 28px;
  color: #cc7700;
  transition: color 0.25s, transform 0.2s;
  line-height: 1;
}
.btn-a:hover .btn-a-icon {
  color: #ffaa00;
  transform: translateX(3px);
}
@media(min-width:768px) {
  header h2 {
    margin: 8rem 0;
  }
  header h1 {
    width: 750px;
    margin: 0 auto;
  }
  h3 {
    font-size: 32px;
  }
  p {
    font-size: 18px;
  }
  a {
    font-size: 18px;
  }
  .btn-a {
    font-size: 24px;
  }
}

.lang_btn {
	padding: 1rem;
}






/* read */
#read {
    margin: 2rem 0 2rem;
    letter-spacing: 0.1em;
    display: block;
    line-height: 1.8;
    background: linear-gradient(180deg, #ff0000 0%, #ff9100 18%, #ffda00 35%, #f8ff00 55%, #ffd700 70%, #ffaa00 85%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 3px rgba(255, 200, 0, 0.6)) drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.95));
}
#read p {
  font-size: 18px;
}


/*sab_read*/
#sab_read {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
}#sab_read .normal{
	max-width: 1000px;
	margin: 0 auto;
	font-size: 16px;
	color:#fff;
	text-align: left;
}




/* =========================
   YouTube
========================= */

/* SP base */
#youtube {
  width: 100%;
  margin: 3rem auto 4rem;
  padding-inline: 0.5rem;
  box-sizing: border-box;
}

#youtube .inner {
  position: relative;
/*  width: 100%;*/
  aspect-ratio: 16 / 9;
  overflow: hidden;

  background: #000;
}

#youtube .inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* PC */
@media screen and (min-width: 768px) {

  #youtube {
    max-width: 1000px;
    margin: 6rem auto 8rem;
    padding-inline: 1rem;
  }

 

}
/* about */
#about {
  text-align: center;
}
#about .copy {
  text-align: center;
	margin: 4rem 0;
	font-size: 20px;
}
#about .schedule {
  text-align: center;
  margin-top: 3rem;
}
#about .schedule .venue{
  font-size: 22px;
  margin-bottom: 5px;
}
#about .performers {
	font-size: 16px;
  margin: 4rem 0;
}
#about h3 {
  font-size: 22px;
  margin: 0;
}
#about .item .prefectures {
  font-size: 24px;
	         background: linear-gradient(180deg, #fff5aa 0%, #ffdd00 18%, #ff9900 42%, #cc2200 62%, #ff5500 80%, #ffcc44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(255, 80, 0, 0.7)) drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.95));
}

#about .item .en_prefectures {
  font-size: 28px;
	         background: linear-gradient(180deg, #fff5aa 0%, #ffdd00 18%, #ff9900 42%, #cc2200 62%, #ff5500 80%, #ffcc44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(255, 80, 0, 0.7)) drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.95));
}



#about .tokyo .item {
  margin-top: 2rem;
}
#about .schedule .day {
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#about .schedule .en_day {
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}



#about .schedule .day .week {
  font-size: 18px;
  display: block;
}

@media(min-width:768px) {
  #read p {
    font-size: 28px;
  }
	#about .copy {
	font-size: 22px;
}
  #about .schedule {
    text-align: center;
    font-size: 18px;
  }
	#about .schedule .venue{
  font-size: 28px;
}
  #about .item .prefectures {
    font-size: 32px;
  }
  #about .schedule .day {
    justify-content: center;
    font-size: 42px;
  }
	
	#about .schedule .day .week {
    font-size: 24px;
  }
  
  #about h3 {
    font-size: 32px;
   
  }
}
/* ticket */
#ticket h3 {
  margin: 0 0 2rem;
	font-size: 22px;
}

#ticket .en_ticket_ttl {
	margin: 3rem 0 0;
	font-size: clamp(24px, 3.5vw, 30px);
}

#ticket .inner {
  text-align: center;
}
#ticket .ticket_dead {
  margin: 2rem 0;
  font-size: 18px;
}
#ticket .en_ticket_dead {
  margin: 1rem 0;
  font-size: 18px;
}
#ticket .ticket_type {
  font-size: 20px;
}
#ticket .ticket_price {
  font-size: 18px;
}

#ticket .ate {
	margin:4rem auto 0;
	font-size: 14px;
	text-align: left;
	width: 100%;
}

#ticket .general p{
	margin-top: 5rem;
	font-size: 22px;
}


/*

#ticket .map {
    margin: 3rem auto 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

#ticket .map div {
    width: 100%; 
}
*/

#ticket .seatmap {
    margin: 5rem auto 0;
    line-height: 2;
    text-align: center;
}

#ticket .seatmap .seatItem {
    margin-top: 1rem;
}

#ticket .seatmap i {
    color: #fff;
}


@media(min-width:768px) {
  #ticket .ticket_dead {
    margin: 2rem 0;
    font-size: 24px;
  }
  #ticket .ticket_type {
    font-size: 24px;
  }
  #ticket .ticket_price {
    font-size: 24px;
  }
	#ticket .ate {
	margin:5rem auto 0;
	font-size: 14px;
	text-align: left;
	width: 1000px;
}
	#ticket h3 {
	font-size: 32px;
}
	
#ticket .seatmap .seatItem {
    margin-top: .5rem;
}
#ticket .general p{
	font-size: 26px;
}

	
/*
	#ticket .map{
        max-width: 1000px;
	
    }
	#ticket .map div {
        width: calc(50% - 10px);
    }
*/
}


/* credit */

#credit{
padding: 1rem ;
}

#credit div{
  margin: 0 auto ;
	max-width: 1000px;
}
#credit dl {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 2rem;
}

@media(min-width:768px) {
#credit dl {
    justify-content: center;
  }
}

/*info*/
#info {
	padding: 1rem;
}

#info .h2-a-wrap{
	margin:0 0 1rem;
}

@media(min-width:768px) {
#credit dl {
    justify-content: center;
  }
}

/*========= fadeUp ===============*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/* ========= フェードアップ共通 ========= */
.js-fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-fadeUp.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延（順番にふわっとさせたい時） */
.js-fadeUp:nth-child(1) { transition-delay: 0s; }
.js-fadeUp:nth-child(2) { transition-delay: 0.15s; }
.js-fadeUp:nth-child(3) { transition-delay: 0.3s; }
