html{
    scroll-padding-top: var(--header-height-wide);
}

@media screen and (min-width: 768px) and (max-width: 1190px)
{
    html{
        scroll-padding-top: var(--header-height-pc);
    }
}

@media screen and (max-width: 767px)
{
    html{
        scroll-padding-top: var(--header-height-tablet);
    }
}

.description{
    margin: 2rem 0;
    font-size: 1.6rem;
}

.description p{
    margin-bottom: 1rem;
    line-height: 2.0;
}

.description p:last-child{
    margin-bottom: 0;
}

.detail{
    margin: 2rem 0;
}

.detail__items{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail__item{
    display: flex;
    gap: 2rem;
}

@media screen and (max-width: 480px){
    .detail__item{
        flex-direction: column-reverse;
    }
}

.detail__item-img{
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

@media screen and (max-width: 480px){
    .detail__item-img{
        width: 100%;
        height: 100%;
    }
}

.detail__item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.detail__item-content{
    flex: 1;
}

.detail__item-title{
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #CFE9F9;
    padding-bottom: 0.5rem;
    position: relative;
}

.detail__item-title::before{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: #1191e2;
    z-index: 2;
}

.detail__item-text{
    font-size: 1.4rem;
    line-height: 2.0;
}

.course-menu__items{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.course-menu__item{
    width: calc(50% - 1rem);
}

.course-menu__item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
