 /* ポップアップのスタイル */
        .exit-intent-popup {
            display: none; /* 初期状態では非表示 */
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
           /* border: 2px solid #333;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 30px; */
            z-index: 1000;
            max-width: 400px;
            width: 40%;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            border-radius: 8px;
        }

        .exit-intent-popup-overlay {
            display: none; /* 初期状態では非表示 */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .exit-intent-popup h2 {
            margin-top: 0;
            color: #d9534f;
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .exit-intent-popup p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #555;
        }

        .exit-intent-popup button {
            background-color: #5cb85c;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 1.1em;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .exit-intent-popup button:hover {
            background-color: #4cae4c;
        }

        .exit-intent-popup .close-button {
            position: absolute;
            top: -65px;
            right: 0;
            font-size: 4.5em;
            /* color: #aaa; */
            color: #fff;
            cursor: pointer;
        }
        .exit-intent-popup .close-button:hover {
            color: #333;
        }
@media(max-width:767px) {
        .exit-intent-popup {
            width: 70%;
        }
}