/* ============================================
   TIMETABLE
============================================ */
.timetable {
  padding-bottom: 5rem;
  scroll-margin-top: 9rem;
}
.tt-head {
  border-bottom: 2px solid var(--color-black);
  padding-bottom: 1rem;
}
.tt-head__day {
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  padding: 1rem 0;
  margin: 0 0 .5rem;
  border-radius: 0.5rem;
}
.tt-head__date {
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
}
.tt-list {
  list-style: none;
}
.tt-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-gray);
}
.tt-row__time {
  flex: 0 0 8.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tt-time__start {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-black);
}
.tt-time__arrow {
  font-size: 1.2rem;
  color: var(--color-darkgray);
  writing-mode: vertical-rl;
  line-height: 1;
  margin-top: 1rem;
}
.tt-time__end {
  font-family: var(--font-bold-eng);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-darkgray);
  line-height: 1.2;
  margin-top: 1rem;
}
.tt-row__body {
  flex: 1;
  padding-top: 1rem;
}
.tt-row__title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-black);
}
.tt-row__title span {
  font-size: 1.6rem;
  font-weight: 900;
}
.tt-row__desc {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}
.tt-row--close .tt-row__body {
  padding-top: 0;
  display: flex;
  align-items: center;
  min-height: 4.4rem;
}
.tt-row--close .tt-time__arrow {
  margin-top: 0;
  margin-bottom: 1rem;
}