@charset "UTF-8";

.chMainSection01{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 70px 0 20px 0;
}

.chMainSection01__container{
    display: flex;
    flex-direction: column;
    width: 91%;
    height: auto;
    justify-content: center;
    align-items: flex-start;
}

.chMainSection01__ttlBox{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: flex-start;
}

.chMainSection01__ttlBox h1{
    display: block;
    font-weight: 800;
    font-size: 36px;
    color: #494949;
    font-family: 'inter', 'noto sans sc', sans-serif;
}





.chMainSection02{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 30px 0;
}

.chMainSection02__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 91.5%;
    height: auto;
}


main{
    padding-bottom: 30px;
}


.chMainSection02__imageBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48%;
    height: auto;
}

.chMainSection02__imageBox img{
    display: block;
    width: 100%;
    height: auto;
}

.chMainSection02__txtBox{
    display: flex;
    flex-direction: column;
    width: 48%;
    height: auto;
    justify-content: center;
    align-items: flex-start;
}

.chMainSection02__txtBox h2{
    display: block;
    font-weight: 600;
    font-size: 20px;
    color: #383838;
}

.chMainSection02__txtBox p{
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: #606060;
    margin-top: 4px;
    text-align: left;
}

.chMainSection03{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 30px 0;
}

.chMainSection03__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 91.5%;
    height: auto;
}

.chMainSection03__column01{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 25px 0;
}

.chMainSection03__courses{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 47.5%;
    height: auto;
}

.chMainSection03__logoBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 78px;
    height: auto;
}

.chMainSection03__logoBox img{
    display: block;
    width: 95%;
    height: auto;
}

.chMainSection03__courseTextBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
    width: calc(100% - 90px);
    margin-left: 12px;
    height: auto;
}

.chMainSection03__courseTextBox h3{
    display: block;
    font-weight: 500;
    font-size: 16.5px;
    color: #454545;
}

.chMainSection03__courseTextBox p{
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: #505050;
    margin-top: 3px;
    text-align: left;
}


@media screen and (max-width: 570px) {
    main{
        padding-bottom: 60px;
    }

    .chMainSection02__container{
        flex-direction: column;
    }

    .chMainSection02__imageBox, .chMainSection02__txtBox{
        width: 100%;
    }

    .chMainSection02__imageBox{
        margin-bottom: 10px;
    }
    
    .chMainSection03__column01{
        flex-direction: column;
        margin: 0;
    }

    .chMainSection03__courses{
        width: 100%;
        margin: 25px 0;
    }
}