/* apt_info : 최초작업자:최영재 */
.move_guide_dl{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #eee;
}
.move_guide_dl_inner{
    display: flex;
    align-items: flex-start;
}
.move_guide_dl dd{
    display: flex;
    gap: 10px;
    align-items: flex-end;
}
.move_guide_icon{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.move_guide_icon img{
    max-width: 80%;
}
.move_guide_num{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--m_color);
    display: flex;
    gap: 20px;
    align-items: center;
}
.move_guide_num::after{
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--m_color);
    content: "";
    border: 4px solid #fff;
    left: -10px;
    top: 0;
}
.move_guide_num span{
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    font-size: 24px;
    font-weight: 700;
}
.move_guide_num span::after{
    position: absolute;
    z-index: -1;
    content: attr(data-content);
    -webkit-text-stroke: 8px #fff;
    left: 0;
}
.move_guide_dl > dd > p{
    font-size: 24px;
    font-weight: 700;
    color: var(--m_color);
}
.move_guide_dl dt{
    font-size: 18px;
    color: #333;
    line-height: 1.3;
    padding-left: 70px;
}
.move_guide_mini_title{
    margin-top: 20px;
    font-weight: 700;
    color: var(--m_color);
}
.move_guide_dl_wrap .move_guide_dl_inner:not(:last-child){
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.apt_info_01_table{
    width: 80%;
    margin: 0 auto;
}
.apt_info_01_table th{
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    padding: 20px;
    text-align: left;
    color: var(--m_color);
    background-color: #ecf7f5;
}
.apt_info_01_table tr th:not(:last-child){
    border-right: 1px solid #ddd;
}
.apt_info_01_table td{
    padding: 10px 10px 10px 20px;
    font-size: 20px;
    line-height: 1.3;
    vertical-align: middle;
}
.apt_info_01_table tr td:not(:last-child){
    border-right: 1px solid #ddd;
}
.apt_info_01_table tr:not(:last-child){
    border-bottom: 1px solid #ddd;
}
.apt_info_01_table td b{
    font-weight: 700;
    color: var(--m_color);
}
.apt_info_a_btn{
    width: 24px;
    height: 24px;
    display: block;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.apt_info_a_btn svg{
    max-width: 40%;
}
.apt_info_01_table th,
.apt_info_01_table td{
    vertical-align: middle;
}
.apt_info_01_table th:nth-child(1){
    width: 20%;
}
.apt_info_01_table th:nth-child(2){
    width: 60%;
}
.apt_info_01_table th:nth-child(3){
    width: 20%;
}
/* 반응형 */
@media (max-width: 1024px) {
    .apt_info_01_table{
        width: 100%;
    }
    .move_guide_dl_inner{
        align-items: center;
        flex-direction: column;
    }
    .move_guide_dl{
        border-left: unset;
        margin-left: 0;
        padding-left: 10px;
        width: 100%;
        gap: 10px;
    }
    .move_guide_dl dt{
        font-size: 16px;
    }
    .move_guide_dl > dd > p{
        font-size: 20px;
        flex: 1;
    }
    .apt_info_01_table th{
        font-size: 16px;
        padding: 10px 5px;
    }
    .apt_info_01_table td{
        font-size: 16px;
        padding: 10px 5px;
    }
    /* 반응형 테이블.. */
    .apt_info_01_table td:nth-child(1){
        border-bottom: 1px solid #ddd;
    }
    .apt_info_01_table th:nth-child(-n+2),
    .apt_info_01_table td:nth-child(-n+2){
        width: 100%;
        display: block;
    }
}