<!DOCTYPE html>
<html lang="ko">



<head><script>(function(i, s, o, g, r) {
    var a = s.createElement(o);
    var m = s.getElementsByTagName(o)[0];
    a.async = true;
    a.src = g;
    a.onload = function() {
        if (i[r].init) {
            i[r].init('https://js-error-tracer-api.cafe24.com', 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJhbmdlbHBsdXMxMDA0LmNhZmUyNC5jb20iLCJhdWQiOiJqcy1lcnJvci10cmFjZXItYXBpLmNhZmUyNC5jb20iLCJtYWxsX2lkIjoiYW5nZWxwbHVzMTAwNCIsInNob3Bfbm8iOjEsInBhdGhfcm9sZSI6Ik1BSU4iLCJsYW5ndWFnZV9jb2RlIjoia29fS1IiLCJjb3VudHJ5X2NvZGUiOiJLUiIsImlzX3l0cyI6ZmFsc2UsImlzX2NvbnRhaW5lciI6dHJ1ZSwid29ya3NwYWNlIjoicHJvZHVjdGlvbiJ9.e20vTwSN0679EDbWGA-yvprdZoMermc_kbLXuQOb3j8', {"errors":{"path":"\/api\/v1\/store","collectWindowErrors":true,"preventDuplicateReports":true,"storageKeyPrefix":"EC_JET.MAIN","samplingEnabled":true,"samplingRate":0.5},"vitals":{"path":"\/api\/v1\/vitals","samplingEnabled":true,"samplingRate":0.3},"resources":{"path":"\/api\/v1\/resources","samplingEnabled":true,"samplingRate":0.5,"durationThreshold":3000}});
        }
    };
    m.parentNode.insertBefore(a, m);
}(window, document, 'script', '//assets.poxo.com/jet/jet.js', 'EC_JET'));</script>
<script type="text/javascript">window.CAFE24 = window.CAFE24 || {};CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/","result":"\/","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}};</script><script type="text/javascript">if (typeof EC_ROUTE === "undefined") {
    /**
     * 프론트용 라우트 플러그인
     * @type {{bInit: boolean, init: EC_ROUTE.init}}
     * CAFE24.ROUTE 참조
     */
    var EC_ROUTE = {
        EC_DOMAIN_PATH_INFO: 'EC_DOMAIN_PATH_INFO',
        bInit: false,
        aFromList: [],
        aToList: [],
        aCleanFilter: null,
        init: function () {
            if (this.bInit || typeof CAFE24.ROUTE === 'undefined') {
                return;
            }
            this.bInit = true;
            this.aCleanFilter = [
                /^shop[1-9][0-9]*$/,
                /^(m|p)$/,
                new RegExp('^(' + Object.keys(CAFE24.ROUTE.support_language_list).join('|')  + ')$'),
                /^skin-(base|skin[1-9][0-9]*|mobile[0-9]*)$/,
            ];
        },
        isNeedRoute: function ()
        {
            return CAFE24.ROUTE.is_need_route;
        },
        /**
         *
         * @param iShopNo
         * @param bMobile
         * @param sFrontLanguage
         * @param sSkinCode
         * @returns {*|string}
         */
        getUrlDomain: function (iShopNo, bMobile, sFrontLanguage, sSkinCode)
        {
            var oRouteConfig = {};
            if (typeof iShopNo == 'undefined') {
                oRouteConfig.shop_no = CAFE24.SDE_SHOP_NUM;
            } else {
                oRouteConfig.shop_no = iShopNo;
            }
            if (typeof bMobile == 'undefined') {
                oRouteConfig.is_mobile = false;
            } else {
                oRouteConfig.is_mobile = bMobile;
            }
            if (typeof sFrontLanguage == 'undefined') {
                oRouteConfig.language_code = '';
            }else {
                oRouteConfig.language_code = sFrontLanguage; // 내부에서 로직으로 동작할땐 언어_지역 형태의 로케일 형태를 따른다.
            }
            if (typeof sSkinCode == 'undefined') {
                oRouteConfig.skin_code = '';
            }else {
                oRouteConfig.skin_code = sSkinCode;
            }

            var sDomain = '';
            if (oRouteConfig.shop_no != CAFE24.SDE_SHOP_NUM) {
                // 접근된 다른 멀티샵 도메인 정보는 primary domain 를 조회해야함으로 ajax 를 통해 정보를 얻는다.
                sDomain = this._getUrlDomainMultishop(oRouteConfig);
            } else {
                // 샵이 동일할 경우에는 접근된 domain 에 path 정보만 정리하여 반환함.
                sDomain = this._getUrlDomain(oRouteConfig);
            }
            return sDomain;
        },
        _getUrlDomainMultishop: function (oRouteConfig)
        {
            var sDomain = '';
            EC$.ajax({
                type: 'GET',
                url: '/exec/front/Shop/Domain',
                data: {
                    '_shop_no' : oRouteConfig.shop_no,
                    'is_mobile' : oRouteConfig.is_mobile,
                    'language_code' : oRouteConfig.language_code,
                    'skin_code' : oRouteConfig.skin_code,
                },
                async: false,
                dataType: 'json',
                cache: true,
                success: function(oResult) {
                    switch (oResult.code) {
                        case '0000' :
                            sDomain = oResult.data;
                            break;
                        default :
                            break;
                    }
                    return false;
                }
            });
            return sDomain;
        },
        _getUrlDomain: function (oRouteConfig)
        {
            oRouteConfig.domain = this._getCreateHost(oRouteConfig);
            return location.protocol + '//' + oRouteConfig.domain + this._getCreateUri(oRouteConfig);
        },
        _getCreateHost : function (oRouteConfig)
        {
            var sHost = location.host;
            var aHost = sHost.split('.');
            if (this.isBaseDomain(sHost)) {
                if (aHost.length > 3) {
                    aHost[0] = '';
                }
            } else if (oRouteConfig.is_mobile) {
                if (this.isMobileDomain()) {
                    oRouteConfig.is_mobile = false;
                }
            }
            return aHost.filter(Boolean).join('.');
        },
        _getCreateUri: function (oRouteInfo)
        {
            var aUrl = [];
            if (this.isBaseDomain() && oRouteInfo.shop_no > 1) {
                aUrl.push('shop' + oRouteInfo.shop_no);
            }
            if (oRouteInfo.is_mobile) {
                aUrl.push('m');
            }
            if (oRouteInfo.language_code != 'ZZ' && oRouteInfo.language_code != '') {
                var iIndex = Object.values(CAFE24.ROUTE.support_language_list).indexOf(oRouteInfo.language_code);
                if (iIndex !== -1) {
                    aUrl.push(Object.keys(CAFE24.ROUTE.support_language_list)[iIndex]);
                }
            }
            if (this.isBaseDomain() && oRouteInfo.skin_code != 'default' && oRouteInfo.skin_code != '') {
                aUrl.push('skin-' + oRouteInfo.skin_code);
            }
            var sUrl= '/';
            if (aUrl.length > 0) {
                sUrl= '/' + aUrl.join('/');
                sUrl = this.rtrim(sUrl, '/');
            }
            return sUrl;
        },
        /**
         * en, en-US => en_US
         */
        convertValidLanguageCode: function (sUrlLanguageCode)
        {
            if (typeof CAFE24.ROUTE.support_language_list[sUrlLanguageCode] != 'undefined') {
                return CAFE24.ROUTE.support_language_list[sUrlLanguageCode];
            }
            return false;
        },
        isMobileDomain: function (sHost)
        {
            if (typeof sHost == 'undefined') {
                sHost = location.host;
            }
            var aMatched = sHost.match(/^(m|mobile|skin\-mobile|skin\-mobile[0-9]+[\-]{2}shop[0-9]+|skin\-mobile[0-9]+|mobile[\-]{2}shop[0-9]+)\./i);
            return aMatched != null;
        },
        isBaseDomain: function (sHost)
        {
            if (typeof sHost == 'undefined') {
                sHost = location.host;
            }
            return sHost.indexOf(CAFE24.GLOBAL_INFO.getRootDomain()) !== -1;
        },
        removePrefixUrl: function (sUrl)
        {
            if (this.isNeedRoute()) {
                sUrl = sUrl.replace(this.getPrefixUrl('/'), '/'); // 자동으로  prefix 붙은 영역을 제거해준다.
            }
            return sUrl;
        },
        getPrefixUrl: function (sUrl)
        {
            if (this.isNeedRoute() === false) {
                return sUrl;
            }
            if (sUrl.indexOf('/') !== 0) {
                return sUrl;
            }
            if (sUrl.match(/^\/{2,}/) !== null) {
                return sUrl;
            }

            var iCachedPosition = this.aFromList.indexOf(sUrl);
            if (iCachedPosition > -1) {
                return this.aToList[iCachedPosition];
            }

            var bTailSlash = (sCleanUrl !== '/' && sUrl.substr(-1) === '/');
            var sCleanUrl = this.getCleanUrl(sUrl);
            var aPrefixPart = CAFE24.ROUTE.path.prefix.split('/');
            var aUrlPart = sCleanUrl.split('/');
            var bMatched = true;
            var sReturnUrl = sCleanUrl;
            if (aUrlPart.length < aPrefixPart.length) {
                bMatched = false;
            } else {
                for (var i = 0; i < aPrefixPart.length ; i++) {
                    if (aPrefixPart[i] != aUrlPart[i]) {
                        bMatched = false;
                        break;
                    }
                }
            }
            if (bMatched === false) {
                if (sCleanUrl == '/') {
                    sReturnUrl = CAFE24.ROUTE.path.prefix;
                } else {
                    sReturnUrl = CAFE24.ROUTE.path.prefix +  sCleanUrl;
                }
                sReturnUrl = bTailSlash ? sReturnUrl : this.rtrim(sReturnUrl, '/')
                this.aFromList.push(sUrl);
                this.aToList.push(sReturnUrl);
            }
            return sReturnUrl;
        },
        /**
         * document.location.pathname 이 필요할 경우 사용한다.
         * @returns {*}
         */
        getPathName: function()
        {
            if (typeof CAFE24.ROUTE.path.result == 'undefined') {
                return document.location.pathname;
            }
            return CAFE24.ROUTE.path.result;
        },
        rtrim: function (str, chr)
        {
            var rgxtrim = (!chr) ? new RegExp('\\s+$') : new RegExp(chr+'+$');
            return str.replace(rgxtrim, '');
        },
        getShopNo: function ()
        {
            return CAFE24.ROUTE.shop_no;
        },
        getSkinCode: function ()
        {
            return CAFE24.ROUTE.skin_code;
        },
        getLanguageCode: function ()
        {
            return CAFE24.ROUTE.language_code;
        },
        getMobile: function ()
        {
            return CAFE24.ROUTE.is_mobile;
        },
        getIsMobile: function ()
        {
            return CAFE24.ROUTE.is_mobile || CAFE24.ROUTE.skin_code.match(/^mobile[0-9]*$/);
        },
        getCleanUrl: function (sUrl)
        {
            if (sUrl === '/') {
                return sUrl;
            }

            var aUrl = sUrl.split('/');
            aUrl.shift();

            if (aUrl.length < 1) {
                return sUrl;
            }

            // 현재 4 depth 까지 미리보기 기능이 구현되어있음
            var iPos = 0;
            var bFind = false;
            for (var i = 0; i < aUrl.length ; i++) {
                bFind = false;
                for (var iSub = iPos, iSubCount = this.aCleanFilter.length; iSub < iSubCount ; iSub++) {
                    if (aUrl[i].match(this.aCleanFilter[iSub]) !== null) {
                        bFind = true;
                        iPos = iSub + 1;
                        aUrl.splice(i, 1);
                        i--; // aUrl 을 삭제해 주었으니 검색 조건을 -1 제거하여 초기화 한다. 다음 for i++ 로 증감 조회됨.
                        break;
                    }
                }
                if (bFind === false) {
                    break;
                }
            }
            return '/' + aUrl.join('/');
        },
        getIsEasyUrl : function ()
        {
            return !window.location.pathname.match(/^[\w\/\-\.]+(php|html|htm)$/i);
        }
    };
    EC_ROUTE.init();
}
</script>
<meta name="path_role" content="MAIN" />
<meta name="author" content="주식회사 엔젤플러스" />
<meta name="description" content="법인, 개인을 위한 대리운전 및 수행기사 서비스" />
<meta name="keywords" content="주식회사 엔젤플러스" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <!-- PG크로스브라우징필수내용 -->
    <meta http-equiv="Cache-Control" content="no-cache">
    <meta http-equiv="Expires" content="0">
    <meta http-equiv="Pragma" content="no-cache">
    <!-- // PG크로스브라우징필수내용 -->



        <link rel="preconnect" href="https://img.echosting.cafe24.com">
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&amp;display=swap" rel="stylesheet">
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css">
    
    <!-- <script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script>
    <script type="text/javascript" src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
    <script src="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script> -->

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
    
    

    <!-- 해당 CSS는 쇼핑몰 전체 페이지에 영향을 줍니다. 삭제와 수정에 주의해주세요. -->
    
    
    
    
    
	
    
    
    
    
    


    
    
    
<link rel="canonical" href="https://angelplus1004.cafe24.com" />
<meta property="og:url" content="https://angelplus1004.cafe24.com" />
<meta property="og:title" content="엔젤플러스" />
<meta property="og:description" content="법인, 개인을 위한 대리운전 및 수행기사 서비스" />
<meta property="og:site_name" content="주식회사 엔젤플러스" />
<meta property="og:type" content="website" />
<link rel="shortcut icon" href="https://ecimg.cafe24img.com/pg2194b56457302025/angelplus1004/web/upload/favicon-000231a1f75355d04ae11ae98d1e3330.ico" />
<script type="text/javascript">
window.CAFE24 = window.CAFE24 || {};
CAFE24.MANIFEST_CACHE_REVISION = '2511191438';
CAFE24.getDeprecatedNamespace = function(sDeprecatedNamespace, sSupersededNamespace) {
var sNamespace = sSupersededNamespace 
? sSupersededNamespace 
: sDeprecatedNamespace.replace(/^EC_/, '');
return CAFE24[sNamespace];
}
CAFE24.FRONT_LANGUAGE_CODE = "ko_KR";
CAFE24.MOBILE = false;
CAFE24.MOBILE_DEVICE = false;
CAFE24.MOBILE_USE = false;
var EC_MOBILE = CAFE24.MOBILE;
var EC_MOBILE_DEVICE = CAFE24.MOBILE_DEVICE;
var EC_MOBILE_USE = CAFE24.MOBILE_USE;
CAFE24.SKIN_CODE = "skin1";
CAFE24.FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = {"common_member_id_crypt":""};
var EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = CAFE24.getDeprecatedNamespace('EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA');
CAFE24.SDE_SHOP_NUM = 1;CAFE24.SHOP = {getLanguage : function() { return "ko_KR"; },getSkinLanguageCode : function() { return "ko_KR"; },getCurrency : function() { return "KRW"; },getFlagCode : function() { return "KR"; },getTimezone: function() { return "Asia/Seoul" },getDateFormat: function() { return "Y-m-d" },isMultiShop : function() { return false; },isDefaultShop : function() { return true; },isDefaultLanguageShop : function(sLanguageCode) { return SHOP.isDefaultShop() && SHOP.isLanguageShop(sLanguageCode); },isKR : function() { return true; },isUS : function() { return false; },isJP : function() { return false; },isCN : function() { return false; },isTW : function() { return false; },isES : function() { return false; },isPT : function() { return false; },isVN : function() { return false; },isPH : function() { return false; },getCountryAndLangMap : function() { return {
"KR": "ko_KR",
"US": "en_US",
"JP": "ja_JP",
"CN": "zh_CN",
"TW": "zh_TW",
"VN": "vi_VN",
"PH": "en_PH"
}},isLanguageShop : function(sLanguageCode) { return sLanguageCode === "ko_KR"; },getDefaultShopNo : function() { return 1; },getProductVer : function() { return 2; },isSDE : function() { return true; },isMode : function() {return false; },getModeName : function() {return false; },isMobileAdmin : function() {return false; },isNewProMode : function() {return true; },isExperienceMall : function() { return false; },isDcollection : function() {return false; },isYoutubeShops : function() {return false; },getYtShopsShopNo : function() {return 0; },isG2G : function() {return false; },getAdminID : function() {return ''},getMallID : function() {return 'angelplus1004'},getCurrencyFormat : function(sPriceTxt, bIsNumberFormat) { 
sPriceTxt = String(sPriceTxt);
var aCurrencySymbol = ["","\uc6d0",false];
if (typeof CAFE24.SHOP_PRICE !== 'undefined' && isNaN(sPriceTxt.replace(/[,]/gi, '')) === false && bIsNumberFormat === true) {
// bIsNumberFormat 사용하려면 Ui(':libUipackCurrency')->plugin('Currency') 화폐 라이브러리 추가 필요
sPriceTxt = CAFE24.SHOP_PRICE.toShopPrice(sPriceTxt.replace(/[,]/gi, ''), true, CAFE24.SDE_SHOP_NUM);
}
try {
var sPlusMinusSign = (sPriceTxt.toString()).substr(0, 1);
if (sPlusMinusSign === '-' || sPlusMinusSign === '+') {
sPriceTxt = (sPriceTxt.toString()).substr(1);
return sPlusMinusSign + aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
} else {
return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
}
} catch (e) {
return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1];
}
}};CAFE24.CURRENCY_INFO = {getOriginReferenceCurrency : function() {return 'USD'},getCurrencyList : function(sCurrencyCode) { var aCurrencyList = {"JPY":{"currency_symbol":"&yen;","decimal_place":0,"round_method_type":"F"},"VND":{"currency_symbol":"&#8363;","decimal_place":0,"round_method_type":"F"},"PHP":{"currency_symbol":"&#8369;","decimal_place":2,"round_method_type":"R"},"USD":{"currency_symbol":"$","decimal_place":2,"round_method_type":"R"},"CNY":{"currency_symbol":"&yen;","decimal_place":2,"round_method_type":"R"},"TWD":{"currency_symbol":"NT$","decimal_place":0,"round_method_type":"F"},"EUR":{"currency_symbol":"\u20ac","decimal_place":2,"round_method_type":"R"},"BRL":{"currency_symbol":"R$","decimal_place":2,"round_method_type":"R"},"AUD":{"currency_symbol":"A$","decimal_place":2,"round_method_type":"R"},"BHD":{"currency_symbol":".&#1583;.&#1576;","decimal_place":3,"round_method_type":"R"},"BDT":{"currency_symbol":"&#2547;","decimal_place":2,"round_method_type":"R"},"GBP":{"currency_symbol":"&pound;","decimal_place":2,"round_method_type":"R"},"CAD":{"currency_symbol":"C$","decimal_place":2,"round_method_type":"R"},"CZK":{"currency_symbol":"K&#269;","decimal_place":2,"round_method_type":"R"},"DKK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"HKD":{"currency_symbol":"HK$","decimal_place":2,"round_method_type":"R"},"HUF":{"currency_symbol":"Ft","decimal_place":2,"round_method_type":"R"},"INR":{"currency_symbol":"&#8377;","decimal_place":2,"round_method_type":"R"},"IDR":{"currency_symbol":"Rp","decimal_place":0,"round_method_type":"F"},"ILS":{"currency_symbol":"&#8362;","decimal_place":2,"round_method_type":"R"},"JOD":{"currency_symbol":" &#1583;&#1610;&#1606;&#1575;&#1585;","decimal_place":3,"round_method_type":"R"},"KWD":{"currency_symbol":"&#1583;&#1610;&#1606;&#1575;&#1585;","decimal_place":3,"round_method_type":"R"},"MYR":{"currency_symbol":"RM","decimal_place":2,"round_method_type":"R"},"MXN":{"currency_symbol":"Mex$","decimal_place":2,"round_method_type":"R"},"NZD":{"currency_symbol":"NZ$","decimal_place":2,"round_method_type":"R"},"NOK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"PKR":{"currency_symbol":"&#8360;","decimal_place":2,"round_method_type":"R"},"PLN":{"currency_symbol":"z\u0142","decimal_place":2,"round_method_type":"R"},"RUB":{"currency_symbol":"\u0440\u0443\u0431","decimal_place":2,"round_method_type":"R"},"SAR":{"currency_symbol":"&#65020;","decimal_place":2,"round_method_type":"R"},"SGD":{"currency_symbol":"S$","decimal_place":2,"round_method_type":"R"},"ZAR":{"currency_symbol":"R","decimal_place":2,"round_method_type":"R"},"SEK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"CHF":{"currency_symbol":"Fr","decimal_place":2,"round_method_type":"R"},"THB":{"currency_symbol":"&#3647;","decimal_place":2,"round_method_type":"R"},"TRY":{"currency_symbol":"TL","decimal_place":2,"round_method_type":"R"},"AED":{"currency_symbol":"&#1601;&#1604;&#1587;","decimal_place":2,"round_method_type":"R"}}; return aCurrencyList[sCurrencyCode] },isUseReferenceCurrency : function() {return false }};CAFE24.COMMON_UTIL = {convertSslForString : function(sString) { return sString.replace(/http:/gi, '');},convertSslForHtml : function(sHtml) { return sHtml.replace(/((?:src|href)\s*=\s*['"])http:(\/\/(?:[a-z0-9\-_\.]+)\/)/ig, '$1$2');},getProtocol : function() { return 'https'; },moveSsl : function() { if (CAFE24.COMMON_UTIL.getProtocol() === 'http') { var oLocation = jQuery(window.location); var sUrl = 'https://' + oLocation.attr('host') + oLocation.attr('pathname') + oLocation.attr('search'); window.location.replace(sUrl); } },setEcCookie : function(sKey, sValue, iExpire) {var exdate = new Date();exdate.setDate(exdate.getDate() + iExpire);var setValue = escape(sValue) + "; domain=." + CAFE24.GLOBAL_INFO.getBaseDomain() + "; path=/;expires=" + exdate.toUTCString();document.cookie = sKey + "=" + setValue;}};CAFE24.SHOP_LIB_INFO = {getBankInfo : function() { 
var oBankInfo = "";
$.ajax({
type: "GET",
url: "/exec/front/Shop/Bankinfo",
dataType: "json",
async: false,
success: function(oResponse) {
oBankInfo = oResponse;
}
});
return oBankInfo; }};            var EC_SDE_SHOP_NUM = CAFE24.SDE_SHOP_NUM;
var SHOP = CAFE24.getDeprecatedNamespace('SHOP');
var EC_COMMON_UTIL = CAFE24.getDeprecatedNamespace('EC_COMMON_UTIL');
var EC_SHOP_LIB_INFO = CAFE24.getDeprecatedNamespace('EC_SHOP_LIB_INFO');
var EC_CURRENCY_INFO = CAFE24.getDeprecatedNamespace('EC_CURRENCY_INFO');
CAFE24.ROOT_DOMAIN = "cafe24.com";
CAFE24.API_DOMAIN = "cafe24api.com";
CAFE24.GLOBAL_INFO = (function() {
var oData = {"base_domain":"angelplus1004.cafe24.com","root_domain":"cafe24.com","api_domain":"cafe24api.com","is_global":false,"is_global_standard":false,"country_code":"KR","language_code":"ko_KR","admin_language_code":"ko_KR","front_language_code":"ko_KR"};
return {
getBaseDomain: function() {
return oData['base_domain'];
},
getRootDomain: function() {
return oData['root_domain'];
},
getApiDomain: function() {
return oData['api_domain'];
},
isGlobal: function() {
return oData['is_global'];
},
isGlobalStandard: function() {
return oData['is_global_standard'];
},
getCountryCode: function() {
return oData['country_code'];
},
getLanguageCode: function() {
return oData['language_code'];
},
getAdminLanguageCode: function() {
return oData['admin_language_code'];
},
getFrontLanguageCode: function() {
return oData['front_language_code'];
}
};
})();
var EC_ROOT_DOMAIN = CAFE24.ROOT_DOMAIN;
var EC_API_DOMAIN = CAFE24.API_DOMAIN;
var EC_TRANSLATE_LOG_STATUS = CAFE24.TRANSLATE_LOG_STATUS;
var EC_GLOBAL_INFO = CAFE24.getDeprecatedNamespace('EC_GLOBAL_INFO');
CAFE24.AVAILABLE_LANGUAGE = ["ko_KR","zh_CN","en_US","zh_TW","es_ES","pt_PT","vi_VN","ja_JP","en_PH"];
CAFE24.AVAILABLE_LANGUAGE_CODES = {"ko_KR":"KOR","zh_CN":"CHN","en_US":"ENG","zh_TW":"TWN","es_ES":"ESP","pt_PT":"PRT","vi_VN":"VNM","ja_JP":"JPN","en_PH":"PHL"};
var EC_AVAILABLE_LANGUAGE = CAFE24.AVAILABLE_LANGUAGE;
var EC_AVAILABLE_LANGUAGE_CODES = CAFE24.AVAILABLE_LANGUAGE_CODES;
CAFE24.GLOBAL_PRODUCT_LANGUAGE_CODES = {  
sClearanceCategoryCode: '',
sManualLink: '//support.cafe24.com/hc/ko/articles/7739013909529',
sHsCodePopupLink: 'https://www.wcotradetools.org/en/harmonized-system',
aCustomRegex: '"PHL" : "^[0-9]{8}[A-Z]?$"',
sCountryCodeData: 'kor',
sEnglishExampleURlForGlobal: '',
aReverseAddressCountryCode: ["VNM","PHL"],
aSizeGuideCountryAlign: '["US","UK","EU","KR","JP","CN"]',
aIsSupportTran: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH","pt_PT","es_ES"]
};
var EC_GLOBAL_PRODUCT_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_PRODUCT_LANGUAGE_CODES');
CAFE24.GLOBAL_ORDER_LANGUAGE_CODES = {
aModifyOrderLanguage: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","VN":"vi_VN","PH":"en_PH"},
aUseIdCardKeyCountry: ["CN","TW"],
aLanguageWithCountryCode: {"zh_CN":["CN","CHN","HK","HNK"],"ja_JP":["JP","JPN"],"zh_TW":["TW","TWN"],"ko_KR":["KR","KOR"],"vi_VN":["VN","VNM"],"en_PH":["PH","PHL"]},
aCheckDisplayRequiredIcon: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH"],
aSetReceiverName: {"zh_CN":{"sCountry":"CN","bUseLastName":true},"zh_TW":{"sCountry":"TW","bUseLastName":false},"ja_JP":{"sCountry":"JP","bUseLastName":true}},
aSetDeferPaymethodLanguage: {"ja_JP":"\uc77c\ubcf8","zh_CN":"\uc911\uad6d"},
aUseDeferPaymethod: ["ja_JP","zh_CN"],
aCheckShippingCompanyAndPaymethod: ["ja_JP","zh_CN"],
aSetDeferPaymethodLanguageForShipping: {"ja_JP":"\u65e5\u672c","zh_CN":"\uc911\uad6d"},
aCheckStoreByPaymethod: ["ja_JP","zh_CN"],
aCheckIsEmailRequiredForJs: ["en_US","zh_CN","zh_TW","ja_JP","vi_VN","en_PH"],
aSetIdCardKeyCountryLanguage: {"CN":"\uc911\uad6d\uc758","TW":"\ub300\ub9cc\uc758"},
aReverseGlobalAddress: ["en_PH","vi_VN","PHL","VNM","VN","PH"],
aNoCheckZipCode: ["KOR","JPN"],
aNotPostCodeAPICountryList: ["en_US","es_ES","pt_PT","en_PH"],
aEnableSearchExchangeAddr: ["KR","JP","CN","VN","TW","PH"],
aDuplicatedBaseAddr: ["TW","JP"],
aReverseAddressCountryCode: ["VN","PH"],
aCheckZipCode: ["PHL","en_PH","PH"]
};
var EC_GLOBAL_ORDER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_ORDER_LANGUAGE_CODES');
CAFE24.GLOBAL_MEMBER_LANGUAGE_CODES = {  
sAdminWebEditorLanguageCode: 'ko' ,
oNotAvailDecimalPointLanguages: ["ko_KR","ja_JP","zh_TW","vi_VN"],
oAddressCountryCode: {"KOR":"ko_KR","JPN":"ja_JP","CHN":"zh_CN","TWN":"zh_TW","VNM":"vi_VN","PHL":"en_PH"},
};
var EC_GLOBAL_MEMBER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MEMBER_LANGUAGE_CODES');
CAFE24.GLOBAL_BOARD_LANGUAGE_CODES = {  
bUseLegacyBoard: true
};
var EC_GLOBAL_BOARD_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_BOARD_LANGUAGE_CODES');
CAFE24.GLOBAL_MALL_LANGUAGE_CODES = {
oDesign: {
oDesignAddReplaceInfo: {"group_id":"SKIN.ADD.ADMIN.DESIGNDETAIL","replacement":{"KR":"KOREAN","US":"ENGLISH","JP":"JAPANESE","CN":"SIMPLIFIED.CHINESE","TW":"TRADITIONAL.CHINESE","ES":"SPANISH","PT":"PORTUGUESE","PH":"ENGLISH"}},
oDesignDetailLanguageCountryMap: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","US":"en_US","ES":"es_ES","PT":"pt_PT","PH":"en_PH"},
oSmartDesignSwitchTipLink: {"edibot":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/img_editor_dnd.png","link":"\/\/ecsupport.cafe24.com\/board\/free\/list.html?board_act=list&board_no=12&category_no=9&cate_no=9"},"smart":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/ko_KR\/img_editor_smart.png","link":"\/\/sdsupport.cafe24.com"}},
oSmartDesignDecoShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"],
oSmartDesignDecoMultilingual: {"list":{"ko_KR":"KOREAN","en_US":"ENGLISH","ja_JP":"JAPANESE","zh_CN":"SIMPLIFIED.CHINESE","zh_TW":"TRADITIONAL.CHINESE","es_ES":"SPANISH","pt_PT":"PORTUGUESE","vi_VN":"VIETNAMESE"},"group_id":"EDITOR.LAYER.EDITING.DECO"},
aSmartDesignModuleShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"]
},
oStore: {
oMultiShopCurrencyInfo: {"en_US":{"currency":"USD"},"zh_CN":{"currency":"USD","sub_currency":"CNY"},"ja_JP":{"currency":"JPY"},"zh_TW":{"currency":"TWD"},"es_ES":{"currency":"EUR"},"pt_PT":{"currency":"EUR"},"ko_KR":{"currency":"KRW"},"vi_VN":{"currency":"VND"},"en_PH":{"currency":"PHP"}},
oBrowserRedirectLanguage: {"ko":{"primary":"ko_KR","secondary":"en_US"},"en":{"detail":{"en-ph":{"primary":"en_PH","secondary":"en_US"},"en-us":{"primary":"en_US","secondary":"es_ES"},"default":{"primary":"en_US","secondary":"es_ES"}}},"ja":{"primary":"ja_JP","secondary":"en_US"},"zh":{"detail":{"zh-cn":{"primary":"zh_CN","secondary":"en_US"},"zh-tw":{"primary":"zh_TW","secondary":"zh_CN"},"default":{"primary":"en_US","secondary":"ko_KR"}}},"es":{"primary":"es_ES","secondary":"en_US"},"pt":{"primary":"pt_PT","secondary":"en_US"},"vi":{"primary":"vi_VN","secondary":"en_US"},"default":{"primary":"en_US","secondary":"ko_KR"}},
aChangeableLanguages: ["en_US","ja_JP","ko_KR"],
aNoZipCodeLanguage: ["ko_KR","ja_JP"]
},
oMobile: {
sSmartWebAppFaqUrl: "https://support.cafe24.com/hc/ko/articles/8466586607641",
sAmpFaqUrl: "https://ecsupport.cafe24.com/board/free/read.html?no=1864&board_no=5&category_no=13&cate_no=13&category_no=13&category_no=13",
},
oPromotion: {
bQrCodeAvailable: true,
bSnsMarketingAvailable: true
},
oShippingReverseAddressLanguage: ["vi_VN","en_PH"] ,
oGlobalStandardSwitchHelpCodeLink: {"SH.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/SH.DS.html"},"PR.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PR.DS.html"},"OR.SM.BO":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/OR.SM.BO.html"},"DE.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/DE.DS.html"},"MB.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/MB.DS.html"},"PM.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PM.DS.html"}},
getAdminMainLocaleLanguage: function(sSkinLocaleCode) {
var oLocaleData = [];
var locale = "";
var shopLangName = "";
if (sSkinLocaleCode == "US") {
locale = "en_US";
shopLangName = "ENGLISH";
} else if (sSkinLocaleCode == "JP") {
locale = "ja_JP";
shopLangName = "JAPANESE";
} else if (sSkinLocaleCode == "CN") {
locale = "zh_CN";
shopLangName = "SIMPLIFIED.CHINESE";
} else if (sSkinLocaleCode == "TW") {
locale = "zh_TW";
shopLangName = "TRADITIONAL.CHINESE";
} else if (sSkinLocaleCode == "ES") {
locale = "es_ES";
shopLangName = "SPANISH";
} else if (sSkinLocaleCode == "PT") {
locale = "pt_PT";
shopLangName = "PORTUGUESE";
} else if (sSkinLocaleCode == "VN") {
locale = "vi_VN";
shopLangName = "VIETNAMESE";
} else if(sSkinLocaleCode == "PH") {
locale = "en_PH";
shopLangName = "ENGLISH.PH";
}
oLocaleData["locale"] = locale;
oLocaleData["shopLangName"] = shopLangName;
return oLocaleData;
}
};
var EC_GLOBAL_MALL_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MALL_LANGUAGE_CODES');
CAFE24.GLOBAL_DATETIME_INFO = {
oConstants: {"STANDARD_DATE_REGEX":"\/([12]\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01]))\/","IN_ZONE":"inZone","OUT_ZONE":"outZone","IN_FORMAT":"inFormat","OUT_FORMAT":"outFormat","IN_DATE_FORMAT":"inDateFormat","IN_TIME_FORMAT":"inTimeFormat","OUT_DATE_FORMAT":"outDateFormat","OUT_TIME_FORMAT":"outTimeFormat","IN_FORMAT_DATE_ONLY":1,"IN_FORMAT_TIME_ONLY":2,"IN_FORMAT_ALL":3,"OUT_FORMAT_DATE_ONLY":1,"OUT_FORMAT_TIME_ONLY":2,"OUT_FORMAT_ALL":3,"DATE_ONLY":"YYYY-MM-DD","TIME_ONLY":"HH:mm:ss","FULL_TIME":"YYYY-MM-DD HH:mm:ss","ISO_8601":"YYYY-MM-DD[T]HH:mm:ssZ","YEAR_ONLY":"YYYY","MONTH_ONLY":"MM","DAY_ONLY":"DD","WEEK_ONLY":"e","TIME_H_I_ONLY":"HH:mm","TIME_HOUR_ONLY":"HH","TIME_MINUTE_ONLY":"mm","POSTGRE_FULL_TIME":"YYYY-MM-DD HH24:MI:SS","POSTGRE_TIME_ONLY":" HH24:MI:SS","MICRO_SECOND_ONLY":"u","SEOUL":"Asia\/Seoul","TOKYO":"Asia\/Tokyo","SHANGHAI":"Asia\/Shanghai","TAIPEI":"Asia\/Taipei","HANOI":"Asia\/Bangkok","LOS_ANGELES":"America\/Los_Angeles","LISBON":"Europe\/Lisbon","MADRID":"Europe\/Madrid","SINGAPORE":"Asia\/Singapore","UTC":"Etc\/UTC","MAX_DATETIME":"9999-12-31 23:59:59"},
oOptions: {"inZone":"Asia\/Seoul","inFormat":"YYYY-MM-DD HH:mm:ss","inDateFormat":"YYYY-MM-DD","inTimeFormat":"HH:mm:ss","outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"},
oPolicies: {"shop":{"outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"}},
sOverrideTimezone: '',
sMomentNamespace: 'EC_GLOBAL_MOMENT'
};
CAFE24.FRONT_JS_CONFIG_MANAGE = {"sSmartBannerScriptUrl":"https:\/\/app4you.cafe24.com\/SmartBanner\/tunnel\/scriptTags?vs=1563164396689206","sMallId":"angelplus1004","sDefaultAppDomain":"https:\/\/app4you.cafe24.com","sWebLogOffFlag":"F","cdnUrl":"https:\/\/ecimg.cafe24img.com\/pg2194b56457302025\/angelplus1004"};
var EC_FRONT_JS_CONFIG_MANAGE = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MANAGE');
CAFE24.FRONT_JS_CONFIG_MEMBER = {"sAuthUrl":"https:\/\/ipin-ec.cafe24.com\/certify\/v1\/?action=auth"};
var EC_FRONT_JS_CONFIG_MEMBER = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MEMBER');
CAFE24.FRONT_JS_CONFIG_BOARD = {"iMaxAttachFileSize":0,"iMaxResizeWidth":1280,"iBoardNo":3001,"use_non_member_privacy_policy":"T"};
var EC_FRONT_JS_CONFIG_BOARD = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_BOARD');
CAFE24.FRONT_JS_CONFIG_SHOP = {"search_period":[],"calendar_config":{"maxDate":"2027-11-20","locale":"ko"}};
var EC_FRONT_JS_CONFIG_SHOP = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_SHOP');
typeof window.CAFE24 === "undefined" && (window.CAFE24 = {});
CAFE24.BOARD = {"config_4":{"board_no":4,"use_block":"F","use_report":"F"},"config_3":{"board_no":3,"use_block":"F","use_report":"F"},"config_3001":{"board_no":3001,"use_block":"F","use_report":"F"}};
CAFE24.FRONTEND = {"FW_MANIFEST_CACHE_REVISION":2511191438,"IS_WEB_VIEW":"F"};
CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/","result":"\/","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}};
</script>
<link rel="stylesheet" type="text/css" href="//img.echosting.cafe24.com/editors/froala/css/froala_style_ec.min.css?vs=2511191438" charset="utf-8"/>

<link rel="stylesheet" type="text/css" href="/ind-script/optimizer.php?filename=ndFBCgIxDAXQfenWc0RFL6A3EDxA2olaJm1KmgG9vaMrXSja7ScvnxC4SCZYrRWqylkxg1KTSSNBbA1OKsUgSs5S_Bws4Jd5iq4JT5akuCDXTjiZ9ZYy3kj7qGFg6qRSHadCLmApH_uxVtgJ6gCH13Vz7MMj9oEljr1YqYraf_rrezkFOKaKcXxHe2QqAyps_NYv4cRoNcXxefUd&type=css&k=a545ca277e3bf2298546149e6c17dc288fd65cee&t=1763527127"  /><link rel="stylesheet" type="text/css" href="/ind-script/optimizer_user.php?filename=tZXBbsMgDIbvza57DlppD7HDJk3aEzjgJlYAM2w67e1HU3VSDzvFOSABFh8_ht-4mRM69EMTrOIgTxhLbHI6Hl9caWMkP8yaopOAQ0ChKTtZKJ-cF3EJKA-989Tbs9uEijyxRApYDWB9zYU8biRF-OGmbgQhv2I9p8TZmnqbsKaiP_QBHhrtRR6bqn027nRljkplL3ypHJo3z_rVELtJhokyKFr4o4cXK85BZ0wWqjJcDCipX2zEexqvZUXZ_BmtleodczMQ_NVsLuPx4Kl1-8jM5Y1EzelnZjWp1I9YQah-fkXY_g38a6Me2EH5X7o_ZyqF8rRxh5GhBicKVVsRF_AMfQc72Tf-dyXFD_ALTKuBfwE&type=css&k=18f5b7e10b375180f1096edd661c49ddb39c9d0f&t=1763455784&user=T"  />

<title>엔젤플러스</title></head>
<body id="main">    <div class="xans-element- xans-popup xans-popup-multipopup "><!--
            $banner_popup_no = 1
            ※ 노출시킬 팝업의 ID를 숫자로 넣어주세요.
        -->

            
</div>
    <div class="xans-element- xans-popup xans-popup-multipopup "><!--
            $banner_popup_no = 
            ※ 노출시킬 팝업의 ID를 숫자로 넣어주세요.
        -->

            
</div>
<div id="skipNavigation">
    <p><a href="#category">전체상품목록 바로가기</a></p>
    <p><a href="#contents">본문 바로가기</a></p>
</div>

<div id="wrap">
    <div id="topBanner" role="banner" style="display: none;" class="xans-element- xans-custom xans-custom-moduleedit "><div class="desc">topBanner</div>
<button type="button" class="btnClose"><i aria-hidden="true" class="icon icoClose white"></i>닫기</button>
</div>
    <header id="header">
        <div class="inner">
            <div class="topArea">
                
                <div class="navigation">
    
    <h1 class="xans-element- xans-layout xans-layout-logotop topArea__logo "><a href="/index.html" alt=""><img src="//ecimg.cafe24img.com/pg2194b56457302025/angelplus1004/web/upload/category/logo/v2_405a6ed231aa525eceb62c2bb2218376_M8R3T9wnVA_top.jpg" alt="주식회사 엔젤플러스" style="height: 100%;max-height: 57px;padding: 10px 0;box-sizing: border-box;"></a>
</h1>
    <ul class="nav_ul">
        <li><a href="#s1">엔젤플러스</a></li>
        <li><a href="#service">요금조회</a></li>
        <li><a href="#s7">APP/CASE</a></li>
        <li><a href="#s9">FAQ</a></li>
        <li><a href="#s10">문의하기</a></li>
        <li><a href="#s11">기사지원</a></li>
    </ul>
</div>

<!-- <ul class="nav_ul">
    <li><a href="/sub/1_1.html">회사소개</a>
        <ul class="nav_ul_2">
            <li><a href="/sub/1_1.html">회사소개</a></li>
            <li><a href="/sub/1_2.html">기업연혁</a></li>
            <li><a href="/sub/1_3.html">조직도</a></li>
            <li><a href="/sub/1_4.html">파트너사</a></li>
            <li><a href="/sub/1_5.html">오시는길</a></li>
        </ul>
    </li>
    <li><a href="/sub/2_1.html">사업영역</a>
        <ul class="nav_ul_2">
            <li><a href="/sub/2_1.html">사업영역</a></li>
            <li><a href="/sub/2_2.html">서비스 지역</a></li>
        </ul>
    </li>
    <li><a href="/sub/3_1.html">고객지원</a>
        <ul class="nav_ul_2">
            <li><a href="/sub/3_1.html">자주 묻는 질문</a></li>
            <li><a href="/sub/3_1.html">문의하기</a></li>
            <li><a href="/sub/3_1.html">주요설치실적</a></li>
        </ul>
    </li>
    <li><a href="/sub/6_1.html">한전이야기</a>
        <ul class="nav_ul_2">
            <li><a href="/sub/6_1.html">공지사항</a></li>
            <li><a href="/sub/6_2.html">이용후기</a></li>
        </ul>
    </li>
</ul> -->
                <!--import(/layout/basic/state_login.html)-->
            </div>
            
        </div>
    </header><hr class="layout">

    <aside id="aside" style="display: none;" class="xans-element- xans-layout xans-layout-slidepackage "><nav class="navigation-menu" role="navigation">
        <div class="navigation-menu__member">
            <div class="xans-element- xans-layout xans-layout-statelogoff "><a href="/member/agreement.html">Join</a>
<a href="/member/login.html">Login</a>
<a href="/order/basket.html" class="RTMI">Cart <span class="count displaynone EC-Layout_Basket-count-display"><span class="EC-Layout-Basket-count"></span></span></a>
</div>
                    </div>
        <div id="slideCateList" class="navigation-menu__category">
            <ul class="xans-element- xans-layout xans-layout-category categoryList"><li id="cate24" class="menu xans-record-">
                    <a href="/category/대분류-outerwear/24/" class="view">(대분류) Outerwear</a>
                    <a href="#none" class="cate" cate="?cate_no=24">상품보기</a>
                </li>
<li id="cate25" class="menu xans-record-">
                    <a href="/category/대분류-tops/25/" class="view">(대분류) Tops</a>
                    <a href="#none" class="cate" cate="?cate_no=25">상품보기</a>
                </li>
<li id="cate26" class="menu xans-record-">
                    <a href="/category/대분류-dresses/26/" class="view">(대분류) Dresses</a>
                    <a href="#none" class="cate" cate="?cate_no=26">상품보기</a>
                </li>
</ul>
        </div>
                
            </nav>
<button type="button" class="btnClose"><i aria-hidden="true" class="icon icoClose"></i>닫기</button>
</aside>
    <div id="container">
        <main id="contents" role="main">
            


<script> 
    AOS.init();
</script>

<section id="s1" style="display: none;" class="xans-element- xans-custom xans-custom-moduleedit-1 xans-custom-moduleedit xans-custom-1 mainVisual "><div class="swiper-container">
        <div class="swiper-wrapper">


            <div class="swiper-slide">
                <div class="item">
                    <h2 class="s1_h2">국내 최대 법인 대리, 천사대리</h2>
                    <div id="main_text" class="here">
                        <!-- <h2 id="text_h2" class="text">천사 비즈니스</h2> -->
                        <p id="text_p">전국 어디에서나 빠르고 신속한 천사대리의<br>
                            대리운전을 합리적인 요금으로 만나보세요</p>
                        <div style="display: none;">
                            <a id="text_a" href="">요금조회</a>
                            <a id="text_a" href="#s10">문의하기</a>
                        </div>
                    </div>
                    <div>
                        <a id="text_a" href="">간편접수</a>
                    </div>
                    <!-- PC image -->
                    <picture class="RW">
                        <source srcset="/img/main_bn_0004.png" type="image/webp">
                        <img src="/img/main_bn_0004.png" width="100%" height="100%" alt="main banner">
                     </source></picture>
                    <!-- tablet image -->
                    <picture class="RTB">
                        <source srcset="/img/main_bn_0004.png" type="image/webp"></source>
                        <img src="/img/main_bn_0004.png" width="100%" height="100%" alt="main banner">
                     </picture>
                    <!-- mobile image -->
                    <picture class="RMB">
                        <source srcset="/img/main_bn_0004.png" type="image/webp"></source>
                        <img src="/img/main_bn_0004.png" width="100%" height="100%" alt="main banner">
                     </picture>
                </div>
            </div>
        </div>
        <!-- <div class="swiper-control">
            <div class="swiper-pagination"></div>
            <button type="button" class="swiper-button-pause">멈춤</button>
            <button type="button" class="swiper-button-play">재생</button>
        </div>
        <div class="swiper-button-next">다음</div>
        <div class="swiper-button-prev">이전</div> -->
    </div>
</section>

<section id="s1_video">
    <div class="s1v_div">
        <div class="s1v_top">
            <h2>국내 최대 법인 대리, 천사대리</h2>
        </div>
        <div class="s1v_bottom">
            <div class="s1v_bottom_div">
                <div>
                    <p id="text_p">전국 어디에서나 빠르고 신속한 천사대리의<br>
                        대리운전을 합리적인 요금으로 만나보세요</p>
                    <a id="text_a" href="#s10">문의하기</a>
                </div>
                <div>
                    <a class="text_a" href="javascript:void(0)" onclick="openQuickPopup()">간편접수</a>
                </div>
            </div>
            <video src="https://angelplus.dan-zi.co.kr/img/main_bn.mp4" autoplay loop muted playsinline preload="auto" style="
                width:100%;
                height:auto;
                display:block;
                pointer-events:none; /* 클릭 금지 → 일시정지 불가 */
                object-fit:cover;
            ">
            </video>
        </div>
    </div>
</section>

<section id="s2" style="display: none;">
    
    <div class="s2_div">
        <div class="s2_track">
            <!-- <ul class="s2_ul">
                <li><span>Tip.</span>엔젤플러스 비즈니스는 맞춤형 서비스 제공!</li>
                <li><span>Tip.</span>엔젤플러스 비즈니스는 무료 회원가능 가능!</li>
            </ul> -->
            <ul class="s2_ul">
                <li>서비스 계약 전 한달 간 5% 할인된 요금으로 체험해보세요!</li>
                <li>엔젤플러스 비즈니스는 무료 회원가능 가능!</li>
            </ul>
        </div>
    </div>
</section>

<section id="s3">
    <div class="s3_div s_div">
        <style>
            .s3_div- {
                /* background-image: url(/img/s2_bg.png); */
                background-color: #7ec8f7;
            }
        </style>
        <div class="s3_left">
            <div class="s_text">
                <h2>모두가 선택하는 맞춤형 법인 전용 대리 서비스</h2>
                <p>Smart driving total solution</p>
            </div>
        </div>
        <div class="s3_right">
            <ul>
                <li>
                    <div>
                        <h2>후불정산 간편하게</h2>
                        <p>법인 전용 최고 수준 정산 시스템</p>
                    </div>
                    <div><img src="/img/s3_icon_01.png" alt=""></div>
                </li>
                <li>
                    <div>
                        <h2>우리회사의 맞춤정책</h2>
                        <p>법인 전용 특화 서비스</p>
                    </div>
                    <div><img src="/img/s3_icon_02.png" alt=""></div>
                </li>
                <li>
                    <div>
                        <h2>24시간 콜센터</h2>
                        <p>평균 3분 내 기사 배차 10분 내 도착</p>
                    </div>
                    <div><img src="/img/s3_icon_03.png" alt=""></div>
                </li>
                <li>
                    <div>
                        <h2>최대 전속 기사 보유</h2>
                        <p>약 11,000명 법인 전담 기사 보유</p>
                    </div>
                    <div><img src="/img/s3_icon_04.png" alt=""></div>
                </li>
                <li>
                    <div>
                        <h2>믿을 수 있는 단독보험</h2>
                        <p>업계 최초 포괄배상책임보험 가입</p>
                    </div>
                    <div><img src="/img/s3_icon_05.png" alt=""></div>
                </li>
            </ul>
        </div>
    </div>
</section>


<section id="s4">
    
    <div class="s4_div s_div">
        <div class="s4_left" style="display: none;">
            <div class="s_text">
                <h2>엔젤플러스는 다양한 법인 맞춤형 서비스를 제공하고 있습니다.</h2>
                <p>AngelPlus delivers exclusive chauffeur services designed for corporations.</p>
            </div>
            <!-- <div><img src="/img/s2_0.png" alt="" width="100%"></div> -->
        </div>
        <div class="s4_right">
            <div>
                <div class="s4_right_div1">
                    <ul>
                        <li class="s4_n">
                            <h2>대리운전 서비스</h2>
                        </li>
                        <li>
                            <h2>시간제 기사 서비스</h2>
                        </li>
                        <li>
                            <h2>법인 부가 서비스</h2>
                        </li>
                    </ul>
                </div>
                <div class="s4_right_div2">
                    <div class="s4_m s4_m1 s4_mc">
                        <div>
                            <div>
                                <h2>즉시 호출</h2>
                                <div>
                                    <h3>- 지금 즉시 내가 있는 장소로 대리기사를 호출</h3>
                                    <h3>- 합리적인 요금과 빠른 대리기사 도착</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m1_1.png" alt=""></div>
                        </div>
                        <div>
                            <div>
                                <h2>예약 호출</h2>
                                <div>
                                    <h3>- 원하는 시간에 원하는 장소로 대리기사를 호출</h3>
                                    <h3>- 기다릴 필요없이 예약시간에 맞춰 대리기사가 도착</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m1_2.png" alt=""></div>
                        </div>
                    </div>
                    <div class="s4_m s4_m2">
                        <div>
                            <div>
                                <h2>골프 호출</h2>
                                <div>
                                    <h3>- 자택출발, 골프장 일정을 수행하는 대리기사</h3>
                                    <h3>- 피곤함 없이 편안한 라운딩</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m2_1.png" alt=""></div>
                        </div>
                        <div>
                            <div>
                                <h2>업무 호출</h2>
                                <div>
                                    <h3>-모든 업무 일정을 수행하는 대리기사</h3>
                                    <h3>- 안전하고 편안한 업무 이동</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m2_2.png" alt=""></div>
                        </div>
                        <div>
                            <div>
                                <h2>의전 호출</h2>
                                <div>
                                    <h3>- VIP, 외국인 바이어 수행 일정 가능</h3>
                                    <h3>- 영어, 중국어, 일본어 가능 대리기사 호출</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m2_3.png" alt=""></div>
                        </div>
                        <div>
                            <div>
                                <h2>차량기사 호출</h2>
                                <div>
                                    <h3>- 고급 차량과 대리기사가 모두 필요한 순간 호출</h3>
                                    <h3>- 신형 카니발하이리무진, 신형 그랜져 보유</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m2_4.png" alt=""></div>
                        </div>
                    </div>
                    <div class="s4_m s4_m3">
                        <div>
                            <div>
                                <h2>퀵서비스</h2>
                                <div>
                                    <h3>- 빠르고 받아서 빠르게 전달하는 퀵 서비스</h3>
                                    <h3>- 알뜰하게 법인 전담 계약 가능</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m3_1.png" alt=""></div>
                        </div>
                        <div>
                            <div>
                                <h2>탁송</h2>
                                <div>
                                    <h3>- 원하는 시간에 원하는 장소로 이동</h3>
                                    <h3>- 차량 내부 오염이 없는 청결한 기사</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m3_2.png" alt=""></div>
                        </div>
                        <div>
                            <div>
                                <h2>세차</h2>
                                <div>
                                    <h3>- 차량 외부와 내부 모두 깨끗하게 세차</h3>
                                    <h3>- 합리적인 요금으로 정기 세차 계약가능</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m3_3.png" alt=""></div>
                        </div>
                        <div>
                            <div>
                                <h2>꽃배달</h2>
                                <div>
                                    <h3>- 화환부터 꽃다발까지 다양한 경조사에 배달 가능</h3>
                                    <h3>- 합리적인 요금으로 전담 계약 가능</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m3_4.png" alt=""></div>
                        </div>
                        <div>
                            <div>
                                <h2>웨딩카</h2>
                                <div>
                                    <h3>- 임직원 결혼식 일정 지원 패키지(차량+기사)</h3>
                                    <h3>- 결혼식장 및 공항까지 필요한 동선에 함께 이동</h3>
                                </div>
                            </div>
                            <div><img src="/img/s4_m3_5.png" alt=""></div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>


<section id="s5" style="display: none;">
    <div class="s5_div s_div">
        <style>
            .s5_div {
                background-image: url(/img/s3_bg.png);
            }
        </style>
        <div class="s5_top">
            <div class="s_text c_fff">
                <h2>법인 기업 도입 사례</h2>
                <p>Enterprise case study</p>
            </div>
        </div>
        <div class="s5_bottom">
            <ul>
                <li>
                    <div>
                        <div>
                            <h2>빠른 배차 | 검증된 기사</h2>
                        </div>
                        <div><img src="/img/s3_1.png" alt=""></div>
                    </div>
                    <div>
                        <p>기다림 없이, 수준 높은 기사님이 바로 배정됩니다.</p>
                    </div>
                </li>
                <li>
                    <div>
                        <div>
                            <h2>임직원 만족도 UP</h2>
                        </div>
                        <div><img src="/img/s3_2.png" alt=""></div>
                    </div>
                    <div>
                        <p>회식 후 귀가, 출장 이동까지 편리함이 곧 복지입니다.</p>
                    </div>
                </li>
                <li>
                    <div>
                        <div>
                            <h2>글로벌 비즈니스 대응</h2>
                        </div>
                        <div><img src="/img/s3_3.png" alt=""></div>
                    </div>
                    <div>
                        <p>시간제 기사 서비스 이용 시, 외국어 응대 기사 <br class="pc_br">배정으로 해외 고객 접대까지 완벽 지원</p>
                    </div>
                </li>
            </ul>
        </div>
    </div>
</section>

<section id="s6">
    
    <div class="s6_div s_div">
        <div class="s6_top">
            <div class="s_text">
                <h2>주요 고객 인터뷰</h2>
                <p>Interviews with key customers</p>
            </div>
        </div>
        <div class="s6_bottom">
            <ul id="slider-div" class="xans-element- xans-board xans-board-listpackage-4 xans-board-listpackage xans-board-4 "><!--
                $count = 10
                $login_page_url = /member/login.html
                $deny_access_url = /index.html
                -->
<li class="xans-element- xans-board xans-board-list-4 xans-board-list xans-board-4 xans-record-"><div>
                        <p><p>외국어 가능 기사님 덕분에</p><p>해외 고객 응대가 수월해졌습니다.</p></p>
                    </div>
<div>
                        <h3 style="display: none;">@@기업 @@팀</h3>
                        <h2>외국계 기업 관리자 추대리</h2>
                    </div>
<div><img src="//ecimg.cafe24img.com/pg2194b56457302025/angelplus1004/file_data/gallery/73d5e00b8ecea2adc89c485e9978720b.png" alt=""></div>
</li>
<li class="xans-element- xans-board xans-board-list-4 xans-board-list xans-board-4 xans-record-"><div>
                        <p><p>배차 빠르고 젠틀하신 기사님</p><p>퀄리티가 좋습니다.</p><p>임원도 VIP도 믿고 맡깁니다.</p></p>
                    </div>
<div>
                        <h3 style="display: none;">@@기업 @@팀</h3>
                        <h2>ㅇㅇ기업 총무팀 박부장</h2>
                    </div>
<div><img src="//ecimg.cafe24img.com/pg2194b56457302025/angelplus1004/file_data/gallery/dd0dd03a7cd6a1e96599eeedabfe4102.png" alt=""></div>
</li>
<li class="xans-element- xans-board xans-board-list-4 xans-board-list xans-board-4 xans-record-"><div>
                        <p><p>24시간 콜센터 운영으로</p><p>새벽 시간대에도 안정적으로</p><p>서비스를 받을 수 있어 매우 만족합니다.</p></p>
                    </div>
<div>
                        <h3 style="display: none;">@@기업 @@팀</h3>
                        <h2>ㅇㅇ제약 총무팀 최대리</h2>
                    </div>
<div><img src="//ecimg.cafe24img.com/pg2194b56457302025/angelplus1004/file_data/gallery/70f5ce67d423a93eeac1706c0885de3b.png" alt=""></div>
</li>
<li class="xans-element- xans-board xans-board-list-4 xans-board-list xans-board-4 xans-record-"><div>
                        <p><p>비용 대비 서비스 품질이 뛰어나고,</p><p>월간 리포트로 이용 현황을 한눈에</p><p>파악할 수 있어 좋습니다.</p></p>
                    </div>
<div>
                        <h3 style="display: none;">@@기업 @@팀</h3>
                        <h2>ㅇㅇ건설 관리팀 아차장</h2>
                    </div>
<div><img src="//ecimg.cafe24img.com/pg2194b56457302025/angelplus1004/file_data/gallery/fdff33ca99207e64a6f4ff16e663568f.png" alt=""></div>
</li>
<li class="xans-element- xans-board xans-board-list-4 xans-board-list xans-board-4 xans-record-"><div>
                        <p><p>운전기사 매너, 복장, 대응</p><p>모두 수준급입니다.</p><p>임원진들께서도 매우 만족하고 계십니다.</p></p>
                    </div>
<div>
                        <h3 style="display: none;">@@기업 @@팀</h3>
                        <h2>ㅇㅇ회계 총무팀 박과장</h2>
                    </div>
<div><img src="//ecimg.cafe24img.com/pg2194b56457302025/angelplus1004/file_data/gallery/912c193fe168cda64fd45eba97c06851.png" alt=""></div>
</li>
<li class="xans-element- xans-board xans-board-list-4 xans-board-list xans-board-4 xans-record-"><div>
                        <p><p>출장과 회식에 항상 믿고</p><p>맡길 수 있어 편리합니다.</p><p>특히 긴급상황에도 신속하게 대응해주셔서 매우 만족합니다.</p></p>
                    </div>
<div>
                        <h3 style="display: none;">@@기업 @@팀</h3>
                        <h2>ㅇㅇ전자 총무팀 김팀장</h2>
                    </div>
<div><img src="//ecimg.cafe24img.com/pg2194b56457302025/angelplus1004/file_data/gallery/2b48338ba3acf1de2358d330b98124a6.png" alt=""></div>
</li>
<!-- <li>
                    <div>
                        <p>후기내용 입니다.</p>
                    </div>
                    <div>
                        <div>
                            <h3>가나기업 가나팀</h3>
                            <h2>나하나</h2>
                        </div>
                        <div><img src="/img/s4_2.png" alt=""></div>
                    </div>
                </li> -->
</ul>
        </div>
    </div>
</section>


<section id="s7">
    <!--js(/js/s7.js)-->
    <div class="s7_div s_div">
        <div class="s7_top">
            <div class="s_text s7_text">
                <h2>앱 하나로 간편하게</h2>
                <p>One app, your ride</p>
            </div>
        </div>
        <div class="s7_bottom">
            <div>
                <div class="s7_b_top">
                    <div class="app">
                        <div><a href="https://play.google.com/store/apps/details?id=com.callmart.CorpOrder&amp;pli=1" target="_blank"><img src="/img/playstore2-2.png" alt=""></a></div>
                        <div><a href="https://apps.apple.com/kr/app/%EC%B2%9C%EC%82%AC%EB%8C%80%EB%A6%AC-%EB%8C%80%EB%A6%AC%EC%9A%B4%EC%A0%84-%EB%B0%8F-vip-%EB%AA%A8%EB%B9%8C%EB%A6%AC%ED%8B%B0-%EC%84%9C%EB%B9%84%EC%8A%A4/id408188595" target="_blank"><img src="/img/appstore2-2.png" alt=""></a></div>
                    </div>
                </div>
                <div class="s7_b_center">
                    <img src="/img/appscreen_union.png" alt="" style="max-width: 100%;">
                 </div>
                <div class="s7_b_botoom">
                    <div class="text">
                        <h2>모두의 선택! 맞춤형 법인 전용 대리 서비스</h2>
                        <p>일반 호출부터 예약대리, 일일기사 등 기업 저뇽 서비스를 이용 가능합니다.</p>
                        <p>개인서비스도 이용 가능합니다.</p>
                    </div>
                    <ul>
                        <li>
                            <h2>차량과 기사가 동시에 필요할 때</h2>
                            <div><img src="/img/s7_b_b_1.png" alt=""></div>
                        </li>
                        <li>
                            <h2>골프 일정 수행기사가 필요할 때</h2>
                            <div><img src="/img/s7_b_b_2.png" alt=""></div>
                        </li>
                        <li>
                            <h2>업무 일정 수행기사가 필요할 때</h2>
                            <div><img src="/img/s7_b_b_3.png" alt=""></div>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
    </div>
</section>

<section id="s8">
    
    <div class="s8_div s_div">
        <div class="s8_top">
            <div class="s_text">
                <h2>엔젤플러스 천사대리는 <span class="s8_span">5,000여 법인고객의</span> 이동을 맡고 있습니다.</h2>
                <p>Business Partner Clients</p>
            </div>
        </div>
        <div class="s8_bottom">
            <ul class="bxslider">
                
                <li><img src="/img/partner/partner_01.png"></li>
                <li><img src="/img/partner/partner_02.png"></li>
                <li><img src="/img/partner/partner_03.png"></li>
                <li><img src="/img/partner/partner_04.png"></li>
                <li><img src="/img/partner/partner_05.png"></li>
                <li><img src="/img/partner/partner_06.png"></li>
                <li><img src="/img/partner/partner_07.png"></li>
                <li><img src="/img/partner/partner_08.png"></li>
                <li><img src="/img/partner/partner_09.png"></li>
                <li><img src="/img/partner/partner_010.png"></li>
                <li><img src="/img/partner/partner_011.png"></li>
                <li><img src="/img/partner/partner_012.png"></li>
                <li><img src="/img/partner/partner_013.png"></li>
                <li><img src="/img/partner/partner_014.png"></li>
                <li><img src="/img/partner/partner_015.png"></li>
                <li><img src="/img/partner/partner_016.png"></li>
                <li><img src="/img/partner/partner_017.png"></li>
                <li><img src="/img/partner/partner_018.png"></li>
                <li><img src="/img/partner/partner_019.png"></li>
                <li><img src="/img/partner/partner_020.png"></li>
                <li><img src="/img/partner/partner_021.png"></li>
                <li><img src="/img/partner/partner_022.png"></li>
                <li><img src="/img/partner/partner_023.png"></li>
                <li><img src="/img/partner/partner_024.png"></li>
                <li><img src="/img/partner/partner_025.png"></li>
                <li><img src="/img/partner/partner_026.png"></li>
                <li><img src="/img/partner/partner_027.png"></li>
                <li><img src="/img/partner/partner_028.png"></li>
                <li><img src="/img/partner/partner_029.png"></li>
                <li><img src="/img/partner/partner_030.png"></li>
                <li><img src="/img/partner/partner_031.png"></li>
                <li><img src="/img/partner/partner_032.png"></li>
                <li><img src="/img/partner/partner_033.png"></li>
                <li><img src="/img/partner/partner_034.png"></li>
                <li><img src="/img/partner/partner_035.png"></li>
                <li><img src="/img/partner/partner_036.png"></li>
                <li><img src="/img/partner/partner_037.png"></li>
                <li><img src="/img/partner/partner_038.png"></li>
                <li><img src="/img/partner/partner_039.png"></li>
                <li><img src="/img/partner/partner_040.png"></li>
                <li><img src="/img/partner/partner_041.png"></li>
                <li><img src="/img/partner/partner_042.png"></li>
                <li><img src="/img/partner/partner_043.png"></li>
                <li><img src="/img/partner/partner_044.png"></li>
                <li><img src="/img/partner/partner_045.png"></li>
                <li><img src="/img/partner/partner_046.png"></li>
                <li><img src="/img/partner/partner_047.png"></li>
                <li><img src="/img/partner/partner_048.png"></li>
                <li><img src="/img/partner/partner_049.png"></li>
                <li><img src="/img/partner/partner_050.png"></li>
            </ul>
        </div>
    </div>
    <script>
        $('.bxslider').bxSlider({
        minSlides: 3,
        maxSlides: 10,
        slideWidth: 300,
        slideMargin: 15,
        ticker: true,
        speed: 100000
    });
    </script>
</section>

<section id="s9">
    
    <div class="s9_div s_div">
        <div class="s9_top">
            <div class="s_text">
                <h2>자주 묻는 질문</h2>
                <p>FAQ</p>
            </div>
        </div>
        <div class="xans-element- xans-board xans-board-listpackage-3 xans-board-listpackage xans-board-3 s9_bottom "><!--
                $count = 10
                $login_page_url = /member/login.html
                $deny_access_url = /index.html
            -->
<div class="xans-element- xans-board xans-board-list-3 xans-board-list xans-board-3 s9_b_div xans-record-"><div class="s9_b_q">
                    <!-- <span class="s9_arrow">∨</span> -->
                    <span class="s9_arrow"><img src="/img/icon/vector.png" alt=""></span>
                    FAQ게시판 테스트[제목]                </div>
<div class="s9_b_a">
                    <p>FAQ게시판 테스트[내용]</p>                </div>
</div>
<div class="xans-element- xans-board xans-board-list-3 xans-board-list xans-board-3 s9_b_div xans-record-"><div class="s9_b_q">
                    <!-- <span class="s9_arrow">∨</span> -->
                    <span class="s9_arrow"><img src="/img/icon/vector.png" alt=""></span>
                    대리운전 이용하다가 사고가 발생했어요. 어떻게 하죠?                </div>
<div class="s9_b_a">
                    <p>대리기사님이 운행하시는 도중에 발생하는 사고는 대리기사님이 가입한 자동차 보험을 적용받습니다.</p><p>고객님은 대리운전을 접수하셨던 엔젤플러스 고객센터 번호로 연락주셔서 사고 발생 사실과 처리 요청을 해주세요.</p><p>기사님은 사고 현장 및 차량 파손과 관련한 사진을 촬영하신 후 엔젤플러스 상황실로 사고 발생 사실을 안내해주시고 대리기사님이 가입하신 자동차 보험사로 보험 접수를 진행해주세요.</p>                </div>
</div>
<div class="xans-element- xans-board xans-board-list-3 xans-board-list xans-board-3 s9_b_div xans-record-"><div class="s9_b_q">
                    <!-- <span class="s9_arrow">∨</span> -->
                    <span class="s9_arrow"><img src="/img/icon/vector.png" alt=""></span>
                    사고 발생 시 보장 범위가 궁금해요                </div>
<div class="s9_b_a">
                    <p>엔젤플러스 법인 서비스 이용 중 사고 발생 시 자동차보험은 물론 포상배상책임보험까지 추가로 보상이 가능합니다.</p><p>자동차보험 + 포괄배상책임보험으로 보장 가능한 자세한 보험보상한도는 아래와 같습니다.</p><p><br></p><p>대인2 : 무한</p><p>대물 : 최대 2억 원</p><p>자차 : 최대 8천만 원</p>                </div>
</div>
<div class="xans-element- xans-board xans-board-list-3 xans-board-list xans-board-3 s9_b_div xans-record-"><div class="s9_b_q">
                    <!-- <span class="s9_arrow">∨</span> -->
                    <span class="s9_arrow"><img src="/img/icon/vector.png" alt=""></span>
                    대리운전 이용 시 결제는 어떻게 하나요?                </div>
<div class="s9_b_a">
                    <p>엔젤플러스와 이용 계약을 하신 법인 임직원의 경우 대리운전 이용요금은 기본적으로 후불 결제됩니다.</p><p>임직원분들은 대리운전 이용 시 직접 대리기사님에게 결제하실 필요가 없습니다.</p><p>작성된 계약서의 내용에 따라 법인에 이용대금을 청구드리고 있습니다.</p><p>회사와 관계없이 이용하고 싶은 경우 및 일반 고객께서는 대리운전 이용 후 현금 혹은 카드 결제가 가능합니다.</p><p>대리운전 접수 시 결제 방법에 대해 함께 말씀해주시면 요청하신대로 처리를 도와드리고 있습니다.</p><p>현금 결제는 대리 운전 종료 후 대리기사님에게 현금을 지급해주시고 카드 결제는 카드 정보를 전달(전화 접수인 경우), 카드를 등록(어플 접수인 경우)해주시면 운행 종료 후 자동으로 결제가 진행됩니다.</p>                </div>
</div>
<div class="xans-element- xans-board xans-board-list-3 xans-board-list xans-board-3 s9_b_div xans-record-"><div class="s9_b_q">
                    <!-- <span class="s9_arrow">∨</span> -->
                    <span class="s9_arrow"><img src="/img/icon/vector.png" alt=""></span>
                    대기요금은 어떻게 계산되나요 ?                </div>
<div class="s9_b_a">
                    <p>예약 시간에 정시 출발하지 못하는 경우 최초 10분까지는 대기 요금이 없습니다.</p><p>최초 10분이 경과하면 10분 당 3,000원의 대기 요금이 발생합니다.</p>                </div>
</div>
<div class="xans-element- xans-board xans-board-list-3 xans-board-list xans-board-3 s9_b_div xans-record-"><div class="s9_b_q">
                    <!-- <span class="s9_arrow">∨</span> -->
                    <span class="s9_arrow"><img src="/img/icon/vector.png" alt=""></span>
                    내가 이용하려고 하는 구간 요금이 궁금해요                </div>
<div class="s9_b_a">
                    <p><span style="font-size: 16px;">엔젤플러스 홈페이지에서 예상 요금을 조회할 수 있습니다.</span></p><p><span style="font-size: 16px;">페이지 링크<a href="#" target="_blank">(https://www.1588-1004.co.kr/enterprise/service1.html)</a>로 접속해주세요.</span></p><p><span style="font-size: 16px;">이 요금은 법인 서비스 기준 예상요금입니다. 실제 요금은 날씨, 경유 발생, 교통 여건 등 상세 여건에 따라 차이가 날 수도 있습니다.</span></p>                </div>
</div>
<div class="xans-element- xans-board xans-board-list-3 xans-board-list xans-board-3 s9_b_div xans-record-"><div class="s9_b_q">
                    <!-- <span class="s9_arrow">∨</span> -->
                    <span class="s9_arrow"><img src="/img/icon/vector.png" alt=""></span>
                    법인 이용 계약을 하고 싶어요.                </div>
<div class="s9_b_a">
                    <p><span style="font-size: 16px;">엔젤플러스 홈페이지에서 언제든 법인 계약 신청을 하실 수 있습니다.</span></p><p><span style="font-size: 16px;">홈페이지 메인 화면 우측 하단에 마름모가 들어간 둥근 버튼을 클릭하시고 이용문의를 클릭하면 문의 신청을 작성할 수 있습니다.</span></p><p><span style="font-size: 16px;">문의를 완료하시면 계약 담당자가 2 영업일 이내에 제출해주신 연락처로 직접 전화를 드려 서비스와 이용 계약에 관련하여 상세하게 안내드립니다.</span></p><p><span style="font-size: 16px;">전화로도 계약 문의를 하실 수 있습니다.</span></p><p><span style="font-size: 16px;">법인 계약 문의는 24시간 언제든지 1644-2211로 문의해주세요.</span></p>                </div>
</div>
</div>
    </div>
</section>







<section id="s10">
    <div class="s10_div s_div">
        <div class="s10_top">
            <div class="s_text">
                <h2>더 궁금하신 점은 담당자가 안내드립니다.</h2>
                <p>If you have any questions, our team will assist you.</p>
            </div>
        </div>
        <div class="s10_bottom">
            <div>

<div class="xans-element- xans-board xans-board-writepackage-3001 xans-board-writepackage xans-board-3001 startups_1 "><form id="boardWriteForm" name="" action="/exec/front/Board/write/3001" method="post" target="_self" enctype="multipart/form-data" >
<input id="board_no" name="board_no" value="3001" type="hidden"  />
<input id="product_no" name="product_no" value="0" type="hidden"  />
<input id="move_write_after" name="move_write_after" value="///list.html?board_no=3001" type="hidden"  />
<input id="cate_no" name="cate_no" value="" type="hidden"  />
<input id="bUsePassword" name="bUsePassword" value="" type="hidden"  />
<input id="order_id" name="order_id" value="" type="hidden"  />
<input id="is_post_checked" name="is_post_checked" value="" type="hidden"  />
<input id="isExceptBoardUseFroalaImg" name="isExceptBoardUseFroalaImg" value="" type="hidden"  />
<input id="isGalleryBoard" name="isGalleryBoard" value="" type="hidden"  />
<input id="d5e468f68e3a9b" name="d5e468f68e3a9b" value="121ad6a2effefb4a36c8459860943b35" type="hidden"  /><div class="xans-element- xans-board xans-board-write-3001 xans-board-write xans-board-3001"><!--
            $login_page_url = /member/login.html
            $deny_access_url = /index.html
        -->
<div class="ec-base-table typeWrite board_div ">
            <table border="1">
                <caption>글쓰기 폼</caption>
                <colgroup>
                    <col style="width:190px;">
                    <col style="width:auto;">
                </colgroup>
                <!--★여기부터-->
                <tbody>
                    <tr>
                        <td><input type="text" class="d_name text_blue" autocomplete="one-time-code" placeholder="이름(필수)"></td>
                    </tr>
                    <tr>
                        <td><input type="text" class="d_tel text_blue" autocomplete="one-time-code" placeholder="연락처(필수)"></td>
                    </tr>
                    <tr>
                        <td><input type="text" class="d_email" autocomplete="one-time-code" placeholder="이메일(선택)"></td>
                    </tr>
                    <tr>
                        <td><input type="text" id="d_size" class="d_size" autocomplete="one-time-code" placeholder="회사명(선택)"></td>
                    </tr>
                    <tr class="w_100">
                        <td>
                            <!--자동완성막기-->
                        <!-- <input type="text" style="position:absolute;left:-9999px"> -->
                            <!--자동완성막기-->
                            <textarea class="d_content text_blue" placeholder="기타문의사항(필수)"></textarea>
                        </td>
                    </tr>
                   
                    <tr style="display:none">
                        <th scope="row">제목</th>
                        <td> <input id="subject" name="subject" fw-filter="isFill" fw-label="제목" fw-msg="" class="inputTypeText" placeholder="" maxLength="125" value="" type="text"  />  </td>
                    </tr>
                    <tr class="" style="display:none">
                        <th scope="row">이름</th>
                        <td><input id="writer" name="writer" fw-filter="isFill" fw-label="작성자" fw-msg="" class="inputTypeText" placeholder="" maxLength="50" value="" type="text"  /></td>
                    </tr>
                    <tr class="displaynone" style="display:none">
                        <th scope="row">이메일</th>
                        <td><input id="email1" name="email1" fw-filter="" fw-label="이메일" fw-alone="N" fw-msg="" class="mailId" value="" type="text"  />@<input id="email2" name="email2" fw-filter="" fw-label="이메일" fw-alone="N" fw-msg="" class="mailAddress" readonly="readonly" value="" type="text"  /><select id="email3" fw-filter="" fw-label="이메일" fw-alone="N" fw-msg=""  >
<option value="" selected="selected">- 이메일 선택 -</option>
<option value="naver.com">naver.com</option>
<option value="daum.net">daum.net</option>
<option value="nate.com">nate.com</option>
<option value="hotmail.com">hotmail.com</option>
<option value="yahoo.com">yahoo.com</option>
<option value="empas.com">empas.com</option>
<option value="korea.com">korea.com</option>
<option value="dreamwiz.com">dreamwiz.com</option>
<option value="gmail.com">gmail.com</option>
<option value="etc">직접입력</option>
</select></td>
                    </tr>
                    <tr class="displaynone" style="display:none">
                        <th scope="row">평점</th>
                        <td></td>
                    </tr>
                    <tr>
                        <td colspan="2" class="clear" style="display:none">
                            
            <!-- CSS -->
            <link rel="stylesheet" href="//img.echosting.cafe24.com/editors/froala/3.2.2/css/froala_editor.pkgd.min.css?vs=2511191438">
            <link rel="stylesheet" href="//img.echosting.cafe24.com/editors/froala/css/themes/ec_froala.css?vs=2511191438">

            <!-- HTML -->
            <textarea style="width: 100%;" name="content" id="content" class="ec-fr-never-be-duplicated"></textarea>
                <input type="hidden" id="content_hidden" fw-filter="isSimplexEditorFill" fw-label="내용" value="EC_FROALA_INSTANCE" />
                
            <!-- JavaScript -->
            <script type="text/javascript" src="//img.echosting.cafe24.com/editors/froala/js/polyfill.min.js?vs=2511191438"></script>
            <script type="text/javascript" src="//img.echosting.cafe24.com/editors/froala/3.2.2/js/froala_editor.pkgd.min.js?vs=2511191438"></script>
            <script type="text/javascript" src="//img.echosting.cafe24.com/editors/froala/js/i18n/ko_KR.js?vs=2511191438"></script>
        
            <script>
                if (FroalaEditor.PLUGINS && FroalaEditor.PLUGINS.url) delete FroalaEditor.PLUGINS.url; // ECHOSTING-518735
            </script>
        
            <!-- Run Froala Script -->
            <script>
              var EC_FROALA_ID = null;
              // isSimplexEditorFill 체크시에 필요함
              var EC_FROALA_INSTANCE = null;
              // scroll 버그 대응을 위해 필요.
              var fScrollPosition = 0;
              // 다중 이미지 삽입시 생기는 버그 대응
              var iCheckedImageListCount  = 0;
              var aCheckedImageList = [];
              var aInsertedImageList = [];
              var isBeforeImageRemove = false;
              
              (function() {
                var d = "";
                try {
                    var o = {"key":"DUA2yF3G1E1A5A2A2pZGCTRSAPJWTLPLZHTQQe1JGZxC4B3A3E2B5A1E1E4I1C2==","toolbarSticky":false,"theme":"ec-froala","attribution":false,"htmlRemoveTags":["script"],"htmlAllowedEmptyTags":["*"],"iframe":true,"iframeStyle":".fr-view{font-size: 12px;}","iframeStyleFiles":["\/\/img.echosting.cafe24.com\/editors\/froala\/css\/froala_style.min.css?vs=2511191438"],"heightMin":400,"language":"ko_KR","paragraphFormatSelection":true,"fontFamilySelection":true,"fontSize":["8","9","10","12","14","16","18","20","22","24","26","28","30"],"fontSizeSelection":true,"linkInsertButtons":["linkBack"],"quickInsertButtons":["ul","ol","hr"],"codeMirror":false,"entities":"&#60;&#62;","imageEditButtons":["imageAlign","imageRemove","|","imageLink","linkOpen","linkEdit","linkRemove","-","imageDisplay","imageStyle","imageAlt","imageSize"],"tableEditButtons":[],"tableInsertHelper":false,"imageDefaultMargin":0,"imageDefaultWidth":0,"imageUpload":false,"imageInsertButtons":["imageUpload"],"imageMaxSize":5242880,"filesManagerMaxSize":5242880,"toolbarButtons":{"moreText":{"buttons":["paragraphFormat","fontFamily","fontSize","bold","italic","underline","strikeThrough","textColor","backgroundColor","subscript","superscript","clearFormatting"],"buttonsVisible":5},"moreParagraph":{"buttons":["formatOL","formatUL","alignLeft","alignCenter","alignRight","outdent","indent","alignJustify","lineHeight"],"buttonsVisible":5},"moreRich":{"buttons":["insertTable","insertHR","emoticons","specialCharacters"],"buttonsVisible":0},"moreMisc":{"buttons":["undo","redo","fullscreen","html","print","spellChecker","selectAll"],"align":"right","buttonsVisible":2}},"toolbarButtonsSM":{"moreText":{"buttons":["paragraphFormat","fontFamily","fontSize","bold","italic","underline","strikeThrough","textColor","backgroundColor","subscript","superscript","clearFormatting"],"buttonsVisible":4},"moreParagraph":{"buttons":["formatOL","formatUL","alignLeft","alignCenter","alignRight","outdent","indent","alignJustify","lineHeight"],"buttonsVisible":2},"moreRich":{"buttons":["insertTable","insertHR","emoticons","specialCharacters"],"buttonsVisible":0},"moreMisc":{"buttons":["undo","redo","fullscreen","html","print","spellChecker","selectAll"],"align":"right","buttonsVisible":2}},"toolbarButtonsXS":{"moreText":{"buttons":["paragraphFormat","textColor","backgroundColor","bold","italic","underline","strikeThrough"],"buttonsVisible":1},"moreParagraph":{"buttons":["formatOL","formatUL","alignLeft","alignCenter","alignRight"],"buttonsVisible":0},"moreRich":{"buttons":["insertLink"]},"moreMisc":{"buttons":["undo","redo","html"],"buttonsVisible":0,"align":"right"}},"htmlDoNotWrapTags":["script","style","meta","link"],"htmlAllowedStyleProps":[".*"],"htmlAllowedTags":[".*"],"htmlAllowedAttrs":[".*"],"fontFamily":{"Dotum,sans-serif":"Dotum","Gulim,sans-serif":"Gulim","Batang,sans-serif":"Batang","Gungsuh,sans-serif":"Gungsuh","Arial,Helvetica,sans-serif":"Arial","Tahoma,Geneva,sans-serif":"Tahoma","Verdana,Geneva,sans-serif":"Verdana","Fixedsys,sans-serif":"Fixedsys","'Times New Roman',Times,serif":"Times New Roman","helvetica,sans-serif":"Helvetica","sans-serif":"Sans-serif","palatino,sans-serif":"Palatino","'Comic Sans MS',sans-serif":"Comic Sans MS","sand,sans-serif":"Sand","'Courier New',sans-serif":"Courier New","courier,sans-serif":"Courier","monospace,sans-serif":"Monospace","Georgia,serif":"Georgia","SimSun,sans-serif":"SimSun","SimHei,sans-serif":"SimHei","'MS PGothic',sans-serif":"MS PGothic","'MS PMincho',sans-serif":"MS PMincho","'MS UI PGothic',sans-serif":"MS UI PGothic","Meiryo,sans-serif":"Meiryo"},"colorsText":["#FF0000","#FF6C00","#FFAA00","#FFEF00","#A6CF00","#009E25","#00B0A2","#0075C8","#3A32C3","#7820B9","#EF007C","#000000","#252525","#464646","#636363","#7D7D7D","#9A9A9A","#FFE8E8","#F7E2D2","#F5EDDC","#F5F4E0","#EDF2C2","#DEF7E5","#D9EEEC","#C9E0F0","#D6D4EB","#E7DBED","#F1E2EA","#ACACAC","#C2C2C2","#CCCCCC","#E1E1E1","#EBEBEB","#FFFFFF","#E97D81","#E19B73","#D1B274","#CFCCA2","#61B977","#53AEA8","#518FBB","#6A65BB","#9A54CE","#E573AE","#5A504B","#767B86","#951015","#6E391A","#785C25","#5F5B25","#4C511F","#1C4827","#0D514C","#1B496A","#2B285F","#45245B","#721947","#352E2C","#3C3F45"],"colorsBackground":["#FF0000","#FF6C00","#FFAA00","#FFEF00","#A6CF00","#009E25","#00B0A2","#0075C8","#3A32C3","#7820B9","#EF007C","#000000","#252525","#464646","#636363","#7D7D7D","#9A9A9A","#FFE8E8","#F7E2D2","#F5EDDC","#F5F4E0","#EDF2C2","#DEF7E5","#D9EEEC","#C9E0F0","#D6D4EB","#E7DBED","#F1E2EA","#ACACAC","#C2C2C2","#CCCCCC","#E1E1E1","#EBEBEB","#FFFFFF","#E97D81","#E19B73","#D1B274","#CFCCA2","#61B977","#53AEA8","#518FBB","#6A65BB","#9A54CE","#E573AE","#5A504B","#767B86","#951015","#6E391A","#785C25","#5F5B25","#4C511F","#1C4827","#0D514C","#1B496A","#2B285F","#45245B","#721947","#352E2C","#3C3F45"],"docId":"content"};
                    // IE tableEditbuttons 이슈
                    o["tableEditButtons"] = FroalaEditor.DEFAULTS.tableEditButtons.filter(function(tableEditButtonName) {
                        return tableEditButtonName.indexOf("Style") === -1;
                    });

                    o["events"] = {
                        "filesManager.beforeUpload": function(files) {
                            this.opts.filesManagerUploadURL = getConvertUrlBeforeUpload(this.opts.filesManagerUploadURL);
                        },
                        "image.beforeUpload": function(images) {
                            this.opts.imageUploadURL = getConvertUrlBeforeUpload(this.opts.imageUploadURL);
                        },

                        "image.inserted": function(oImage, response) {
                            var sInstanceId = "content";
                            // 파일업로더로 이미지가 넘어오는경우에는 itslog가 이미 생성된 이미지기때문에 처리하지않음.
                            if ((sInstanceId === "product_description" || sInstanceId === "product_description_mobile") && typeof response !== "undefined") {
                                oImage.attr("data-use_its", true);
                            }
                           
                            if (iCheckedImageListCount >= 0) {
                                iCheckedImageListCount++;
                                aInsertedImageList.push(oImage);
                                
                                if (aCheckedImageList.length === iCheckedImageListCount || aCheckedImageList.length === 0) {
                                    // 마지막 이미지
                                    for (var i = 0; i < aInsertedImageList.length; i++) {
                                        aInsertedImageList[i].after("<br>");
                                    }
                                    
                                    // 리셋
                                    iCheckedImageListCount = 0;
                                    aCheckedImageList = [];
                                    aInsertedImageList = [];
                                }
                            }
                        },
                        "image.error": function (error, response) {
                            if (typeof JSON != "undefined") {
                                r = JSON.parse(response);
                                alert(r["error"]);
                            }
                        },
                        "image.loaded": function($img) {
                            // IE에서 이미지 로드 후, 커서 위치 재조정
                            if (/(trident).+rv[:\s]([\w\.]{1,9}).+like\sgecko/i.test(navigator.userAgent)) {
                                var _this = this;
                                var _img = $img[0];
                                setTimeout(function() {
                                  _this.selection.setAfter(_img);
                                  _this.selection.restore();
                                }, 300);
                            }
                        },
                        "filesManager.error": function (error, response) {
                            if (typeof JSON != "undefined") {
                                r = JSON.parse(response);
                                alert(r["error"]);
                            }
                        },
                        "commands.before": function(sCommand) {
                            // 코드뷰 토글시
                            if (sCommand === "html") {
                                var sContent = this.el.innerHTML;
                                sContent = sContent.replace(/<\/?null>/gi, "");
                                this.el.innerHTML = getReplaceZeroWidthSpace(sContent);
                                replaceToFroalaNewLine(this);
                            }
                            
                            // 전체화면 모드 켜기
                            if (sCommand === "fullscreen" && !this.fullscreen.isActive()) {
                                this.$box[0].setAttribute("data-window-scroll-y", window.scrollY || window.pageYOffset);
                            }
                            // 다중 이미지 삽입
                            if (sCommand === "insertAll") {
                                var popup = this.popups.get("filesManager.insert");
                                aCheckedImageList = popup.find(".fr-files-checkbox .fr-file-insert-check:checked")
                            }

                            if (sCommand === "insertSpecialCharacter") {
                                setScrollPosition(this, getIframeCursorPoint(this));
                            }
                        },
                        "commands.after": function(sCommand) {
                            if (sCommand === "html") {
                                removeFroalaNewLine(this);
                            }
                            
                            if (sCommand === "insertFiles") {
                                var enableButton= document.querySelector(".fr-trim-button.fr-plugins-enable");
                                if (enableButton) enableButton.click();
                            }
                            
                            if (sCommand === "selectAll") {
                                this.el.focus();
                            }
                            
                            // 전체 화면 토글시에 컨텐츠 높이를 정상적으로 반영하지못하는 이슈 대응
                            if (sCommand === "fullscreen") {
                                var _this = this;
                                setTimeout(function() {
                                    _this.size.syncIframe();
                                }, 300);
                                
                                if (this.fullscreen.isActive() === false) {
                                    window.scrollTo(0, this.$box[0].getAttribute("data-window-scroll-y"));
                                }
                            }
                            
                            if (sCommand === "insertSpecialCharacter") {
                                this.$wp.get(0).scrollTop = fScrollPosition;
                            }
                        },
                        "focus": function() {
                            if (this.iframe_document) {
                                var iframeHeight = this.iframe_document.body.scrollHeight;
                                this.$iframe[0].style.height = iframeHeight + "px";
                            }
                            
                            this.el.innerHTML = getReplaceZeroWidthSpace(this.el.innerHTML);
                        },

                        "image.beforeRemove": function(aImage) {
                            isBeforeImageRemove = true;
                            var cursorPoint = aImage[0].offsetTop; // 제거 대상 이미지의 offsetTop 값으로 정의
                            setScrollPosition(this, cursorPoint);
                        },
                        "image.removed": function() {
                            if (isBeforeImageRemove === true) {
                                this.$wp.get(0).scrollTop = fScrollPosition; // 에디터 자체 버그동작이 수행 된 후 계산 해 둔 값으로 스크롤 위치를 이동
                            }
                            isBeforeImageRemove = false;
                        },
                        "keydown": function(e) {
                            if (isScrollFix(this, e) === true) {
                                setScrollPosition(this, getIframeCursorPoint(this));
                            }
                        },
                        "keyup": function(e) {
                            if (isScrollFix(this, e) === true) {
                                this.$wp.get(0).scrollTop = fScrollPosition;
                            }
                        },
                        "paste.before": function() {
                            if (this.fullscreen.isActive() === false) {
                                setScrollPosition(this, getIframeCursorPoint(this));
                            } 
                        },
                        "paste.after": function(e) {
                            if (this.fullscreen.isActive() === false) {
                                this.$wp.get(0).scrollTop = fScrollPosition;
                            } 
                        },
                        "codeView.update": function() {
                            this.el.innerHTML = getReplaceZeroWidthSpace(this.el.innerHTML);
                            this.el.innerHTML = decodeUriAttribute(this.el.innerHTML);
                        }
                    };

                    EC_FROALA_INSTANCE = new FroalaEditor("textarea#content.ec-fr-never-be-duplicated", o, function() {
                        EC_FROALA_ID = this.id;
                        if (d != "") {
                            this.el.innerHTML = this.clean.html(d);
                            // 타겟 textarea 태그에 change 트리거링
                            this.undo.saveStep();
                        }
                        var script = document.createElement("script");
                        script.src = "//img.echosting.cafe24.com/editors/froala/js/polyfill.min.js?vs=2511191438";
                        this.$iframe.get(0).contentWindow.document.head.appendChild(script);
                        if (this.el.innerHTML === "<br>") {
                            this.el.innerHTML = "<p><br></p>";
                        }
                    });

                    EC_FROALA_INSTANCE.$iframe[0].setAttribute("id", "content" + "_IFRAME");
                    EC_FROALA_INSTANCE.$iframe[0].contentWindow.document.body.setAttribute("id", "content" + "_BODY");

                    EC_FROALA_INSTANCE.isEmptyContent = function () {
                        var c = getContentFromFroala(this.id);
                        // 스페이스바만 입력 저장시, validation을 위해 처리
                        var val = c.replace(/\<br\/?\>|\<\/?p\>|\s|&nbsp;/gi, "");
                        if ("" == val) return true;
                        return false;
                    };

                    EC_FROALA_INSTANCE.getContentFromFroala = function() {
                        return getContentFromFroala(this.id);
                    };

                    EC_FROALA_INSTANCE.applyContentToFroala = function(content) {
                        return applyContentToFroala(content, this.id);
                    };

                    EC_FROALA_INSTANCE.setValueBeforeSubmit = function(sSection) {
                        return setValueBeforeSubmit(sSection, this.id);
                    };

                    if (typeof $Editor ===  "undefined") {
                        $Editor = {};
                    }
                    $Editor["content"] = EC_FROALA_INSTANCE;
                } catch (e) {
                    document.getElementById("content").value = d;
                    console.error(e);
                } finally {
                }
              })();
              
              function decodeUriAttribute(content) {
                  return content.replace(/(?:href=|src=)(?:"([^"]+)|'([^']+))[^>]/g, function (match, p1, p2) {
                      var p = p1 ? p1 : p2;
                      if (/%20|\s|%3A/g.test(p)) {
                          try {
                              return match.replace(p, decodeURIComponent(p).trim());
                          } catch (e) {
                              return match;
                          }
                      } else {
                          return match;
                      }
                  });
              }

              //플로알라 에디터 내용 조회
              function getContentFromFroala(id) {
                  try {
                    var sFroalaId = (typeof id === "undefined") ? EC_FROALA_ID : id;
                    var oEditor = FroalaEditor.INSTANCES.filter(function (instance) {
                      return instance.id === sFroalaId;
                    });
                    if (oEditor[0].codeView.isActive()) {
                      oEditor[0].codeView.toggle();
                    }

                    oEditor[0].el.innerHTML = decodeUriAttribute(oEditor[0].el.innerHTML);
                    
                    return oEditor[0].el.innerHTML;

                  } catch (e) {
                    console.error(e);
                    return false;
                  }
              }

              //플로알라 에디터 내용 적용
              function applyContentToFroala(content, id) {
                  try {
                    var sFroalaId = (typeof id === "undefined") ? EC_FROALA_ID : id;
                    var oEditor = FroalaEditor.INSTANCES.filter(function (instance) {
                      return instance.id === sFroalaId;
                    });

                    oEditor[0].el.innerHTML = oEditor[0].clean.html(content);

                    // textarea 태그에 change 트리거링
                    oEditor[0].undo.saveStep();
                    return true;
                  } catch (e) {
                    console.error(e);
                    return false;
                  }
              }

              // useclasses 옵션 사용시, froala 커스텀 속성값 (fr-draggable) 제거
              function setValueBeforeSubmit(sSection, id) {
                try {
                    var sFroalaId = (typeof id === "undefined") ? EC_FROALA_ID : id;
                    var oEditor = FroalaEditor.INSTANCES.filter(function (instance) {
                      return instance.id === sFroalaId;
                    });

                    var contents = oEditor[0].el.innerHTML;
                    document.getElementById(sSection).value = contents.replace(/\sclass=("|')fr-draggable("|')|\s?fr-draggable\s?|<\/?null>/gi, "");

                    return true;
                  } catch (e) {
                    console.error(e);
                    return false;
                  }
              }

              //플로알라 front reset CSS 가져오기
              //Deprecated
              function getFroalaResetCSS() {
                return "//img.echosting.cafe24.com/editors/froala/css/froala_editor_reset.css?vs=2511191438;"
              }

              //플로알라 front style CSS 가져오기
              function getFroalaStyleCSS() {
                return "//img.echosting.cafe24.com/editors/froala/css/froala_style.min.css?vs=2511191438";
              }

              //플로알라 front style EC CSS 가져오기
              function getFroalaECStyleCSS() {
                return "//img.echosting.cafe24.com/editors/froala/css/froala_style_ec.min.css?vs=2511191438";
              }

              // 파일 업로드시 랜덤한 파라미터 값 추가
              function getConvertUrlBeforeUpload(sUploadUrl) {
                var aSplitUrl = sUploadUrl.split("?");
                var oParam = getParameterUploadUrl(aSplitUrl[1]);

                return decodeURIComponent(aSplitUrl[0] + "?" + "uploadPath=" + oParam["uploadPath"] + "&uploadId=" + Math.floor((Math.random() * 100000)).toString());
              }

             function getParameterUploadUrl(sQueryString) {
                var aParam = {};

                if (sQueryString) {
                    var aFields = sQueryString.split("&");
                    var aField  = [];
                    for (var i=0; i<aFields.length; i++) {
                        aField = aFields[i].split("=");
                        aParam[aField[0]] = aField[1];
                    }
                }
                return aParam;
            }

            // 스크롤 위치 수정해야하는지 확인
            function isScrollFix (oEditor, event) {
                if (oEditor.fullscreen.isActive() === true) {
                    return false;
                }
                var sKey = event.key.toUpperCase();
                var bResult = false;
                if (sKey === "ENTER") {
                    // 구문의 중간 지점의 엔터 입력만 요구 조건에 해당함
                    bResult = oEditor.selection.get().focusNode !== oEditor.$el.get(0);
                } else if (sKey === "BACKSPACE" || sKey === "DELETE") {
                    bResult = true;
                }
                return bResult;
            }
            
            // 스크롤 위치 수정
            function setScrollPosition (oEditor, fCursorPoint) {
                var oContentWrapper = oEditor.$wp.get(0); // 에디터 편집 영역 컨테이너
                var fStartPoint = oContentWrapper.scrollTop; // 보여지는 편집 영역의 시작 지점
                var fEndPoint = oContentWrapper.scrollTop + (oContentWrapper.clientHeight - 20); // 보여지는 편집 영역의 끝 지점 (여백 포함)
 
                if (fCursorPoint > 0 && fCursorPoint < fStartPoint) {
                    // 커서가 보여지는 영역보다 위에 위치
                    fScrollPosition = fCursorPoint;
                } else if (fCursorPoint > 0 && fCursorPoint > fEndPoint) {
                    // 커서가 보여지는 영역보다 아래에 위치
                    fScrollPosition = fCursorPoint - (oContentWrapper.clientHeight - 20); // 여백 포함
                } else {
                    // 값이 0 이라서 무효화 됐거나, 보여지는 영역에 있는 경우 - 위치를 그대로 유지
                    fScrollPosition = fStartPoint;
                }
            }
            
            // 커서 포인트 반환
            function getIframeCursorPoint(editor) {
                var iframeDocument = editor.$iframe.get(0).contentDocument;
                var anchorNode = iframeDocument.getSelection().anchorNode;
                var iframeRange = iframeDocument.createRange();
                iframeRange.selectNode(anchorNode);
                return iframeRange.getBoundingClientRect().top;
            }
   
            // 폭없는 공백에서 폭과 줄바꿈 없는 공백으로 치환 (폭없는 공백은 플로알라버그로인해 지원하지않음)
            function getReplaceZeroWidthSpace(sContent) {
                return sContent.replace(/\u200B/g, "&#65279;");
            }
            
            // \n 제거되는 사양에대한 대응 : 플로알라에서 코드뷰 토글시 줄바꿈되는 태그로 변경
            function replaceToFroalaNewLine(oEditor) {
                if (oEditor.codeView.isActive() === true) {
                    return;
                }
                
                var oWhiteSpacePreElements = oEditor.$el.get(0).querySelectorAll('*[style*="white-space: pre"], *[style*="white-space:pre"]');
                for (var iIndex = 0; iIndex < oWhiteSpacePreElements.length; iIndex++) {
                    oWhiteSpacePreElements[iIndex].innerHTML = oWhiteSpacePreElements[iIndex].innerHTML.replace(/\n/g, '<span class="fr-newline"></span>');
                }
            }            
            
            // \n 제거되는 사양에대한 대응 : 코드뷰 토글시 줄바꿈 태그 \n으로 변경
            function removeFroalaNewLine(oEditor) {
                if (oEditor.codeView.isActive() === false) {
                    return;
                }
                
                var sCodeViewValue;
                if (typeof oEditor.opts.codeMirror === "function") {
                    // 상품 등록/수정 에디터는 코드미러를 사용하기때문에 분기처리
                    sCodeViewValue = oEditor.$wp.get(0).querySelector(".CodeMirror").CodeMirror.getValue();
                    oEditor.$wp.get(0).querySelector(".CodeMirror").CodeMirror.setValue(sCodeViewValue.replace(/<span class=[',"]fr-newline[',"]><\/span>/g, '\n'));
                } else {
                    sCodeViewValue = oEditor.$wp.get(0).querySelector(".fr-code").value;
                    oEditor.$wp.get(0).querySelector(".fr-code").value = sCodeViewValue.replace(/<span class=[',"]fr-newline[',"]><\/span>/g, '\n');
                }
            }
            
            </script>                        </td>
                    </tr>
                    <tr class="ucc" style="display:none">
                        <th scope="row">UCC URL</th>
                        <td><input id="ucc" name="ucc" size="35" fw-filter="" fw-label="UCC URL" value="" type="text"  /></td>
                    </tr>
                </tbody>
                <!--★여기까지-->


                <!--
                <tbody>
                    <tr class="agree ">
                        <!-- <th scope="row">개인정보 수집 및 <br class="RW">이용 동의</th> -->
                         <!--
                        <td style="display: flex; flex-direction: column;" colspan="2">
                            <div id="privacy_agreement" name="privacy_agreement" style="width: 560px; height: 140px; border: 1px solid #d5d5d5; padding: 5px 6px; font-family: 돋움, Dotum; overflow-y: auto; white-space: pre-wrap;" ><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>&lt; 주식회사 엔젤플러스 &gt;(이하 ‘회사’)은(는)「개인정보 보호법」제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개하며, 회사가 개인정보 처리방침을 개정하는 경우 “웹 사이트” 및 “모바일 서비스”의 공지사항(또는 개별공지)을 통하여 공지합니다.</p><p style='outline: none !important; margin-top: 1.75rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>○ 이 개인정보 처리방침은 2022년 11월 3부터 적용됩니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제1조(개인정보의 수집 및 이용 목적)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회사는 다음의 목적을 위하여 개인정보를 처리합니다.<br style="outline: none !important;">처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며 이용 목적이 변경되는 경우에는 「개인정보 보호법」 제18조에 따라 별도의 동의를 받는 등 필요한 조치를 이행할 예정입니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>1. 회원 관리 및 중복 가입 방지</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회원 가입의사 확인, 회원제 서비스 제공에 따른 본인 식별·인증, 회원자격 유지·관리, 서비스 부정이용 방지, 각종 고지·통지, 문의사항 또는 불만 및 분쟁처리, 공지사항과 같은 최신 정보 전달의 목적으로 개인정보를 처리합니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>2. 서비스 제공 및 대금 정산</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>서비스 이용 예약 및 대금 결제, 이용에 따른 비용 청구서 발송, 금융거래 본인 인증 및 기타 금융 서비스, 요금 추심의 목적으로 개인정보를 처리합니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>3. 사고 처리</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>서비스 이용 중 사고 발생 시 사실 관계 확인, 사고 원인 규명 및 처리의 목적으로 개인정보를 처리합니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>4. 맞춤형 회원 서비스 개발</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>고객 만족도 조사, 접속 및 이용 빈도 파악, 서비스 이용에 대한 통계 추출의 목적으로 개인정보를 처리합니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>5. 마케팅 및 광고에 활용</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>엔젤플러스 광고, 서비스 안내, 혜택 제공 안내의 목적으로 개인정보를 처리합니다.<br style="outline: none !important;">제2조(개인정보의 수집 항목 및 보유 기간) ① 회사는 법령에 따른 개인정보 보유·이용기간 또는 정보주체로부터 개인정보를 수집 시에 동의 받은 개인정보 보유·이용기간 내에서 개인정보를 처리·보유합니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제2조(개인정보의 수집 항목 및 보유 기간)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 법령에 따른 개인정보 보유·이용기간 또는 정보주체로부터 개인정보를 수집 시에 동의 받은 개인정보 보유·이용기간 내에서 개인정보를 처리·보유합니다.</p><table style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse; border-spacing: 0px; width: 1225px; table-layout: fixed; word-break: break-all; border-top: 1px solid rgb(192, 192, 192); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; letter-spacing: normal; orphans: 2; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><thead style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">구분</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">수집 항목</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">수집 방법</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">보유 기간</th></tr></thead><tbody style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 생년월일, 이메일, 통신사, 휴대전화번호, 아이디, 비밀번호, 중복가입확인정보, 연계정보, 차량 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">가입 시 직접 기재 혹은 계약 시 소속 회사로부터 이용자 정보 수신</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">운전면허종류, 운전면허번호, 면허주소, 적성검사 만료일, 면허 발급일, 서비스 이용내역, (위치기반서비스 이용약관 동의 시)위치 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">가입 시 회원이 기재</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 5일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">소속 회사 정보(회사명, 부서명, 직책)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">가입 시 직접 기재 혹은 계약 시 소속 회사로부터 이용자 정보 수신</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">카드사, 카드 번호, 카드 종류, 유효기간, 암호화 된 식별정보(Key)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">카드 결제 서비스 신청 시 회원이 기입</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">IP주소, 서비스 이용기록, 접속 기록, 불량 이용 기록, (위치기반서비스 이용 약관 동의 시)위치 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 과정에서 자동 수집</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">고객이 입력한 실제 이용자 정보(성명, 휴대전화번호, 자택 주소)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 시 회원이 직접 기입</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr></tbody></table><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 1항의 기재된 내용 및 보유 기간에도 불구하고 다음의 사유에 해당하는 경우에는 해당 사유 종료 시까지 이용 및 보유할 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>1. 관계 법령 위반에 따른 수사, 조사 등이 진행중인 경우 : 해당 수사, 조사 종료 시까지</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>2. 서비스 이용에 따른 채권, 채무 관계가 잔존하는 경우 : 해당 채권, 채무 관계 정산 시까지</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>3. 통신비밀보호법 상 홈페이지 또는 모바일 서비스 방문 기록 : 3개월 (통신비밀보호법 시행령 제 41조)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>4. 전자상거래 등에서의 소비자 보호에 관한 법률</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(1) 표시, 광고에 관한 기록 : 6개월 (전자상거래 등에서의 소비자보호에 관한 법률 시행령 제 6조)</p><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(2) 계약 또는 청약철회에 관한 기록 : 5년 (전자상거래 등에서의 소비자보호에 관한 법률 시행령 제 6조)</p><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(3) 대금결제 및 재화 등의 공급에 관한 기록 : 5년 (전자상거래 등에서의 소비자보호에 관한 법률 시행령 제 6조)</p><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(4) 소비자의 불만 또는 분쟁처리에 관한 기록 : 3년 (전자상거래 등에서의 소비자보호에 관한 법률 시행령 제 6조)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>5.국세에 관한 법률</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(1) 세법이 규정하는 모든 거래에 관한 장부 및 증빙서류 : 5년 (국세기본법 제 85조의 3)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>6. 전자금융거래에 관한 법률</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(1) 전자금융 거래에 관한 기록 : 5년 (전자금융거래법 제 22조)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 이용자가 1년 이상 서비스를 이용하지 않고 연체나 채무 불이행 상태가 아닌 경우 해당 이용자의 아이디는 “휴면 회원”으로 처리됩니다. “휴면 회원”으로 처리되면 회원 로그인을 비롯한 모든 서비스 이용이 정지되고, 회사는 “휴면 회원”의 개인정보를 본 조의 제 1항 및 제 2항에 따른 정보 보유의 대상이 아닌 한 다른 ID와 별도로 관리합니다. 회사는 “휴면 회원” 처리 예정일 30일 전 해당 사실을 이메일을 통하여 사전 안내하며, 이용자는 “휴면 회원” 처리일 이후에 “웹 사이트” 및 “모바일 서비스” 상에서 직접 본인 확인을 거쳐 휴면 상태 해지 신청을 하는 즉시 다시 정상적으로 서비스를 이용할 수 있습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제3조(개인정보의 제공)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 개인정보를 제1조(개인정보의 처리 목적)에서 명시한 범위 내에서만 처리하며, 정보주체의 동의, 서비스의 제공에 따른 요금 정산을 위하여 필요한 경우, 법률의 특별한 규정 등 「개인정보 보호법」 제17조 및 제18조에 해당하는 경우에만 개인정보를 제3자에게 제공합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 회사는 다음과 같이 개인정보를 제3자에게 제공하고 있습니다.</p><table style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse; border-spacing: 0px; width: 1225px; table-layout: fixed; word-break: break-all; border-top: 1px solid rgb(192, 192, 192); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; letter-spacing: normal; orphans: 2; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><thead style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">제공받는 자</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">제공 항목</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">목적</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">보유기간</th></tr></thead><tbody style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리 운전 플랫폼 사업자(별첨 사업자 리스트 참조)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 연락처, 주소, 예약 내역, 이용 내역, 결제 정보, 위치 정보, 회사명, 직책, 차량 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리 운전 서비스 제공</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 계약 해지 후 3개월 까지, 분쟁 발생 시에는 분쟁 해결 시까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리 운전 종사자(직접 서비스 제공자)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 연락처, 주소, 위치 정보, 회사명, 직책, 차량 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리 운전 서비스 제공</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 계약 해지 후 3개월까지, 분쟁 발생 시에는 분쟁 해결 시까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">자동차 보험 사업자</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 연락처, 이용 내역, 차량 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">사고 시 보험 서비스 제공</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 계약 해지 후 3개월까지, 분쟁 발생 시에는 분쟁 해결 시까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">소속 법인, 단체의 기업 담당자</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 연락처, 이용 내역, 결제 내역, 위치 정보, 예약 내역</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">엔젤플러스 서비스 계약 체결 및 이행, 비용 청구 및 정산</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 계약 해지 후 3개월까지, 분쟁 발생 시에는 분쟁 해결 시까지</td></tr></tbody></table><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ ‘회사’는 정부 관계부처가 합동으로 발표한 「긴급상황 시 개인정보 처리 및 보호수칙」에 따라 재난, 감염병, 급박한 생명·신체 위험을 초래하는 사건·사고, 급박한 재산 손실 등의 긴급상황이 발생하는 경우 정보주체의 동의 없이 관계기관에 개인정보를 제공할 수 있습니다. 자세한 사항은 여기를 눌러 확인하시기 바랍니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제4조(개인정보처리의 위탁에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 원활한 개인정보 업무처리를 위하여 다음과 같이 개인정보 처리업무를 위탁하고 있습니다.</p><table style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse; border-spacing: 0px; width: 1225px; table-layout: fixed; word-break: break-all; border-top: 1px solid rgb(192, 192, 192); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; letter-spacing: normal; orphans: 2; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><thead style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">위탁 받는 자</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">업무 내용</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">보유기간</th></tr></thead><tbody style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 KG이니시스</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">전자 결제 서비스 제공</td><td rowspan="8" style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">회원탈퇴 시 혹은 위탁 계약 종료 시 까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 네이버, 주식회사 카카오</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">전자 결제 서비스 제공</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 세종텔레콤</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">카카오 알림 메시지 발송 대행</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 KT크로샷</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">문자메시지(SMS, LMS) 발송 대행</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 헥토파이낸셜</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">가상계좌 발급, 지급이체요청에 따른 출금 대행</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 헥토파이낸셜</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">OCR 서비스 제공</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 헥토파이낸셜</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">운전면허증 진위여부 및 상태 조회 서비스 제공</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 CNMP, 주식회사 로지소프트</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리운전기사 호출 서비스</td></tr></tbody></table><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 회사는 위탁계약 체결 시 「개인정보 보호법」 제26조에 따라 위탁업무 수행목적 외 개인정보 처리금지, 기술적․관리적 보호조치, 재위탁 제한, 수탁자에 대한 관리․감독, 손해배상 책임에 관한 사항을 계약서 등 문서에 명시하고, 수탁자가 개인정보를 안전하게 처리하는지를 감독하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 위탁업무의 내용이나 수탁자가 변경될 경우에는 지체없이 본 개인정보 처리방침을 통하여 공개하도록 하겠습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제5조(개인정보의 파기절차 및 파기방법)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 개인정보 보유기간의 경과, 처리목적 달성 등 개인정보가 불필요하게 되었을 때에는 지체없이 해당 개인정보를 파기합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 정보주체로부터 동의 받은 개인정보 보유기간이 경과하거나 처리목적이 달성되었음에도 불구하고 다른 법령에 따라 개인정보를 계속 보존하여야 하는 경우에는, 해당 개인정보를 별도의 데이터베이스(DB)로 옮기거나 보관장소를 달리하여 보존합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 개인정보 파기의 절차 및 방법은 다음과 같습니다.</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(1) 파기절차<br style="outline: none !important;">회사는 파기 사유가 발생한 개인정보를 선정하고, 회사의 개인정보 보호책임자의 승인을 받아 개인정보를 파기합니다.</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(2) 파기방법<br style="outline: none !important;">전자적 파일 형태의 정보는 기록을 재생할 수 없는 기술적 방법을 사용합니다. 종이에 출력된 개인정보는 분쇄기로 분쇄하거나 소각을 통하여 파기합니다</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제6조(미이용자의 개인정보 파기 등에 관한 조치)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는1년간 서비스를 이용하지 않은 이용자는 휴면계정으로 전환하고, 개인정보를 별도로 분리하여 보관합니다. 분리 보관된 개인정보는 1년간 보관 후 지체없이 파기합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 회사는 휴면 전환 30일 전까지 휴면 예정 회원에게 별도 분리 보관되는 사실 및 휴면 예정일, 별도 분리 보관하는 개인정보 항목을 이메일, 문자와 같은 이용자에게 통지 가능한 방법을 통해 알리고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 휴면 계정으로 전환을 원하지 않으시는 경우, 휴면 계정 전환 전 서비스 로그인을 하시면 됩니다. 또한, 휴면계정으로 전환되었더라도 로그인을 하는 경우 본인 확인을 거쳐 휴면계정을 복원하여 정상적인 서비스를 이용할 수 있습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제7조(정보주체와 법정대리인의 권리·의무 및 그 행사방법에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 정보주체는 회사에 대해 언제든지 개인정보 열람·정정·삭제·처리정지 요구 등의 권리를 행사할 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 제1항에 따른 권리 행사는 회사에 대해 「개인정보 보호법」 시행령 제41조제1항에 따라 서면, 전자우편, 모사전송(FAX) 등을 통하여 하실 수 있으며 회사는 이에 대해 지체 없이 조치하겠습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 제1항에 따른 권리 행사는 정보주체의 법정대리인이나 위임을 받은 자 등 대리인을 통하여 하실 수 있습니다. 이 경우 “개인정보 처리 방법에 관한 고시(제2020-7호)” 별지 제11호 서식에 따른 위임장을 제출하셔야 합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>④ 개인정보 열람 및 처리정지 요구는 「개인정보 보호법」 제35조 제4항, 제37조 제2항에 의하여 정보주체의 권리가 제한될 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>⑤ 기타 다른 법령에서 해당 개인정보가 보유 대상으로 명시되어 있는 경우에는 개인정보의 정정 및 삭제 요구를 할 수 없습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>⑥ 회사는 정보주체 권리에 따른 열람의 요구, 정정·삭제의 요구, 처리정지의 요구 시 열람을 요구를 한 자가 본인이거나 정당한 대리인인지를 확인합니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제8조(개인정보의 안전성 확보조치에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회사는 개인정보의 안전성 확보를 위해 다음과 같은 조치를 취하고 있습니다.<br style="outline: none !important;"><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">1. 개인정보 취급 직원의 최소화 및 교육</span><br style="outline: none !important;">개인정보를 취급하는 직원을 최소한으로 지정하고 정기적으로 개인정보 취급 직원을 대상으로 개인정보 처리방침 교육을 실시하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">2. 내부관리계획의 수립 및 시행</span><br style="outline: none !important;">개인정보의 안전한 처리를 위하여 내부관리계획을 수립하고 시행하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">3. 해킹 등에 대비한 기술적 대책</span><br style="outline: none !important;">회사는 해킹이나 컴퓨터 바이러스 등에 의한 개인정보 유출 및 훼손을 막기 위하여 보안프로그램을 설치하고 주기적인 갱신·점검을 하며 외부로부터 접근이 통제된 구역에 시스템을 설치하고 기술적/물리적으로 감시 및 차단하고 있습니다. 또한 개인정보처리시스템 등의 접근 권한 관리를 하고 있습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제9조(개인정보를 자동으로 수집하는 장치의 설치·운영 및 그 거부에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 이용자에게 개별적인 맞춤서비스를 제공하기 위해 이용정보를 저장하고 수시로 불러오는 ‘쿠키(cookie)’를 사용합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">② 쿠키는 웹사이트를 운영하는데 이용되는 서버(http)가 이용자의 컴퓨터 브라우저에게 보내는 소량의 정보이며 이용자들의 PC 컴퓨터내의 하드디스크에 저장되기도 합니다.</span><br style="outline: none !important;"><br style="outline: none !important;">가. 쿠키의 사용 목적 : 이용자가 방문한 각 서비스와 웹 사이트들에 대한 방문 및 이용형태, 인기 검색어, 보안접속 여부, 등을 파악하여 이용자에게 최적화된 정보 제공을 위해 사용됩니다.<br style="outline: none !important;">나. 쿠키의 설치•운영 및 거부 : 웹브라우저 상단의 도구&gt;인터넷 옵션&gt;개인정보 메뉴의 옵션 설정을 통해 쿠키 저장을 거부 할 수 있습니다.<br style="outline: none !important;">다. 쿠키 저장을 거부할 경우 맞춤형 서비스 이용에 어려움이 발생할 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">③ 모바일 앱 사용시 광고 식별자 수집 : 회사는 이용자의 ADID/IDFA를 수집할 수 있습니다. ADID/IDFA란 “모바일 서비스” 이용자의 광고 식별 값으로써, 이용자의 맞춤 서비스 제공이나 더 나은 환경의 광고를 제공하기 위한 측정을 위해 수집할 수 있습니다.</span><br style="outline: none !important;"><br style="outline: none !important;">거부 방법<br style="outline: none !important;">가) Android : 설정 &gt; 구글(구글설정) &gt; 광고 &gt; 광고 맞춤설정 선택 해제<br style="outline: none !important;">나) iOS : 설정 &gt; 개인정보 보호 &gt; 광고 &gt; 광고 추적 제한</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제10조(행태정보의 수집·이용·제공 및 거부 등에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① &lt;개인정보처리자&gt;은(는) 서비스 이용과정에서 정보주체에게 최적화된 맞춤형 서비스 및 혜택, 온라인 맞춤형 광고 등을 제공하기 위하여 행태정보를 수집·이용하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② &lt;개인정보처리자&gt;은(는) 다음과 같이 행태정보를 수집합니다.</p><table style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse; border-spacing: 0px; width: 1225px; table-layout: fixed; word-break: break-all; border-top: 1px solid rgb(192, 192, 192); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; letter-spacing: normal; orphans: 2; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><thead style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">수집하는 행태정보의 항목</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">행태정보 수집 방법</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">행태정보 수집 목적</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">보유·이용기간 및 이후 정보처리 방법</th></tr></thead><tbody style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 내역에서 출발지, 경유지, 도착지, 자택 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">이용자의 서비스 이용 시 자동 수집</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주요 출발지, 도착지에 따른 적합 요금 산출, 대리 기사의 효율적인 분포에 활용</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">자동 수집 시점으로부터 5년 뒤 정보 삭제</td></tr></tbody></table><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>&lt;온라인 맞춤형 광고 등을 위해 제3자(온라인 광고사업자 등)가 이용자의 행태정보를 수집·처리할수 있도록 허용한 경우&gt;</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ &lt;개인정보처리자&gt;은(는) 다음과 같이 온라인 맞춤형 광고 사업자가 행태정보를 수집·처리하도록 허용하고 있습니다.<br style="outline: none !important;">- 행태정보를 수집 및 처리하려는 광고 사업자 : Google, Facebook, AppsFlyer, adbrix<br style="outline: none !important;">- 행태정보 수집 방법 : 이용자가 당사 웹사이트를 방문하거나 앱을 실행할 때 자동 수집 및 전송<br style="outline: none !important;">- 수집·처리되는 행태정보 항목 : 이용자의 웹/앱 방문이력, 검색이력, 구매이력</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>④ &lt;개인정보처리자&gt;은(는) 온라인 맞춤형 광고 등에 필요한 최소한의 행태정보만을 수집하며, 사상, 신념, 가족 및 친인척관계, 학력·병력, 기타 사회활동 경력 등 개인의 권리·이익이나 사생활을 뚜렷하게 침해할 우려가 있는 민감한 행태정보를 수집하지 않습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">⑤ &lt;개인정보처리자&gt;은(는) 모바일 앱에서 온라인 맞춤형 광고를 위하여 광고식별자를 수집·이용합니다. 정보주체는 모바일 단말기의 설정 변경을 통해 앱의 맞춤형 광고를 차단·허용할 수 있습니다. ‣ 스마트폰의 광고식별자 차단/허용</span><br style="outline: none !important;">(1) (안드로이드) ① 설정 → ② 개인정보보호 → ③ 광고 → ③ 광고 ID 재설정 또는 광고ID 삭제<br style="outline: none !important;">(2) (아이폰) ① 설정 → ② 개인정보보호 → ③ 추적 → ④ 앱이 추적을 요청하도록 허용 끔<br style="outline: none !important;">※ 모바일 OS 버전에 따라 메뉴 및 방법이 다소 상이할 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>⑦ 정보주체는 웹브라우저의 쿠키 설정 변경 등을 통해 온라인 맞춤형 광고를 일괄적으로 차단·허용할 수 있습니다. 다만, 쿠키 설정 변경은 웹사이트 자동로그인 등 일부 서비스의 이용에 영향을 미칠 수 있습니다.<br style="outline: none !important;"><span style="outline: none !important; margin-top: 1.25rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; display: inline-block !important;">‣ 웹브라우저를 통한 맞춤형 광고 차단/허용</span></p><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">(1) 인터넷 익스플로러(Windows 10용 Internet Explorer 11)</span><br style="outline: none !important;">- Internet Explorer에서 도구 버튼을 선택한 다음 인터넷 옵션을 선택<br style="outline: none !important;">- 개인 정보 탭을 선택하고 설정에서 고급을 선택한 다음 쿠키의 차단 또는 허용을 선택<br style="outline: none !important;"><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">(2) Microsoft Edge</span><br style="outline: none !important;">- Edge에서 오른쪽 상단 ‘…’ 표시를 클릭한 후, 설정을 클릭합니다.<br style="outline: none !important;">- 설정 페이지 좌측의 ‘개인정보, 검색 및 서비스’를 클릭 후 「추적방지」 섹션에서 ‘추적방지’ 여부 및 수준을 선택합니다.<br style="outline: none !important;">- ‘InPrivate를 검색할 때 항상 ""엄격"" 추적 방지 사용’ 여부를 선택합니다.<br style="outline: none !important;">- 아래 「개인정보」 섹션에서 ‘추적 안함 요청 보내기’ 여부를 선택합니다.<br style="outline: none !important;"><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">(3) 크롬 브라우저</span><br style="outline: none !important;">- Chrome에서 오른쪽 상단 ‘⋮’ 표시(chrome 맞춤설정 및 제어)를 클릭한 후, 설정 표시를 클릭합니다.<br style="outline: none !important;">- 설정 페이지 하단에 ‘고급 설정 표시’를 클릭하고 「개인정보」 섹션에서 콘텐츠 설정을 클릭합니다.<br style="outline: none !important;">- 쿠키 섹션에서 ‘타사 쿠키 및 사이트 데이터 차단’의 체크박스를 선택합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">⑧ 정보주체는 아래의 연락처로 행태정보와 관련하여 궁금한 사항과 거부권 행사, 피해 신고 접수 등을 문의할 수 있습니다.</span><br style="outline: none !important;"><br style="outline: none !important;">‣ 개인정보 보호 담당부서<br style="outline: none !important;">부서명 : Biz기획팀<br style="outline: none !important;">담당자 : 김수한 차장<br style="outline: none !important;">연락처 : 02-6925-1143<br style="outline: none !important;">이메일 : privacy@angelplus.kr</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제11조(개인정보 보호책임자)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회사는 개인정보 처리에 관한 업무를 총괄해서 책임지고, 개인정보 처리와 관련한 회원의 불만처리 및 피해구제 등을 위하여 아래와 같이 개인정보 보호책임자를 지정하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>개인정보보호 관리책임자<br style="outline: none !important;">성명 : 김용주<br style="outline: none !important;">직책 : 이사<br style="outline: none !important;">이메일 : privacy@angelplus.kr<br style="outline: none !important;">전화번호 : 02-6925-1143</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>‣ 개인정보 보호 담당부서<br style="outline: none !important;">부서명 : Biz기획팀<br style="outline: none !important;">담당자 : 김수한 차장<br style="outline: none !important;">연락처 : 02-6925-1143<br style="outline: none !important;">이메일 : privacy@angelplus.kr</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회원은 회사의 서비스(또는 사업)을 이용하시면서 발생한 모든 개인정보 보호 관련 문의, 불만 처리, 피해 구제 등에 관한 사항을 개인정보 관리책임자 및 담당 부서로 문의하실 수 있습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제12조(권익침해 구제방법)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">① 정보주체는 개인정보침해로 인한 구제를 받기 위하여 개인정보분쟁조정위원회, 한국인터넷진흥원 개인정보침해신고센터 등에 분쟁해결이나 상담 등을 신청할 수 있습니다. 이 밖에 기타 개인정보침해의 신고, 상담에 대하여는 아래의 기관에 문의하시기 바랍니다.</span><br style="outline: none !important;">1. 개인정보분쟁조정위원회 : (국번없이) 1833-6972 (www.kopico.go.kr)<br style="outline: none !important;">2. 개인정보침해신고센터 : (국번없이) 118 (privacy.kisa.or.kr)<br style="outline: none !important;">3. 대검찰청 : (국번없이) 1301 (www.spo.go.kr)<br style="outline: none !important;">4. 경찰청 : (국번없이) 182 (ecrm.cyber.go.kr)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">② 회사는 정보주체의 개인정보자기결정권을 보장하고, 개인정보침해로 인한 상담 및 피해 구제를 위해 노력하고 있으며, 신고나 상담이 필요한 경우 아래의 담당부서로 연락해 주시기 바랍니다.</span><br style="outline: none !important;">‣ 개인정보보호 관련 고객 상담 및 신고<br style="outline: none !important;">개인정보보호 담당부서<br style="outline: none !important;">부서명 : BIz기획팀<br style="outline: none !important;">담당자 : 김수한<br style="outline: none !important;">직책 : 차장<br style="outline: none !important;">이메일 : privacy@angelplus.kr<br style="outline: none !important;">전화번호 : 02-6925-1143</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">③「개인정보 보호법」 제35조(개인정보의 열람), 제36조(개인정보의 정정·삭제), 제37조(개인정보의 처리정지 등)의 규정에 의한 요구에 대 하여 공공기관의 장이 행한 처분 또는 부작위로 인하여 권리 또는 이익의 침해를 받은 자는 행정심판법이 정하는 바에 따라 행정심판을 청구할 수 있습니다.</span><br style="outline: none !important;">‣ 중앙행정심판위원회 : (국번없이) 110 (www.simpan.go.kr)</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제13조(개인정보 처리방침의 개정 및 고지)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>본 개인정보 처리방침의 내용 추가, 삭제 및 변경이 있을 경우 개정 최소 7일 전에 홈페이지 공지사항을 통해 사전 고지할 것 입니다. 수집하는 개인정보의 항목, 제 3자 제공 등 중대한 변경이 발생한 때에는 최소 30일 전에 고지하고 필요시 회원의 동의를 다시 받도록 하겠습니다.</p></div> 
                            <div><input id="privacy_agreement_radio0" name="privacy_agreement_radio[]" fw-filter="" fw-label="개인정보보호정책" fw-msg="" value="1" type="checkbox"  /><label for="privacy_agreement_radio0" >개인정보처리방침 동의</label></div>
                        </td>
                    </tr>
                </tbody>
                -->
            </table>
        </div>
<div class="ec-base-button gBottom ">
            <!--
            <span class="gLeft RW " >
                <span class="displaynone"><a href="#none" class="btnNormalFix sizeM" onclick="">관리자 답변보기</a></span>
                <a href="/board/startups/list.html?board_no=3001" class="btnNormalFix sizeS">목록</a>
            </span>
			-->
            <div class="privay_div">
                <div>
                    <!-- <div id="privacy_agreement" name="privacy_agreement" style="width: 560px; height: 140px; border: 1px solid #d5d5d5; padding: 5px 6px; font-family: 돋움, Dotum; overflow-y: auto; white-space: pre-wrap;" ><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>&lt; 주식회사 엔젤플러스 &gt;(이하 ‘회사’)은(는)「개인정보 보호법」제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개하며, 회사가 개인정보 처리방침을 개정하는 경우 “웹 사이트” 및 “모바일 서비스”의 공지사항(또는 개별공지)을 통하여 공지합니다.</p><p style='outline: none !important; margin-top: 1.75rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>○ 이 개인정보 처리방침은 2022년 11월 3부터 적용됩니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제1조(개인정보의 수집 및 이용 목적)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회사는 다음의 목적을 위하여 개인정보를 처리합니다.<br style="outline: none !important;">처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며 이용 목적이 변경되는 경우에는 「개인정보 보호법」 제18조에 따라 별도의 동의를 받는 등 필요한 조치를 이행할 예정입니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>1. 회원 관리 및 중복 가입 방지</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회원 가입의사 확인, 회원제 서비스 제공에 따른 본인 식별·인증, 회원자격 유지·관리, 서비스 부정이용 방지, 각종 고지·통지, 문의사항 또는 불만 및 분쟁처리, 공지사항과 같은 최신 정보 전달의 목적으로 개인정보를 처리합니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>2. 서비스 제공 및 대금 정산</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>서비스 이용 예약 및 대금 결제, 이용에 따른 비용 청구서 발송, 금융거래 본인 인증 및 기타 금융 서비스, 요금 추심의 목적으로 개인정보를 처리합니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>3. 사고 처리</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>서비스 이용 중 사고 발생 시 사실 관계 확인, 사고 원인 규명 및 처리의 목적으로 개인정보를 처리합니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>4. 맞춤형 회원 서비스 개발</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>고객 만족도 조사, 접속 및 이용 빈도 파악, 서비스 이용에 대한 통계 추출의 목적으로 개인정보를 처리합니다.</p><p style='outline: none !important; margin-top: 2rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>5. 마케팅 및 광고에 활용</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>엔젤플러스 광고, 서비스 안내, 혜택 제공 안내의 목적으로 개인정보를 처리합니다.<br style="outline: none !important;">제2조(개인정보의 수집 항목 및 보유 기간) ① 회사는 법령에 따른 개인정보 보유·이용기간 또는 정보주체로부터 개인정보를 수집 시에 동의 받은 개인정보 보유·이용기간 내에서 개인정보를 처리·보유합니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제2조(개인정보의 수집 항목 및 보유 기간)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 법령에 따른 개인정보 보유·이용기간 또는 정보주체로부터 개인정보를 수집 시에 동의 받은 개인정보 보유·이용기간 내에서 개인정보를 처리·보유합니다.</p><table style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse; border-spacing: 0px; width: 1225px; table-layout: fixed; word-break: break-all; border-top: 1px solid rgb(192, 192, 192); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; letter-spacing: normal; orphans: 2; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><thead style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">구분</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">수집 항목</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">수집 방법</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">보유 기간</th></tr></thead><tbody style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 생년월일, 이메일, 통신사, 휴대전화번호, 아이디, 비밀번호, 중복가입확인정보, 연계정보, 차량 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">가입 시 직접 기재 혹은 계약 시 소속 회사로부터 이용자 정보 수신</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">운전면허종류, 운전면허번호, 면허주소, 적성검사 만료일, 면허 발급일, 서비스 이용내역, (위치기반서비스 이용약관 동의 시)위치 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">가입 시 회원이 기재</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 5일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">소속 회사 정보(회사명, 부서명, 직책)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">가입 시 직접 기재 혹은 계약 시 소속 회사로부터 이용자 정보 수신</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">카드사, 카드 번호, 카드 종류, 유효기간, 암호화 된 식별정보(Key)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">카드 결제 서비스 신청 시 회원이 기입</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">IP주소, 서비스 이용기록, 접속 기록, 불량 이용 기록, (위치기반서비스 이용 약관 동의 시)위치 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 과정에서 자동 수집</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">필수</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">고객이 입력한 실제 이용자 정보(성명, 휴대전화번호, 자택 주소)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 시 회원이 직접 기입</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); vertical-align: top;">회원 탈퇴 후 90일까지</td></tr></tbody></table><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 1항의 기재된 내용 및 보유 기간에도 불구하고 다음의 사유에 해당하는 경우에는 해당 사유 종료 시까지 이용 및 보유할 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>1. 관계 법령 위반에 따른 수사, 조사 등이 진행중인 경우 : 해당 수사, 조사 종료 시까지</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>2. 서비스 이용에 따른 채권, 채무 관계가 잔존하는 경우 : 해당 채권, 채무 관계 정산 시까지</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>3. 통신비밀보호법 상 홈페이지 또는 모바일 서비스 방문 기록 : 3개월 (통신비밀보호법 시행령 제 41조)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>4. 전자상거래 등에서의 소비자 보호에 관한 법률</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(1) 표시, 광고에 관한 기록 : 6개월 (전자상거래 등에서의 소비자보호에 관한 법률 시행령 제 6조)</p><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(2) 계약 또는 청약철회에 관한 기록 : 5년 (전자상거래 등에서의 소비자보호에 관한 법률 시행령 제 6조)</p><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(3) 대금결제 및 재화 등의 공급에 관한 기록 : 5년 (전자상거래 등에서의 소비자보호에 관한 법률 시행령 제 6조)</p><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(4) 소비자의 불만 또는 분쟁처리에 관한 기록 : 3년 (전자상거래 등에서의 소비자보호에 관한 법률 시행령 제 6조)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>5.국세에 관한 법률</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(1) 세법이 규정하는 모든 거래에 관한 장부 및 증빙서류 : 5년 (국세기본법 제 85조의 3)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>6. 전자금융거래에 관한 법률</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(1) 전자금융 거래에 관한 기록 : 5년 (전자금융거래법 제 22조)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 이용자가 1년 이상 서비스를 이용하지 않고 연체나 채무 불이행 상태가 아닌 경우 해당 이용자의 아이디는 “휴면 회원”으로 처리됩니다. “휴면 회원”으로 처리되면 회원 로그인을 비롯한 모든 서비스 이용이 정지되고, 회사는 “휴면 회원”의 개인정보를 본 조의 제 1항 및 제 2항에 따른 정보 보유의 대상이 아닌 한 다른 ID와 별도로 관리합니다. 회사는 “휴면 회원” 처리 예정일 30일 전 해당 사실을 이메일을 통하여 사전 안내하며, 이용자는 “휴면 회원” 처리일 이후에 “웹 사이트” 및 “모바일 서비스” 상에서 직접 본인 확인을 거쳐 휴면 상태 해지 신청을 하는 즉시 다시 정상적으로 서비스를 이용할 수 있습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제3조(개인정보의 제공)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 개인정보를 제1조(개인정보의 처리 목적)에서 명시한 범위 내에서만 처리하며, 정보주체의 동의, 서비스의 제공에 따른 요금 정산을 위하여 필요한 경우, 법률의 특별한 규정 등 「개인정보 보호법」 제17조 및 제18조에 해당하는 경우에만 개인정보를 제3자에게 제공합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 회사는 다음과 같이 개인정보를 제3자에게 제공하고 있습니다.</p><table style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse; border-spacing: 0px; width: 1225px; table-layout: fixed; word-break: break-all; border-top: 1px solid rgb(192, 192, 192); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; letter-spacing: normal; orphans: 2; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><thead style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">제공받는 자</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">제공 항목</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">목적</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">보유기간</th></tr></thead><tbody style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리 운전 플랫폼 사업자(별첨 사업자 리스트 참조)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 연락처, 주소, 예약 내역, 이용 내역, 결제 정보, 위치 정보, 회사명, 직책, 차량 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리 운전 서비스 제공</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 계약 해지 후 3개월 까지, 분쟁 발생 시에는 분쟁 해결 시까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리 운전 종사자(직접 서비스 제공자)</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 연락처, 주소, 위치 정보, 회사명, 직책, 차량 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리 운전 서비스 제공</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 계약 해지 후 3개월까지, 분쟁 발생 시에는 분쟁 해결 시까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">자동차 보험 사업자</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 연락처, 이용 내역, 차량 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">사고 시 보험 서비스 제공</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 계약 해지 후 3개월까지, 분쟁 발생 시에는 분쟁 해결 시까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">소속 법인, 단체의 기업 담당자</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">성명, 연락처, 이용 내역, 결제 내역, 위치 정보, 예약 내역</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">엔젤플러스 서비스 계약 체결 및 이행, 비용 청구 및 정산</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 계약 해지 후 3개월까지, 분쟁 발생 시에는 분쟁 해결 시까지</td></tr></tbody></table><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ ‘회사’는 정부 관계부처가 합동으로 발표한 「긴급상황 시 개인정보 처리 및 보호수칙」에 따라 재난, 감염병, 급박한 생명·신체 위험을 초래하는 사건·사고, 급박한 재산 손실 등의 긴급상황이 발생하는 경우 정보주체의 동의 없이 관계기관에 개인정보를 제공할 수 있습니다. 자세한 사항은 여기를 눌러 확인하시기 바랍니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제4조(개인정보처리의 위탁에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 원활한 개인정보 업무처리를 위하여 다음과 같이 개인정보 처리업무를 위탁하고 있습니다.</p><table style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse; border-spacing: 0px; width: 1225px; table-layout: fixed; word-break: break-all; border-top: 1px solid rgb(192, 192, 192); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; letter-spacing: normal; orphans: 2; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><thead style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">위탁 받는 자</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">업무 내용</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">보유기간</th></tr></thead><tbody style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 KG이니시스</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">전자 결제 서비스 제공</td><td rowspan="8" style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">회원탈퇴 시 혹은 위탁 계약 종료 시 까지</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 네이버, 주식회사 카카오</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">전자 결제 서비스 제공</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 세종텔레콤</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">카카오 알림 메시지 발송 대행</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 KT크로샷</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">문자메시지(SMS, LMS) 발송 대행</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 헥토파이낸셜</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">가상계좌 발급, 지급이체요청에 따른 출금 대행</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 헥토파이낸셜</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">OCR 서비스 제공</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 헥토파이낸셜</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">운전면허증 진위여부 및 상태 조회 서비스 제공</td></tr><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주식회사 CNMP, 주식회사 로지소프트</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">대리운전기사 호출 서비스</td></tr></tbody></table><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 회사는 위탁계약 체결 시 「개인정보 보호법」 제26조에 따라 위탁업무 수행목적 외 개인정보 처리금지, 기술적․관리적 보호조치, 재위탁 제한, 수탁자에 대한 관리․감독, 손해배상 책임에 관한 사항을 계약서 등 문서에 명시하고, 수탁자가 개인정보를 안전하게 처리하는지를 감독하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 위탁업무의 내용이나 수탁자가 변경될 경우에는 지체없이 본 개인정보 처리방침을 통하여 공개하도록 하겠습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제5조(개인정보의 파기절차 및 파기방법)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 개인정보 보유기간의 경과, 처리목적 달성 등 개인정보가 불필요하게 되었을 때에는 지체없이 해당 개인정보를 파기합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 정보주체로부터 동의 받은 개인정보 보유기간이 경과하거나 처리목적이 달성되었음에도 불구하고 다른 법령에 따라 개인정보를 계속 보존하여야 하는 경우에는, 해당 개인정보를 별도의 데이터베이스(DB)로 옮기거나 보관장소를 달리하여 보존합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 개인정보 파기의 절차 및 방법은 다음과 같습니다.</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(1) 파기절차<br style="outline: none !important;">회사는 파기 사유가 발생한 개인정보를 선정하고, 회사의 개인정보 보호책임자의 승인을 받아 개인정보를 파기합니다.</p><p style='outline: none !important; margin-top: 0.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-size: 16px; color: rgb(17, 17, 17); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>(2) 파기방법<br style="outline: none !important;">전자적 파일 형태의 정보는 기록을 재생할 수 없는 기술적 방법을 사용합니다. 종이에 출력된 개인정보는 분쇄기로 분쇄하거나 소각을 통하여 파기합니다</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제6조(미이용자의 개인정보 파기 등에 관한 조치)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는1년간 서비스를 이용하지 않은 이용자는 휴면계정으로 전환하고, 개인정보를 별도로 분리하여 보관합니다. 분리 보관된 개인정보는 1년간 보관 후 지체없이 파기합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 회사는 휴면 전환 30일 전까지 휴면 예정 회원에게 별도 분리 보관되는 사실 및 휴면 예정일, 별도 분리 보관하는 개인정보 항목을 이메일, 문자와 같은 이용자에게 통지 가능한 방법을 통해 알리고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 휴면 계정으로 전환을 원하지 않으시는 경우, 휴면 계정 전환 전 서비스 로그인을 하시면 됩니다. 또한, 휴면계정으로 전환되었더라도 로그인을 하는 경우 본인 확인을 거쳐 휴면계정을 복원하여 정상적인 서비스를 이용할 수 있습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제7조(정보주체와 법정대리인의 권리·의무 및 그 행사방법에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 정보주체는 회사에 대해 언제든지 개인정보 열람·정정·삭제·처리정지 요구 등의 권리를 행사할 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② 제1항에 따른 권리 행사는 회사에 대해 「개인정보 보호법」 시행령 제41조제1항에 따라 서면, 전자우편, 모사전송(FAX) 등을 통하여 하실 수 있으며 회사는 이에 대해 지체 없이 조치하겠습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ 제1항에 따른 권리 행사는 정보주체의 법정대리인이나 위임을 받은 자 등 대리인을 통하여 하실 수 있습니다. 이 경우 “개인정보 처리 방법에 관한 고시(제2020-7호)” 별지 제11호 서식에 따른 위임장을 제출하셔야 합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>④ 개인정보 열람 및 처리정지 요구는 「개인정보 보호법」 제35조 제4항, 제37조 제2항에 의하여 정보주체의 권리가 제한될 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>⑤ 기타 다른 법령에서 해당 개인정보가 보유 대상으로 명시되어 있는 경우에는 개인정보의 정정 및 삭제 요구를 할 수 없습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>⑥ 회사는 정보주체 권리에 따른 열람의 요구, 정정·삭제의 요구, 처리정지의 요구 시 열람을 요구를 한 자가 본인이거나 정당한 대리인인지를 확인합니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제8조(개인정보의 안전성 확보조치에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회사는 개인정보의 안전성 확보를 위해 다음과 같은 조치를 취하고 있습니다.<br style="outline: none !important;"><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">1. 개인정보 취급 직원의 최소화 및 교육</span><br style="outline: none !important;">개인정보를 취급하는 직원을 최소한으로 지정하고 정기적으로 개인정보 취급 직원을 대상으로 개인정보 처리방침 교육을 실시하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">2. 내부관리계획의 수립 및 시행</span><br style="outline: none !important;">개인정보의 안전한 처리를 위하여 내부관리계획을 수립하고 시행하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">3. 해킹 등에 대비한 기술적 대책</span><br style="outline: none !important;">회사는 해킹이나 컴퓨터 바이러스 등에 의한 개인정보 유출 및 훼손을 막기 위하여 보안프로그램을 설치하고 주기적인 갱신·점검을 하며 외부로부터 접근이 통제된 구역에 시스템을 설치하고 기술적/물리적으로 감시 및 차단하고 있습니다. 또한 개인정보처리시스템 등의 접근 권한 관리를 하고 있습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제9조(개인정보를 자동으로 수집하는 장치의 설치·운영 및 그 거부에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① 회사는 이용자에게 개별적인 맞춤서비스를 제공하기 위해 이용정보를 저장하고 수시로 불러오는 ‘쿠키(cookie)’를 사용합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">② 쿠키는 웹사이트를 운영하는데 이용되는 서버(http)가 이용자의 컴퓨터 브라우저에게 보내는 소량의 정보이며 이용자들의 PC 컴퓨터내의 하드디스크에 저장되기도 합니다.</span><br style="outline: none !important;"><br style="outline: none !important;">가. 쿠키의 사용 목적 : 이용자가 방문한 각 서비스와 웹 사이트들에 대한 방문 및 이용형태, 인기 검색어, 보안접속 여부, 등을 파악하여 이용자에게 최적화된 정보 제공을 위해 사용됩니다.<br style="outline: none !important;">나. 쿠키의 설치•운영 및 거부 : 웹브라우저 상단의 도구&gt;인터넷 옵션&gt;개인정보 메뉴의 옵션 설정을 통해 쿠키 저장을 거부 할 수 있습니다.<br style="outline: none !important;">다. 쿠키 저장을 거부할 경우 맞춤형 서비스 이용에 어려움이 발생할 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">③ 모바일 앱 사용시 광고 식별자 수집 : 회사는 이용자의 ADID/IDFA를 수집할 수 있습니다. ADID/IDFA란 “모바일 서비스” 이용자의 광고 식별 값으로써, 이용자의 맞춤 서비스 제공이나 더 나은 환경의 광고를 제공하기 위한 측정을 위해 수집할 수 있습니다.</span><br style="outline: none !important;"><br style="outline: none !important;">거부 방법<br style="outline: none !important;">가) Android : 설정 &gt; 구글(구글설정) &gt; 광고 &gt; 광고 맞춤설정 선택 해제<br style="outline: none !important;">나) iOS : 설정 &gt; 개인정보 보호 &gt; 광고 &gt; 광고 추적 제한</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제10조(행태정보의 수집·이용·제공 및 거부 등에 관한 사항)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>① &lt;개인정보처리자&gt;은(는) 서비스 이용과정에서 정보주체에게 최적화된 맞춤형 서비스 및 혜택, 온라인 맞춤형 광고 등을 제공하기 위하여 행태정보를 수집·이용하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>② &lt;개인정보처리자&gt;은(는) 다음과 같이 행태정보를 수집합니다.</p><table style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse; border-spacing: 0px; width: 1225px; table-layout: fixed; word-break: break-all; border-top: 1px solid rgb(192, 192, 192); font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; letter-spacing: normal; orphans: 2; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><thead style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">수집하는 행태정보의 항목</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">행태정보 수집 방법</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">행태정보 수집 목적</th><th style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; border-right: 1px solid rgb(192, 192, 192); font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); background-color: rgb(243, 243, 244); font-weight: 400;">보유·이용기간 및 이후 정보처리 방법</th></tr></thead><tbody style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box;"><tr style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; border-collapse: collapse;"><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">서비스 이용 내역에서 출발지, 경유지, 도착지, 자택 정보</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">이용자의 서비스 이용 시 자동 수집</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">주요 출발지, 도착지에 따른 적합 요금 산출, 대리 기사의 효율적인 분포에 활용</td><td style="outline: none !important; margin: 0px; padding: 0.75rem !important; box-sizing: border-box; border-collapse: collapse; font-size: 1.25rem; line-height: 1.5; border-bottom: 1px solid rgb(192, 192, 192); border-right: 1px solid rgb(192, 192, 192); vertical-align: top;">자동 수집 시점으로부터 5년 뒤 정보 삭제</td></tr></tbody></table><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>&lt;온라인 맞춤형 광고 등을 위해 제3자(온라인 광고사업자 등)가 이용자의 행태정보를 수집·처리할수 있도록 허용한 경우&gt;</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>③ &lt;개인정보처리자&gt;은(는) 다음과 같이 온라인 맞춤형 광고 사업자가 행태정보를 수집·처리하도록 허용하고 있습니다.<br style="outline: none !important;">- 행태정보를 수집 및 처리하려는 광고 사업자 : Google, Facebook, AppsFlyer, adbrix<br style="outline: none !important;">- 행태정보 수집 방법 : 이용자가 당사 웹사이트를 방문하거나 앱을 실행할 때 자동 수집 및 전송<br style="outline: none !important;">- 수집·처리되는 행태정보 항목 : 이용자의 웹/앱 방문이력, 검색이력, 구매이력</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>④ &lt;개인정보처리자&gt;은(는) 온라인 맞춤형 광고 등에 필요한 최소한의 행태정보만을 수집하며, 사상, 신념, 가족 및 친인척관계, 학력·병력, 기타 사회활동 경력 등 개인의 권리·이익이나 사생활을 뚜렷하게 침해할 우려가 있는 민감한 행태정보를 수집하지 않습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">⑤ &lt;개인정보처리자&gt;은(는) 모바일 앱에서 온라인 맞춤형 광고를 위하여 광고식별자를 수집·이용합니다. 정보주체는 모바일 단말기의 설정 변경을 통해 앱의 맞춤형 광고를 차단·허용할 수 있습니다. ‣ 스마트폰의 광고식별자 차단/허용</span><br style="outline: none !important;">(1) (안드로이드) ① 설정 → ② 개인정보보호 → ③ 광고 → ③ 광고 ID 재설정 또는 광고ID 삭제<br style="outline: none !important;">(2) (아이폰) ① 설정 → ② 개인정보보호 → ③ 추적 → ④ 앱이 추적을 요청하도록 허용 끔<br style="outline: none !important;">※ 모바일 OS 버전에 따라 메뉴 및 방법이 다소 상이할 수 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>⑦ 정보주체는 웹브라우저의 쿠키 설정 변경 등을 통해 온라인 맞춤형 광고를 일괄적으로 차단·허용할 수 있습니다. 다만, 쿠키 설정 변경은 웹사이트 자동로그인 등 일부 서비스의 이용에 영향을 미칠 수 있습니다.<br style="outline: none !important;"><span style="outline: none !important; margin-top: 1.25rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; display: inline-block !important;">‣ 웹브라우저를 통한 맞춤형 광고 차단/허용</span></p><p style='outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">(1) 인터넷 익스플로러(Windows 10용 Internet Explorer 11)</span><br style="outline: none !important;">- Internet Explorer에서 도구 버튼을 선택한 다음 인터넷 옵션을 선택<br style="outline: none !important;">- 개인 정보 탭을 선택하고 설정에서 고급을 선택한 다음 쿠키의 차단 또는 허용을 선택<br style="outline: none !important;"><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">(2) Microsoft Edge</span><br style="outline: none !important;">- Edge에서 오른쪽 상단 ‘…’ 표시를 클릭한 후, 설정을 클릭합니다.<br style="outline: none !important;">- 설정 페이지 좌측의 ‘개인정보, 검색 및 서비스’를 클릭 후 「추적방지」 섹션에서 ‘추적방지’ 여부 및 수준을 선택합니다.<br style="outline: none !important;">- ‘InPrivate를 검색할 때 항상 ""엄격"" 추적 방지 사용’ 여부를 선택합니다.<br style="outline: none !important;">- 아래 「개인정보」 섹션에서 ‘추적 안함 요청 보내기’ 여부를 선택합니다.<br style="outline: none !important;"><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">(3) 크롬 브라우저</span><br style="outline: none !important;">- Chrome에서 오른쪽 상단 ‘⋮’ 표시(chrome 맞춤설정 및 제어)를 클릭한 후, 설정 표시를 클릭합니다.<br style="outline: none !important;">- 설정 페이지 하단에 ‘고급 설정 표시’를 클릭하고 「개인정보」 섹션에서 콘텐츠 설정을 클릭합니다.<br style="outline: none !important;">- 쿠키 섹션에서 ‘타사 쿠키 및 사이트 데이터 차단’의 체크박스를 선택합니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">⑧ 정보주체는 아래의 연락처로 행태정보와 관련하여 궁금한 사항과 거부권 행사, 피해 신고 접수 등을 문의할 수 있습니다.</span><br style="outline: none !important;"><br style="outline: none !important;">‣ 개인정보 보호 담당부서<br style="outline: none !important;">부서명 : Biz기획팀<br style="outline: none !important;">담당자 : 김수한 차장<br style="outline: none !important;">연락처 : 02-6925-1143<br style="outline: none !important;">이메일 : privacy@angelplus.kr</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제11조(개인정보 보호책임자)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회사는 개인정보 처리에 관한 업무를 총괄해서 책임지고, 개인정보 처리와 관련한 회원의 불만처리 및 피해구제 등을 위하여 아래와 같이 개인정보 보호책임자를 지정하고 있습니다.</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>개인정보보호 관리책임자<br style="outline: none !important;">성명 : 김용주<br style="outline: none !important;">직책 : 이사<br style="outline: none !important;">이메일 : privacy@angelplus.kr<br style="outline: none !important;">전화번호 : 02-6925-1143</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>‣ 개인정보 보호 담당부서<br style="outline: none !important;">부서명 : Biz기획팀<br style="outline: none !important;">담당자 : 김수한 차장<br style="outline: none !important;">연락처 : 02-6925-1143<br style="outline: none !important;">이메일 : privacy@angelplus.kr</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>회원은 회사의 서비스(또는 사업)을 이용하시면서 발생한 모든 개인정보 보호 관련 문의, 불만 처리, 피해 구제 등에 관한 사항을 개인정보 관리책임자 및 담당 부서로 문의하실 수 있습니다.</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제12조(권익침해 구제방법)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">① 정보주체는 개인정보침해로 인한 구제를 받기 위하여 개인정보분쟁조정위원회, 한국인터넷진흥원 개인정보침해신고센터 등에 분쟁해결이나 상담 등을 신청할 수 있습니다. 이 밖에 기타 개인정보침해의 신고, 상담에 대하여는 아래의 기관에 문의하시기 바랍니다.</span><br style="outline: none !important;">1. 개인정보분쟁조정위원회 : (국번없이) 1833-6972 (www.kopico.go.kr)<br style="outline: none !important;">2. 개인정보침해신고센터 : (국번없이) 118 (privacy.kisa.or.kr)<br style="outline: none !important;">3. 대검찰청 : (국번없이) 1301 (www.spo.go.kr)<br style="outline: none !important;">4. 경찰청 : (국번없이) 182 (ecrm.cyber.go.kr)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">② 회사는 정보주체의 개인정보자기결정권을 보장하고, 개인정보침해로 인한 상담 및 피해 구제를 위해 노력하고 있으며, 신고나 상담이 필요한 경우 아래의 담당부서로 연락해 주시기 바랍니다.</span><br style="outline: none !important;">‣ 개인정보보호 관련 고객 상담 및 신고<br style="outline: none !important;">개인정보보호 담당부서<br style="outline: none !important;">부서명 : BIz기획팀<br style="outline: none !important;">담당자 : 김수한<br style="outline: none !important;">직책 : 차장<br style="outline: none !important;">이메일 : privacy@angelplus.kr<br style="outline: none !important;">전화번호 : 02-6925-1143</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'><span style="outline: none !important; margin: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important;">③「개인정보 보호법」 제35조(개인정보의 열람), 제36조(개인정보의 정정·삭제), 제37조(개인정보의 처리정지 등)의 규정에 의한 요구에 대 하여 공공기관의 장이 행한 처분 또는 부작위로 인하여 권리 또는 이익의 침해를 받은 자는 행정심판법이 정하는 바에 따라 행정심판을 청구할 수 있습니다.</span><br style="outline: none !important;">‣ 중앙행정심판위원회 : (국번없이) 110 (www.simpan.go.kr)</p><p style='outline: none !important; margin-top: 5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; font-weight: 500 !important; color: rgb(36, 36, 34); font-size: 1.5rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>제13조(개인정보 처리방침의 개정 및 고지)</p><p style='outline: none !important; margin-top: 1.5rem !important; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; box-sizing: border-box; color: rgb(36, 36, 34); font-size: 1.25rem; line-height: 1.6; font-family: "Spoqa Han Sans Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;'>본 개인정보 처리방침의 내용 추가, 삭제 및 변경이 있을 경우 개정 최소 7일 전에 홈페이지 공지사항을 통해 사전 고지할 것 입니다. 수집하는 개인정보의 항목, 제 3자 제공 등 중대한 변경이 발생한 때에는 최소 30일 전에 고지하고 필요시 회원의 동의를 다시 받도록 하겠습니다.</p></div>  -->
                    <div class="privay_1"><input id="privacy_agreement_radio0" name="privacy_agreement_radio[]" fw-filter="" fw-label="개인정보보호정책" fw-msg="" value="1" type="checkbox"  /><label for="privacy_agreement_radio0" >개인정보처리방침 동의</label><a href="/member/privacy.html" target="_blank" style="vertical-align: middle;">[보기]</a>
</div>
                </div>
            </div>
            <style>
                .xans-board-write input[type=checkbox] {
                    width: 15px;
                    height: 15px;
                    vertical-align: middle;
                }
            </style>
            <span class="gRight">
                <!--<a href="/board/startups/list.html?board_no=3001" class="btnNormalFix sizeM">취소</a>-->
                <a href="#none" class="btnSubmitFix sizeM" onclick="formCheck();">문의하기</a>
                <!-- <span class="admin displaynone"><a
                        href="/board/startups/list.html?board_no=3001">🔒</a></span> -->
            </span>
        </div>
</div>
</form></div>
</div>
            <div>
                <div><img src="/img/rectangle.png" alt="" width="100%"></div>
                <div class="gRight2"><a href="/exec/front/Board/download/?no=2&amp;realname=98291e5fe8c9660cdc24881396abc0a5.pdf&amp;filename=Angelplus_B2B_proposal.pdf">PDF 다운로드</a></div>
            </div>
        </div>
    </div>
</section>


<section id="service">
    
    <div class="service_div s_div">
        <div class="service_top">
            <div class="s_text">
                <h2>합리적인 요금으로 만나는 프리미엄 서비스</h2>
                <p>Premium service at a reasonable price</p>
            </div>
        </div>
        <div class="service_center">
            <ul>
                <li class="sc_c">예상요금 조회</li>
                <li>다양한 요금제</li>
            </ul>
        </div>
        <div class="service_bottom">
            <div class="fare_container">
                <div class="tab_buttons" style="display: none;">
                    <button class="tab_btn active" onclick="showTab('daeri')">대리운전 요금조회</button>
                    <button class="tab_btn" onclick="showTab('time')">시간제 기사 요금조회</button>
                </div>

                <div class="tab_div">
                    <!-- 대리운전 요금조회 -->
                    <div class="tab_content" id="daeri">
                        <div class="tab_buttons">
                            <button class="tab_btn tab_btn_m" onclick="showTab('daeri')">대리운전 요금조회</button>
                            <button class="tab_btn tab_btn_pc" onclick="showTab('time')">시간제 기사 요금조회</button>
                        </div>
                        <div class="form_group">
                            <label>출발지</label>
                            <input type="text" id="daeriStart" placeholder="출발지를 입력해주세요" readonly onclick="openAddressPopup('start')">
                         </div>
                        <div class="form_group">
                            <label>도착지</label>
                            <input type="text" id="daeriEnd" placeholder="도착지를 입력해주세요" readonly onclick="openAddressPopup('end')">
                         </div>
                        <div class="button_group">
                            <button id="daeriInquiryBtn">조회하기</button>
                            <button id="daeriResetBtn">초기화</button>
                        </div>
                        <div class="result">
                            <label>예상요금</label>
                            <div class="price_box" id="daeriPriceBox"></div>
                        </div>
                        <p class="info_text">스탠다드 요금으로 조회됩니다. 상세한 요금은 전화 문의 시 드리겠습니다.</p>
                    </div>


                    <!-- 시간제 기사 요금조회 -->
                    <div class="tab_content" id="time" style="display: none;">
                        <div class="tab_buttons">
                            <button class="tab_btn tab_btn_pc" onclick="showTab('daeri')">대리운전 요금조회</button>
                            <button class="tab_btn tab_btn_m" onclick="showTab('time')">시간제 기사 요금조회</button>
                        </div>
                        <div class="form_group">
                            <label>출발시간</label>
                            <select name="start_hour" class="time_select hour-select">
                                <option value="" selected disabled>--시</option>
                                <option value="1">01시</option>
                                <option value="2">02시</option>
                                <option value="3">03시</option>
                                <option value="4">04시</option>
                                <option value="5">05시</option>
                                <option value="6">06시</option>
                                <option value="7">07시</option>
                                <option value="8">08시</option>
                                <option value="9">09시</option>
                                <option value="10">10시</option>
                                <option value="11">11시</option>
                                <option value="12">12시</option>
                                <option value="13">13시</option>
                                <option value="14">14시</option>
                                <option value="15">15시</option>
                                <option value="16">16시</option>
                                <option value="17">17시</option>
                                <option value="18">18시</option>
                                <option value="19">19시</option>
                                <option value="20">20시</option>
                                <option value="21">21시</option>
                                <option value="22">22시</option>
                                <option value="23">23시</option>
                                <option value="24">24시</option>
                            </select>
                            <select name="start_min" class="time_select min_select">
                                <option value="" selected disabled>--분</option>
                                <option value="0">00분</option>
                                <option value="5">05분</option>
                                <option value="10">10분</option>
                                <option value="15">15분</option>
                                <option value="20">20분</option>
                                <option value="25">25분</option>
                                <option value="30">30분</option>
                                <option value="35">35분</option>
                                <option value="40">40분</option>
                                <option value="45">45분</option>
                                <option value="50">50분</option>
                                <option value="55">55분</option>
                            </select>
                        </div>
                        <div class="form_group">
                            <label>도착시간</label>
                            <select name="end_hour" class="time_select hour-select">
                                <option value="" selected disabled>--시</option>
                                <option value="1">01시</option>
                                <option value="2">02시</option>
                                <option value="3">03시</option>
                                <option value="4">04시</option>
                                <option value="5">05시</option>
                                <option value="6">06시</option>
                                <option value="7">07시</option>
                                <option value="8">08시</option>
                                <option value="9">09시</option>
                                <option value="10">10시</option>
                                <option value="11">11시</option>
                                <option value="12">12시</option>
                                <option value="13">13시</option>
                                <option value="14">14시</option>
                                <option value="15">15시</option>
                                <option value="16">16시</option>
                                <option value="17">17시</option>
                                <option value="18">18시</option>
                                <option value="19">19시</option>
                                <option value="20">20시</option>
                                <option value="21">21시</option>
                                <option value="22">22시</option>
                                <option value="23">23시</option>
                                <option value="24">24시</option>
                            </select>
                            <select name="end_min" class="time_select min_select">
                                <option value="" selected disabled>--분</option>
                                <option value="0">00분</option>
                                <option value="5">05분</option>
                                <option value="10">10분</option>
                                <option value="15">15분</option>
                                <option value="20">20분</option>
                                <option value="25">25분</option>
                                <option value="30">30분</option>
                                <option value="35">35분</option>
                                <option value="40">40분</option>
                                <option value="45">45분</option>
                                <option value="50">50분</option>
                                <option value="55">55분</option>
                            </select>
                        </div>
                        <div class="form_group">
                            <label>운행거리</label>
                            <select name="distance" class="distance_select">
                                <option value="" selected disabled>--Km</option>
                                <option value="51-100">51~100</option>
                                <option value="101-200">101~200</option>
                                <option value="201-300">201~300</option>
                                <option value="301-400">301~400</option>
                                <option value="401-500">401~500</option>
                                <option value="501-600">501~600</option>
                                <option value="601-700">601~700</option>
                                <option value="701-800">701~800</option>
                                <option value="801-900">801~900</option>
                            </select>
                        </div>
                        <div class="button_group">
                            <button>조회하기</button>
                            <button>초기화</button>
                        </div>
                        <div class="result">
                            <label>예상요금</label>
                            <div class="price_box"></div>
                        </div>
                    </div>

                    <div class="tab_content" id="time">
                        <div class="tab_buttons">
                            <button class="tab_btn tab_btn_pc" onclick="showTab('daeri')">대리운전 요금조회</button>
                            <button class="tab_btn tab_btn_m" onclick="showTab('time')">시간제 기사 요금조회</button>
                        </div>
                    
                        <div class="form_group">
                            <label>출발시간</label>
                            <input type="number" id="start_hour" class="time_input" placeholder="00시" min="1" max="24">
                             <input type="number" id="start_min" class="time_input" placeholder="00분" min="0" max="59">
                         </div>
                    
                        <div class="form_group">
                            <label>도착시간</label>
                            <input type="number" id="end_hour" class="time_input" placeholder="00시" min="1" max="24">
                             <input type="number" id="end_min" class="time_input" placeholder="00분" min="0" max="59">
                         </div>
                    
                        <div class="form_group">
                            <label>운행거리</label>
                            <input type="number" id="distance" class="distance_input" placeholder="예상운행거리를 입력해주세요">
                         </div>
                    
                        <div class="button_group">
                            <button id="timeInquiryBtn">조회하기</button>
                            <button id="timeResetBtn">초기화</button>
                        </div>
                    
                        <div class="result">
                            <label>예상요금</label>
                            <div class="price_box" id="timePriceBox"></div>
                        </div>
                    </div>
                    

                </div>
            </div>
            <div class="chart_container">
                <div class="chart_container_div">
                    <div class="axis_y"></div>
                    <span class="label_y">서비스</span>
                    <div class="axis_x"></div>
                    <span class="label_x">요금</span>
                    <div class="plan_box" id="standard">
                        <h3>스탠다드 요금제<img src="/img/icon/chart_01.png" alt=""></h3>
                        <p>법인 대리운전을 알뜰하게 이용하고 싶을때</p>
                    </div>
                    <div class="plan_box" id="custom">
                        <h3>고객사 맞춤형 요금제<img src="/img/icon/chart_02.png" alt=""></h3>
                        <p>필요한 서비스만 선택하고 합리적인 요금을 챙기고 싶을때</p>
                    </div>
                    <div class="plan_box" id="premium">
                        <h3>프리미엄 요금제<img src="/img/icon/chart_03.png" alt=""></h3>
                        <p>고객이 기준이 되어 언제 어디서든 프리미엄 운전대행 서비스를 제공받고 싶을때</p>
                    </div>
                </div>
            </div>
            </div>
    </div>
    <div id="addressModal" class="modal-overlay" style="display: none;">
        
        <div class="modal-content pop-address">
            <div class="popup-head">
                <h1 class="popup__title">주소 찾기</h1>
                <button title="닫기" class="mfp-close js-modal-close"><i class="xi-close" style="font-style: normal;">X</i></button>
            </div>
            <div class="popup-body">
                <div class="row mx-n2">
                    <div class="col-9 px-2">
                        <input id="modalAddressInput" type="text" class="w-100" placeholder="주소를 입력해주세요">
                     </div>
                    <div class="col-3 px-2">
                        <button id="modalAddressSearchBtn" type="button" class="btn type--1 justify-content-center size--3">주소검색</button>
                    </div>
                </div>

                <div class="address-area mt-4 d-none" id="modalAddressResults">
                    <div class="address-area__head">주소</div>
                    <div class="address-area__body">
                        <div class="address-area-list">
                            <div class="scrollbar-inner" id="modalResultBox">
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>


<section id="s11">
    <div class="s11_div s_div">
        <div class="s11_top">
            <div class="s_text">
                <h2>전문 기사에 도전해보세요</h2>
                <p>Challenge yourself and become a professional driver.</p>
            </div>
        </div>
        <div class="s11_bottom">
            <ul>
                <li><img src="/img/s11_01.png" alt=""></li>
                <li>
                    <div>
                        <h2>지원자격</h2>
                        <div>
                            <h3><span>O</span> 지원가능</h3>
                            <p>- 2종보통 이상 운전 면허</p>
                            <p>- 법인대리기사 경력보유(1년이상)</p>
                        </div>
                        <div>
                            <h3><span>X</span> 지원불가</h3>
                            <p>- 최근 1년 간 사고 발생 2회 이상</p>
                            <p>- 최근 3년 간 사고 발생 4회 이상</p>
                        </div>
                        <a href="https://docs.google.com/forms/d/e/1FAIpQLSdesKMAzJun4oYEnm1s1tcO5A3-qhSYUeWK1qw3Lye_yS1gjw/viewform?usp=send_form" target="_blank">지원하기</a>
                    </div>
                </li>
                <li>
                    <div>
                        <h2>근무환경</h2>
                        <div>
                            <h3>사용 프로그램</h3>
                            <p>- 콜마너(필수), 로지(선택)</p>
                        </div>
                        <div>
                            <h3>프로그램 비용</h3>
                            <p>- 프로그램별 월15,000원</p>
                        </div>
                        <div>
                            <h3>대리기사 보험</h3>
                            <p>- 월 보험 및 건당 보험 가입 가능</p>
                        </div>
                        <div>
                            <h3>관리 비용</h3>
                            <p>- 하루 단위 관리비 500원</p>
                        </div>
                    </div>
                </li>
            </ul>
        </div>
    </div>
</section>







        </main><hr class="layout">
    </div><hr class="layout">

    

<!-- 퀵배너 버튼 -->
<div class="quick-banner" onclick="openQuickPopup()">
    <span class="quick-text">간편접수</span>
    <div><img src="/img/icon/quick-icon-2.png" alt="Quick Icon"></div>
</div>

<!-- 간편접수 팝업 -->
<div class="quick-popup" id="quickPopup">
    <div class="popup-content">
        <div class="popup-content2">
            <!-- 닫기 버튼 -->
            <button class="close-btn" onclick="closeQuickPopup()">×</button>

            <!-- 로고 -->
            <div class="popup-logo">
                <h2>천사대리</h2>
            </div>

            <div class="popup_textbox">
                
                <!-- 입력 폼 -->
                <div class="register-form__article article-1">
                    <div class="popup-text">
                        <p>등록 고객님의</p>
                    </div>
                    <label>이름</label>
                    <input class="input-name" type="text" placeholder="이름을 입력해주세요.">
                     <label>전화번호</label>
                    <input class="input-tel" type="tel" placeholder="전화번호를 입력해주세요." maxlength="12">
                 </div>
                <div class="register-form__article article-2 on">
                    <div class="popup-text">
                        <p>탑승 고객님의</p>
                    </div>
                    <div class="scrollbar-inner">
                        <label>이름</label>
                        <input class="input-name" type="text" placeholder="이름을 입력해주세요.">
                         <label>전화번호</label>
                        <input class="input-tel" type="tel" placeholder="전화번호를 입력해주세요." maxlength="12">

                         <label class="input-label input-label--checkbox d-inline-block mt-10">
                            <input type="checkbox" class="input-label__input same-user">
                             <span class="input-label__txt">등록 고객님과 동의해요.</span>
                        </label>

                        <p class="txt-1 mt-15">경로를 입력해주세요.</p>
                        <div class="address-search-area start">
                            <p class="txt-2 mt-7">출발지</p>
                            <div class="address-search-input">
                                <input id="input-start" class="input-start" type="text" placeholder="출발지를 입력해보세요.">
                                 <button id="address-search-btn-start" type="button" class="address-search-input-btn">조회</button>
                                <button type="button" class="address-search-input-clear">
                                    <img src="/assets/images/icon/icon-clear.png" alt="">
                                 </button>
                            </div>

                            <div class="address-search-dropdown start" style="display: none;">
                                <div class="address-search-list">
                                    <div class="scrollbar-inner">
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>

                        <div class="address-search-area end">
                            <p class="txt-2 mt-10">도착지</p>
                            <div class="address-search-input">
                                <input id="input-end" class="input-end" type="text" placeholder="도착지를 입력해보세요.">
                                 <button id="address-search-btn-end" type="button" class="address-search-input-btn">조회</button>
                                <button type="button" class="address-search-input-clear">
                                    <img src="/assets/images/icon/icon-clear.png" alt="">
                                 </button>
                            </div>

                            <div class="address-search-dropdown end" style="display: none;">
                                <div class="address-search-list">
                                    <div class="scrollbar-inner">
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                        <div class="item">
                                            <a href="#none" class="inner">
                                                <div class="icon">
                                                    <img src="/assets/images/icon/address-search.png" alt="">
                                                 </div>
                                                <p class="address-txt address-txt-1">엔젤플러스</p>
                                                <p class="address-txt address-txt-2 mt-1">서울시 서초구 반포대로 30길 5</p>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>

                        <p class="txt-3 mt-20"><span class="text-color-9">*</span> 개인정보수집 및 이용동의</p>

                        <div class="textarea-box mt-3">
                            <div class="textarea-box__inner scrollbar-inner">
                                <iframe src="/test/consent_to_use-text2.html" frameborder="0"></iframe>
                            </div>
                        </div>
                        <label class="input-label input-label--checkbox d-inline-block mt-6 mt-sm-10">
                            <input type="checkbox" class="input-label__input user-agreement">
                             <span class="input-label__txt">위 내용을 확인하였으며 동의합니다. </span>
                        </label>

                        <p class="txt-3 mt-11">
                            <span class="text-color-9">*</span>
                            개인정보 제3자 제공에 대한 <br>
                            <span class="pl-3">별도 동의</span>
                        </p>

                        <div class="textarea-box mt-3">
                            <div class="textarea-box__inner scrollbar-inner">
                                <iframe src="/test/consent_to_use-text3.html" frameborder="0"></iframe>
                            </div>
                        </div>
                        <label class="input-label input-label--checkbox d-inline-block mt-6 mt-sm-10">
                            <input type="checkbox" class="input-label__input user-agreement">
                             <span class="input-label__txt">위 내용을 확인하였으며 동의합니다. </span>
                        </label>
                    </div>
                </div>
            </div>
        </div>

        <!-- 다음 버튼 -->
        <button class="button">다음</button>
    </div>
</div>
</div>

<script>
    function openQuickPopup() {
        document.getElementById('quickPopup').style.display = 'flex';
        // ▼▼▼ 추가: 배경 스크롤 잠금
        document.body.style.overflow = 'hidden';
    }

    function closeQuickPopup() {
        document.getElementById('quickPopup').style.display = 'none';
        // ▼▼▼ 추가: 배경 스크롤 잠금 해제
        document.body.style.overflow = '';
    }



    document.addEventListener('click', function (event) {
        const popup = document.getElementById('quickPopup');
        const content = document.querySelector('.popup-content');

        // ▼▼▼ 조건 추가: .text_a (버튼)를 눌렀을 때는 실행하지 않음
        if (popup.style.display === 'flex' &&
            !content.contains(event.target) &&
            !event.target.closest('.quick-banner') &&
            !event.target.closest('.text_a') // <-- 이 부분 추가
        ) {
            closeQuickPopup();
        }
    });
</script>

    <div class="bottom-nav RTMB" style="display: none!important;">
    <ul class="bottom-nav__tabBar">
        <li><button type="button" class="btnNav eNavFold"><i aria-hidden="true" class="icon icoNav"></i>네비게이션</button></li>
        <li><button type="button" class="btnSearch eSearch"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img">
    <path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M11 19c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z"></path>
    <path stroke="#000" stroke-linejoin="round" stroke-width="1.5" d="M22 22l-5-5"></path>
</svg>검색</button></li>
        <li><a href="/"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img">
    <path stroke="#000" stroke-width="1.5" d="M12 3L2 11.36V22h7.692v-7.6h4.616V22H22V11.36L12 3z"></path>
</svg>홈</a></li>
                <li class="xans-element- xans-layout xans-layout-statelogoff "><a href="/order/basket.html"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img">
    <path fill="#000" d="M23.073 22.253l-1.946-14.31c-.04-.38-.368-.667-.758-.667h-3.656v-1.74c0-2.543-2.115-4.613-4.713-4.613-2.599 0-4.713 2.07-4.713 4.613v1.74H3.63c-.39 0-.717.288-.758.667L.927 22.253c-.022.21.047.42.192.577.144.157.35.247.566.247h20.63c.216 0 .421-.09.566-.247.145-.157.214-.366.192-.576zM8.81 5.537c0-1.72 1.431-3.122 3.19-3.122 1.758 0 3.19 1.401 3.19 3.122v1.74H8.81v-1.74zm-6.28 16.05l1.786-12.82h2.97v1.644c0 .412.342.746.762.746.421 0 .762-.334.762-.746V8.767h6.38v1.643c0 .412.34.746.761.746.42 0 .762-.334.762-.746V8.767h2.97l1.786 12.819H2.53z"></path>
</svg>Cart <span class="count displaynone EC-Layout_Basket-count-display"><span class="EC-Layout-Basket-count"></span></span></a>
</li>
        <li><a href="/myshop/index.html"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img">
    <circle cx="11.5" cy="6.5" r="3.75" stroke="#000" stroke-width="1.5"></circle>
    <path stroke="#000" stroke-width="1.5" d="M1.78 21.25c.382-4.758 4.364-8.5 9.22-8.5h1c4.856 0 8.838 3.742 9.22 8.5H1.78z"></path>
</svg>
마이쇼핑</a></li>
    </ul>
    <div class="bottom-nav__top">
        <a href="#wrap" title="화면 최상단으로 이동하기"><i aria-hidden="true" class="icon icoArrowTop"></i><span>Top</span></a>
    </div>
</div>


<footer id="footer">
    <h2 class="blind">회사정보</h2>
    <div class="inner">
        <div class="xans-element- xans-layout xans-layout-footer "><ul class="util" style="display: none;">
                <li><a href="/index.html">Home</a></li>
                <li><a href="/shopinfo/company.html">About Us</a></li>
                <li><a href="/member/mall_agreement.html">Terms&amp;Conditions</a></li>
                <li><a href="/member/privacy.html"><strong>Privacy Policy</strong></a></li>
                <li><a href="/shopinfo/guide.html">Help</a></li>
            </ul>
<div class="sns" style="display: none;">
                <a href="#none"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewbox="0 0 20 20" class="icon" role="img">
    <path fill="#000" d="M10 1.833c2.667 0 3 0 4.083.084 2.75.083 4 1.416 4.084 4.083.083 1.083.083 1.333.083 4s0 3-.083 4c-.084 2.667-1.417 4-4.084 4.083-1.083.084-1.333.084-4.083.084-2.667 0-3 0-4-.084C3.25 18 2 16.667 1.917 14c-.084-1.083-.084-1.333-.084-4s0-3 .084-4C2 3.333 3.333 2 6 1.917c1-.084 1.333-.084 4-.084zM10 0C7.25 0 6.917 0 5.917.083 2.25.25.25 2.25.083 5.917 0 6.917 0 7.25 0 10s0 3.083.083 4.083C.25 17.75 2.25 19.75 5.917 19.917 6.917 20 7.25 20 10 20s3.083 0 4.083-.083c3.667-.167 5.667-2.167 5.834-5.834C20 13.083 20 12.75 20 10s0-3.083-.083-4.083C19.75 2.25 17.75.25 14.083.083 13.083 0 12.75 0 10 0zm0 4.833c-2.833 0-5.167 2.334-5.167 5.167 0 2.833 2.334 5.167 5.167 5.167 2.833 0 5.167-2.334 5.167-5.167 0-2.833-2.334-5.167-5.167-5.167zm0 8.5c-1.833 0-3.333-1.5-3.333-3.333 0-1.833 1.5-3.333 3.333-3.333 1.833 0 3.333 1.5 3.333 3.333 0 1.833-1.5 3.333-3.333 3.333zM15.333 3.5c-.666 0-1.166.5-1.166 1.167 0 .666.5 1.166 1.166 1.166.667 0 1.167-.5 1.167-1.166C16.5 4 16 3.5 15.333 3.5z"></path>
</svg>
instagram</a>
                <a href="#none"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewbox="0 0 20 20" class="icon" role="img">
    <path fill="#000" d="M8.05 7.465H6v2.733h2.05v8.198h3.415v-8.198h2.46l.273-2.733h-2.732v-1.16c0-.616.136-.89.751-.89h1.981V2h-2.596C9.142 2 8.05 3.093 8.05 5.143v2.322z"></path>
</svg>
facebook</a>
                <a href="#none"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewbox="0 0 20 20" class="icon" role="img">
    <path fill="#000" d="M17.84 6.417s-.156-1.098-.637-1.58c-.61-.635-1.29-.638-1.603-.675C13.363 4 10.003 4 10.003 4h-.006s-3.36 0-5.597.162c-.313.037-.994.04-1.603.675-.481.482-.635 1.58-.635 1.58S2 7.707 2 8.995v1.207c0 1.287.16 2.578.16 2.578s.156 1.098.634 1.58c.61.635 1.41.613 1.765.681C5.841 15.163 10 15.2 10 15.2s3.363-.006 5.6-.165c.313-.037.994-.04 1.603-.675.481-.482.638-1.58.638-1.58S18 11.493 18 10.202V8.995c0-1.288-.16-2.578-.16-2.578zm-9.493 5.25V7.19l4.322 2.246-4.322 2.23z"></path>
</svg>
youtube</a>
                <a href="#none"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewbox="0 0 20 20" class="icon" role="img">
    <path fill="#000" d="M10.198 2C5.67 2 2 4.875 2 8.421c0 2.293 1.534 4.304 3.843 5.44-.126.43-.807 2.768-.834 2.952 0 0-.017.138.073.19.09.053.196.012.196.012.258-.036 2.991-1.943 3.464-2.274.473.066.96.101 1.456.101 4.528 0 8.198-2.875 8.198-6.421 0-3.546-3.67-6.421-8.198-6.421z"></path>
</svg>
kakao</a>
            </div>
<div class="info">
                <div class="info__address">
                    <span>대표 : 김상원</span> <span>주소 : <!--[06665]-->서울 서초구 방배로 84 유성빌딩 7층</span> <span>사업자번호 : [220-87-12396]</span><!--<span>통신판매업 신고 </span>--> <span></span> <br>
                    <span>기업고객문의 : 1644-2211</span> <span>일반고객문의 : 1588-1004</span> <span>기사관리팀 : 1599-7399</span> <!--<span>팩스 : </span>--><br>
                    <!-- <p class="copyright">Copyright &copy; <strong>주식회사 엔젤플러스</strong>. All rights reserved.</p> -->
                </div>
            </div>
</div>
    </div>
</footer>

<hr class="layout">

<form id="searchBarForm" name="" action="/product/search.html" method="get" target="_self" enctype="multipart/form-data" >
<input id="banner_action" name="banner_action" value="" type="hidden"  /><div class="xans-element- xans-layout xans-layout-searchheader "><!--
        $product_page=/product/detail.html
        $category_page=/product/list.html
    -->
<h3 class="title">Search</h3>
<fieldset>
        <legend>검색</legend>
        <input id="keyword" name="keyword" fw-filter="" fw-label="검색어" fw-msg="" class="inputTypeText" placeholder="" onmousedown="SEARCH_BANNER.clickSearchForm(this)" value="" type="text"  /><button type="button" class="btnSearch" onclick="SEARCH_BANNER.submitSearchBanner(this); return false;"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewbox="0 0 24 24" class="icon" role="img">
    <path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M11 19c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z"></path>
    <path stroke="#000" stroke-linejoin="round" stroke-width="1.5" d="M22 22l-5-5"></path>
</svg> 검색</button><ul class="autoDrop" id=""></ul>
    </fieldset>
<button type="button" class="btnClose"><i aria-hidden="true" class="icon icoClose"></i>닫기</button>
</div>
</form>            
<div id="progressPaybar" style="display:none;">
    <div id="progressPaybarBackground" class="layerProgress"></div>
    <div id="progressPaybarView">
        <div class="box">
            <h3>현재 결제가 진행중입니다.</h3>
            <p class="txt">
                본 결제 창은 결제완료 후 자동으로 닫히며,결제 진행 중에 본 결제 창을 닫으시면<br>
                주문이 되지 않으니 결제 완료 될 때 까지 닫지 마시기 바랍니다.
            </p>
            <div class="progressbar"><img src="//img.echosting.cafe24.com/skin/skin/common/img_loading.gif" alt="loading" loading="lazy"></div>
        </div>
    </div>
</div>


<div id="layoutDimmed" class="dimmed"></div>
<script type="text/javascript">var sAuthSSLDomain = "https://login2.cafe24ssl.com";</script><script type="text/javascript" src="https://login2.cafe24ssl.com/crypt/AuthSSLManager.js"></script><script type="text/javascript" src="https://login2.cafe24ssl.com/crypt/AuthSSLManager.plugin.js"></script>
<span itemscope="" itemtype="https://schema.org/Organization">
<link itemprop="url" href="https://angelplus1004.cafe24.com">
</span>
<script type="text/javascript" src="/app/Eclog/js/cid.generate.js?vs=ffb7751159920168dba8494ed7436e0a&u=angelplus1004.1"></script>
<script>        (function (i, s, o, g) {
            var a = s.createElement(o), m = s.getElementsByTagName(o)[0];
            var initialized = false;
            var interval = null;

            function safeInit() {
              if (initialized) return;
              if (typeof i.initCaWebAnalytics === 'function') {
                try {
                  i.initCaWebAnalytics({"mid":"angelplus1004","stype":"e","domain":"","shop_no":1,"lang":"ko_KR","mobile_flag":"F","send_endpoint":"https://ca-log.cafe24data.com","path_role":"MAIN"});
                  initialized = true;
                } finally {
                  if (interval) clearInterval(interval);
                  a.onload = a.onreadystatechange = a.onerror = null;
                }
              }
            }

            a.onload = a.onreadystatechange = function () {
              if (!a.readyState || a.readyState === 'loaded' || a.readyState === 'complete') {
                safeInit();
              }
            };

            a.onerror = function () {
              if (interval) { clearInterval(interval); interval = null; }
              a.onload = a.onreadystatechange = a.onerror = null;
            };

            interval = setInterval(safeInit, 200);
            setTimeout(function () {
              if (interval) { clearInterval(interval); interval = null; }
            }, 10000);

            safeInit();

            a.async = 1;
            a.setAttribute('crossorigin', 'anonymous');
            a.src = g;
            m.parentNode.insertBefore(a, m);
        })(window, document, 'script', "//optimizer.poxo.com/ca2/analytics.js?v=20251120");</script>
<script type="text/javascript" src="/ind-script/i18n.php?v=2511191438&lang=ko_KR&domain=front&type=" charset="utf-8"></script>

<script src="/ind-script/optimizer.php?filename=zVhNc9s2EL3bvOZ30G7aTq-xPG4zsSca25mcQXBJwQSw6AKwRP_6LmkljRqTIkF7phd9UHgPu4v9eFC-QQP5-S-UVyQMbJGanMBjJAn5g8_V-R82e_Dv8rF1UTkhm_zh7wjU7t_eZ79nZzORsAtAVmi_f5BJxEbBUpZIOsmFDGRW2WSo0Er4NDT_GpD-47gjrBl_cDylCBAULzC8yoYc5E3_4asKm_unSxFEZpSdwaNVwSi458_HUd6RsqGaQI8ydmZdIZkV2kCoNdBx3FpH_8G5C1JlPcGeGJQ-vqoi7CN14lEzAu1JQHeilYWTQlg7xa5nConGoJ26eicsl5Pl3HQEYfouPS6AcZrP5WWQcC6_wUJpyG9_wD_bNxKVAZzBMvIjv1Vu3oZVtLILaLeujDJkZjCJpzKMGMGpmn95rp4fKbR4ajWKchbIxCC6fT8XHuhx6HAGwA51Wyk9OfVKqETUoQuBN4LCxQtZN7_LFbXqQf-PnltyA7GeI-qXMoHwytZLWQwEUXbtcDAb7zboDo71qj-sT6IRmDfd61rtQI_1ohGaVV-LX0ZLcQB6CUWs52_I3aJGaq-VD7PBt1ABgZWwitS9t2tScsTpCxRUHvDw06zonqaBWowhFok7RinTgIVG2aRBCRxSSMPq7ohM3wzn9R1Co_w8jDKi5qP16ikxuFVnZXTDHfYYwZZUmDDLP8Swubu7nln3Tsda8bx8ZPHF5Y70rf6_P0iSZT_Tdg3Glv5nemZw3PXg7XbYgHbw5n5shC317Kk0YwOesqpq346fEzW8Wpi4MQiWKg0eT9x_LZjbdT0IkptZ5RxExTEclPgDqBX7YktB-a_Zb9lZXrGydEo2lEaiz8_sYGRG3L3r3e1-YMnVq69vlCOSUVjuXwdkW-C2Xc8zfT_Vcs-Wnbrh2TYJL_ffTiu-3Yiw1JLXopl2GdoEwzEPKijwx1evqHUBP0E764SEb618fk3GGTAFUDL8M5VA0oZkggvhGwjLGdy4kJrEsd7fjVJZVhh5RC3x5YZFgKjT_bhkteRV-v5fld-MC9sJBBLjghAQSFgAv-3hDbQ8h8qFLPcYhF4t8qavj_S0BAuVWloa16JdYMOfJMr0hGS1idx0lexpeGBt02uDr_ZqjS669AKNns0B4kJ_VEsO5oavfw3s-8WyDDmgWlR7fa79pbp_ONtXyNo9070oXoXnYwCz3L1LCELpj7bC9CTQgi9rhYYFFjkRNoQaTieI0iPmXI9e-F4Au4Qp9TzlT1nPDSnaAaDfZizQJ_2nTBgDXKnd8ZVQqk7773ynjP4B&type=js&k=a11ba9bb3b7496490f22b513edaa01b845f2ed04&t=1763527127" ></script><script src="/ind-script/optimizer_user.php?filename=rdFdDsIwCAfwd-er52Caxeg5PEHX4sbWL0vReHtrjCdgjwTyg_yBOQUEtJ0wFgYTJ_TZCx_7foAsoyfbzTV4YIedQ6YpAq8Uj7Aw8Gm_8AFUxKAnznrioieuegLLkyzqndZd9cqLMpbdKNF55U3evJNUGA2T_dLBUNxW_NXbmi3GNhIwijrLh2zxkZCcePzfGcRX4jnl20w5U5x0_phMccDVlCqZweHdtAXN_AA&type=js&k=014adffaa5486721bf5b25a97f7b1b1a15f8c8db&t=1763454378&user=T" ></script>
<script type="text/javascript">
var sIsFrontDesignChangeRequired = 'F';
var sYtshopping = 'F';
var sIsYoutubeShops = 'F';
var sIsValidChRef = 'F';
var sChRef = '';
if (sIsValidChRef === 'T') {
sessionStorage.setItem('ch_ref', sChRef);
}
// ch_ref 존재 여부 체크
CAFE24.hasChRef = function() {
if (sIsValidChRef === 'T' && sessionStorage.getItem('ch_ref')) {
return true;
}
return false;
}
// ch_ref 데이터 조회
CAFE24.getChRefData = function() {
if (sIsValidChRef === 'T') {
return sessionStorage.getItem('ch_ref');
}
}
// 프론트 디자인 변경이 필요한지 여부 반환
CAFE24.checkChannelUI = function() {
if ((sIsFrontDesignChangeRequired === 'T' && sessionStorage.getItem('ch_ref')) || sIsYoutubeShops === 'T') {
return true;
} else {
return false;
}
}
// 파라미터에 ch_ref 추가
CAFE24.attachChRef = function(sUrl) {
if (sUrl) {
var sChRef = CAFE24.getChRefData();
if (sChRef) {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'ch_ref=' + sChRef;
}
}
return sUrl;
}
var sIsCheckout = 'F';
var sCheckoutToken = '';
if (sIsCheckout === 'T') {
sessionStorage.setItem('checkoutToken', sCheckoutToken);
} else {
sessionStorage.removeItem('checkoutToken');
}
CAFE24.getCheckoutToken = function() {
if (sIsCheckout === 'T') {
return sessionStorage.getItem('checkoutToken');
}
}
CAFE24.attachCheckoutParam = function(sUrl) {
if (sUrl) {
var sCheckoutToken = CAFE24.getCheckoutToken();
if (sCheckoutToken) {
var sSeparator = (sUrl.includes('?')) ? '&' : '?';
sUrl += sSeparator + 'checkoutToken=' + sCheckoutToken;
}
}
return sUrl;
}
CAFE24.MOBILE_WEB = false; var mobileWeb = CAFE24.MOBILE_WEB;
try {
var isUseLoginKeepingSubmit = false;
// isSeqNoKeyExpiretime
function isSeqNoKeyExpiretime(iExpiretime)
{
var sDate = new Date();
var iNow = Math.floor(sDate.getTime() / 1000);
// 유효시간 확인
if (iExpiretime > iNow) {
return false;
}
return true;
}
function isUseLoginKeeping()
{
// 디바이스 확인
if (EC_MOBILE_DEVICE === false) {
return;
}
// 로그인 여부
var isLogin = document.cookie.match(/(?:^| |;)iscache=F/) ? true : false
if (isLogin) {
return;
}
var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info');
var iSeqnoExpiretime;
var iSeqNoKey;
if (sLoginKeepingInfo == null) {
iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime');
iSeqNoKey = localStorage.getItem('seq_no_key');
// 유효시간, key 값 확인
if (iSeqnoExpiretime === null || iSeqNoKey === null) {
return;
}
} else {
var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo);
iSeqNoKey = oLoginKeepingInfo.seq_no_key;
iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime;
if (isNaN(iSeqNoKey) === true || isNaN(iSeqnoExpiretime) === true) {
return;
}
}
if (isSeqNoKeyExpiretime(iSeqnoExpiretime) === false) {
return;
}
useLoginKeepingSubmit();
}
function findGetParamValue(paramKey)
{
var result = null,
tmp = [];
location.search.substr(1).split('&').forEach(function (item) {
tmp = item.split('=');
if (tmp[0] === paramKey) result = decodeURIComponent(tmp[1]);
});
return result;
}
function useLoginKeepingSubmit()
{
var iSeqnoExpiretime;
var iSeqNoKey;
var sUseLoginKeepingIp;
var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info');
if (sLoginKeepingInfo == null) {
iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime');
iSeqNoKey = localStorage.getItem('seq_no_key');
} else {
var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo);
iSeqNoKey = oLoginKeepingInfo.seq_no_key;
iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime;
sUseLoginKeepingIp = oLoginKeepingInfo.use_login_keeping_ip;
}
var oForm = document.createElement('form');
oForm.method = 'post';
oForm.action = '/exec/front/member/LoginKeeping';
document.body.appendChild(oForm);
var oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'seq_no_key';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = iSeqNoKey;
oForm.appendChild(oSeqNoObj);
oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'seq_no_key_expiretime';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = iSeqnoExpiretime;
oForm.appendChild(oSeqNoObj);
var returnUrl = findGetParamValue('returnUrl');
if (returnUrl == '' || returnUrl == null) {
returnUrl = location.pathname + location.search;
}
oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'returnUrl';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = returnUrl;
oForm.appendChild(oSeqNoObj);
if (sUseLoginKeepingIp != undefined) {
oSeqNoObj = document.createElement('input');
oSeqNoObj.name = 'use_login_keeping_ip';
oSeqNoObj.type = 'hidden';
oSeqNoObj.value = sUseLoginKeepingIp;
oForm.appendChild(oSeqNoObj);
}
oForm.submit();
isUseLoginKeepingSubmit = true;
}
isUseLoginKeeping();
} catch(e) {
}
var bIsUseSpread = false;
var sIsSecret = false;
var iBoardNo = "4";
var bIsUseSpread = false;
var sIsSecret = false;
var iBoardNo = "3";
var is_admin = 'F';
var sFormId = 'boardWriteForm'
var sEleId = ["boardWriteForm::writer","boardWriteForm::email1","boardWriteForm::email2","boardWriteForm::password","boardWriteForm::comment_name"]
AuthSSL.Bind(sFormId, sEleId);
EC$(function() {
BOARD.fix_subject_content();
});
EC$(function(){
FwValidator.bind("boardWriteForm", false);
});
EC$(function() {
var elmSelect = EC$('#email3');
var elmTarget = EC$('#email2');
elmSelect.on('change', function() {
var host = this.value;
if (host != 'etc' && host != '') {
elmTarget.prop('readonly', true);
elmTarget.val(host).change();
} else if (host == 'etc') {
elmTarget.prop('readonly', false);
elmTarget.val('').change();
elmTarget.focus();
} else {
elmTarget.prop('readonly', true);
elmTarget.val('').change();
}
});
});
var bUseElastic = false;
var sSearchBannerUseFlag = 'F';
var aLogData = {"log_server1":"eclog2-225.cafe24.com","log_server2":"elg-db-svcm-247.cafe24.com","mid":"angelplus1004","stype":"e","domain":"","shop_no":1,"lang":"ko_KR","ver":2,"hash":"","ca":"cfa-js.cafe24.com\/cfa.js","etc":"","mobile_flag":"F"};
var sMileageName = '적립금';
var sMileageUnit = '[:PRICE:]원';
var sDepositName = '예치금';
var sDepositUnit = '원';
CAFE24.SHOP_CURRENCY_INFO = {"1":{"aShopCurrencyInfo":{"currency_code":"KRW","currency_no":"410","currency_symbol":"\uffe6","currency_name":"South Korean won","currency_desc":"\uffe6 \uc6d0 (\ud55c\uad6d)","decimal_place":0,"round_method_type":"F"},"aShopSubCurrencyInfo":null,"aBaseCurrencyInfo":{"currency_code":"KRW","currency_no":"410","currency_symbol":"\uffe6","currency_name":"South Korean won","currency_desc":"\uffe6 \uc6d0 (\ud55c\uad6d)","decimal_place":0,"round_method_type":"F"},"fExchangeRate":1,"fExchangeSubRate":null,"aFrontCurrencyFormat":{"head":"","tail":"\uc6d0"},"aFrontSubCurrencyFormat":{"head":"","tail":""}}}; var SHOP_CURRENCY_INFO = CAFE24.SHOP_CURRENCY_INFO;
</script></body>
</html>
