


.section {
    position: relative;
    width: 100%;
    border-radius: 20px;
    background: var(--lightGray);
    overflow: hidden;
}

.layer:nth-child(even) .section {
    background: #fff;
}

.layer:nth-child(even) .card {
    background: var(--lightGray);
}

.section +.section {
    margin-top: 50px;
}

.section_text {
    position: relative;
    padding: 35px;
}

.section_img {
    position: relative;
}

.section_img img {
    width: 100%;
}






.feature {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature .section {
    width: calc( 50% - 12.5px );
    margin: 0;
}

.feature .section:nth-child( n+3 ) {
    margin-top: 25px;
}

.feature h2 {
    font-size: 25px;
}





.exam {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.exam .section {
    width: calc( 100%/3 - 50px/3 );
    margin: 0;
}

.exam h2 {
    font-size: 25px;
}

.exam .subtitle {
    font-size: 16px;
}








.card {
    padding: 15px 20px;
    background: #fff;
    border-bottom: var(--blue-border) 5px solid;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}





.fixed_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.fixed_text h2, .fixed_text .subtitle, .feature_text h2 {
    color: #fff;
}

.fixed_text .card {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}




.exam_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
    color: #fff;
}

.exam_01 .exam_text {
    background: var(--exam-01);
}

.exam_02 .exam_text {
    background: var(--exam-02);
}

.exam_03 .exam_text {
    background: var(--exam-03);
}

.exam_01 .card {
    border-color: var(--exam-01);
}

.exam_02 .card {
    border-color: var(--exam-02);
}

.exam_03 .card {
    border-color: var(--exam-03);
}







.point {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.point h2 {
    margin-bottom: 0 !important;
}

.point .subtitle {
    text-align: center;
}

.point_1 span {
    position: relative;
    top: 2.5px;
    font-size: 55px;
    letter-spacing: -2px;
    color: var(--blue);
}




.notice {
    position: absolute;
    bottom: 50px;
    font-size: 20px;
    color: #fff;
}



.sticky {
    position: sticky;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: var(--blue);
    z-index: 999999;
}

.sticky .button {
    max-width: 350px;
    color: var(--blue);
    background: #fff !important;
}

.sticky .button:after {
    border-color: var(--blue) !important;
}


.go_top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25.5px;
    right: 25.5px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 15px;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    border: #fff 1px solid;
    border-radius: 10px;
    cursor: pointer;
}



@media screen and (max-width: 1024px) {

    .section +.section {
        margin-top: 20px;
    }
    
    .section_text {
        padding: 20px;
    }
    
    .card {
        padding: 10px;
    }

    .fixed_text .card {
        font-size: 13px;
    }

    .notice {
        font-size: 12px;
    }

    .sticky {
        justify-content: space-between;
        background: var(--blue);
    }
    
    .sticky .button {
        max-width: calc( 100% - 70px );
    }

    .go_top {
        bottom: 20px;
    }





    .feature {
        flex-direction: column
    }
    
    .feature .section {
        width: 100%;
        margin: 0;
    }
    
    .feature .section:nth-child( n+2 ) {
        margin-top: 25px;
    }
    
    .feature h2 {
        font-size: 20px;
    }
    




    .exam {
        flex-direction: column;
    }
    
    .exam .section {
        width: 100%;
    }

    .exam .section + .section {
        margin-top: 20px;
    }

    .exam h2 {
        font-size: 20px;
    }
    
    .exam .subtitle {
        font-size: 14px;
    }


    .point h2 {
        margin-bottom: 15px !important;
    }



}