@charset "utf-8";
#Course__gf{
    background-color: #FFF3E8;
}
.Course{
    margin: 0 5%;
    padding-bottom: 60px;
}
.CourseTitle__sp{
    padding-top: 40px;
}
.CourseContents{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.CourseContents__subtitle{
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 25px 0 10px 0;
}
.CourseContents__title{
    margin-bottom: 12px;
}
#Course__gf .CourseContents__line{
    width: 90%;
    height: 2px;
    border-radius: 2px;
    background-color: #FFF3E8;
    margin: 0 auto;
}
.CourseContents__img{
    text-align: center;
}
.CourseContents__img img{
    width: 70%;
    padding: 10px 0;
}
#Course__gf .CourseContents__text{
    color: #fff;
    background-color: var(--gf-color);
    padding: 26px 3%;
    border-radius: 0 0 10px 10px;
}
.CourseTitle__pc{
    display: none;
}
@media screen and (min-width: 767px) {
    .CourseTitle__sp{
        display: none;
    }
    .CourseTitle__pc{
        display: block;
        padding-top: 80px;
    }
    .Course{
        padding-bottom: 80px;
    }
    .Course__wrap{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .CourseContents{
        width: 32%;
        margin: 0 0 30px 0;
        position: relative;
        z-index: 0;
    }
    .CourseContents::before{
        content: "";
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 0;
        width: 100%;
        height:130px;
        border-radius: 0 0 10px 10px;
        background-color: var(--gf-color);
    }
    .CourseContents__subtitle{
        font-size: 16px;
        padding: 25px 0 5px 0;
    }
    .CourseContents__img img{
        padding: 20px 0;
    }
    .CourseContents__text{
        z-index: 0;
    }
}