@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*========= RESET CSS ===============*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden='until-found'])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}

:where(body) {
  line-height: 1.5;
  font-family: system-ui,sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role='button'], [role='option']) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: .2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  -webkit-box-shadow: 0 0 0 5px Canvas;
          box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8svh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*========= MIXIN ===============*/
/*========= VARIABLEs ===============*/
@media (max-width: 576px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 576px) {
  .sp-only {
    display: block;
  }
}

/*========= BASE CSS ===============*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", serif;
  color: #ffffff;
  height: 100%;
  background: #121212;
}

/*========= LOADING ===============*/
.logo-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  letter-spacing: 0.1em;
  z-index: 99999;
  width: 300px;
}

@media (max-width: 576px) {
  .logo-loader {
    width: 200px;
  }
}

.loading-bar-wrapper {
  width: 200px;
  height: 20px;
  background: #444;
  overflow: hidden;
  margin: 24px auto 0;
}

.loading-bar {
  width: 0%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(gold), to(orange));
  background: linear-gradient(to right, gold, orange);
  -webkit-transition: width 0.1s ease-out;
  transition: width 0.1s ease-out;
}

.loader-cover {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}

.loader-left,
.loader-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #000;
  height: 100svh;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 裏面バグ回避 */
  will-change: transform;
  /* パフォーマンス改善 */
}

.site-content {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

/*========= MENU ===============*/
.header {
  width: 100%;
  background: #333;
  color: #fff;
  position: fixed;
  top: -90px;
  left: 0;
  z-index: 1000;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}

@media (max-width: 576px) {
  .header {
    top: -80px;
  }
}

.header.visible {
  top: 0;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-nav-hamburger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 30px;
  right: 10%;
  z-index: 1100;
}

@media (max-width: 576px) {
  .header-nav-hamburger {
    top: 20px;
    right: 20px;
    background: rgba(84, 84, 84, 0.5);
    padding: 7px 5px;
    border-radius: 7px;
  }
}

.header-nav-hamburger span {
  display: block;
  width: 35px;
  height: 4px;
  margin: 8px;
  background: #fff;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  position: relative;
}

@media (max-width: 576px) {
  .header-nav-hamburger span {
    width: 25px;
    height: 3px;
    margin: 5px;
  }
}

.header-nav-hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
          transform: rotate(45deg) translate(7px, 7px);
}

@media (max-width: 576px) {
  .header-nav-hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(4px, 6px);
            transform: rotate(45deg) translate(4px, 6px);
  }
}

.header-nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  /* 非表示にする */
}

.header-nav-hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(10px, -10px);
          transform: rotate(-45deg) translate(10px, -10px);
}

@media (max-width: 576px) {
  .header-nav-hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -7px);
            transform: rotate(-45deg) translate(5px, -7px);
  }
}

.header-nav-list {
  list-style: none;
  padding-top: 100px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  /* 初期状態では画面外 */
  width: 100%;
  height: 100svh;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  /* スムーズなスライドイン */
  z-index: 1000;
  text-align: center;
}

@media (max-width: 576px) {
  .header-nav-list {
    text-align: left;
    padding-top: 80px;
  }
}

.header-nav-list li:nth-child(1) {
  border-top: 2px solid #fff;
}

.header-nav-list li a {
  font-family: "Roboto Slab", sans-serif;
  color: #fff;
  text-decoration: none;
  padding: 16px;
  display: block;
  font-size: 3rem;
  border-bottom: 2px solid #fff;
  line-height: 1;
  font-weight: bold;
}

@media (max-width: 576px) {
  .header-nav-list li a {
    font-size: 2.4rem;
    padding: 12px 16px;
  }
}

.header-nav-list li a span {
  font-family: "Noto Sans JP", serif;
  font-size: 2rem;
  color: #ccc;
}

@media (max-width: 576px) {
  .header-nav-list li a span {
    font-size: 1.6rem;
  }
}

.header-nav-list.active {
  right: 0;
  /* ハンバーガーメニューがアクティブになったときに表示 */
}

/*========= TICKET ===============*/
.ticket {
  position: fixed;
  right: 8px;
  bottom: 10px;
  width: 400px;
  z-index: 999;
}

@media (max-width: 576px) {
  .ticket {
    width: 250px;
  }
}

.nav-ticket {
  margin: 40px auto 0;
  text-align: center;
}

@media (max-width: 576px) {
  .nav-ticket {
    margin: 24px auto 0;
  }
}

/*========= KV ===============*/
.kv {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #121212;
}

@media (max-width: 576px) {
  .kv {
    min-height: 800px;
  }
}

.kv .layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.kv .stage {
  background-image: url("../images/kv/bg_main.webp");
  /* ←ステージ画像 */
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.kv .stage::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(#111), color-stop(20%, transparent), color-stop(80%, transparent), to(#111));
  background: linear-gradient(to right, #111 0%, transparent 20%, transparent 80%, #111 100%);
  z-index: 1;
  pointer-events: none;
}

.kv .stage .kv-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 2;
}

.kv .logo {
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  pointer-events: none;
}

.kv .logo__home {
  width: 15svh;
  opacity: 0;
}

@media (max-width: 576px) {
  .kv .logo__home {
    width: 30%;
  }
}

.kv .logo__super {
  width: 500px;
  margin-bottom: 64px;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  padding-bottom: 10px;
}

@media (max-width: 576px) {
  .kv .logo__super {
    width: 80%;
  }
}

.kv .logo__super svg {
  overflow: visible;
}

.kv .logo__super g {
  stroke: white;
  stroke-width: 1.2;
}

.kv .logo__super .svg-wrapper {
  -webkit-filter: drop-shadow(0 0 6px orange) drop-shadow(0 0 1px black);
          filter: drop-shadow(0 0 6px orange) drop-shadow(0 0 1px black);
}

.kv .logo__vol {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 2px 2px #3d3d3d;
  opacity: 0;
}

@media (max-width: 576px) {
  .kv .logo__vol .day {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .kv .logo__vol .location {
    font-size: 2rem;
  }
}

.kv .audience {
  background-image: url("../images/kv/bg_seat.webp");
  /* ←観客席画像 */
  z-index: 2;
  overflow: hidden;
  height: 250px;
  top: auto;
  bottom: -120px;
}

@media (max-width: 576px) {
  .kv .audience {
    background-size: 100% 90px;
    background-repeat: no-repeat;
    height: 90px;
    top: 87%;
    bottom: auto;
  }
}

.kv .audience .penlight-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* audienceの中で最上 */
}

.kv .audience .penlight-container .penlight {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  -webkit-filter: blur(4px);
          filter: blur(4px);
}

/*========= LEAD ===============*/
.lead {
  height: 100svh;
  padding-top: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #121212;
  overflow: hidden;
}

@media (max-width: 576px) {
  .lead {
    height: auto;
    padding: 88px 0;
  }
}

.lead .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

@media (max-width: 576px) {
  .lead .row {
    width: 300%;
    -webkit-transform: translateX(300%);
            transform: translateX(300%);
  }
}

.lead .row1, .lead .row3 {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}

.lead .row2 {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  margin: 100px 0;
}

@media (max-width: 576px) {
  .lead .row2 {
    margin: 48px 0;
  }
}

.lead .card {
  width: calc(100% / 7);
  height: 150px;
  background: #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .lead .card {
    width: calc(100% / 4);
  }
}

.lead .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center -12px;
     object-position: center -12px;
  display: block;
}

.lead .lead-filter {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.lead .lead-filter .kirakira-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.lead .lead-filter .kirakira-container .kirakira {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  -webkit-filter: blur(4px);
          filter: blur(4px);
}

.lead .lead-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  pointer-events: none;
  font-family: "Roboto Slab", sans-serif;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 576px) {
  .lead .lead-text {
    width: 100%;
  }
}

.lead .lead-text .lead-text-1 {
  opacity: 0;
  font-size: 10rem;
  display: block;
  text-align: left;
}

@media (max-width: 576px) {
  .lead .lead-text .lead-text-1 {
    font-size: 5rem;
    text-align: center;
  }
}

.lead .lead-text .lead-text-2 {
  opacity: 0;
  font-size: 14rem;
  display: block;
  text-align: right;
  margin-bottom: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#ffd700), color-stop(#ffac00), color-stop(#fff8a0), color-stop(#ffac00), to(#ffd700));
  background: linear-gradient(90deg, #ffd700, #ffac00, #fff8a0, #ffac00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  -webkit-animation: shine 2s linear infinite;
          animation: shine 2s linear infinite;
}

@media (max-width: 576px) {
  .lead .lead-text .lead-text-2 {
    font-size: 6rem;
    text-align: center;
  }
}

.lead .lead-text .lead-text-3 {
  opacity: 0;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  background: none;
  color: #ffffff;
  display: block;
  text-align: center;
}

@media (max-width: 576px) {
  .lead .lead-text .lead-text-3 {
    font-size: 2.5rem;
  }
}

@-webkit-keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

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

/*========= PRODUCER ===============*/
.producer {
  width: 100%;
  height: 100svh;
  color: #222222;
  background: #fff;
  padding: 5svh;
  position: relative;
}

@media (max-width: 576px) {
  .producer {
    height: 100%;
    padding: 24px 24px 64px;
  }
}

.producer .title {
  font-family: "Roboto Slab", sans-serif;
  font-size: 15svh;
  font-weight: 900;
}

@media (max-width: 576px) {
  .producer .title {
    font-size: 5rem;
    margin-bottom: 40px;
  }
}

.producer .content {
  width: 100%;
  height: calc(100% - 16svh);
}

@media (max-width: 576px) {
  .producer .content {
    height: 100%;
  }
}

.producer .content .image {
  height: 55svh;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

@media (max-width: 576px) {
  .producer .content .image {
    width: 100%;
    height: 342px;
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.producer .content .image img {
  height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.producer .content .name {
  font-family: "Roboto Slab", sans-serif;
  font-size: 8svh;
  font-weight: 900;
  position: absolute;
  bottom: 17svh;
  left: 32svh;
  z-index: 5;
  background: #ffffff;
  padding: 0 8px;
}

@media (max-width: 576px) {
  .producer .content .name {
    position: relative;
    top: -20px;
    right: 0;
    left: auto;
    bottom: auto;
    font-size: 4rem;
    display: inline-block;
  }
}

.producer .content .comment {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5svh;
  font-weight: 900;
  position: absolute;
  top: 20svh;
  right: 42svh;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

@media (max-width: 576px) {
  .producer .content .comment {
    position: static;
    font-size: 3.2rem;
    margin: 0 auto;
  }
}

.producer .content .comment .txt-blue {
  background: #ffb300;
  color: #ffffff;
  margin: 8px 0;
  padding: 8px 0;
}

@media (max-width: 576px) {
  .producer .content .comment .txt-blue {
    position: static;
    padding: 4px 0;
  }
}

@media (max-width: 576px) {
  .producer .content .comment .txt-down {
    display: block;
    text-align: end;
  }
}

/*========= ARTIST ===============*/
.artist {
  width: 100%;
  padding: 5svh 0;
  position: relative;
  background-color: #222222;
  color: #ffffff;
  -webkit-transition: background-color 0.6s ease, color 0.6s ease;
  transition: background-color 0.6s ease, color 0.6s ease;
}

@media (max-width: 576px) {
  .artist {
    padding: 24px 0 64px;
  }
}

.artist .title {
  font-family: "Roboto Slab", sans-serif;
  font-size: 15svh;
  font-weight: 900;
  margin-bottom: 8svh;
  padding: 0 5svh;
}

@media (max-width: 576px) {
  .artist .title {
    font-size: 5rem;
    padding: 0 24px;
    margin-bottom: 40px;
  }
}

.artist .team {
  position: relative;
  padding: 5svh 5svh 10svh;
}

@media (max-width: 576px) {
  .artist .team {
    padding: 40px 0 64px;
  }
}

.artist .team-text-bg {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  /* クリック無効化 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}

@media (max-width: 576px) {
  .artist .team-text-bg {
    top: 300px;
  }
}

.artist .team-text-bg .text-bg {
  font-family: "Noto Sans JP", serif;
  display: inline-block;
  white-space: nowrap;
  font-size: 30svh;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  letter-spacing: 24px;
  -webkit-animation: scroll-left 14s linear infinite;
          animation: scroll-left 14s linear infinite;
}

@media (max-width: 576px) {
  .artist .team-text-bg .text-bg {
    font-size: 12rem;
    letter-spacing: 12px;
    -webkit-animation: scroll-left 7s linear infinite;
            animation: scroll-left 7s linear infinite;
  }
}

.artist .team-name {
  position: -webkit-sticky;
  position: sticky;
  top: 8px;
  z-index: 998;
  font-family: "Noto Sans JP", serif;
  font-size: 10svh;
  font-weight: 900;
  text-align: center;
  padding-top: 16px;
  margin-bottom: 40px;
  line-height: 1;
}

@media (max-width: 576px) {
  .artist .team-name {
    top: 40px;
    font-size: 4rem;
    line-height: 1;
  }
}

.artist .team-name .subname {
  font-size: 5svh;
  margin-bottom: 8px;
  display: inline-block;
}

@media (max-width: 576px) {
  .artist .team-name .subname {
    font-size: 2.8rem;
  }
}

.artist .team-name .produced {
  font-size: 3svh;
  margin-top: 24px;
  display: inline-block;
}

@media (max-width: 576px) {
  .artist .team-name .produced {
    font-size: 2rem;
  }
}

.artist .team-image {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 48px;
  border-radius: 8px;
  border: #ffffff75 10px solid;
}

.artist .team-image img {
  border-radius: 1px;
}

.artist .team-member-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 576px) {
  .artist .team-member-list {
    gap: 8px;
  }
}

.artist .team-member-list li {
  width: calc(100% / 7);
  position: relative;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.3), 0 0 50px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.3), 0 0 50px rgba(255, 255, 255, 0.2);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 576px) {
  .artist .team-member-list li {
    width: calc(100% / 3 - 8px);
    height: 190px;
    -webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.3), 0 0 25px rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.3), 0 0 25px rgba(255, 255, 255, 0.2);
  }
}

.artist .team-member-list li img {
  border-radius: 5px;
  width: 100%;
}

@media (max-width: 576px) {
  .artist .team-member-list li img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.artist .team-member-list li span {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #00000059;
  padding: 10px;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Noto Sans JP';
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media (max-width: 576px) {
  .artist .team-member-list li span {
    font-size: 12px;
    font-weight: 600;
    padding: 6px;
  }
}

.artist .team.team-maxmix {
  background-image: url(../images/logo_maxmix.svg);
  background-repeat: no-repeat;
  background-position: top 100px right 20px;
  background-size: 35%;
  background-attachment: fixed;
}

@media (max-width: 576px) {
  .artist .team.team-maxmix {
    background-size: 90%;
    background-position: center center;
    background-attachment: scroll;
  }
}

.artist .team.team-maxmix .team-member-list li span {
  background-color: #ffa600ab;
}

.artist .team.team-lilchamp, .artist .team.team-lilalmond {
  background-image: url(../images/logo_lil.svg);
  background-repeat: no-repeat;
  background-position: top 100px right 20px;
  background-size: 20%;
  background-attachment: fixed;
}

@media (max-width: 576px) {
  .artist .team.team-lilchamp, .artist .team.team-lilalmond {
    background-size: 90%;
    background-position: center center;
    background-attachment: scroll;
  }
}

.artist .team.team-lilchamp .team-member-list li span, .artist .team.team-lilalmond .team-member-list li span {
  background-color: #00ab11ab;
}

.artist .team.team-salon-sun, .artist .team.team-salon-sut, .artist .team.team-salon-rinka {
  background-image: url(../images/logo_salon.svg);
  background-repeat: no-repeat;
  background-position: top 100px right 20px;
  background-size: 20%;
  background-attachment: fixed;
}

@media (max-width: 576px) {
  .artist .team.team-salon-sun, .artist .team.team-salon-sut, .artist .team.team-salon-rinka {
    background-size: 90%;
    background-position: center center;
    background-attachment: scroll;
  }
}

.artist .team.team-salon-sun .team-member-list li span, .artist .team.team-salon-sut .team-member-list li span, .artist .team.team-salon-rinka .team-member-list li span {
  background-color: #0f3677d1;
}

.artist .team.team-neo-wed, .artist .team.team-neo-sut, .artist .team.team-neo-sun {
  background-image: url(../images/logo_neo.svg);
  background-repeat: no-repeat;
  background-position: top 100px right 20px;
  background-size: 20%;
  background-attachment: fixed;
}

@media (max-width: 576px) {
  .artist .team.team-neo-wed, .artist .team.team-neo-sut, .artist .team.team-neo-sun {
    background-size: 90%;
    background-position: center center;
    background-attachment: scroll;
  }
}

.artist .team.team-neo-wed .team-member-list li span, .artist .team.team-neo-sut .team-member-list li span, .artist .team.team-neo-sun .team-member-list li span {
  background-color: #d9011fcc;
}

.artist.is-maxmix {
  background-color: #fbc400;
}

.artist.is-lilchamp {
  background-color: #00a43d;
}

.artist.is-lilalmond {
  background-color: #70a400;
}

.artist.is-salonsun {
  background-color: #1f4482;
}

.artist.is-salonsut {
  background-color: #2c88b2;
}

.artist.is-salonrinka {
  background-color: #00b9ce;
}

.artist.is-neowed {
  background-color: #e6002e;
}

.artist.is-neosut {
  background-color: #f2287c;
}

.artist.is-neosun {
  background-color: #f14f23;
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

/*========= UNIT ===============*/
.unit {
  width: 100%;
  padding: 5svh 0 10svh;
  position: relative;
  background-color: #350072;
  color: #ffffff;
}

@media (max-width: 576px) {
  .unit {
    padding: 24px 0 64px;
  }
}

.unit .title {
  font-family: "Roboto Slab", sans-serif;
  font-size: 15svh;
  font-weight: 900;
  margin-bottom: 8svh;
  padding: 0 5svh;
}

@media (max-width: 576px) {
  .unit .title {
    font-size: 5rem;
    padding: 0 24px;
    margin-bottom: 40px;
  }
}

.unit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 576px) {
  .unit-list {
    display: block;
  }
}

.unit-list li {
  width: 30%;
}

@media (max-width: 576px) {
  .unit-list li {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 24px;
  }
}

.unit-list li .name {
  font-size: 2.6rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #ffffff;
}

.unit-list li .image {
  margin-bottom: 16px;
  border-radius: 8px;
  border: #ffffff75 8px solid;
}

.unit-list li .image img {
  border-radius: 2px;
}

.unit-list li .comment {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
}

/*========= MASA ===============*/
.masa {
  position: relative;
  width: 100%;
  padding: 5svh 0 15svh;
  position: relative;
  background-color: #ffffff;
  color: #222222;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 576px) {
  .masa {
    padding: 40px 0 64px;
  }
}

.masa::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: -webkit-gradient(linear, right top, left top, from(#fff8d8), color-stop(#fcd36c), color-stop(#d6ae49), color-stop(#fff8d8), to(#fcd36c));
  background: linear-gradient(270deg, #fff8d8, #fcd36c, #d6ae49, #fff8d8, #fcd36c);
  background-size: 600% 600%;
  -webkit-animation: borderAnim 6s linear infinite;
          animation: borderAnim 6s linear infinite;
  z-index: -1;
  border-radius: 10px;
}

.masa .title {
  font-family: "Roboto Slab", sans-serif;
  font-size: 15svh;
  font-weight: 900;
  margin-bottom: 8svh;
  padding: 0 5svh;
  text-align: center;
}

@media (max-width: 576px) {
  .masa .title {
    font-size: 5rem;
    padding: 0 24px;
    margin-bottom: 40px;
  }
}

.masa .comment {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .masa .comment {
    font-size: 2rem;
  }
}

.masa .image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 8px;
  border-radius: 8px;
  border: #ffffff75 8px solid;
}

@media (max-width: 576px) {
  .masa .image {
    width: 92%;
  }
}

.masa .image img {
  border-radius: 2px;
}

.masa .text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 600;
}

@media (max-width: 576px) {
  .masa .text {
    padding: 0 24px;
    font-size: 1.6rem;
  }
}

.masa .text .name {
  font-size: 6rem;
  font-weight: 900;
  border-bottom: 4px solid #222222;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .masa .text .name {
    font-size: 4rem;
  }
}

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

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

/*========= SCHEDULE ===============*/
.schedule {
  padding: 5svh 5svh 12svh;
  position: relative;
  background: #222222;
  color: #ffffff;
}

@media (max-width: 576px) {
  .schedule {
    padding: 24px 24px 64px;
  }
}

.schedule .title {
  font-family: "Roboto Slab", sans-serif;
  font-size: 15svh;
  font-weight: 900;
  margin-bottom: 8svh;
}

@media (max-width: 576px) {
  .schedule .title {
    font-size: 5rem;
    margin-bottom: 40px;
  }
}

.schedule .content {
  font-family: "Noto Sans JP", serif;
  font-size: 3svh;
  font-weight: 600;
  text-align: center;
  width: 90svh;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .schedule .content {
    width: 100%;
    padding: 24px 0;
    font-size: 2rem;
  }
}

.schedule .content span {
  font-size: 6svh;
  font-weight: 900;
  margin-left: 1svh;
}

@media (max-width: 576px) {
  .schedule .content span {
    font-size: 4rem;
    margin-left: 8px;
  }
}

.schedule .content span.respond {
  font-size: 3svh;
}

@media (max-width: 576px) {
  .schedule .content span.respond {
    font-size: 1rem;
  }
}

.schedule .content .maintitle {
  line-height: 1;
  margin-bottom: 3svh;
}

@media (max-width: 576px) {
  .schedule .content .maintitle {
    font-size: 3rem;
    margin-bottom: 24px;
  }
}

.schedule .content .maintitle span {
  display: block;
}

@media (max-width: 576px) {
  .schedule .content .maintitle span {
    font-size: 5rem;
  }
}

.schedule .content .subtitle {
  background: #ffffff;
  padding: 1svh 0;
  width: 18svh;
  text-align: center;
  color: #222222;
  font-size: 3svh;
}

@media (max-width: 576px) {
  .schedule .content .subtitle {
    padding: 8px 0;
    width: 150px;
    font-size: 2rem;
    margin: 0 auto 24px;
  }
}

@media (max-width: 576px) {
  .schedule .content .day {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .schedule .content .day span {
    font-size: 6rem;
  }
}

.schedule .content .day .day-sun {
  font-size: 3svh;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  vertical-align: super;
  position: relative;
  z-index: 0;
  margin-left: 15px;
}

@media (max-width: 576px) {
  .schedule .content .day .day-sun {
    font-size: 2rem;
    margin-left: 20px;
  }
}

.schedule .content .day .day-sun::before {
  content: '';
  position: absolute;
  top: -0.4svh;
  left: -0.5svh;
  background: #ae001d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 4svh;
  height: 4svh;
  z-index: -1;
}

@media (max-width: 576px) {
  .schedule .content .day .day-sun::before {
    width: 30px;
    height: 30px;
  }
}

.schedule .content .time {
  margin-bottom: 2svh;
}

@media (max-width: 576px) {
  .schedule .content .time {
    margin-bottom: 8px;
  }
}

.schedule .content .location {
  margin: 2svh 0 4svh;
  font-size: 4svh;
  font-weight: 900;
}

@media (max-width: 576px) {
  .schedule .content .location {
    font-size: 3rem;
    margin-bottom: 48px;
  }
}

.schedule .content .note {
  font-size: 2.4rem;
  margin-top: 8px;
}

@media (max-width: 576px) {
  .schedule .content .note {
    font-size: 1.8rem;
  }
}

.schedule .content .note.m0 {
  margin: 0 auto;
}

.schedule .content .admission-info {
  background: #ffffff37;
  padding: 24px;
  margin: 24px auto 40px;
}

@media (max-width: 576px) {
  .schedule .content .admission-info {
    padding: 16px;
  }
}

.schedule .content .admission-info .admission-title {
  margin-bottom: 16px;
  font-weight: 900;
}

@media (max-width: 576px) {
  .schedule .content .admission-info .admission-title {
    margin-bottom: 8px;
  }
}

.schedule .content .admission-info .admission-list {
  text-align: left;
}

.schedule .content .admission-info .admission-list > li {
  font-size: 1.6rem;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .schedule .content .admission-info .admission-list > li {
    font-size: 1.4rem;
  }
}

.schedule .content .admission-info .admission-list > li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}

/*========= SETLIST ===============*/
.setlist {
  max-width: 1000px;
  margin: 120px auto;
  border: 10px solid #ffffff;
  position: relative;
}

@media (max-width: 576px) {
  .setlist {
    margin: 80px auto;
    border: 4px solid #ffffff;
  }
}

.setlist::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 5px solid #ffffff;
  left: 12px;
  top: 12px;
}

@media (max-width: 576px) {
  .setlist::before {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 2px solid #ffffff;
    left: 6px;
    top: 8px;
  }
}

.setlist-title {
  position: relative;
  font-family: "Roboto Slab", sans-serif;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #ffffff;
  color: #222222;
  font-size: 8rem;
  text-align: center;
  background: #222222;
  margin: -48px auto 0;
  width: 42rem;
}

@media (max-width: 576px) {
  .setlist-title {
    font-size: 5rem;
    width: 25rem;
    -webkit-text-stroke-width: 1.4px;
    margin: -24px auto 0;
  }
}

.setlist-list {
  position: relative;
  padding: 0 40px 60px;
}

@media (max-width: 576px) {
  .setlist-list {
    padding: 0 24px 32px;
  }
}

.setlist-list dt {
  font-family: "Roboto Slab", sans-serif;
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  font-size: 3.4rem;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 8px;
  margin: 40px 0 16px;
}

@media (max-width: 576px) {
  .setlist-list dt {
    font-size: 2rem;
    margin: 32px 0 16px;
    text-align: left;
  }
}

.setlist-list dt span {
  display: block;
  text-align: right;
  margin-top: -5rem;
}

@media (max-width: 576px) {
  .setlist-list dt span {
    margin-top: -3rem;
  }
}

.setlist-list dt span.no-photo {
  display: inline;
  font-size: 2rem;
}

@media (max-width: 576px) {
  .setlist-list dt span.no-photo {
    font-size: 1.6rem;
  }
}

.setlist-list dd {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 0 16px;
  text-align: center;
}

@media (max-width: 576px) {
  .setlist-list dd {
    font-size: 1.6rem;
    text-align: left;
  }
}

/*========= 注意事項 ===============*/
.notes {
  font-family: "Noto Sans JP", serif;
  padding: 140px 0 120px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 20;
}

@media (max-width: 576px) {
  .notes {
    padding: 40px 0 60px;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.notes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  z-index: 1;
}

.notes-title {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .notes-title {
    font-size: 3rem;
    line-height: 1.25;
  }
}

.notes-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .notes-content {
    max-width: 100%;
    padding: 0 16px;
  }
}

.notes-sub-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .notes-sub-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}

.notes-list--circle {
  margin-bottom: 24px;
}

.notes-list--circle > li {
  font-size: 1.6rem;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 4px;
}

@media (max-width: 576px) {
  .notes-list--circle > li {
    font-size: 1.4rem;
  }
}

.notes-list--circle > li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}

.notes-sns {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

/*========= ACCESS ===============*/
.access {
  padding: 5svh;
  position: relative;
}

@media (max-width: 576px) {
  .access {
    padding: 24px;
  }
}

.access .title {
  font-family: "Roboto Slab", sans-serif;
  font-size: 15svh;
  font-weight: 900;
  margin-bottom: 8svh;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  z-index: 1;
}

@media (max-width: 576px) {
  .access .title {
    font-size: 5rem;
    margin-bottom: 0;
  }
}

.access .subtitle {
  font-family: "Noto Sans JP", serif;
  font-size: 5svh;
  font-weight: 900;
  color: antiquewhite;
  margin-bottom: 1svh;
}

@media (max-width: 576px) {
  .access .subtitle {
    font-size: 3.5rem;
  }
}

.access .subtitle span {
  font-size: 3svh;
  font-weight: 600;
  display: inline-block;
  margin-left: 8px;
}

@media (max-width: 576px) {
  .access .subtitle span {
    font-size: 1.6rem;
  }
}

.access .content {
  position: relative;
  z-index: 1;
  padding: 50svh 5svh 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 576px) {
  .access .content {
    display: block;
    padding: 500px 0 80px;
  }
}

.access .content .text {
  width: 45%;
}

@media (max-width: 576px) {
  .access .content .text {
    width: 100%;
  }
}

.access .content .text .detail {
  font-size: 2svh;
  font-weight: 600;
  margin-bottom: 3svh;
}

@media (max-width: 576px) {
  .access .content .text .detail {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
}

.access .content .text .detail .strong {
  font-weight: 900;
  font-size: 3svh;
  margin-bottom: 1svh;
}

@media (max-width: 576px) {
  .access .content .text .detail .strong {
    font-size: 2rem;
  }
}

.access .content .map {
  width: 54%;
}

@media (max-width: 576px) {
  .access .content .map {
    width: 100%;
  }
}

.access-filter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  z-index: 0;
}

.access-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/img_gotanda.webp);
  background-size: cover;
  background-position: top;
  z-index: -2;
}

@media (max-width: 576px) {
  .access-bg {
    background-size: auto 780px;
    background-position: left 46% top 0;
    background-repeat: no-repeat;
  }
}

/*========= FOOTER ===============*/
.footer {
  width: 100%;
  background-color: #222222;
  text-align: center;
  padding: 24px 0;
  font-size: 1.6rem;
}

@media (max-width: 576px) {
  .footer {
    font-size: 1.2rem;
    padding: 50px 0;
  }
}
