.process_guide {
    justify-content: space-between;
}

.process_guide .guide_item {
    width: calc((100% - (32px * 2)) / 3);
}

.already_wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.already_wrap .link_border_box {
    width: calc((100% - 16px) / 2);
}

.disc_text {
    font-size: 18px;
    font-weight: 400;
    color: #222;
    display: flex;
    align-items: flex-start;
}

.disc_text::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #222;
    border-radius: 50%;
    margin: 10px 10px 0;
    flex-shrink: 0;
}

@media screen and (max-width:1023px) {
    .process_guide .guide_item {
        width: 100%;
    }

    .already_wrap .link_border_box {
        width: 100%;
    }

    .disc_text {
        font-size: 16px;
    }

    .disc_text::before {
        margin: 8px 10px 0;
    }
}

@media screen and (max-width:767px) {
    .error_list {
        flex-direction: column;
        align-items: center;
    }

    .error_list .list_item {
        width: 100%;
    }
}