.content-en {
  color: #fff;
  background: #4F859A;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  word-break: break-all;
  max-width: 100%;
  line-height: 1.2;
}
.content-en:last-child {
  margin-bottom: 0;
}
.content-en a {
  color: #fff;
  text-decoration: underline;
  word-break: break-all;
}
.content-en a:hover {
  opacity: 0.8;
}

.schedule-table-wrapper {
  padding: 0 86px;
  overflow-x: auto;
  overflow-y: visible;
}
@media (max-width: 767px) {
  .schedule-table-wrapper {
    padding: 0 20px;
  }
}

.schedule-table {
  display: flex;
  overflow-y: visible;
}
.schedule-table__time-column {
  flex-shrink: 0;
  width: 60px;
  background-color: #6F6F6F;
}
.schedule-table__header {
  height: 70px;
  border: none;
  background-color: #fff;
}
.schedule-table__time-cell {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  border-bottom: 1px solid #fff;
}
.schedule-table__time-cell:last-child {
  border-bottom: none;
}
.schedule-table__scroll-area {
  flex: 1;
  overflow-x: auto;
  overflow-y: visible;
}
@media (max-width: 767px) {
  .schedule-table__scroll-area {
    overflow-x: scroll;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }
}
.schedule-table__dates-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .schedule-table__dates-row {
    grid-template-columns: repeat(4, minmax(180px, 230px));
  }
}
.schedule-table__date-header {
  height: 60px;
  background-color: #4F859A;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-left: 10px;
  padding-top: 10px;
  border-radius: 15px 15px 0 0;
}
.schedule-table__date-num {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  line-height: 1;
}
.schedule-table__date-day {
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  line-height: 1;
}
.schedule-table__grid-wrapper {
  position: relative;
  overflow: visible;
}
.schedule-table__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(12, 160px);
  border-right: 1px solid #3C3C3C;
}
@media (max-width: 767px) {
  .schedule-table__grid {
    grid-template-columns: repeat(4, minmax(180px, 230px));
  }
}
.schedule-table__cell {
  border-right: 1px solid #3C3C3C;
  border-bottom: 1px solid #3C3C3C;
  position: relative;
  background-color: #fff;
  margin-left: 10px;
}
.schedule-table__cell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: transparent;
  border-top: 1px dashed #3C3C3C;
}
.schedule-table__cell:nth-child(-n+4) {
  border-top: 1px solid #3C3C3C;
}
.schedule-table__cell:nth-child(4n) {
  border-right: none;
}
.schedule-table__events {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.schedule-table__grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(12, 160px);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 767px) {
  .schedule-table__grid-lines {
    grid-template-columns: repeat(4, minmax(180px, 230px));
  }
}
.schedule-table__grid-line {
  border-right: 1px solid #3C3C3C;
  border-bottom: 1px solid #3C3C3C;
  position: relative;
  margin-left: 10px;
}
.schedule-table__grid-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: transparent;
  border-top: 1px dashed #3C3C3C;
}
.schedule-table__grid-line:nth-child(-n+4) {
  border-top: 1px solid #3C3C3C;
}
.schedule-table__grid-line:nth-child(4n) {
  border-right: none;
}

.schedule-event {
  position: absolute;
  background-color: #DCE7EA;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  pointer-events: auto;
  margin: 5px 10px;
}
.schedule-event[data-day="1"] {
  left: 0%;
  width: calc(25% - 20px);
}
@media (max-width: 767px) {
  .schedule-event[data-day="1"] {
    left: 0px;
    width: 160px;
  }
}
.schedule-event[data-day="2"] {
  left: 25%;
  width: calc(25% - 20px);
}
@media (max-width: 767px) {
  .schedule-event[data-day="2"] {
    left: 180px;
    width: 160px;
  }
}
.schedule-event[data-day="3"] {
  left: 50%;
  width: calc(25% - 20px);
}
@media (max-width: 767px) {
  .schedule-event[data-day="3"] {
    left: 360px;
    width: 160px;
  }
}
.schedule-event[data-day="4"] {
  left: 75%;
  width: calc(25% - 20px);
}
@media (max-width: 767px) {
  .schedule-event[data-day="4"] {
    left: 540px;
    width: 160px;
  }
}
.schedule-event[data-start="1"] {
  top: 80px;
}
.schedule-event[data-start="2"] {
  top: 240px;
}
.schedule-event[data-start="3"] {
  top: 400px;
}
.schedule-event[data-start="4"] {
  top: 560px;
}
.schedule-event[data-start="5"] {
  top: 720px;
}
.schedule-event[data-start="6"] {
  top: 880px;
}
.schedule-event[data-start="7"] {
  top: 1040px;
}
.schedule-event[data-start="8"] {
  top: 1200px;
}
.schedule-event[data-start="9"] {
  top: 1360px;
}
.schedule-event[data-start="10"] {
  top: 1520px;
}
.schedule-event[data-start="11"] {
  top: 1680px;
}
.schedule-event[data-start="12"] {
  top: 1840px;
}
.schedule-event[data-start="1"][data-end="2"] {
  height: 150px;
}
.schedule-event[data-start="1"][data-end="3"] {
  height: 310px;
}
.schedule-event[data-start="1"][data-end="4"] {
  height: 470px;
}
.schedule-event[data-start="1"][data-end="5"] {
  height: 630px;
}
.schedule-event[data-start="1"][data-end="6"] {
  height: 790px;
}
.schedule-event[data-start="1"][data-end="7"] {
  height: 950px;
}
.schedule-event[data-start="1"][data-end="8"] {
  height: 1110px;
}
.schedule-event[data-start="1"][data-end="9"] {
  height: 1270px;
}
.schedule-event[data-start="1"][data-end="10"] {
  height: 1430px;
}
.schedule-event[data-start="1"][data-end="11"] {
  height: 1590px;
}
.schedule-event[data-start="1"][data-end="12"] {
  height: 1750px;
}
.schedule-event[data-start="1"][data-end="13"] {
  height: 1910px;
}
.schedule-event[data-start="2"][data-end="3"] {
  height: 150px;
}
.schedule-event[data-start="2"][data-end="4"] {
  height: 310px;
}
.schedule-event[data-start="2"][data-end="5"] {
  height: 470px;
}
.schedule-event[data-start="2"][data-end="6"] {
  height: 630px;
}
.schedule-event[data-start="2"][data-end="7"] {
  height: 790px;
}
.schedule-event[data-start="2"][data-end="8"] {
  height: 950px;
}
.schedule-event[data-start="2"][data-end="9"] {
  height: 1110px;
}
.schedule-event[data-start="2"][data-end="10"] {
  height: 1270px;
}
.schedule-event[data-start="2"][data-end="11"] {
  height: 1430px;
}
.schedule-event[data-start="2"][data-end="12"] {
  height: 1590px;
}
.schedule-event[data-start="2"][data-end="13"] {
  height: 1750px;
}
.schedule-event[data-start="3"][data-end="4"] {
  height: 150px;
}
.schedule-event[data-start="3"][data-end="5"] {
  height: 310px;
}
.schedule-event[data-start="3"][data-end="6"] {
  height: 470px;
}
.schedule-event[data-start="3"][data-end="7"] {
  height: 630px;
}
.schedule-event[data-start="3"][data-end="8"] {
  height: 790px;
}
.schedule-event[data-start="3"][data-end="9"] {
  height: 950px;
}
.schedule-event[data-start="3"][data-end="10"] {
  height: 1110px;
}
.schedule-event[data-start="3"][data-end="11"] {
  height: 1270px;
}
.schedule-event[data-start="3"][data-end="12"] {
  height: 1430px;
}
.schedule-event[data-start="3"][data-end="13"] {
  height: 1590px;
}
.schedule-event[data-start="4"][data-end="5"] {
  height: 150px;
}
.schedule-event[data-start="4"][data-end="6"] {
  height: 310px;
}
.schedule-event[data-start="4"][data-end="7"] {
  height: 470px;
}
.schedule-event[data-start="4"][data-end="8"] {
  height: 630px;
}
.schedule-event[data-start="4"][data-end="9"] {
  height: 790px;
}
.schedule-event[data-start="4"][data-end="10"] {
  height: 950px;
}
.schedule-event[data-start="4"][data-end="11"] {
  height: 1110px;
}
.schedule-event[data-start="4"][data-end="12"] {
  height: 1270px;
}
.schedule-event[data-start="4"][data-end="13"] {
  height: 1430px;
}
.schedule-event[data-start="5"][data-end="6"] {
  height: 150px;
}
.schedule-event[data-start="5"][data-end="7"] {
  height: 310px;
}
.schedule-event[data-start="5"][data-end="8"] {
  height: 470px;
}
.schedule-event[data-start="5"][data-end="9"] {
  height: 630px;
}
.schedule-event[data-start="5"][data-end="10"] {
  height: 790px;
}
.schedule-event[data-start="5"][data-end="11"] {
  height: 950px;
}
.schedule-event[data-start="5"][data-end="12"] {
  height: 1110px;
}
.schedule-event[data-start="5"][data-end="13"] {
  height: 1270px;
}
.schedule-event[data-start="6"][data-end="7"] {
  height: 150px;
}
.schedule-event[data-start="6"][data-end="8"] {
  height: 310px;
}
.schedule-event[data-start="6"][data-end="9"] {
  height: 470px;
}
.schedule-event[data-start="6"][data-end="10"] {
  height: 630px;
}
.schedule-event[data-start="6"][data-end="11"] {
  height: 790px;
}
.schedule-event[data-start="6"][data-end="12"] {
  height: 950px;
}
.schedule-event[data-start="6"][data-end="13"] {
  height: 1110px;
}
.schedule-event[data-start="7"][data-end="8"] {
  height: 150px;
}
.schedule-event[data-start="7"][data-end="9"] {
  height: 310px;
}
.schedule-event[data-start="7"][data-end="10"] {
  height: 470px;
}
.schedule-event[data-start="7"][data-end="11"] {
  height: 630px;
}
.schedule-event[data-start="7"][data-end="12"] {
  height: 790px;
}
.schedule-event[data-start="7"][data-end="13"] {
  height: 950px;
}
.schedule-event[data-start="8"][data-end="9"] {
  height: 150px;
}
.schedule-event[data-start="8"][data-end="10"] {
  height: 310px;
}
.schedule-event[data-start="8"][data-end="11"] {
  height: 470px;
}
.schedule-event[data-start="8"][data-end="12"] {
  height: 630px;
}
.schedule-event[data-start="8"][data-end="13"] {
  height: 790px;
}
.schedule-event[data-start="9"][data-end="10"] {
  height: 150px;
}
.schedule-event[data-start="9"][data-end="11"] {
  height: 310px;
}
.schedule-event[data-start="9"][data-end="12"] {
  height: 470px;
}
.schedule-event[data-start="9"][data-end="13"] {
  height: 630px;
}
.schedule-event[data-start="10"][data-end="11"] {
  height: 150px;
}
.schedule-event[data-start="10"][data-end="12"] {
  height: 310px;
}
.schedule-event[data-start="10"][data-end="13"] {
  height: 470px;
}
.schedule-event[data-start="11"][data-end="12"] {
  height: 150px;
}
.schedule-event[data-start="11"][data-end="13"] {
  height: 310px;
}
.schedule-event[data-start="12"][data-end="13"] {
  height: 150px;
}
.schedule-event__time {
  font-size: 13px;
  font-family: "Oswald", sans-serif;
  color: #4F859A;
  font-weight: 500;
  line-height: 1;
}
.schedule-event__title {
  font-size: 13px;
  color: #000;
  line-height: 1;
  letter-spacing: 0;
}
.schedule-event__title-sub {
  font-size: 10px;
}
.schedule-event__label {
  display: inline-block;
  background-color: #4F859A;
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.about-section {
  background-color: #fff;
}

.classification-cards {
  padding: 0 86px 40px;
  background: #EBF2F5;
}
@media (max-width: 767px) {
  .classification-cards {
    padding: 0 20px 40px;
  }
}
.classification-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .classification-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .classification-cards__grid {
    grid-template-columns: 1fr;
  }
}

.classification-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
.classification-card__top-bar {
  height: 3px;
  background-color: #FB2331;
  flex-shrink: 0;
}
.classification-card__content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.classification-card__content p {
  font-size: 13px;
  line-height: 1.2;
  margin: 0 0 15px 0;
  text-align: center;
}
.classification-card__content p:last-child {
  margin-bottom: 0;
}
.classification-card__content .content-en {
  font-size: 13px;
  line-height: 2;
  background: none !important;
  padding: 0 !important;
  display: block !important;
}
.classification-card__content .content-en .content-en-word {
  color: #fff;
  background: #4F859A;
  font-family: "Oswald", sans-serif;
  display: inline;
  padding: 0px 4px;
  line-height: 1.2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.classification-card__title {
  font-size: 13px;
  line-height: 1.2;
  margin: 0 0 15px 0;
}
.classification-card__text {
  font-size: 13px;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.about-section {
  background: #fff;
}

.about-section--liveheat {
  background: #EBF2F5;
}
.about-section--liveheat .liveheat-buttons {
  background: #EBF2F5 !important;
}
.about-section--liveheat .bg-highlightB-white {
  background: #4F859A !important;
  color: #fff !important;
}

.background-white{
  background: #fff !important;
}

