.p-section__title {
    font-family: "Noto Serif JP", serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #356167;
    margin-bottom: 1rem;
    span {
        display: block;
        font-size: 1.4rem;
    }
}
.p-checked__list {
    position: relative;
    margin: 40px auto 20px;
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    li {
        width: calc((100% - 3rem) / 4);
    }
    img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
}
@media screen and (max-width: 768px) {
    .p-section__title {
        font-size: 2rem;
    }
    .p-checked__list {
        margin: 20px auto;
        max-width: 1100px;
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        margin-left: 3%;
        padding-bottom: 2rem;
        overflow: hidden;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        li.p-checked__item {
            width: 30%;
        }
        .price {
            font-size: 11px;
            white-space: normal;
        }
        img {
            width: 110px;
        }
    }
}
