@charset "UTF-8";

.card {
  margin-bottom: 2rem;
  text-align: center;
}
.lineup-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.lineup-area-date {
  font-weight: 600;
}
.first-day > .card,
.second-day > .card,
.third-day > .card {
  pointer-events: none;
}
.lineup-area-title {
  font-family: 'Bungee Inline', cursive;
  font-size: 1.25rem;
  margin-top: 1rem;
}
.card-area {
  margin-bottom: 2rem;
}
.card::before {
  background: inherit;
}
.card img {
  border-radius: 20px;
  object-fit: cover;
}
.card p {
  font-weight: 600;
  text-align: center;
  margin-top: 2.5rem;
}
.first-day .card::before {
  background: var(--light-blue);
}
.second-day .card::before {
  background: var(--aqua);
}
.third-day .card::before {
  background: var(--green);
}
.content-box ul li {
  margin-bottom: 1rem;
}
.context-box ul li:last-child {
  margin-bottom: 0;
}
#mask16,
#mask17,
#mask18,
#mask19,
#mask20,
#mask21,
#mask22,
#mask23,
#mask24,
#mask25,
#mask26,
#mask27 {
  background: rgba(5, 117, 230, 0.6);
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
}
#mask20,
#mask21,
#mask22,
#mask23
 {
  background: rgba(8, 194, 252, 0.6);
}
#mask24,
#mask25,
#mask26,
#mask27 {
  background: rgba(104, 224, 207, 0.6);
}
#modal16,
#modal17,
#modal18,
#modal19,
#modal20,
#modal21,
#modal22,
#modal23,
#modal24,
#modal25,
#modal26,
#modal27 {
  background: var(--white);
  width: 640px;
  padding: 2rem;
  border-radius: 20px;
  position: absolute;
  inset: 30rem 0 auto;
  margin: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
.modal-img {
  border-radius: 20px;
}
.modal-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0;
}
.modal-sns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 3rem;
  height: 3rem;
  margin: 0 0.5rem;
}
.icon-sns {
  display: inline-block;
}
.modal-sns a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
  z-index: -1;
}
.modal-sns a:hover::before {
  transform: scale(1.1);
}
.modal-sns .icon-sns::before {
  color: var(--text-color);
}
.icon-sns::before:last-child {
  margin-right: 0;
}
.modal-close:before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 3rem;
  color: var(--white);
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: -56px;
  right: 16px;

}

@media (max-width: 1024px) {
  .lineup-area {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .lineup-area {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 3rem 2rem;
    gap: 8px;
    margin-bottom: 2rem;
  }
  .card::before {
    content: none;
  }
  .first-day > .card,
  .second-day > .card,
  .third-day > .card {
    min-height: 72px;
  }
  .card,
  .card-area {
    min-height: 126px;
    padding: 0;
  }
  .card p {
    font-size: 0.75rem;
    margin-top: 1rem;
  }
  .first-day,
  .second-day {
    padding-right: 8px;
    border-right: var(--aqua) 1px solid;
  }
  .first-day .card:last-child,
  .first-day .card-area:last-child,
  .second-day .card:last-child,
  .second-day .card-area:last-child,
  .third-day .card:last-child,
  .third-day .card-area:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  .lineup-area {
    padding: 2rem 1rem;
  }
  .card {
    min-height: 106px;
  }
  #modal16,
  #modal17,
  #modal18,
  #modal19,
  #modal20,
  #modal21,
  #modal22,
  #modal23,
  #modal24,
  #modal25,
  #modal26,
  #modal27 {
    width: 80%;
    top: 20rem;
  }
  
}