.sec-agenda {
    background-color: var(--bg);
    padding: 3rem 1.5rem 6rem;
}

.time {
    color: #333333;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 6px;
}

.agenda-box {
    position: relative;
    border: 2px solid;
    background-color: #fff;
    padding: 15px 20px;
    transition: all .3s ease;
    border-radius: 10px;
    box-shadow: 0 3px 8px #35355320;
}

.agenda-box:hover,
.agenda-box:focus {
    transform: scale(1.01);
    box-shadow: 0 6px 16px #35355330;
}

.agenda-box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.break {
    background-color: #97acc8;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
}

.break .agenda-title {
    font-weight: 500;
    color: #ffffff;
}

.agenda-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #3A4B40;
}

.agenda-name {
    margin-top: 5px;
    color: #6F8356;
}

.track-head {
    font-size: 22px;
    line-height: 2;
    font-weight: 700;
    text-align: center;
    color: #003a00;
    margin-bottom: 6px;
    border-radius: 10px;
}

.class-box-content h4 {
    padding-bottom: 1rem;
}

.track-a {
    background-color: #f48067;
}

.track-b {
    background-color: #fdbf68;
}

.level,
.tag {
    font-size: 16px;
    font-weight: 600;
}

.level strong,
.tag strong {
    background-color: var(--yellow);
    padding: 1px 6px;
    color: #666;
    border-radius: 5px;
}

.level {
    border-top: 1px dashed #999;
    padding-top: 10px;
}

.level span,
.tag span {
    color: #666666;
    margin-left: 5px;
    font-weight: 400;
}

@media (max-width:768px) {
    .track-b {
        margin-top: 20px;
    }
}