.soudan-fixed-image {
    /* 固定配置 */
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* 他の要素より前面に表示 */
    z-index: 1000;
    /* ホバーエフェクトをスムーズに */
    transition: transform 0.3s ease;
    /* 画像の影 */
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.soudan-fixed-image:hover {
    /* ホバー時に少し拡大 */
    transform: scale(1.05);
}

.soudan-fixed-image img {
    /* 画像サイズ */
    width: 170px;
    height: 170px;
    /* 角を丸く */
    border-radius: 8px;
    /* ドラッグ禁止 */
    user-select: none;
    -webkit-user-drag: none;
}


/*レスポンシブ*/

@media screen and (max-width: 768px) {
    .soudan-fixed-image {
        bottom: 10px;
        right: 10px;
    }
    .soudan-fixed-image img {
        width: 100px;
        height: 100px;
    }
}