main {
    display: block;
    width: 100%;
    height: auto;
    min-height: 90vh;
    padding: 30px 20px;
    background-color: var(--bg-01);
}

.my_profile_box {
    display: flex;
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-01);
    font-weight: 500;
    font-size: 1.25rem;
    flex-direction: column;
    align-items: center;
    gap: .2em;
}

.my_profile_box > .photo_box {
    display: block;
    position: relative;
    width: 75px;
    height: 75px;
}
.my_profile_box > .photo_box > .photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.my_profile_box > .photo_box > .upload_btn {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.my_profile_box > .photo_box > .upload_btn > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main > .my_info_box {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 1px;
    background-color: var(--border-01);
}
.my_info_box  .my_info {
    display: block;
    width: 100%;
    height: auto;
    background-color: var(--bg-01);
    padding: 10px 0;
    position: relative;
}
.my_info_box .attr, .my_info_box .desc {
    display: flex;
    width: 100%;
    height: 28px;
    align-items: center;
    justify-content: space-between;
}
.my_info_box .attr {
    margin-bottom: 5px;
}
.my_info_box .my_btn {
    display: inline-block;
    width: 90px;
    height: auto;
    text-align: center;
    font-size: .9375rem;
}
.my_info_box .name {
    color: var(--text-04);
    font-size: .9375rem;
}
.my_info_box .value {
    font-size: 1.0625rem;
    font-weight: 500;
}
.my_info > .right {
    display: flex;
    width: 91px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    align-items: center;
    z-index: 1;
}

main > .user_update_box {
    padding-bottom: 30px;
}

main > .user_update_box > h3 {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    font-size: 1.125em;
    line-height: 1.5em;
    font-weight: 500;
}

main > .user_update_box > h3 > .sub {
    display: inline-block;
    font-size: 0.915rem;
    font-weight: 400;
    color: var(--text-02);
    margin-left: 0.5em;
    vertical-align: middle;
}

.user_log_box > table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-top: 10px;
}

.user_log_box th {
    background: #f5f5f5;
    font-weight: 500;
    padding: .75em .5em;
    background-color: var(--bg-table-header);
    border-bottom: 1px solid var(--bg-07);
    border-right: 2px solid var(--bg-01);
    line-height: 1em;
}
.user_log_box th:last-child {
    border-right: 0;
}
.user_log_box td {
    padding: .25em .5em;
    line-height: 1.5em;
    border-bottom: 1px solid var(--bg-table-line);
}
.user_log_box .dt {
    width: 7.5em;
    text-align: center;
}
.user_log_box th.msg {
    text-align: left;
}
main .my_update_box {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 1px;
    background-color: var(--border-01);
    margin: 20px 0;
}

.my_update_box .my_update {
    display: block;
    width: 100%;
    height: auto;
    background-color: var(--bg-01);
    position: relative;
    padding: 10px 0;
}
.my_update_box .my_update > .attr {
    display: block;
    width: 100%;
    line-height: 1em;
    padding-bottom: .5em;
    font-weight: 300;
}
.my_update_box .my_update > .desc {
    display: block;
    width: 100%;
    line-height: 1em;
    font-size: 1rem;
    padding-left: 1.5em;
}

.user_update_box > .msg {
    text-align: center;
    font-size: 1.125rem;
}

.phone_box {
    display: grid;
    grid-template-columns: auto 8em;
    width: 100%;
    height: auto;
    gap: 5px;
}

/* 주활동지역 선택 */
.user_region_select {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 30px 0;
}
.user_region_select > * {
    display: flex;
    width: 100%;
    height: min(50px, max(40px, 10vw));
    align-items: center;
    justify-content: left;
    gap: 1em;
    position: relative;
}
.user_region_select .checked_unchecked {
    width: 24px;
    height: auto;
}
.user_region_select input {
    display: inline-block;
    position: absolute;
    left: 0;
    height: 0;
    width: 1px;
    height: 1px;
}
.user_region_select p {
    font-size: 1.125rem;
    line-height: 1em;
    font-weight: 500;
}

.null_box {
    display: block;
    width: 90px;
}
.nobreak {
    white-space: nowrap;
}