.reviews-marquee {
    width: 100%;
    margin: 0 auto;
    padding: 4px 0 4px;
    overflow: hidden;
}

.hero-cta-band {
    width: min(1240px, calc(100% - 32px));
    margin: 20px auto 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-cta-band__note {
    margin: 0 0 10px;
    color: #8f6874;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.hero-cta-band__store {
    --store-cta-button-width: 188px;
    --store-cta-badge-width: 188px;
    gap: 0;
    opacity: 0.9;
}

.hero-cta-band__store .store-cta__buttons {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
}

.reviews-marquee__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 auto 16px;
    color: var(--site-accent-deep);
    font-size: 13px;
    font-weight: 700;
}

.reviews-marquee__stars {
    color: #f5a623;
    letter-spacing: 1px;
    font-size: 14px;
}

.reviews-marquee__score {
    color: #241f22;
    font-size: 18px;
    font-weight: 900;
}

.reviews-marquee__count {
    color: var(--site-muted);
    font-weight: 700;
}

.reviews-marquee__viewport {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reviews-marquee__track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: reviews-marquee-scroll 40s linear infinite;
}

.reviews-marquee__viewport:hover .reviews-marquee__track {
    animation-play-state: paused;
}

.review-card {
    flex: 0 0 252px;
    box-sizing: border-box;
    padding: 16px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--site-line);
    box-shadow: 0 10px 26px rgba(112, 72, 84, 0.06);
}

.review-card__stars {
    margin-bottom: 8px;
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 1px;
}

.review-card__quote {
    margin: 0 0 10px;
    color: #2c272b;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9a9298;
    font-size: 12px;
    font-weight: 500;
}

.review-card__author::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(217, 134, 149, 0.14);
}

@keyframes reviews-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 759px) {
    .hero-cta-band {
        width: min(100%, calc(100% - 24px));
        margin-top: 18px;
        margin-bottom: 28px;
        gap: 10px;
    }

    .hero-cta-band__store {
        --store-cta-button-width: 156px;
        --store-cta-badge-width: 156px;
    }

    .hero-cta-band__note {
        font-size: 11px;
    }

    .hero-cta-band__store .store-cta__buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .review-card {
        flex-basis: 224px;
        padding: 14px 16px;
    }

    .review-card__quote {
        font-size: 13px;
    }

    .reviews-marquee__track {
        animation-duration: 34s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-marquee__track {
        animation: none;
    }

    .reviews-marquee__viewport {
        overflow-x: auto;
    }
}
