

.all_wrap {
    color: #111111;
    padding-top: 120px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    text-align: center;
    word-break: keep-all;
}


    .all_wrap .sub_wrap {
        max-width: 1100px;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 100px 25px;
        align-items: center;
    }


.title_box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    text-align: center;
    width: 100%;
}

    .title_box .sub_tit {
        color: #999;
        letter-spacing: 5px;
        text-transform: uppercase;
    }

    .title_box .main_tit {
        font-size: 48px;
        font-weight: 700;
        margin: 10px 0 20px 0;
    }


    .title_box .detail_txt {
        font-size: 22px;
        font-weight: 500;
        margin-bottom:20px;
    }

.caution_wrap {
    display: flex;
    flex-direction:column;
    gap:50px;
    justify-content:center;
    width:100%;
}

    .caution_wrap .caut_box {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

        .caution_wrap .caut_box .tit {
            font-size:24px;
            font-weight:700;
        }

        .caution_wrap .caut_box .caut_ul {
            display: flex;
            align-items: center;
            gap: 30px 20px;
            flex-wrap: wrap;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 30px;
        }

            .caution_wrap .caut_box .caut_ul .caut_li {
                display: flex;
                justify-content: space-between;
                padding: 20px;
                align-items: center;
                border: 1px solid #cbcbcb;
                background: #fff;
                color: #666;
                font-weight: 500;
                width: 23.4%;
                text-align: center;
                border-radius: 50px;
                cursor: pointer;
                letter-spacing: -0.5px;
                line-height: 1;
                font-size: 17px;
            }

                .caution_wrap .caut_box .caut_ul .caut_li:hover {
                    border: 1px solid #65b6bc;
                    color: #fff;
                    font-weight: 700;
                    background: #65b6bc;
                    transition: .2s;
                }

.sub_wrap hr {
    border: 1px solid #eeeeee;


    width: 100%;
}

.back_box {
    display: flex;
    justify-content:flex-end; /*pdf ¹öÆ° »ý¼º½Ã »èÁ¦*/
}

    .back_box a.back_btn {
        display: block;
        padding: 8px 10px;
        background: #3a3a3a;
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        border-radius: 30px;
        margin-bottom: 20px;
        cursor: pointer;
    }

.caution_wrap .caut_box .caut_ctn {
    display: flex;
    justify-content: center; /*pdf ¹öÆ° »ý¼º½Ã »èÁ¦*/
    /*justify-content: space-between; pdf¹öÆ° »ý¼º½Ã*/
    align-items: center;
    padding: 40px 20px;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
}
    .caution_wrap .caut_box .caut_ctn a.pdf_btn {
        display: block;
        padding: 10px 25px;
        border-radius: 50px;
        background: #65b6bc;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
    }

.caution_wrap .caut_box .caut_ctn .ctn_tit {
    font-size: 32px;
    font-weight: 900;
}

.caution_wrap .caut_box .sub_tit {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 20px 0;
}


ol.txt_list {
    background: #f9f9f9;
    border: 1px solid #f1f1f1;
    padding: 30px 30px 30px 50px;
    border-radius: 30px;
}

    ol.txt_list li {
        list-style: decimal;
        list-style-position: outside;
        font-size: 16px;
        color: #666;
        padding: 7px 0;
        line-height:1.8;
    }

ol.txt_list li::marker {
    list-style-type: decimal;
}

        ol.txt_list li span {
            padding: 2px;
            background: #e0eff0;
            font-weight: 700;
            color: #000;
        }
        ol.txt_list li b {
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: #b64040;
        }

        ol.txt_list li .point_box {
            display: block;
            background: #fff;
            padding: 20px 30px;
            border-radius: 20px;
            margin-top: 20px;
            font-weight: 500;
        }


        @media (min-width: 768px) and (max-width: 1024px) {
            .title_box {
        padding-top: 70px;
    }

    .all_wrap .sub_wrap {
        padding-top: 70px;
    }

    .caution_wrap .caut_box .caut_ul .caut_li {
        width: 31%;
    }

        .caution_wrap .caut_box .caut_ul .caut_li.full {
            width: 40%;
        }

}



@media (max-width: 767px) {

    .title_box {
        padding-top: 0;
    }

        .title_box .main_tit {
            font-size: 36px;
            padding: 0 30px;
        }

        .title_box .sub_tit {
            letter-spacing: 4px;
            font-size: 15px;
        }

    .back_box a.back_btn {
        margin:0;
    }

    .all_wrap .sub_wrap {
        padding: 25px 25px 100px 25px;
    }


    .caution_wrap {
        gap: 30px;
    }
    .caution_wrap .caut_box .caut_ul {
        gap: 20px 10px;
        padding: 20px;
        border-radius: 22px;
    }

        .caution_wrap .caut_box .caut_ul .caut_li {
            width: 48%;
            font-size: 14px;
            padding: 16px 15px;
            line-height: 1;
        }

            .caution_wrap .caut_box .caut_ul .caut_li.full {
                width:100%;
            }


            .caution_wrap .caut_box .tit {
                font-size: 20px;
            }


    .back_box a.back_btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    .caution_wrap .caut_box .caut_ctn {
        padding: 30px 20px;
    }
        .caution_wrap .caut_box .caut_ctn .ctn_tit {
            font-size: 24px;
            text-align: center;
        }
    .caution_wrap .caut_box .sub_tit {
        margin: 20px 0 10px 0;
    }

    ol.txt_list {
        padding: 20px 20px 20px 35px;
        border-radius: 20px;
    }

        ol.txt_list li {
            font-size: 14px;
            padding: 5px 0;
            line-height: 1.7;
        }
            ol.txt_list li .point_box {
                padding: 20px;
            }
            ol.txt_list li b {
                font-size: 16px;
            }
}