.layer_01 {
    background: white url('../images/layer_01_BG.svg') center bottom no-repeat;
    background-size: 2180px auto;
}

.layer_02 {
    background: var(--lightblue) url('../images/layer_02_BG.svg') center bottom no-repeat;
    background-size: 2180px auto;
}

.layer_03 {
    background: var(--yellow) url('../images/layer_03_BG.svg') center bottom no-repeat;
    background-size: 2180px auto;
}

.layer_04 {
    background: var(--lightred);
}




.layer_01 .section {
    background: var(--yellow);
}

.layer_02 .section,
.layer_03 .section,
.layer_04 .section {
    background: white;
}


.layer_02 .section {
    border: 10px solid white;
}




.section {
    position: relative;
    width: 100%;
    border-radius: 25px;
    background: var(--yellow);
}

.section +.section {
    margin-top: 50px;
}

.section_text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 75px;
}

.section_img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.section_img img {
    width: 100%;
}


.section_head {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 25px 0;
    color: white;
    border-radius: 25px;
    background: var(--red)
}

.section_head .head {
    font-size: 25px;
    font-weight: 700;
    line-height: 50px;
}

.section_head .head span {
    color: var(--yellow);
}

.section_head .subtitle {
    width: 90%;
    border-top: 1px solid white;
    text-align: center;
}



.card {
    padding: 25px;
    border-radius: 15px;
    background: #fff;
}






.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 {
    color: #fff;
}

.fixed_text .card {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: black;
    background: var(--yellow);
}






.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;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--red);
}




.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: #fad696;
    z-index: 999999;
}

.sticky:before {
    content: '';
    position: absolute;
    top: -25px;
    left: 10px;
    width: 200px;
    height: 100px;
    background: url('../images/pattern_sticky_left.svg') center no-repeat;
    background-size: contain;
}

.sticky .button {
    max-width: 350px;
    color: white;
    background: var(--red);
}

.sticky .button:after {
    border-color: var(--red) !important;
}


.go_top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 33.25px;
    right: 25.5px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 15px;
    font-size: 13px;
    font-weight: 900;
    color: white;
    border-radius: 50px;
    background: var(--red);
    cursor: pointer;
}

.go_top:after {
    content: '';
    position: absolute;
    bottom: -27.5px;
    right: -25px;
    width: 70px;
    height: 40px;
    background: url('../images/pattern_sticky_right.svg') center left no-repeat;
    background-size: cover;

}



@media screen and (max-width: 1024px) {

    .layer_01 {
        background: white url('../images/layer_01_BG.svg') center bottom no-repeat;
        background-size: 1280px auto;
    }
    
    .layer_02 {
        background: var(--lightblue) url('../images/layer_02_BG.svg') center bottom no-repeat;
        background-size: 1280px auto;
    }
    
    .layer_03 {
        background: var(--yellow) url('../images/layer_03_BG.svg') center bottom no-repeat;
        background-size: 1280px auto;
    }

    .section +.section {
        margin-top: 20px;
    }
    
    .section_text {
        padding: 20px;
    }
    
    
    .section_head {
        padding: 15px;
    }

    .section_head .head {
        font-size: 18px;
        line-height: 30px;
    }
    
    .section_head .subtitle {
        width: 100%;
    }
    
    .card {
        padding: 10px 15px;
    }

    .fixed_text .card {
        font-size: 13px;
    }

    .notice {
        font-size: 12px;
    }

    .sticky {
        justify-content: space-between;
    }

    .sticky:before {
        display: none;
    }
    
    .sticky .button {
        max-width: calc( 100% - 100px );
    }

    .go_top {
        bottom: 20px;
    }

}