.under-contents__container h2,
.dateTime {
    text-align: center;
}

.dateTime {
    font-size: 50px;
    color: #cc4454;
}

.scheduleTable {
    margin-bottom: 50px;
}

.scheduleTable table {
    width: 100%;
}

.under-contents__container h2 {
    width: fit-content;
    padding: 5px 10px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin: 0 auto 50px;
}

th:first {
    width: 200px;
}

th,
td {
    /*width: 300px;*/
    width: calc(calc(100% - 200px) / 6);
    vertical-align: middle;
    padding: 0 15px;
    border: 1px solid #ccc;
}
tr {
	height: 26px;
}

.fixed01,
.fixed02 {
    position: sticky;
    top: 81px;
    left: 0;
    color: #fff;
    background: #333;
}

.fixed01:before,
.fixed02:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
}

.fixed01 {
    z-index: 2;
}

.fixed02 {
    z-index: 1;
}

.activeRow {
    background-color: #FF0000 !important;
}

.warningDiscription {
    width: 80%;
    border: 1px solid #ccc;
    padding: 50px;
    margin: 0 auto 50px;
}

.warningDiscription h3 {
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 10px;
}

.warningDiscription li::before {
    content: '※';
}

@media screen and (max-width: 768px) {
    .dateTime {
        font-size: 36px;
        font-weight: bold;
    }

    .scheduleTable {
        width: 100%;
        max-height: 70vh;
        min-height: fit-content;
        overflow: scroll;
    }

    .fixed01,
    .fixed02 {
        top: 0px;
    }
    .fixed01 {
        min-width: 40px;
    }
    td {
        min-width: 100px;
    }
    .warningDiscription {
        width: 80%;
        border: 1px solid #ccc;
        padding: 20px;
        margin: 0 auto 50px;
    }
}