@import "./colors.css";
.sectionTitleWrap {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 32rem;
}
.sectionTitle {
    color: var(--color-red);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0 0.5rem;
    text-align: center;
    background: #fff;
    display: block;
    width: fit-content;
    position: relative;
    z-index: 2;
    @media screen and (max-width: 1023px) {
        font-size: 1rem;
        margin: 0 auto;
    }
}

.sectionTitleLine {
    border-bottom: 1px solid var(--color-red);
    transform: translateY(-13px);
    position: relative;
}

@media screen and (min-width: 1023px) {
    .sectionTitleLine::after {
        content: "✦";
        position: absolute;
        right: -18px;
        top: -13px;
        display: flex;
        align-items: center;
        color: var(--color-red);
        margin-bottom: 3px;
    }
}

.item_link {
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 700;
    @media screen and (max-width: 1023px) {
        font-size: 0.8125rem;
    }
}

.item_link:hover {
    opacity: 0.5;
}

.section_top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 6rem;
    margin-top: 1.465rem;
    @media screen and (max-width: 1023px) {
        align-items: center;
        flex-direction: column;
    }
}

.section_wrapper {
    display: flex;
    flex-direction: column;
    width: 45%;
    @media screen and (max-width: 1023px) {
        max-width: 32rem;
        width: 100%;
    }
}

.section_inner {
    display: flex;
    width: calc(100% - 2.5rem);
    margin: 0 auto;
    padding: 0.875rem 0;
    @media screen and (max-width: 400px) {
        width: 100%;
    }
}

.section_list {
    display: flex;
    flex-direction: column;
    gap: 0.675rem;
    flex-wrap: wrap;
    align-items: flex-start;
}
.dot_line {
    width: 100%;
    height: 3px;
    background-image: radial-gradient(
        circle,
        var(--color-red) 25%,
        transparent 30%
    );
    background-size: 8px 4px;
    background-repeat: repeat-x;
}
.list {
    columns: 2;
    column-gap: 3.5rem;
    padding-left: 1rem;
    @media screen and (max-width: 1023px) {
        column-gap: 1.5rem;
    }
}

.list_item {
    break-inside: avoid;
    margin-bottom: 0.675rem;
}
.name_region {
    color: var(--color-red);
    font-size: 1rem;
    font-weight: 700;
    @media screen and (max-width: 1023px) {
        font-size: 0.8125rem;
    }
}
.section_list_profession{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    @media screen and (max-width: 1023px) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
.area_list{
    padding-left: 1rem;
    padding-top: 0.75rem;
    @media screen and (min-width: 400px) {
        padding: 0.75rem 1rem 0 1rem;
    }
}