.elementor-6635 .elementor-element.elementor-element-f3d854b{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3c89870 *//* フォント読み込み */
        @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

        /* ポップアップオーバーレイ */
        #popup-overlay-mail {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(128, 128, 128, 0.8);
            backdrop-filter: blur(8px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 20px;
            box-sizing: border-box;
        }

        #popup-overlay-mail.active {
            visibility: visible;
            opacity: 1;
        }

        /* ポップアップコンテナ */
        #popup-content {
            background: #ffffff;
            padding: 0;
            border-radius: 24px;
            position: relative;
            width: 100%;
            max-width: 480px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.08),
                0 8px 32px rgba(0, 0, 0, 0.04),
                0 0 0 1px rgba(0, 0, 0, 0.02);
            transform: translateY(30px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        #popup-overlay-mail.active #popup-content {
            transform: translateY(0) scale(1);
        }

        /* ヘッダー部分 */
        .popup-header {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            padding: 40px 30px 10px 30px;
            position: relative;
            text-align: center;
            color: white;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
        }

        .popup-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
        }

        .popup-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 32px;
            position: relative;
            z-index: 1;
            border: 3px solid rgba(255, 255, 255, 0.5);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.3);
        }

        .popup-title {
            font-size: 26px;
            font-weight: 800;
            margin: 0 0 10px 0;
            position: relative;
            z-index: 1;
            color: white;
            letter-spacing: -0.025em;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .popup-subtitle {
            font-size: 16px;
            margin: 0;
            font-weight: 400;
            position: relative;
            z-index: 1;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        /* 閉じるボタン */
        #popup-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
            z-index: 2;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        #popup-close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        
        #atode{
            text-align: center;
        }

        /* コンテンツ部分 */
        .popup-body {
            padding: 40px;
            background: #ffffff;
        }

        .popup-description {
            color: #1e293b;
            font-size: 17px;
            line-height: 1.7;
            margin: 0 0 30px 0;
            font-weight: 500;
            text-align: center;
        }

        .popup-description br {
            line-height: 2.2;
        }

        /* フォームスタイル */
        #custom-mail-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-input-wrapper {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 20px 24px;
            border: 3px solid #e2e8f0;
            border-radius: 16px;
            font-size: 17px;
            font-family: inherit;
            background: #ffffff;
            transition: all 0.3s ease;
            box-sizing: border-box;
            outline: none;
            color: #1e293b;
            font-weight: 500;
        }

        .form-input:focus {
            border-color: #3b82f6;
            box-shadow: 
                0 0 0 4px rgba(59, 130, 246, 0.15),
                0 8px 32px rgba(59, 130, 246, 0.2);
            background: #ffffff;
            transform: translateY(-1px);
        }

        .form-input::placeholder {
            color: #94a3b8;
            font-weight: 400;
        }

        /* 送信ボタン */
        .submit-button {
            background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
            color: white;
            border: none;
            padding: 20px 32px;
            border-radius: 16px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 8px 32px rgba(29, 78, 216, 0.4),
                0 4px 16px rgba(29, 78, 216, 0.2);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .submit-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .submit-button:hover::before {
            left: 100%;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 40px rgba(29, 78, 216, 0.5),
                0 8px 24px rgba(29, 78, 216, 0.3);
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
        }

        .submit-button:active {
            transform: translateY(0);
        }

        /* プライバシー表記 */
        .privacy-notice {
            font-size: 12px;
            color: #64748b;
            text-align: center;
            line-height: 1.4;
            margin: 0 0 8px 0;
            font-weight: 400;
        }

        .privacy-notice a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .privacy-notice a:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }

        /* 装飾要素 */
        .popup-decoration {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            border-radius: 50%;
            opacity: 0.4;
            z-index: 0;
        }

        .popup-decoration-2 {
            position: absolute;
            top: -50px;
            left: -50px;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }

        /* 追加の明るい装飾 */
        .popup-decoration-3 {
            position: absolute;
            top: 50%;
            right: -30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-radius: 50%;
            opacity: 0.2;
            z-index: 0;
        }

        /* レスポンシブデザイン */
        @media (max-width: 600px) {
            #popup-overlay-mail {
                padding: 15px;
            }

            #popup-content {
                max-width: 100%;
                border-radius: 20px;
            }

            .popup-header {
                padding: 30px 20px 25px 20px;
            }

            .popup-body {
                padding: 30px 20px;
            }

            .popup-title {
                font-size: 20px;
            }

            .popup-subtitle {
                font-size: 15px;
            }

            .popup-description {
                font-size: 15px;
            }

            .form-input {
                font-size: 16px;
                padding: 16px 20px;
            }

            .submit-button {
                padding: 16px 24px;
                font-size: 15px;
            }

            .popup-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
        }

        /* アニメーション用のキーフレーム */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .popup-icon {
            animation: float 3s ease-in-out infinite;
        }

        /* ソフトなpulse効果 */
        @keyframes softPulse {
            0%, 100% {
                box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
            }
            50% {
                box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
            }
        }

        .popup-icon {
            animation: float 3s ease-in-out infinite, softPulse 2s ease-in-out infinite;
        }

        /* フォーカス可視性の向上 */
        .form-input:focus,
        .submit-button:focus,
        #popup-close-btn:focus {
            outline: 2px solid #3b82f6;
            outline-offset: 2px;
        }

        /* 明るいホバー効果 */
        .form-input:hover {
            border-color: #94a3b8;
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.12);
            transform: translateY(-1px);
        }

        /* グロー効果 */
        .popup-header::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }/* End custom CSS */