@charset "UTF-8";
/* CSS Document */
@media (min-width: 768px) {
    .which__course__box__content__item {
        grid-template-columns: 40% 40% 20%;
        align-items: center;
    }
}
@media (min-width: 576px) {
    .which__course__box__content__item__text {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
    }
}
@media (min-width: 576px) {
    .which__course__box__content__item__people {
        grid-row: 2 / 2;
        grid-column: 2 / 2;
    }
}
@media (min-width: 768px) {
    .which__course__box__content__item__people {
        font-size: 2.4rem;
        grid-row: 1 / 2;
        grid-column: 3 / 3;
        margin-top: 0;
    }
}
.which__course__box__content__item__level>small {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: right;
}

.which__course__box__content__item__level {
    grid-template-columns:none
}
.which__course__box__content__item {
    text-align: center;
}
@media (min-width: 576px) and (max-width: 767px)  {
    .which__course__box__content__item {
        grid-template-columns: 1fr 1.2fr;
    }
}
@media (min-width: 576px) {
    .which__course__box__content__item__level {
        grid-row: 1 / 3;
    }
}

@media (min-width: 768px) {
    .recommend__card__box::before {
        aspect-ratio: 78 / 24;
        width: 78px;
    }
}

.quizspot__card__box {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 10px;
    margin: 20px auto 10px;
    position: relative;
    max-width: 300px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    color: #fda10f;
}

@media (min-width: 576px) {
    .quizspot__card__box {
        max-width: 500px;
        font-size: 1.8rem;
        padding: 30px 10px 20px;
    }
}
.quizspot__card__box::before {
    position: absolute;
    top: 100%;
    left: 50%;
    translate: -50% -1px;
    content: "";
    aspect-ratio: 60 / 30;
    width: 20px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: #fff;
}