#pocket-wrapper {
    z-index: 2147483647;
    position: fixed;
    right: 20px;
    bottom: 100px;
    /* ボトムナビを避ける高さ */
    width: 280px;
    min-height: 80px;
    background: rgba(0, 132, 202, 0.95);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pocket-animation {
    animation: slideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pocket-IconClose {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    display: block;
}

.pocket-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    padding-right: 20px;
}

.pocket-message strong {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.pocket-hidden {
    display: none !important;
    pointer-events: none;
    opacity: 0;
}