#container {
    max-width: 1100px;
    margin: 0 auto;
}

#schedule-nav {
    margin: 50px 0;
    text-align: center;
}
#schedule-nav > * {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 5;
}
#schedule-nav .this {
    padding: 0 70px;
}
#schedule-nav h1 {
    color: #000;
    font-size: 24pt;
    font-weight: 800;
    line-height: 120%;
}
#schedule-nav h3 {
    color: #BBB;
    font-size: 13pt;
    font-weight: 300;
}
#schedule-nav .prev,
#schedule-nav .next {
    font-size: 12pt;
    color: #555;
    font-weight: 800;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#schedule-nav .prev {
    padding-right: 75px;
}
#schedule-nav .next {
    padding-left: 75px;
}
#schedule-nav .prev:after,
#schedule-nav .next:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    color: #000;
    font-weight: 800;
    line-height: 50px;
    text-align: center;
    font-family: "Nanum Gothic", "나눔고딕", sans-serif;
    font-size: 20pt;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#schedule-nav .prev:after {
    content: '<';
    right: 0;
    letter-spacing: 4px;
}
#schedule-nav .next:before {
    content: '>';
    left: 0;
    letter-spacing: -4px;
}
#schedule-nav .prev:hover:after,
#schedule-nav .next:hover:before {
    color: #3548A4;
}

#schedule-cont-wr {
    overflow: hidden;
    margin-bottom: 50px;
}
#schedule-cont {
    position: relative;
    display: grid;
    grid-template-columns: 100% 100% 100% 100% 100% 100% 100%;
}
/*div[id^='schedule-'] {
    display: none;
}
div[id^='schedule-'].on {
    display: block;
}*/
div[id^='schedule-'] {
}
div[id^='schedule-'] table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
}
div[id^='schedule-'] table th,
div[id^='schedule-'] table td {
    padding: 15px 20px;
    text-align: center;
}
div[id^='schedule-'] table .mobile th,
div[id^='schedule-'] table .mobile td {
    padding: 15px 10px;
}
div[id^='schedule-'] table th {
    text-align: center;
    background-color: #F5F5F5;
    border: 1px solid #e8e8e8;
    border-left-width: 0;
    border-right-width: 0;
}
div[id^='schedule-'] table td {
    font-size: 11pt;
    border-bottom: 1px solid #e8e8e8;
}

div[id^='schedule-'] table .mobile .date {
    font-size: 10pt;
}
div[id^='schedule-'] table .subject {
    font-size: 12pt;
}
div[id^='schedule-'] table .mobile .subject {
    font-size: 11pt;
    margin-top: 5px;
}
div[id^='schedule-'] table .time,
div[id^='schedule-'] table .category,
div[id^='schedule-'] table .resource {
    width: 140px;
    white-space: nowrap;
}
div[id^='schedule-'] table .mobile .resource {
    width: 80px;
}
div[id^='schedule-'] table .responsibility {
    font-weight: 300;
}
div[id^='schedule-'] table .mobile .responsibility {
    font-size: 10pt;
    font-weight: 400;
    margin-top: 5px;
}

#schedule-list {
    text-align: right;
    margin-bottom: 15px;
}

[id^="parent-"] {
    cursor: pointer;
}
[id^="child-"] {
    display: none;
}
pre {
    overflow: hidden;
    text-align: left;
}
@media (max-width:1100px) {
    #schedule-nav {
        position: relative;
    }
    #schedule-nav .prev,
    #schedule-nav .next {
        position: absolute;
        top: 50%;
        transform: translateY(50%);
        padding: 0 !important;
    }
    #schedule-nav .prev {
        left: 50px;
    }
    #schedule-nav .next {
        right: 50px;
    }
    #schedule-list .schedule-list {
        width: 100%;
    }
    div[id^='schedule-'] table tr.mobile {
        display: table-row !important;
    }
}