.news_items {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;

    padding-top: 40px;
    padding-bottom: 40px;
}

.new_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.new_item_header {
    position: relative;
    max-height: 100px;
}

.new_item_header_background {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background: var(--color-p002);
    z-index: 0;
}

.new_item_header_text {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 10px 0 150px;
    font-family: ff_algerian, Algerian, Serif;
    z-index: 2;
    color: var(--color-p000);
}

.new_item_header_text > h2 {
    font-size: 1.2em;
}



.new_item_header_date {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 10px 10px 10px;
    font-family: ff_marmelad;
    font-weight: 400;
    line-height: 1.7;
    font-size: 0.75rem;
    color: var(--color-p000);
}

.new_item_body {
    padding: 20px 10px 0 10px;
    font-family: ff_marmelad;
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.125rem;
    text-align: justify;
}

.new_item_body > h2 {
    font-family: ff_algerian;
}

.new_item_body_image {
    width: 200px;
    height: 200px;
    background-clip: content-box;
    background-size: cover;
    float: left;
    margin-right: 10px;
    border: 1px solid var(--color-p000);
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.6);
}


.new_item_header_itemlogo_1,
.new_item_header_itemlogo_2,
.new_item_header_itemlogo_3 {
    position: absolute;
    left: 30px;
    top: calc(50% - 35px);
    width: 70px;
    height: 70px;
    border: 1px solid var(--color-p000);
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.6);
}

.new_item_header_itemlogo_1 {
    transform: rotate(45deg);
}
.new_item_header_itemlogo_2 {
    transform: rotate(22.5deg);
}
.new_item_header_itemlogo_3 {
    transform: rotate(0deg);
}

.new_item_header_itemlogo_4 {
    position: absolute;
    left: 30px;
    top: calc(50% - 35px);
    transform: rotate(15deg);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-p002);

    background-image: url(/_CONTENT/imgblock_background.png);
    background-clip: content-box;
    background-size: cover;
}

.news_name {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 0 20px 0 20px;
    font-family: ff_algerian;
    padding-top: 40px;
}