#base_wrap {
    background-color: #F2F4F6;
}

.mypage_cont {
    display: flex;
    gap: 24px;
    padding: 30px 0;
    align-items: flex-start;
}

.mypage_cont .title_wrap {
    padding: 18px 16px;
    border-bottom: 1px solid #E1E1E1;
    display: flex;
    gap: 12px;
    align-items: center;
}

.mypage_cont .title_wrap .img_wrap {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
}

.mypage_cont .title_wrap .img_wrap img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mypage_cont .title_wrap .title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    word-break: break-all;
}

.mypage_sect {
    /* flex-grow: 1; */
    width: calc(100% - 256px);
}

.mypage_sect.login_none {
    width: 100%;
}

.mypage_sect .title_wrap {
    padding: 0px 24px;
    height: 80px;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.08);
    border-bottom-width: 0px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 16px 16px 0 0;
    justify-content: space-between;
}

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

.mypage_sect .title_wrap .btn_default.fill_black {
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 600;
}

/* pc 사이드메뉴 */
.mypage_nav_wrap {
    flex-shrink: 0;
    width: 232px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.08);
}

.mypage_nav_box {
    padding: 16px 0;
}

.mypage_nav_box .nav_title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    padding: 15px 16px;
}

.mypage_nav_list .mypage_nav {
    padding: 15px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mypage_nav_list .mypage_nav.sub_nav {
    padding: 14px 24px;
    font-size: 13px;
    gap: 4px;
}

.mypage_nav_list .mypage_nav.sub_nav::before {
    content: '-';
}

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

.mypage_nav_list .mypage_nav.tut:not(.title):hover,
.mypage_nav_list .mypage_nav.tut.active {
    color: var(--sub-color);
}

.mypage_nav_list .mypage_nav .img_wrap {
    display: flex;
    width: 20px;
}

.mypage_nav_list .mypage_nav .img_wrap .active_icon {
    display: none;
}

.mypage_nav_list .mypage_nav:not(.title):hover .default_icon,
.mypage_nav_list .mypage_nav.active .default_icon {
    display: none;
}

.mypage_nav_list .mypage_nav:not(.title):hover .active_icon,
.mypage_nav_list .mypage_nav.active .active_icon {
    display: block;
}

/* content 영역 */
.mypage_sect .content_wrap {
    border-top: 8px solid #F2F4F6;
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content_inner {
    padding: 0 24px;
}

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

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

.alert_box .title {
    margin-bottom: 16px;
    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 {
    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: var(--main-color);
}

/* 리스트 영역 - 리스트 형태 */
.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 .list_item:not(:last-child) {
    border-bottom: 1px solid #BBBBBB;
}

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

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

.mypage_table .thead {
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
}

.mypage_table .tr {
    display: flex;
}

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

.mypage_table.bg_blue .thead .tr {
    background-color: #FAFCFF;
}

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

.mypage_table .td {
    font-size: 15px;
    text-align: center;
    padding: 10px;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* 정보수정 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;
}

.content_box:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}


.content_box {
    padding: 24px 0;
    background-color: #fff;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.08);
}

.state_badge {
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    display: block;
}

.state_badge.blue {
    background-color: #F0F7FF;
    color: var(--main-color);
}

.state_badge.red {
    background-color: #FFEFEF;
    color: var(--error-color);
}

.state_badge.green {
    background-color: #F0FFF5;
    color: var(--success-color);
}

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

    .mypage_sect {
        width: 100%;
    }

    .content_inner {
        padding: 0 12px;
    }

    .content_box {
        padding: 12px 0;
    }

    .state_badge {
        padding: 6px 12px;
    }

    .mypage_sect .title_wrap {
        border-radius: 4px 4px 0 0;
    }

    .content_box:last-child {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }
}

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

    .mypage_cont .title_wrap {
        padding: 12px;
        height: auto;
    }

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

    .mypage_sect .title_wrap .btn_default.fill_black {
        padding: 6px 16px;
        font-size: 16px;
    }

    /* content 영역 */


    .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%;
    }

}