.fcrp-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.78);
    padding: 16px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.25s ease;
    overflow-y: auto;
}
.fcrp-overlay.is-visible { opacity: 1; }

.fcrp-modal {
    position: relative;
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px 18px;
    box-sizing: border-box;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.fcrp-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    color: #888;
    cursor: pointer;
}
.fcrp-close:hover { color: #333; }

.fcrp-heading {
    margin: 0 0 2px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: #222;
}
.fcrp-sub {
    margin: 0 0 16px;
    font-size: 13px;
    text-align: center;
    color: #666;
}

.fcrp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.fcrp-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f1f1f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease;
}
.fcrp-item:hover { transform: translateY(-2px); }
.fcrp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fcrp-foot {
    margin-top: 16px;
    text-align: center;
}
.fcrp-suppress {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    user-select: none;
}
.fcrp-suppress input { margin: 0; }

/* スマホ: 2記事を上下に1列で表示（3・4件目は隠す） */
@media (max-width: 600px) {
    .fcrp-grid { grid-template-columns: 1fr; }
    .fcrp-item:nth-child(n + 3) { display: none; }
    .fcrp-modal { padding: 22px 14px 14px; }
    .fcrp-heading { font-size: 15px; }
}
