
.news {
    padding: 0 0 7.5rem;
    @media (768px > width) {
        padding: 0 0 2.75rem;
    }
    & .p-news__header {
        display: flex;
        align-items: center;
        time {
            color: var(--color-dark);
        }
    }
    & .p-news__title {
        padding-bottom: 1.125rem;
        margin-bottom: 2.25rem;
        border-bottom: 1px solid var(--color-main);
        font-size: 1.375rem;
        color: var(--color-main);
        @media (768px > width) {
            font-size: 1.25rem;
        }
    }
    & .p-news__category {
        margin: 0 1.25rem 0 1.125rem;
        padding: .375rem 1rem;
        border-radius: 1rem;
        font-size: .8125rem;
        font-weight: 700;
        line-height: 1;
        border: 1px solid var(--color-main);
        color: var(--color-main);
    }
    & .p-news__button {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 6.75rem;
        @media (768px > width) {
            margin-top: 1.875rem;
        }
        a[rel="prev"] {
            @media (768px > width) {
                order: 2;
            }
        }
        & .c-button {
            @media (768px > width) {
                margin: 0 auto 2.5rem;
                order: 1;
            }
        }
    }
}

.p-products__title {
    position: relative;
    padding-left: 1.75rem;
    padding-bottom: .75rem;
    margin-bottom: 2.875rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid var(--color-main);
    color: var(--color-main);
    &::after {
        position: absolute;
        content: "";
    }
}
.p-products__list {
    gap: 4.5rem 2.5rem;
    margin-bottom: 6.875rem;
}
.p-products__item {
    display: flex;
    gap: 4.75rem;
    @media (768px > width) {
        flex-direction: column;
        gap: 2.5rem;
    }
    figure {
        > img {
            width: 475px;
            @media (768px > width) {
                width: 100%;
            }
        }
        figcaption {
            text-align: center;
            font-size: .75rem;
        }
    }
    & .p-products__content {
        width: calc(100% - 475px);
        @media (768px > width) {
            width: 100%;
        }
        & .p-products__name {
            font-size: 2.125rem;
            @media (768px > width) {
                font-size: 1.625rem;
            }
        }
        & .p-products__maker {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-dark);
            @media (768px > width) {
                font-size: .8125rem;
            }
        }
        & .p-products__text {
            margin: 1.25rem 0;
            color: var(--color-dark02);
            @media (768px > width) {
                margin: 1.125rem 0;
            }
        }
        & .p-products__button {
            width: 280px;
            text-align: center;
            margin-top: 2rem;
            @media (768px > width) {
                margin: 1.25rem auto 0;
            }
            span {
                display: inline-block;
                margin-bottom: .25rem;
                font-weight: 500;
                color: var(--color-dark02);
                @media (768px > width) {
                    font-size: .875rem;
                }
            }
        }
        & .c-button {
            text-align: left;
        }
    }
}
.p-products__inner {
    padding: 0 0 5.25rem;
    .p-productsContent {
        h3 {
            padding-left: .625rem;
            border-left: 3px solid var(--color-main);
            margin-bottom: .875rem;
            font-size: 1.25rem;
            color: var(--color-main);
        }
        .features {
            margin-bottom: 1.75rem;
            padding: 1.5rem 3rem;
            background: var(--color-bg04);
            @media (768px > width) {
                padding: 1.5rem 1.25rem;
            }
            &:last-of-type {
                margin-bottom: 9rem;
                @media (768px > width) {
                    margin-bottom: 5.75rem;
                }
            }
            li {
                &:not(:last-of-type) {
                    margin-bottom: .25rem;
                }
            }
        }
    }
}
