/*******************

course

********************/

.course {
    margin-bottom: 80px;
}

.course h3 {
    padding-bottom: 24px;
}

.course__title {
    position: relative;
    display: flex;
    justify-content: center;
}

.course__title h4 {
    text-align: center;
}

.course__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.course__btn {
    position: absolute;
    right: 0;
}

.course__inner {
    background-color: #ffffff;
    border-radius: 8px;
    width: 304px;
}

.course__box {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    padding: 24px;
}

.course__box-title p.label span {
    background-color: #34A092;
    border-radius: 2px;
    color: #ffffff;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.08em;
    padding: 2px 8px 3px 8px;
}

.course__box-title p.label.company span {
    background-color: #CA9D49;
}

.course__box-title p.label.individual span {
    background-color: #33A093;
}

.course__box-title p.label.certified span {
    background-color: #4E289B;
}

.course__box-title {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.course__box-title h5 {
    text-decoration: underline;
}

.course__box-title h5 a {
    font-size: 18px;
    font-weight: 600;
}

.course__box-title h5 svg {
    font-size: 12px;
    margin-left: 8px;
}

.course__box p {
    font-size: 14px;
    line-height: 24px;
}

@media screen and (max-width: 680px) {
    .course__inner {
        width: 90vw;
    }
    .course__box {
        row-gap: 3.2vw;
        padding: 4.8vw;
    }
    .course {
        padding-top: 4.8vw;
    }
}