.mypage_cont {
    display: flex;
    gap: 24px;
    padding: 50px 0;
}

.mypage_cont .title_wrap {
    padding: 7px 8px 13px;
    border-bottom: 2px solid var(--main-color);
}

.mypage_cont .title_wrap .title {
    font-size: 22px;
    font-weight: 700;
}

.mypage_sect .title_wrap .title {
    font-size: 21px;
    color: var(--main-color);
}

.mypage_sect {
    flex-grow: 1;
}


/* 별점표시만되는 리스트 */
.score_view_list {
    display: flex;
    align-items: center;
}

.score_view_list .score {
    aspect-ratio: 1/1;
    background: url("/static/app_www/base/img/icon_star_default.png") left top / cover no-repeat;
}

.score_view_list .score.active {
    background-image: url("/static/app_www/base/img/icon_star_active.png");
}

/* pc 사이드메뉴 */
.mypage_nav_wrap {
    padding-right: 24px;
    border-right: 1px solid #EBEBEB;
    flex-shrink: 0;
    /* width값은 프로젝트마다 설정 */
    min-width: 232px;
}

.mypage_nav_wrap>*:not(:last-child) {
    margin-bottom: 7px;
}

.mypage_nav_list .mypage_nav {
    padding: 13px 8px;
    color: #5E5E5E;
    display: block;
    font-size: 15px;
    font-weight: 400;
    border-radius: 2px;
}

.mypage_nav_list .mypage_nav.sub_nav {
    padding: 13px 16px;
    font-size: 14px;
}

.mypage_nav_list .mypage_nav:not(.title):hover,
.mypage_nav_list .mypage_nav.active {
    background-color: #F8F8F8;
    color: var(--main-color);
    font-weight: 700;
}

.cs_wrap {
    background-color: #EBEBEB;
    padding: 16px;
    color: #5E5E5E;
    font-weight: 700;
    font-size: 13px;
}

.cs_wrap .cs_info_box:not(:last-child) {
    margin-bottom: 10px;
}

.cs_wrap .cs_contact {
    font-size: 20px;
    margin-bottom: 3px;
}

.cs_wrap .cs_contact.mail {
    font-size: 18px;
}

/* content 영역 */
.mypage_sect .content_wrap {
    padding: 50px 0;
}

/* 상단 안내 박스 */
.notice_box {
    background-color: #F8F8F8;
    border-radius: 2px;
    padding: 16px;
}

/* 하단 유의사항 박스 */
.alert_box {
    background-color: #F8F8F8;
    border-radius: 2px;
    padding: 20px;
    color: #5E5E5E;
}

.alert_box .title {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    gap: 0 6px;
}

.alert_box .title::before {
    content: "";
    width: 22px;
    aspect-ratio: 1/1;
    background: url("/static/app_www/base/img/icon_alert_gray.png") left top / cover no-repeat;
}

/* 유의사항 리스트 */
.alert_list.disc {
    margin-top: 16px;
    list-style: disc;
    padding-left: 28px;
}

.alert_list>li {
    font-size: 14px;
}

.alert_list>li:not(:last-child) {
    margin-bottom: 2px;
}

/* 리스트 영역 */
.list_area .list_count_box {
    margin-bottom: 16px;
}

.list_area .list_count {
    font-size: 15px;
}

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

/* 리스트 영역 - 리스트 형태 */
.mypage_list {
    border-top: 2px solid #BBBBBB;
    border-bottom: 2px solid #BBBBBB;
}

.mypage_list .list_item {
    padding: 18px 16px;
    display: flex;
    justify-content: space-between;
}

.mypage_list>li:not(:last-child) {
    border-bottom: 1px solid #BBBBBB;
}

.mypage_list .empty_wrap {
    padding: 246px 0;
}

/* 리스트 영역 - 테이블 형태 */
.mypage_table_wrap {
    width: 100%;
    overflow-x: auto;
}

.mypage_table {
    border-left: 1px solid #BBBBBB;
    border-right: 1px solid #BBBBBB;
    /* min width 각 페이지 설정 */
}

.mypage_table .thead {
    border-top: 2px solid #BBBBBB;
    border-bottom: 2px solid #BBBBBB;
}

.mypage_table .tr {
    display: flex;
}

.mypage_table .thead .tr {
    background-color: #F8F8F8;
    font-weight: 500;
}

.mypage_table .tbody .tr {
    border-bottom: 1px solid #BBBBBB;
}

.mypage_table .td {
    font-size: 16px;
    text-align: center;
}

.mypage_table .td:not(:last-child) {
    border-right: 1px solid #BBBBBB;
}

/* 정보수정 input영역 */
.update_area .input_title {
    margin-bottom: 12px;
}

.update_area .btn_default {
    font-weight: 700;
    font-size: 18px;
    padding: 11px 0;
}

.update_area .edk_input_wrap:not(:last-of-type) {
    margin-bottom: 32px;
}

.btn_group {
    margin-top: 50px;
}

.edk_input_wrap .input_flex_area .btn_default {
    padding: 11px 15px;
}

.btn_group .btn_default.complete {
    background-color: #BBBBBB;
    border-color: #BBBBBB;
    color: #fff;
}

@media screen and (max-width:1023px) {
    .mypage_cont {
        padding: 24px 0;
    }
}

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

    .mypage_cont .title_wrap {
        padding: 0 0 12px;
    }

    .mypage_sect .title_wrap .title {
        font-size: 20px;
    }

    /* content 영역 */
    .mypage_sect .content_wrap {
        padding: 16px 0;
    }

    .notice_box {
        padding: 12px;
    }

    .alert_box {
        padding: 16px;
    }

    .alert_box .title {
        font-size: 14px;
    }

    .alert_box .title::before {
        width: 20px;
    }

    .list_area .list_count_box {
        margin-bottom: 12px;
    }

    .list_area .list_count {
        font-size: 12px;
    }

    .mypage_list .list_item {
        padding: 12px 16px;
    }

    .edk_input_wrap .input_flex_area .btn_default {
        width: 100%;
    }

}