:root {
    /* input style */
    /* --input-padding-x: 16px; */
    /* --input-padding-y: 12px; */

    /* input_title font-size */
    /* --input-title-size: 14px; */

    /* input font-size */
    /* --input-font-size: 16px; */

    /* --input-border-color: #E1E1E1; */

    /* input[checkbox] icon */
    /* --check-default-img:url(); */
    /* --check-active-img:url(); */

    /* input[radio] icon */
    /* --radio-default-img:url(); */
    /* --radio-active-img:url(); */

    /* input icon크기 */
    /* --input-icon-size: 20px; */

    /* 프로젝트 style */
    --main-color: #EE2759;
    --error-color: #F64E60;
    --success-color: #1A9D40;
    --sub-color: #FFF2F0;
}

/* pc */
#base_wrap {
    position: relative;
    width: 100%;
    /* height: 100vh;
    overflow-y: auto; */
}

body.scroll-lock {
    overflow: hidden;
}

.scroll-lock {
    overflow-y: hidden;
}

.inner {
    /* width는 임시값 */
    max-width: 1164px;
    padding: 0 16px;
    margin: 0 auto;
}

/* 일시적인 숨김, 일시적인 표시 일때 control class */
.hide {
    display: none !important;
}

/* 웹접근성 hide */
.edk_WAI {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    z-index: -1;
    border: none;
    padding: 0;
    margin: 0;
}

/* 반응형 display control */
.is_mobile {
    display: none;
}

.scroll-no {
    /* 인터넷 익스플로러 스크롤바 삭제 */
    -ms-overflow-style: none;
    /* 파이어폭스 스크롤바 삭제 */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

/* ( 크롬, 사파리, 오페라, 엣지 ) 스크롤바 삭제 */
.scroll-no::-webkit-scrollbar {
    /* 가로 스크롤바 숨기기 */
    width: 0;
    /* 세로 스크롤바 숨기기 */
    height: 0;
    display: none;
}

/* 텍스트 ... 처리 */
.text_reduce {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* btn */
.btn_default {
    border: 1px solid #AAA;
    background-color: transparent;
    color: #222;
    border-radius: 6px;
}

.btn_default.border_main {
    border-color: var(--main-color);
    color: var(--main-color);
}

.btn_default.fill_main {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: #FFF;
}

.btn_default.full {
    width: 100%;
    text-align: center;
}

/* btn group */
.btn_group {
    display: flex;
    gap: 8px 16px;
}

.btn_group.column {
    flex-wrap: wrap;
}

.btn_group.center {
    justify-content: center;
}

.btn_group.right {
    justify-content: flex-end;
}

/* 섹션 제목 공통 */
.section_title_wrap.center {
    text-align: center;
}

.section_title_wrap .title_top {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.section_title_wrap .main_title {
    font-size: 32px;
    font-weight: 700;
}

.section_title_wrap .main_title .color {
    color: var(--main-color);
}

.section_title_wrap .title_sub {
    font-size: 20px;
    color: #5E5E5E;
    /* margin-top은 개별설정 */
}

/* 섹션 제목 공통 end */

/* shadow */
.box_shadow {
    border-radius: 6px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}

/* page padding */
.page_cont {
    padding: 70px 0;
}

/* notice box 공통 */
.notice_box {
    /* background-color개별 */
    border-radius: 6px;
    padding: 16px;
}

.notice_box .notice_item {
    display: flex;
    gap: 4px;
    font-size: 16px;
    color: #5E5E5E;
}

.notice_box .notice_item p {
    word-break: keep-all;
}

/* notice box 공통 end */

/* 상담하기 제외 플로팅 버튼 */
#floating_btn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 95;
}

.go_consult {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0 8px;
    color: #fff;
    font-size: 20px;
    background-color: #262626;
    font-weight: 700;
}

.go_consult .icon_wrap {
    display: flex;
    aspect-ratio: 1/1;
    width: 24px;
    overflow: hidden;
}

#floating_btn .go_consult {
    padding: 18px 32px;
    border-radius: 100px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}

#floating_btn .go_consult p {
    flex-shrink: 0;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination .paging {
    display: flex;
    background-color: transparent;
    border-radius: 6px;
}

.pagination .paging.num {
    padding: 8px 15px;
    font-size: 18px;
    font-weight: 400;
    color: #222;
}

.pagination .paging.active {
    background-color: #FFF2F0;
}

.pagination .paging .img_wrap {
    display: flex;
    width: 28px;
}



/* tablet */
@media screen and (max-width: 1023px) {

    /* 반응형 display control */
    .is_pc {
        display: none !important;
    }

    .is_mobile {
        display: block;
    }

    .is_mobile.flex {
        display: flex;
    }

    /* 페이지네이션 */
    .pagination {
        margin-top: 40px;
    }
}

/* mobile */
@media screen and (max-width: 767px) {

    /* 섹션 제목 공통 */
    .section_title_wrap {
        text-align: center;
    }

    .section_title_wrap .title_top {
        font-size: 16px;
    }

    .section_title_wrap .main_title {
        font-size: 20px;
    }

    .section_title_wrap .title_sub {
        font-size: 16px;
        /* margin-top은 개별설정 */
    }

    /* 상담하기 제외 플로팅 버튼 */
    #floating_btn {
        bottom: 30px;
    }

    .go_consult {
        font-size: 14px;
    }

    .go_consult .icon_wrap {
        width: 20px;
    }

    #floating_btn .go_consult {
        padding: 16px 24px;
        font-size: 16px;
    }

    #floating_btn .go_consult .icon_wrap {
        width: 22px;
    }

    .page_cont {
        padding: 50px 0;
    }
}