.ov-top {
    padding: 1rem 0 2rem;
}

/* 導入文 */
.ov-top-intro {
    margin-bottom: 1.5rem;
    text-align: center;
}

.ov-top-intro-catch {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.ov-top-intro-desc {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* 検索窓 */
.ov-top-search {
    margin-bottom: 2.5rem;
}

.ov-search-form {
    width: 100%;
}

.ov-search-inner {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.ov-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    transition: border-color 0.2s;
}

.ov-search-input:focus {
    border-color: #aaa;
}

.ov-search-btn {
    padding: 0.75rem 1.4rem;
    font-size: 1rem;
    font-weight: bold;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: opacity 0.15s;
    white-space: nowrap;
}

.ov-search-btn:hover {
    opacity: 0.8;
}

/* セクション */
.ov-top-section {
    margin-bottom: 2.5rem;
}

/* グリッド */
.ov-top-grid {
    display: grid;
    gap: 0.8rem;
}

/* おすすめ女優: PC 5列 */
.ov-top-grid--recommended {
    grid-template-columns: repeat(5, 1fr);
}

/* ランキング: PC 5列×2行=10件 */
.ov-top-grid--ranking {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 767px) {
    .ov-top-grid--recommended,
    .ov-top-grid--ranking {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    /* SP: 10件目を非表示（3列×3行=9件表示） */
    .ov-top-item--pc-only {
        display: none !important;
    }
}

/* アイテム */
.ov-top-item {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.ov-top-item:hover .ov-top-img {
    opacity: 0.85;
}

.ov-top-img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    transition: opacity 0.15s ease;
}

.ov-top-img--placeholder {
    background: #e8e8e8;
    border-radius: 6px;
}

.ov-top-name {
    font-size: 0.8rem;
    font-weight: bold;
    margin: 0.3rem 0 0;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* バッジ */
.ov-top-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: var(--ov-badge-radius, 50%);
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    line-height: 1;
}

.ov-top-badge--gold   { background: #c9a227; }
.ov-top-badge--silver { background: #9e9e9e; }
.ov-top-badge--bronze { background: #a0522d; }
.ov-top-badge--default { background: rgba(0,0,0,0.45); }

/* もっと見るボタン */
.ov-top-more {
    margin-top: 1rem;
    text-align: center;
}

.ov-top-more-btn {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    font-size: 0.95rem;
    font-weight: bold;
    color: #fff;
    border-radius: 9999px;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.15s ease;
    box-sizing: border-box;
}

.ov-top-more-btn:hover {
    opacity: 0.85;
    color: #fff;
}

.ov-top-more-btn--natural,
.ov-top-more-btn--augmented,
.ov-top-more-btn--trend {
    background: var(--ov-color-top-more-btn, #555555);
}

/* 空メッセージ */
.ov-top-empty {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem;
}
