    .new-releases-section {
        max-width: 100%;
        margin: 0rem auto 2rem;
        padding: 0rem;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .new-releases-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 0rem;
        margin-top: 0rem;
        text-align: center;
        color: #333;
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-family: initial;
        background-color: #EAD9FF;
    }
    
/* お気に入り 並び順切り替え */
.sort-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem auto 1.5rem;
    padding: 0.8rem;
    max-width: min(90%, 70rem);
    background: #f4f4f4;
    border-radius: 999px;
}

.sort-button {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #007acc;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.sort-button.is-active {
    color: #fff;
    background: #007acc;
    border-color: #007acc;
}

/* 前のページを読み込むボタン */
.load-previous-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.2rem auto;
    padding: 0.5rem;
}

.load-previous-wrapper[hidden] {
    display: none !important;
}

.load-previous-button {
    font-size: 1.4rem;
    font-weight: bold;
    color: #007acc;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.load-previous-button:disabled {
    opacity: 0.6;
    cursor: wait;
}

/* お気に入り解除時のフェードアウト */
.favorite-card-removing {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.favorite-empty-message {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    margin: 2rem auto;
}    