: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; */

    /* coupon color */
    --coupon-color: #FF9BA5;

    /* 프로젝트 style */
    --main-color: #00233E;
    --sub-color: #2876FF;
    --error-color: #F64E60;
    --success-color: #1A9D40;
}

/* www만 별도로 font 설정이 필요할때 */
/* body {
    font-family: 'Segoe UI', sans-serif;
} */

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

body.scroll-lock {
    overflow: hidden;
}

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

.inner {
    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;
}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination .paging {
    display: flex;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

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

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

.pagination .paging.arrow {
    padding: 8px 6px;
}

.pagination .paging.arrow .img_wrap {
    width: 28px;
    height: 28px;
}

.pagination .paging.arrow img {
    object-fit: contain;
    object-position: center;
}

/* empty */
.empty_wrap {
    display: flex;
    flex-direction: column;
    /* gap: ; */
    align-items: center;
    padding: 240px 0;
}

.empty_title {
    font-size: 14px;
    font-weight: 500;
    color: #5E5E5E;
    text-align: center;
}

/* 쿠폰 css(임시위치) */
/* 쿠폰 메인색상은 root에서 설정 */
.coupon_list_wrap .list_count {
    margin-bottom: 24px;
    font-size: 14px;
}

.coupon_list_wrap .list_count span {
    color: #5E5E5E;
}

.coupon_list_wrap .coupon_list>li:not(:last-child) {
    margin-bottom: 24px;
}

.coupon_wrap {
    width: 100%;
    height: 241px;
    border-radius: 21px;
    overflow: hidden;
    margin: auto;
    display: flex;
    align-items: stretch;
    position: relative;
    text-transform: uppercase;
}

.coupon_wrap::before,
.coupon_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

.coupon_wrap::before {
    left: 0;
    background-image: radial-gradient(circle at left,
            transparent 25px,
            var(--coupon-color, var(--main-color)) 0px);
}

.coupon_wrap::after {
    right: 0;
    background-image: radial-gradient(circle at right,
            transparent 25px,
            var(--coupon-color, var(--main-color)) 0);
}

.coupon_wrap>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon_wrap .coupon_left {
    width: 20%;
    border-right: 2px dashed rgba(0, 0, 0, 0.13);
}

.coupon_wrap .coupon_left div {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-weight: bold;
    margin-left: 20px;

    font-size: 32px;
    font-weight: 500;
    color: #FFF;
}

.coupon_wrap .coupon_center {
    flex-grow: 1;
    text-align: center;
    width: 60%;
    padding: 10px 53px 10px 27px;
    color: #FFF;
}

.coupon_wrap .coupon_center>div {
    width: 100%;
}

.coupon_wrap .coupon_center h2 {
    font-size: 16px;
    margin-bottom: 8px;
}

.coupon_wrap .coupon_center h3 {
    /* background: #222; */
    padding: 1px 15px;
    font-size: 38px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 18px;
}

.coupon_wrap .coupon_center .coupon_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon_wrap .coupon_center .coupon_info:not(:last-child) {
    margin-bottom: 4px;
}

.coupon_wrap .coupon_center .coupon_info h4 {
    font-size: 16px;
    font-weight: 500;
}

.coupon_wrap .coupon_center .coupon_info p {
    font-size: 16px;
}

.POPUPIMGVIEWER {
    line-height: 0;
}

.banner {
    display: flex;
    position: relative;
}

.banner img {
    object-fit: cover;
    object-position: center;
}

.banner .dim {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.sect_sub_title {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 8px;
}

.sect_title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    word-break: keep-all;
}

.sect_desc {
    font-size: 18px;
    font-weight: 400;
    color: #5E5E5E;
}

.sect_desc mark {
    font-weight: 500;
    color: var(--main-color);
}

.sect_desc strong {
    font-weight: 700;
}

.common_sect {
    padding: 70px 0;
}

.page_title_banner {
    position: relative;
}

.page_title_banner .dim {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/0.1875;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
}

.page_title_banner .page_title {
    font-size: 36px;
    font-size: clamp(24px, 1.7dvw, 36px);
    font-weight: 700;
    color: #fff;
}

.page_title_banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page_tab {
    display: flex;
    background-color: #fff;
}

.page_tab .tab_item {
    display: block;
    border-bottom: 1px solid #E1E1E1;
    padding: 26px 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #5E5E5E;
    position: relative;
}

.page_tab .tab_item:not(:last-child) {
    border-right: 1px solid #E1E1E1;
}

.page_tab .tab_item.active {
    font-weight: 500;
    color: #222;
}

.page_tab .tab_item.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 2px solid var(--main-color);
    position: absolute;
    bottom: -1px;
    left: 0;
}

.tch_list {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tch_item {
    border-radius: 8px;
    border: 1px solid #BBBBBB;
    overflow: hidden;
    width: calc((100% - 20px) / 2);
    display: flex;
    flex-direction: column;
}

.tch_item .img_wrap {
    display: flex;
    width: 100%;
    /* aspect-ratio: 1/0.5719; */
    padding-bottom: 57.1942446%;
    position: relative;
}

.tch_item .img_wrap img {
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tch_item .item_content {
    border-top: 1px solid #BBB;
    padding: 24px;
}

.tch_item .item_no {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
}

.tch_item .item_title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-top: 4px;
}

.tch_item .item_desc {
    font-size: 16px;
    font-weight: 400;
    color: #5E5E5E;
    margin-top: 16px;
}

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

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

    .is_mobile {
        display: block;
    }

    .is_mobile.flex {
        display: flex;
    }

    .empty_wrap {
        padding: 130px 0;
    }

    .common_sect {
        padding: 50px 0;
    }

    .sect_title {
        font-size: 24px;
    }

    .sect_sub_title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .sect_desc {
        font-size: 16px;
    }

    .page_tab .tab_item {
        padding: 14px 0;
        font-size: 16px;
    }

    .tch_list {
        margin-top: 30px;
    }

    .shd_item .dim {
        padding: 16px;
    }

    .tch_item .item_content {
        padding: 16px;
    }

    .tch_item .item_no {
        font-size: 18px;
    }
}

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

    /* 쿠폰 css(임시위치) */
    .coupon_list_wrap .list_count {
        font-size: 12px;
    }

    .coupon_wrap {
        height: 160px;
        border-radius: 14px;
    }

    .coupon_wrap::before,
    .coupon_wrap::after {
        width: 51%;
    }

    .coupon_wrap::before {
        background-image: radial-gradient(circle at left,
                transparent 17px,
                var(--coupon-color, var(--main-color)) 0px);
    }

    .coupon_wrap::after {
        background-image: radial-gradient(circle at right,
                transparent 17px,
                var(--coupon-color, var(--main-color)) 0);
    }

    .coupon_wrap .coupon_left div {
        margin-left: 16px;

        font-size: 21px;
    }

    .coupon_wrap .coupon_center {
        padding: 10px 41px 10px 31px;
    }

    .coupon_wrap .coupon_center h2 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .coupon_wrap .coupon_center h3 {
        padding: 1px 10px;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .coupon_wrap .coupon_center .coupon_info:not(:last-child) {
        margin-bottom: 2px;
    }

    .coupon_wrap .coupon_center .coupon_info h4 {
        font-size: 14px;
    }

    .coupon_wrap .coupon_center .coupon_info p {
        font-size: 14px;
    }

    .page_tab {
        flex-wrap: wrap;
    }

    .page_tab .tab_item {
        width: 50%;
    }

    .page_tab .tab_item.mo_30 {
        width: 33.3333333%;
    }

    .page_tab .tab_item.mo_30:not(:last-child) {
        border-right: 1px solid #E1E1E1;
    }

    .page_tab .tab_item:not(:last-child) {
        border-right: 0;
    }

    .page_tab .tab_item:nth-child(odd) {
        border-right: 1px solid #E1E1E1;
    }

    .page_tab .tab_item.active::after {
        display: none;
    }

    .page_tab .tab_item.active {
        background-color: var(--main-color);
        color: #fff;
    }

    .tch_item {
        width: 100%;
    }
}