@charset "UTF-8";

/* =================================
schedule
================================= */

.schedule__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.schedule__tab {
  width: 120px;
  height: 40px;
  border: 1px solid var(--color-gold);
  background: var(--color-white);
  font-family: var(--font-serif);
  font-weight: 600;
  transition: opacity 0.3s, background 0.3s;
}

.schedule__tab:hover {
  opacity: 0.75;
}

.schedule__tab.is-active {
  background: var(--gradient-gold);
}

.schedule__contents {
  margin-top: 40px;
}

.schedule__content {
  display: none;
}

.schedule__content.is-active {
  display: block;
}

.schedule__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}

.schedule__card {
  width: calc((100% - 60px) / 3);
}

.schedule__link {
  display: block;
  transition: opacity 0.3s;
}

.schedule__link:hover {
  opacity: 0.75;
}

.schedule__img-wrap {
  aspect-ratio: 300 / 400;
  overflow: hidden;
  background: #ccc;
}

.schedule__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule__profile {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.schedule__profile::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  position: absolute;
  left: 0;
  bottom: 0;
}

.schedule__name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.schedule__age {
  font-family: var(--font-serif);
  font-weight: 600;
}

.schedule__time {
  margin-top: 15px;
  font-family: var(--font-serif);
  font-weight: 600;
  text-align: center;
}

.schedule__empty {
  padding: 60px 0;
  text-align: center;
}

.schedule__soldout {
	margin-top:.3rem;
	color:#d63638;
	font-size:1.2rem;
	font-weight:700;
	line-height:1;
	text-transform:uppercase;
	text-align: center;
}

@media screen and (max-width: 1000px) {
  .schedule__list {
    gap: 40px 25px;
  }

  .schedule__card {
    width: calc((100% - 50px) / 3);
  }
}

@media screen and (max-width: 768px) {
  .schedule__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .schedule__tab {
    width: calc((100% - 10px) / 2);
    height: 46px;
  }

  .schedule__tab--today {
    width: 100%;
  }

  .schedule__contents {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .schedule__list {
    display: block;
  }

  .schedule__card {
    width: 100%;
  }

  .schedule__card:not(:first-child) {
    margin-top: 35px;
  }

  .schedule__name {
    font-size: 2.2rem;
  }
}