.fanza-sale-status {
    box-sizing: border-box;
    max-width: 680px;
    margin: 1.5rem auto;
    padding: 1.25rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    font-family: inherit;
    line-height: 1.6;
}

.fanza-sale-status.is-regular {
    background: #dff5ff;
    border-color: #9bdcf5;
    color: #111;
}

.fanza-sale-status.is-sale {
    background: linear-gradient(135deg, #b5122b, #e83b4d);
    border-color: #8f0d20;
    color: #fff;
}

.fanza-sale-status p {
    margin: 0.45rem 0;
}

.fanza-sale-status__body {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.fanza-sale-status__image-link {
    display: block;
    flex: 0 0 auto;
}

.fanza-sale-status__image-wrap {
    display: block;
    position: relative;
    flex: 0 0 180px;
    width: 180px;
    height: 252px;
    overflow: hidden;
    border-radius: 6px;
}

.fanza-sale-status__image {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    /* パッケージ画像の右半分だけを表示する */
    object-position: right center;
}

.fanza-sale-status__details {
    min-width: 0;
    flex: 1;
}

.fanza-sale-status__state {
    font-size: 1.25rem;
    font-weight: 700;
}

.fanza-sale-status__title {
    font-size: 1rem;
    font-weight: 600;
}

.fanza-sale-status__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.75rem;
    color: #ff4fa3;
}

.fanza-sale-status__price strong {
    font-size: 1.2rem;
}

.fanza-sale-status.is-sale .fanza-sale-status__price strong {
    color: #fff;
    font-size: 1.45rem;
}

.fanza-sale-status__end {
    font-size: 0.9rem;
}

.fanza-sale-status__state,
.fanza-sale-status__link {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.fanza-sale-status.is-regular .fanza-sale-status__link {
    background: #fff;
    color: #111;
}

.fanza-sale-status.is-sale .fanza-sale-status__link {
    background: #fff;
    color: #a30e25;
}

.fanza-sale-status__link:hover,
.fanza-sale-status__link:focus-visible {
    opacity: 0.85;
}

@media (max-width: 480px) {
    .fanza-sale-status {
        margin: 1rem 0;
        padding: 1rem;
    }

    .fanza-sale-status__image-wrap {
        flex-basis: 130px;
        width: 130px;
        height: 182px;
    }
}
