.custom-ranking, .custom-review, .custom-faq {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.custom-ranking .item, .custom-review .item, .custom-faq .item {
    width: calc(33.333% - 20px); /* 3列レイアウト */
    text-align: center;
}

.custom-ranking .item img, .custom-review .item img, .custom-faq .item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.custom-ranking .item img:hover, .custom-review .item img:hover, .custom-faq .item img:hover {
    transform: scale(1.05);
}

.custom-ranking .item p, .custom-review .item p, .custom-faq .item p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
}
