/* ▼ テーブル外枠 */
.fr-contents-table {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

/* ▼ テーブル本体（blurはここだけに適用） */
.fr-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    overflow: hidden;
}

/* ▼ セル共通：縦線・横線両方つける */
.fr-table th,
.fr-table td {
    padding: 5px 8px;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* 最後の列は縦線削除 */
.fr-table tr th:last-child,
.fr-table tr td:last-child {
    border-right: none;
}

/* 最後の行は横線削除 */
.fr-table tr:last-child td {
    border-bottom: none;
}

/* ▼ 画像は absolute blur の影響を受けないように */
.fr-cell-banner {
    position: relative;
    z-index: 2; /* ← これ重要！blurより上に置く */
}

/* 画像自体のぼやけを除去 */
.fr-cell-banner img {
    width: 100%;
    border-radius: 10px;
    display: block;
    filter: none;
    image-rendering: auto;
    transform: translateZ(0); /* ← GPUに載せてクリアにする */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ▼ ホバーは画像だけ */
.fr-cell-banner img:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

/* ▼ テキストセルはホバー無効 */
.fr-table td:hover,
.fr-table th:hover {
    background: none !important;
    transform: none !important;
    box-shadow: none !important;
}
