@charset "utf-8";

#lineup {
  background: url("../img/common/bg-red.png") repeat;
  background-size: 50px 50px;
}

#lineup h2.secTitle .ja {
  color: rgba(255, 255, 255, 0.85);
}

#lineupList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 36px;
  margin-top: 3em;
}

@media only screen and (max-width: 1000px) {
  #lineupList {
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 28px;
  }
}

@media only screen and (max-width: 700px) {
  #lineupList {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media only screen and (max-width: 380px) {
  #lineupList {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

#lineupList li {
  list-style: none;
  position: relative;

  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--color-line);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#lineupList li .bandPref {
  position: absolute;
  top: -12px;
  left: -12px;
  z-index: 2;
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: var(--color-accent-2);
  padding: 0.35em 0.8em;
  white-space: nowrap;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 560px) {
  #lineupList li .bandPref {
    top: -10px;
    left: -10px;
    font-size: 0.74em;
    padding: 0.3em 0.65em;
  }
}

#lineupList li .bandLogo {
  width: 88%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  background: #FFF;
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 16px auto;
  padding: 2%;
}

@media only screen and (max-width: 560px) {
  #lineupList li .bandLogo {
    width: 92%;
  }
}

#lineupList li .bandLogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#lineupList li .bandLogo .logoPlaceholder {
  font-family: var(--font-en);
  font-size: 0.7em;
  letter-spacing: 0.2em;
  color: var(--color-fg-mute);
  text-align: center;
  padding: 1em;
}

#lineupList li .bandName {
  font-size: 1.05em;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.3em;
  color: var(--color-fg);
  word-break: break-word;
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 560px) {
  #lineupList li .bandName {
    font-size: 1em;
  }
}

#lineupList li .bandSong {
  font-size: 0.85em;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-fg-mute);
  word-break: break-word;
  text-align: center;
  width: 100%;
  margin-bottom: 0.9em;
}

#lineupList li .bandSong::before {
  content: "💿 ";
  margin-right: 0.15em;
}

#lineupList li .bandSong.bandSongEmpty {
  font-style: italic;
  opacity: 0.5;
}

#lineupList li .bandSong.bandSongEmpty::before {
  content: "💿 ";
  opacity: 0.6;
}

#lineupList li .bandSns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

#lineupList li .bandSns a.snsIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-fg-mute);
  border: 1px solid var(--color-line);
  border-radius: 50%;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

#lineupList li .bandSns a.snsIcon:hover {
  color: var(--color-bg);
  background-color: var(--color-accent-2);
  border-color: var(--color-accent-2);
  opacity: 1;
}

#lineupList li .bandSns a.snsIcon .snsIconSvg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: block;
}

#lineupNote {
  text-align: center;
  margin-top: -1em;
  margin-bottom: 3em;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.75);
}
