/* バナーを囲むコンテナ */
.lottie-banner-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* バナー本体へのリンク */
.lottie-banner-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.lottie-fixed-banner {
    position: relative;
    width: 200px;
    height: 175px;
    background-image: url('/25th/25th_s.png');
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Lottie（紙吹雪）を大きく表示 */
.lottie-fixed-banner lottie-player {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    z-index: 10;
    pointer-events: none;
    /* 下の画像へのクリックを邪魔しない */
}

/* 閉じるボタン（×）の設定 */
.close-btn {
    position: absolute;
    top: -10px;
    /* バナーの少し上に配置 */
    left: -10px;
    /* バナーの少し左に配置 */
    width: 24px;
    height: 24px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    z-index: 20;
    /* Lottieよりも手前に配置 */
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.close-btn:hover {
    background-color: #000;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .lottie-fixed-banner {
        width: 150px;
        height: 131px;
    }
}