#recruit {
    margin-top: 4rem;
    & .recruit__inner {
        width: min(100%, 980px);
        margin: 0 auto;
        padding: 2rem;
        font-size: 1.6rem;
        & .ULine-dot {
            border-bottom: 2px dotted #494949;
        }
        & h2 {
            margin-block: .5em;
        }
        .requirements {
            & table {
                & tr {
                    & td {
                        border-top: none;
                        border-right: none;
                        border-bottom: 1px dotted #494949;
                        border-left: none;
                        &:first-child {
                            min-width: 9rem;
                            font-size: 1.2rem;
                            font-weight: 700;
                        }
                    }
                }
            }
            @media (width > 768px) {
                & table {
                    max-width: 700px;
                    margin-inline: auto;
                }
            }
        }
        ul.flow {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 0;
            margin: 40px 0;
            list-style: none;
            counter-reset: step;
            > li {
                position: relative;
                width: 60%;
                text-align: center;
                background: #fff;
                border-radius: 5px;
                box-shadow: 0 10px 8px -8px rgba(0, 0, 0, 0.2);
                margin-bottom: 20px;
                padding: 1rem 0.8rem 1.6rem;
                counter-increment: step;
                font-size: 14px;
                line-height: 1.4;
                list-style: none;
                background-color: rgba(245,245,245,1.00);
                color: #666666;
                &::before {
                    content: "0" counter(step);
                    position: absolute;
                    top: -2.5rem;
                    left: 8px;
                    color: rgba(120,120,120,0.49);
                    font-size: 3rem;
                    font-weight: bold;
                    padding: 4px 8px;
                }
                > img {
                    display: block;
                    margin: 0 auto;
                    width: 100%;
                    max-width: 100px;
                    height: auto;
                }
                &:not(:last-child)::after {
                    content: "↓";
                    position: absolute;
                    top: auto;
                    bottom: -25px;
                    left: 50%;
                    right: auto;
                    transform: translateX(-50%);
                    font-size: 25px;
                    color: #ccc;
                }
                > strong {
                    font-size: 2rem;
                }
            }
            @media (width > 768px){
                flex-direction: row;
                align-items: stretch;
                > li {
                    width: calc((100% - 80px) /5);
                    margin-bottom: 0;
                    padding: 16px 8px 8px;
                    &:not(:last-child)::after {
                        content: "→";
                        top: 50%;
                        bottom: auto;
                        right: -16px;
                        left: auto;
                        transform: translateY(-50%);
                    }

                }
            }
        }
        & .construction-type {
            display: flex;
            flex-wrap: wrap;
            gap: .5em 2em;
            font-size: 1.6rem;
        }
        & .form_wrap {
            width: min(100%, 800px);
            margin: 2rem auto;
            padding: 2rem;
            border: 1px solid #999999;
            border-radius: 5px;
        }
        & .contact-form {
            & .age {
                width: 12rem;
            }
            & span:has(.privacypolicy) {
                display: block;
                width: fit-content;
                margin: 2rem auto;
                & a {
                    color: #0079A7;
                }
            }
        }
    }
}





