.manufacturer {
    position: relative;
    background-color: #FFFCF0;
    padding: 6.5rem 0 8rem;
}

@media screen and (max-width: 480px) {
    .manufacturer {
        padding: 4rem 0 12rem;
    }
}

.manufacturer::after {
    content: '';
    background-image: url(../img/manufacturer_human.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 20rem;
    height: 15.5rem;
    position: absolute;
    bottom: 0;
    left: 1%;
}

@media (min-width: 768px) and (max-width: 1280px) {
    .manufacturer::after {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .manufacturer::after {
        width: 35%;
        height: 10.5rem;
        left: 1%;
    }
}

.manufacturer_title {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.18rem;
    padding: 2rem 0;
    border-top: solid 1px #222222;
    border-bottom: solid 1px #222222;
}

@media screen and (max-width: 480px) {
    .manufacturer_title {
        font-size: 1.8rem;
        padding: 1rem 0;
    }
}

.manufacturer_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    margin: 2.5rem 0 4rem;
}

@media screen and (max-width: 480px) {
    .manufacturer_list {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 1.5rem 0 2rem;
    }
}