body {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif; 
  background-color: #330066; 
  color: #ffffff; 
  margin: 0;
  padding: 0;
  text-align: center;
  overflow-x: hidden; 
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Inter', 'M PLUS Rounded 1c', sans-serif; 
  font-weight: 900; 
  text-transform: uppercase; 
  margin: 0;
  line-height: 1.2;
}


video{
    width: 80%;
    height: auto;
    display: block;
    margin: 60px auto;
  }

/* --- menu--- */
html {
  scroll-behavior: smooth;
  
  scroll-padding-top: 80px; 
}

.navbar-pop-container {
  width: 100%;
  height: 80px;
  padding: 0 40px;
    background: rgba(51, 0, 102, 0.7); 
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #FFD700; 
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); 
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ロゴ＋メニューを左寄せ */
  position: fixed;
  top: 0;
  border-bottom: 2px solid #fff;
  z-index: 999 !important; /* ← 強制的に最前面 */
  opacity: 1.0;
}

.logo img {
  height: 45px; /* ロゴサイズは調整してOK */
  width: auto;
  margin-top:5%;
}

nav {
  margin-left: 9px; /* ロゴとメニューの間隔 */
}

nav ul {
  list-style: none;
  display: flex;
  font-size: 20px;
  margin: 0;
  padding: 0;
}

.nav-link-item {
  font-family: 'Anton', 'Inter', sans-serif;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.nav-link-item:hover {
  background-color: #FFD700;
  color: #330066; 
  text-shadow: none;
}






.logi img {
  height: 45px; /* ロゴサイズは調整してOK */
  width: auto;
  margin-top:5%;
}

.nav-links {
  display: flex; 
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}









.section {
  padding: 60px 20px;
  overflow: hidden;
  position: relative; 
  z-index: 1; 
  margin: 0; 
  box-shadow: none; 
  border-radius: 0; 

}

.top-section {
  background-color: #330066; 
  min-height: 80vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 40px 20px;
  position: relative;
}

.top-section::after { 
  content: '';
  position: absolute;
  bottom: -10px; 
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(45deg, #FF0066 0%, #00E0FF 100%); 
  transform: skewY(-1deg); 
  z-index: 2;
}
.top-section .logo {
  width: clamp(250px, 60vw, 550px); 
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)); 
  animation: popIn 0.8s ease-out forwards; 
}

@keyframes popIn {
  from { transform: scale(0.5) translateY(50px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.top-section h1 {
  color: #FFD700; 
  text-shadow:
    -3px -3px 0 #FF0066, 
    3px -3px 0 #FF0066,
    -3px 3px 0 #FF0066,
    3px 3px 0 #FF0066;
  margin-top: 0; 
  animation: fadeInText 1s ease-out 0.5s forwards; 
  opacity: 0;
}

@keyframes fadeInText {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem); 
  text-shadow: 
    -2px -2px 0 #FF0066,  
    2px -2px 0 #FF0066,
    -2px 2px 0 #FF0066,
    2px 2px 0 #FF0066; 
}

h2 {
  font-size: clamp(2rem, 7vw, 4rem);
  text-shadow: 
    -2px -2px 0 #FFD700, 
    2px -2px 0 #FFD700,
    -2px 2px 0 #FFD700,
    2px 2px 0 #FFD700; 
  margin-bottom: 40px;
}

h3 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  text-shadow: 
    -1px -1px 0 #00E0FF, 
    1px -1px 0 #00E0FF,
    -1px 1px 0 #00E0FF,
    1px 1px 0 #00E0FF; 
}

p {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}


.date-section {
  background-color: transparent; 
  padding: 0; 
  margin-top: -30px; 
  position: relative;
  z-index: 3; 
}

.date-section h2 {
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  margin: 0;
  text-shadow: none; 
  text-transform: none; 
  line-height: 1.3;
}

/* ---  ABOUT--- */

.about-section {
  background-color: #3a0370; 
  padding: 60px 20px;
  position: relative;
  border-top: 6px solid #FFD700;
  border-bottom: 6px solid #FFD700;
}


.about-section h2 {
  margin-bottom: 40px; 
}


.slogan-container {
  text-align: center;
}

.slogan-line {
  font-family: 'Anton', 'Inter', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw,3.5rem); 
  line-height: 1.3;
  margin: 10px 0;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5); 
}

.slogan-blue,
.slogan-red {
  color: #000000; 
  text-shadow: none; 
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block; 
  margin: 10px 5px; 
  line-height: 1.3; 
}

.slogan-blue {
  background-color: #00E0FF; 
}

.slogan-red {
  background-color: #FF0066;
}

.slogan-vs {
  color: #ffffff;
  font-size: clamp(1.8rem, 5vw, 4rem);
  text-shadow: 
    -2px -2px 0 #FFD700, 
    2px -2px 0 #FFD700,
    -2px 2px 0 #FFD700,
    2px 2px 0 #FFD700;

}

.slogan-callout {
  font-size: clamp(1.5rem, 4vw, 2.5rem); 
  font-weight: 700;
  line-height: 1.6;
  margin-top: 30px;
  max-width: 800px;
}


.slogan-yellow {
  background-color: #FFD700; 
  color: #330066; 
  padding: 10px 15px;
  border-radius: 5px;
  text-shadow: none; 
  display: inline-block;
}



/* --- video --- */
.video-container-pop {
  margin-top: 50px; 
  margin-bottom: 20px;
}


.promo-video-pop {
  width: 100%; 
  max-width: 800px; 
  height: auto; 
  border: 6px solid #FFD700; 
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7); 
  background-color: #000; 
}
/* ---  PERFORMER  --- */

.performer-section {
  background-color: #330066; 
  padding: 60px 20px 80px 20px; /
}

.performer-battle-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr; 
  gap: 20px 30px; 
  align-items: center; 
  position: relative;
  z-index: 5;
}

.vs-pop {
  font-family: 'Anton', 'Inter', sans-serif;
  font-size: clamp(4rem, 10vw, 7rem); 
  font-weight: 900;
  color: #FFD700; 
  text-shadow: 
    -3px -3px 0 #FF0066, 
    3px -3px 0 #FF0066,
    -3px 3px 0 #FF0066,
    3px 3px 0 #FF0066,
    -3px -3px 0 #FF0066,
    0 0 30px #FFD700; 
  transform: rotate(-10deg); 
}


.team-pop {
  
  background: rgba(0, 0, 0, 0.25);
  border: 4px solid; 
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 20px; 
  transition: all 0.3s ease;
}

.team-pop:hover {
  transform: translateY(-10px) scale(1.02); 
}

.team-pop h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-shadow: none; 
  margin-bottom: 5px;
}
.team-pop p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.9;
}

#team-blue {
  border-color: #00E0FF;
  box-shadow: 0 0 20px #00E0FF;
}
#team-blue h3 { color: #00E0FF; } 
#team-blue p { color: #ffffff; }

#team-red {
  border-color: #FF0066;
  box-shadow: 0 0 20px #FF0066;
}
#team-red h3 { color: #FF0066; } 
#team-red p { color: #ffffff; }

.performer-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 15px;
}

.performer-card-grid figure {
  margin: 0;
}

.performer-card-grid img {
  width: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid; 
}

.performer-card-grid figcaption {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 3px #000; 
  margin-top: 8px;
}


#team-blue img { border-color: #00E0FF; }
#team-red img { border-color: #FF0066; }






.setlist-section ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.setlist-section li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  gap: 15px;
}

.album-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

/* ---  GUEST  --- */

.guest-section {
  background-color: #330066; 
  padding: 60px 20px 80px 20px;
  border-top: 6px solid #FFD700; 
}

.guest-section h2 {
  color: #FFD700; 
  text-shadow: 
    -2px -2px 0 #FF0066, 
    2px -2px 0 #FF0066,
    -2px 2px 0 #FF0066,
    2px 2px 0 #FF0066;
}


.guest-card-pop {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  max-width: 500px;
  margin: 40px auto 0 auto;
  padding: 25px; 
  border: 6px solid #FFD700; 
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7); 
  
  position: relative;
  z-index: 10;
  overflow: hidden;
}


.guest-img-pop {
  width: 100%;
  max-width: 400px; 
  height: auto;
  border-radius: 10px; 
  border: none; 
  
  box-shadow: 0 5px 15px rgba(0,0,0,0.4); 
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.guest-name-pop {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #FFD700; 
  text-shadow: 
    -2px -2px 0 #FF0066,
    2px -2px 0 #FF0066,
    -2px 2px 0 #FF0066,
    2px 2px 0 #FF0066;
  margin-bottom: 5px;
  line-height: 1.1;
  margin-top: 0;
}

.guest-description-pop {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #ffffff; 
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
}



footer {
  background-color: #5e2b97;
  color: white;
  padding: 15px 0;
  font-size: 0.9rem;
}

.vs-text {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2, 0 0 40px #8a2be2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  animation: glow 1.8s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2; }
  to { text-shadow: 0 0 30px #b266ff, 0 0 60px #b266ff; }
}

/* ===== INTRO ANIMATION ===== */
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5e2b97;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.intro-text {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.3rem;
}

.intro-text span {
  opacity: 0;
  display: inline-block;
  animation: showLetter 0.15s forwards;
}

@keyframes showLetter {
  to { opacity: 1; transform: scale(1.1); }
}

/* イントロアニメーション*/
.fade-out span {
  animation: fadeOutLetter 0.15s forwards;
}

@keyframes fadeOutLetter {
  to { opacity: 0; transform: scale(0.8); }
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.team {
  width: clamp(280px, 38vw, 520px); 
  padding: 24px;
}

.team h3 {
  margin: 0 0 4px;
}

.team p {
  margin: 0 0 16px;
  font-weight: 500;
}



.performer-grid img:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}



.vs-text {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #5e2b97;
  margin: 0 14px;
  display: flex;
  align-items: center;
}



/* ===== SETLIST ===== */
.setlist-section {
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.music-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  justify-items: center;
  max-width: 1000px;
  margin: 40px auto 0;
}

.music-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.music-number {
  background-color: #5e2b97;
  color: white;
  padding: 6px 0;
  font-weight: bold;
  font-size: 1rem;
}

.music-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.music-info {
  padding: 12px 0 16px;
}

.music-info h3 {
  margin: 4px 0;
  font-size: 1.2rem;
  color: #5e2b97;
}

.music-info p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: linear-gradient(135deg, #5e2b97, #007bff, #ff4d4d);
  background-size: 300% 300%;
  animation: gradientMove 18s ease infinite;
  overflow-x: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body::before,
body::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: -1;
}

body::before {
  width: 600px;
  height: 600px;
  background: #5e2b97;
  top: -200px;
  left: -150px;
}

body::after {
  width: 700px;
  height: 700px;
  background: #ff4d4d;
  bottom: -250px;
  right: -200px;
}

.section {
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 10%;

}

h1, h2, h3 {
  text-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.section:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

footer {
  background-color: #220044; 
  color: rgba(255, 255, 255, 0.7);
  padding: 25px 0;
  font-size: 0.9rem;
}

@media (min-width:1px) and (max-width:767px){



h1, h2, h3, h4 {
  font-family: 'Inter', 'M PLUS Rounded 1c', sans-serif; 
  font-weight: 900; 
  text-transform: uppercase; 
  margin: 0;
  line-height: 1.2;
}


video{
    width: 80%;
    height: auto;
    display: block;
    margin: 60px auto;
  }

/* --- menu--- */
html, body {
  overflow-x: hidden;
  font-family: 'Inter', 'M PLUS Rounded 1c', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #ffffff;

  /* ← グラデ背景はここに1回だけ書く */
  background: linear-gradient(180deg, #330066, #6600CC); 
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.navbar-pop-container {
  width: 100%;
  height: 60px;
  padding: 0 10px;
  background: rgba(51, 0, 102, 0.7); 
    backdrop-filter: blur(10px);
  border-bottom: 2px solid #FFD700; 
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); 
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ロゴ＋メニューを左寄せ */
  position: fixed;
  top: 0;
  border-bottom: 1px solid #fff;
  z-index: 999 !important; /* ← 強制的に最前面 */
  opacity: 1.0;
  flex-wrap: nowrap; /* wrap禁止（勝手に横に伸びるのを防ぐ） */
  overflow: hidden;  /* 中身がはみ出しても横に伸びない */
}




.logi img {
  height: 28px; /* 少し小さめに */
  margin-top: 0; /* ← 18% は危険なので0に */
  margin-top: 1%;
}

.logi {
  margin-left: 0; /* ← -3% を削除 */
  margin-top: 1%;
}

.nav-links {
  display: flex; 
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  margin-left: 2%;
    flex-shrink: 1;   /* ← はみ出し防止 */
  flex-wrap: nowrap;
  overflow: hidden; /* ← 横スクロールの根源を消す */
}

.nav-link-item {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff; 
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-link-item:hover {
  background-color: #FFD700;
  color: #330066; 
  text-shadow: none;
}





.section {
  padding: 60px 20px;
  overflow: hidden;
  position: relative; 
  z-index: 1; 
  margin: 0; 
  box-shadow: none; 
  border-radius: 0; 

}

.top-section {
  background-color: #330066; 
  min-height: 80vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 40px 20px;
  position: relative;
}

.top-section::after { 
  content: '';
  position: absolute;
  bottom: -10px; 
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(45deg, #FF0066 0%, #00E0FF 100%); 
  transform: skewY(-1deg); 
  z-index: 2;
}
.top-section .logo {
  width: clamp(250px, 60vw, 550px); 
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)); 
  animation: popIn 0.8s ease-out forwards; 
}

@keyframes popIn {
  from { transform: scale(0.5) translateY(50px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.top-section h1 {
  color: #FFD700; 
  text-shadow:
    -3px -3px 0 #FF0066, 
    3px -3px 0 #FF0066,
    -3px 3px 0 #FF0066,
    3px 3px 0 #FF0066;
  margin-top: 0; 
  animation: fadeInText 1s ease-out 0.5s forwards; 
  opacity: 0;
}

@keyframes fadeInText {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem); 
  text-shadow: 
    -2px -2px 0 #FF0066,  
    2px -2px 0 #FF0066,
    -2px 2px 0 #FF0066,
    2px 2px 0 #FF0066; 
}

h2 {
  font-size: clamp(2rem, 7vw, 4rem);
  text-shadow: 
    -2px -2px 0 #FFD700, 
    2px -2px 0 #FFD700,
    -2px 2px 0 #FFD700,
    2px 2px 0 #FFD700; 
  margin-bottom: 40px;
}

h3 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  text-shadow: 
    -1px -1px 0 #00E0FF, 
    1px -1px 0 #00E0FF,
    -1px 1px 0 #00E0FF,
    1px 1px 0 #00E0FF; 
}

p {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}


.date-section {
  background-color: transparent; 
  padding: 0; 
  margin-top: -30px; 
  position: relative;
  z-index: 3; 
}

.date-section h2 {
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  margin: 0;
  text-shadow: none; 
  text-transform: none; 
  line-height: 1.3;
}

/* ---  ABOUT--- */

.about-section {
  background-color: #3a0370; 
  padding: 60px 20px;
  position: relative;
  border-top: 6px solid #FFD700;
  border-bottom: 6px solid #FFD700;
}


.about-section h2 {
  margin-bottom: 40px; 
}


.slogan-container {
  text-align: center;
}

.slogan-line {
  font-family: 'Anton', 'Inter', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw,3.5rem); 
  line-height: 1.3;
  margin: 10px 0;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5); 
}

.slogan-blue,
.slogan-red {
  color: #000000; 
  text-shadow: none; 
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block; 
  margin: 10px 5px; 
  line-height: 1.3; 
  font-size: 20px;
}

.slogan-blue {
  background-color: #00E0FF; 
}

.slogan-red {
  background-color: #FF0066;
}

.slogan-vs {
  color: #ffffff;
  font-size: clamp(1.8rem, 5vw, 4rem);
  text-shadow: 
    -2px -2px 0 #FFD700, 
    2px -2px 0 #FFD700,
    -2px 2px 0 #FFD700,
    2px 2px 0 #FFD700;

}

.slogan-callout {
  font-size: clamp(1.5rem, 4vw, 2.5rem); 
  font-weight: 700;
  line-height: 1.6;
  margin-top: 30px;
  max-width: 800px;
}


.slogan-yellow {
  background-color: #FFD700; 
  color: #330066; 
  padding: 10px 15px;
  border-radius: 5px;
  text-shadow: none; 
  display: inline-block;
  font-size: 20px;
}



/* --- video --- */
.video-container-pop {
  margin-top: 50px; 
  margin-bottom: 20px;
}


.promo-video-pop {
  width: 100%; 
  max-width: 800px; 
  height: auto; 
  border: 6px solid #FFD700; 
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7); 
  background-color: #000; 
}
/* ---  PERFORMER  --- */

.performer-section {
  background-color: #330066; 
  padding: 60px 20px 80px 20px; /
}

  .performer-battle-grid {
    grid-template-columns: 1fr; 
    gap: 30px;
  }

  .vs-pop {
    font-size: 5rem; 
  }
  
 
  #team-blue { order: 1; }
  .vs-pop { order: 2; }
  #team-red { order: 3; }



.team-pop {
  
  background: rgba(0, 0, 0, 0.25);
  border: 4px solid; 
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 20px; 
  transition: all 0.3s ease;
}

.team-pop:hover {
  transform: translateY(-10px) scale(1.02); 
}

.team-pop h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-shadow: none; 
  margin-bottom: 5px;
}
.team-pop p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.9;
}

#team-blue {
  border-color: #00E0FF;
  box-shadow: 0 0 20px #00E0FF;
}
#team-blue h3 { color: #00E0FF; } 
#team-blue p { color: #ffffff; }

#team-red {
  border-color: #FF0066;
  box-shadow: 0 0 20px #FF0066;
}
#team-red h3 { color: #FF0066; } 
#team-red p { color: #ffffff; }

.performer-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 15px;
}

.performer-card-grid figure {
  margin: 0;
}

.performer-card-grid img {
  width: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid; 
}

.performer-card-grid figcaption {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 3px #000; 
  margin-top: 8px;
}


#team-blue img { border-color: #00E0FF; }
#team-red img { border-color: #FF0066; }






.setlist-section ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.setlist-section li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  gap: 15px;
}

.album-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

/* ---  GUEST  --- */

.guest-section {
  background-color: #330066; 
  padding: 60px 20px 80px 20px;
  border-top: 6px solid #FFD700; 
}

.guest-section h2 {
  color: #FFD700; 
  text-shadow: 
    -2px -2px 0 #FF0066, 
    2px -2px 0 #FF0066,
    -2px 2px 0 #FF0066,
    2px 2px 0 #FF0066;
}


.guest-card-pop {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  max-width: 500px;
  margin: 40px auto 0 auto;
  padding: 25px; 
  border: 6px solid #FFD700; 
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7); 
  
  position: relative;
  z-index: 10;
  overflow: hidden;
}


.guest-img-pop {
  width: 75%;
  max-width: 400px; 
  height: auto;
  border-radius: 10px; 
  border: none; 
  
  box-shadow: 0 5px 15px rgba(0,0,0,0.4); 
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.guest-name-pop {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #FFD700; 
  text-shadow: 
    -2px -2px 0 #FF0066,
    2px -2px 0 #FF0066,
    -2px 2px 0 #FF0066,
    2px 2px 0 #FF0066;
  margin-bottom: 5px;
  line-height: 1.1;
  margin-top: 0;
}

.guest-description-pop {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #ffffff; 
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
}



footer {
  background-color: #5e2b97;
  color: white;
  padding: 15px 0;
  font-size: 0.9rem;
}

.vs-text {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2, 0 0 40px #8a2be2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  animation: glow 1.8s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2; }
  to { text-shadow: 0 0 30px #b266ff, 0 0 60px #b266ff; }
}

/* ===== INTRO ANIMATION ===== */
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5e2b97;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.intro-text {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.3rem;
}

.intro-text span {
  opacity: 0;
  display: inline-block;
  animation: showLetter 0.15s forwards;
}

@keyframes showLetter {
  to { opacity: 1; transform: scale(1.1); }
}

/* イントロアニメーション*/
.fade-out span {
  animation: fadeOutLetter 0.15s forwards;
}

@keyframes fadeOutLetter {
  to { opacity: 0; transform: scale(0.8); }
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.team {
  width: clamp(280px, 38vw, 520px); 
  padding: 24px;
}

.team h3 {
  margin: 0 0 4px;
}

.team p {
  margin: 0 0 16px;
  font-weight: 500;
}



.performer-grid img:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}



.vs-text {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #5e2b97;
  margin: 0 14px;
  display: flex;
  align-items: center;
}



/* ===== SETLIST ===== */
.setlist-section {
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.music-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  justify-items: center;
  max-width: 1000px;
  margin: 40px auto 0;
}

.music-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.music-number {
  background-color: #5e2b97;
  color: white;
  padding: 6px 0;
  font-weight: bold;
  font-size: 1rem;
}

.music-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.music-info {
  padding: 12px 0 16px;
}

.music-info h3 {
  margin: 4px 0;
  font-size: 1.2rem;
  color: #5e2b97;
}

.music-info p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: linear-gradient(135deg, #5e2b97, #007bff, #ff4d4d);
  background-size: 300% 300%;
  animation: gradientMove 18s ease infinite;
  overflow-x: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body::before,
body::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: -1;
}

body::before {
  width: 600px;
  height: 600px;
  background: #5e2b97;
  top: -200px;
  left: -150px;
}

body::after {
  width: 700px;
  height: 700px;
  background: #ff4d4d;
  bottom: -250px;
  right: -200px;
}

.section {
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 10%;

}

h1, h2, h3 {
  text-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.section:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

footer {
  background-color: #220044; 
  color: rgba(255, 255, 255, 0.7);
  padding: 25px 0;
  font-size: 0.9rem;
}
}

