@charset "UTF-8";

.wrapper {
  overflow: hidden;
}

.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.card {
  margin-bottom: 2rem;
  text-align: center;
}
.time-table-title-area {
  width: 1416px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 0 auto;
}
.space {
  width: 72px;
}
.time-table-title-area .first-day > .card,
.time-table-title-area .second-day > .card,
.time-table-title-area .third-day > .card {
  pointer-events: none;
}
.card::before:hover {
  scale: 1;
}
.lineup-area-date {
  font-weight: 600;
}
.lineup-area-title {
  font-family: 'Bungee Inline', cursive;
  font-size: 1.25rem;
  margin-top: 1rem;
}
.time-table-area {
  display: flex;
  justify-content: space-between;
  width: 1416px;
  margin: 0 auto 2rem;
}
.time-bar {
  width: 72px;
  flex-shrink: 0;
}
.card-area .card {
  padding: 0;
}
.card img {
  border-radius: 20px;
  height: 232px;
  object-fit: cover;
}
.card p {
  font-weight: 600;
  text-align: center;
  margin-top: 2.5rem;
}
.first-day,
.second-day,
.third-day {
  position: relative;
  width: 376px;
}
.first-day .card::before {
  background: var(--light-blue);
}
.second-day .card::before {
  background: var(--aqua);
}
.third-day .card::before {
  background: var(--green);
}
.time-table-area .first-day .card {
  background: url(../images/first-day-line.png);
}
.time-table-area .second-day .card {
  background: url(../images/second-day-line.png);
}
.time-table-area .third-day .card {
  background: url(../images/third-day-line.png);
}
.card::before {
  pointer-events: none;
}
.card:hover::before {
  transform: none;
}
.m40 {
  padding-top: 64px;
}
.m60 {
  position: relative;
  padding-top: 96px;
}
.m30 {
  padding-top: 48px;
}
.m150 {
  position: relative;
  padding-top: 240px;
}
.m120 {
  position: relative;
  padding-top: 192px;
}
.card-area .card span {
  display: inline-block;
  position: absolute;
  top: -16px;
  left: 10px;
  background: var(--deep-blue);
  color: var(--white);
  padding: 0 1rem;
  line-height: 2;
  z-index: 2;
  font-weight: 600;
  border-radius: 20px;
  text-align: center;
}
.card-area .card a {
  position: absolute;
  top: 0;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 1.5rem * 2);
  height: 100%;
  margin: 0 auto;
  border-radius: 20px;
  font-weight: 600;
  background: var(--white);
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.07, 0.1, 0, 1.49);
}
.card-area .card a:hover {
  border-radius: 20px;
  transform: scale(0.9);
}
.content-box ul li {
  margin-bottom: 1rem;
}
.context-box ul li:last-child {
  margin-bottom: 0;
}
#mask1,
#mask2,
#mask3,
#mask4,
#mask5,
#mask6,
#mask7,
#mask8,
#mask9,
#mask10,
#mask11,
#mask12,
#mask13,
#mask14,
#mask15 {
  background: rgba(5, 117, 230, 0.6);
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
}
#mask6,
#mask7,
#mask8,
#mask9,
#mask10 {
  background: rgba(8, 194, 252, 0.6);
}
#mask11,
#mask12,
#mask13,
#mask14,
#mask15 {
  background: rgba(104, 224, 207, 0.6);
}
#modal1,
#modal2,
#modal3,
#modal4,
#modal5,
#modal6,
#modal7,
#modal8,
#modal9,
#modal10,
#modal11,
#modal12,
#modal13,
#modal14,
#modal15 {
  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: 1416px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .lineup-area-title {
    font-size: 1rem;
  }
  .time-table-title-area {
    width: 90%;
    gap: 0;
    padding-top: 1rem;
    align-items: center;
  }
  .time-table-area {
    width: 90%;
  }
  .time-bar-right {
    display: none;
  }
  .card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .card-area .card a {
    width: calc(100% - 0.5rem * 2);
    left: 0.5rem;
  }
  .time-bar {
    width: 36px;
  }
  .space {
    width: 36px;
    flex-shrink: 0;
  }
  .space-left {
    display: none;
  }
  .card-area .card a {
    font-size: 0.75rem;
  }
}
@media (max-width: 599px) {
  #modal1,
#modal2,
#modal3,
#modal4,
#modal5,
#modal6,
#modal7,
#modal8,
#modal9,
#modal10,
#modal11,
#modal12,
#modal13,
#modal14,
#modal15 {
  width: 80%;
  top: 20rem;
}

}
