.products-list-title {
    text-align: center;
    font-family: var(--font_eng), sans-serif;
    margin: -30px auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.products-list-title .title-sub-ja {
    font-size: 13px;
    color: #555;
    font-weight: normal;
    letter-spacing: 1px;
}

.products-list-title .title-main {
    font-size: 26px;
    font-weight: bold;
    color: #e50073;
    letter-spacing: 2px;
    line-height: 1.2;
}

.products-list-title .title-sub-en {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    color: #888;
    letter-spacing: 1.5px;
    margin-top: 0px;
}

.products-list-title .title-sub-en::before,
.products-list-title .title-sub-en::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #bbb;
}

.products-list {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1220px;
    padding: 0 10px 35px;
    margin: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.products-list::-webkit-scrollbar {
    height: 6px;
}

.products-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.products-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.pro-items {
    width: calc((100% - 60px) / 4);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.pro-items a {
    text-decoration: none;
    color: inherit;
}

.pro-images {
    padding: 15px 15px 0;
}

.pro-images img {
    width: 100%;
    height: auto;
}

.pro-detail {
    padding: 0 5px;
}

.pro-name {
    margin: 8px 0 0px;
    font-size: 1.3rem;
    line-height: 2.0;
}

.pro-price {
    font-size: 1.4rem !important;
    font-weight: 500;
    padding-left: 3px;
    color: var(--c_main);
    font-family: var(--font_eng);
    letter-spacing: 0.05em;
}

.pro-detail span {
    font-weight: initial;
    padding-left: 5px;
    font-size: 1.3rem;
    line-height: 2.0;
}

.pro-price span {
    color: initial;
    font-size: 1.2rem !important;
    letter-spacing: 0px;
    padding-left: 3px;
}

@media screen and (max-width: 768px) {
    .products-list {
        gap: 15px;
        /* padding-bottom: 10px; */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .products-list::-webkit-scrollbar {
        display: none;
    }

    .pro-items {
        width: 60%;
    }

    .pro-name {
        margin: 8px 0 5px;
        font-size: 1.6rem;
        line-height: initial;
    }
    .pro-detail {
    padding: 0 15px;
}
}