ARTIRING
소개서비스블로그문의
문제정의

5060 빈곤의 늪, 수치로 알아봤습니다

2026년 1월 3일·조회 30
#디자이너#디지털격차#새로운 시작#아티링#프리랜서

5060 세대, 디지털 격차와 노후 빈곤의 늪 | 아티링 /* ===== Reset & Base ===== */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Pretendard', -apple-system, sans-serif; color: var(--black); background: var(--bg-light); line-height: 1.7; font-size: 16px; } /* ===== Color Variables ===== */ :root { --blue: #4169E1; --gray: #5A5A5A; --green: #2ECC71; --beige: #F5DEB3; --purple: #9B59B6; --sky: #87CEEB; --pink: #FF69B4; --yellow: #FFD700; --black: #2C2C2C; --white: #FFFFFF; --bg-light: #FAFAFA; } /* ===== Container ===== */ .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; } .container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; } /* ===== Header ===== */ .site-header { background: white; border-bottom: 1px solid #E5E7EB; padding: 20px 0; position: sticky; top: 0; z-index: 100; } .site-header .container { display: flex; justify-content: space-between; align-items: center; } .logo { height: 32px; } .site-header nav { display: flex; gap: 32px; } .site-header nav a { color: var(--gray); text-decoration: none; font-weight: 500; transition: color 0.2s; font-size: 14px; } .site-header nav a:hover { color: var(--blue); } /* ===== Hero Section ===== */ .hero-section { background: white; padding: 80px 0 60px; text-align: center; } .breadcrumb { font-size: 14px; color: var(--gray); margin-bottom: 24px; } .breadcrumb span:last-child { color: var(--blue); font-weight: 600; } .hero-title { font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em; color: var(--black); } .hero-subtitle { font-size: clamp(18px, 2.5vw, 24px); color: var(--gray); margin-bottom: 32px; line-height: 1.5; } .meta-info { display: flex; justify-content: center; align-items: center; gap: 12px; font-size: 14px; color: var(--gray); flex-wrap: wrap; } .meta-info .divider { color: #D1D5DB; } /* ===== Key Stats ===== */ .key-stats-section { padding: 60px 0; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; } .stat-card { background: white; padding: 40px 32px; border-radius: 16px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; } .stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.12); } .stat-icon { font-size: 48px; margin-bottom: 16px; } .stat-number { font-size: 56px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 4px; } .stat-unit { font-size: 24px; font-weight: 700; color: var(--blue); margin-bottom: 12px; } .stat-label { font-size: 16px; color: var(--gray); font-weight: 500; } /* ===== Content Section ===== */ .content-section { padding: 80px 0; width: 100%; } .content-section .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; } .section-header { text-align: center; margin-bottom: 48px; } .section-tag { display: inline-block; padding: 6px 16px; background: var(--blue); color: white; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 20px; margin-bottom: 16px; } .section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 16px; line-height: 1.3; color: var(--black); } .section-title.center { text-align: center; } /* ===== Content Card ===== */ .content-card { background: white; border-radius: 16px; padding: 48px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); } .card-body { display: flex; flex-direction: column; gap: 40px; } .text-block { max-width: 680px; margin: 0 auto; } .text-block p { font-size: 18px; line-height: 1.8; color: var(--gray); margin-bottom: 20px; } .lead-text { font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 20px; line-height: 1.6; } /* ===== Chart ===== */ .chart-wrapper { background: var(--bg-light); padding: 32px; border-radius: 12px; } .chart-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; text-align: center; color: var(--black); } .chart-caption { margin-top: 16px; font-size: 14px; color: var(--gray); text-align: center; } /* ===== Quote ===== */ .quote-section { padding: 80px 0; background: var(--blue); color: white; } .big-quote { text-align: center; padding: 0; border: none; } .big-quote p { font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.4; margin-bottom: 24px; } .big-quote cite { font-size: 16px; font-style: normal; opacity: 0.8; } /* ===== Comparison Grid ===== */ .comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; width: 100%; justify-items: stretch; } .compare-card { background: white; border-radius: 16px; padding: 40px 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.3s; width: 100%; box-sizing: border-box; } .compare-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.12); } .compare-card.before { border-top: 4px solid var(--gray); } .compare-card.after { border-top: 4px solid var(--blue); } .card-header { margin-bottom: 24px; } .badge { display: inline-block; padding: 4px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; border-radius: 12px; margin-bottom: 12px; } .badge-gray { background: #F3F4F6; color: var(--gray); } .badge-blue { background: #DBEAFE; color: var(--blue); } .card-header h3 { font-size: 24px; font-weight: 700; margin: 0; color: var(--black); } .big-number { font-size: 64px; font-weight: 900; line-height: 1; margin-bottom: 16px; } .big-number.color-gray { color: var(--gray); } .big-number.color-blue { color: var(--blue); } .compare-card p { font-size: 18px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; } .feature-list { list-style: none; padding: 0; margin-top: 24px; } .feature-list li { padding: 12px 0 12px 32px; position: relative; font-size: 17px; color: var(--gray); line-height: 1.7; } .feature-list li::before { content: '•'; position: absolute; left: 12px; color: var(--gray); } .feature-list li.highlight { color: var(--blue); font-weight: 600; } .feature-list li.highlight::before { content: '✓'; color: var(--blue); } /* ===== Data Table ===== */ .data-table { width: 100%; border-collapse: collapse; font-size: 15px; } .data-table thead { background: var(--bg-light); } .data-table th { padding: 16px; text-align: left; font-weight: 700; color: var(--black); border-bottom: 2px solid #E5E7EB; } .data-table td { padding: 16px; border-bottom: 1px solid #E5E7EB; } .data-table tbody tr:hover { background: var(--bg-light); } /* ===== Timeline ===== */ .timeline { position: relative; padding-left: 40px; } .timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--blue); } .timeline-item { position: relative; padding-bottom: 48px; } .timeline-marker { position: absolute; left: -40px; top: 0; width: 32px; height: 32px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; } .timeline-content h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--black); } .timeline-content p { font-size: 18px; color: var(--gray); line-height: 1.7; } /* ===== Related Posts ===== */ .related-section { padding: 80px 0; background: white; } .post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; margin-top: 40px; } .post-card { display: block; background: var(--bg-light); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.3s; } .post-card:hover { transform: translateY(-4px); } .post-thumbnail { width: 100%; height: 200px; background: var(--gray); overflow: hidden; } .post-thumbnail img { width: 100%; height: 100%; object-fit: cover; } .post-info { padding: 24px; } .post-category { display: inline-block; font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; } .post-info h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; color: var(--black); } .post-date { font-size: 14px; color: var(--gray); } /* ===== Source Section ===== */ .source-section { padding: 40px 0; background: var(--bg-light); } .source-text { text-align: center; font-size: 14px; color: var(--gray); opacity: 0.7; } /* ===== CTA Section ===== */ .cta-section { padding: 80px 0; background: var(--black); color: white; } .cta-card { text-align: center; padding: 60px 40px; background: var(--black); border-radius: 20px; } .cta-title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 20px; line-height: 1.3; } .cta-description { font-size: 18px; opacity: 0.8; margin-bottom: 40px; line-height: 1.6; } .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; } .btn { display: inline-block; padding: 16px 40px; font-size: 16px; font-weight: 700; border-radius: 50px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none; } .btn:hover { transform: scale(1.05); } .btn-primary { background: var(--yellow); color: var(--black); } .btn-primary:hover { box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4); } .btn-secondary { background: white; color: var(--black); } .btn-secondary:hover { box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3); } .social-share { display: flex; justify-content: center; align-items: center; gap: 16px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.2); } .social-share span { font-size: 14px; opacity: 0.6; } .share-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; color: white; display: flex; align-items: center; justify-content: center; padding: 0; } .share-btn svg { width: 24px; height: 24px; fill: currentColor; } .share-btn:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); } /* ===== Footer ===== */ .site-footer { background: white; padding: 60px 0 30px; border-top: 1px solid #E5E7EB; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-logo img { height: 32px; margin-bottom: 12px; } .footer-logo p { font-size: 14px; color: var(--gray); } .footer-links { display: flex; flex-direction: column; gap: 12px; } .footer-links a { color: var(--gray); text-decoration: none; font-size: 14px; transition: color 0.2s; } .footer-links a:hover { color: var(--blue); } .footer-contact p { font-size: 14px; color: var(--gray); margin-bottom: 8px; } .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #E5E7EB; font-size: 14px; color: var(--gray); } /* ===== Responsive ===== */ @media (max-width: 768px) { .site-header nav { display: none; } .hero-section { padding: 60px 0 40px; } .content-card { padding: 32px 24px; } .stats-grid { grid-template-columns: 1fr; } .comparison-grid { grid-template-columns: 1fr; } .cta-buttons { flex-direction: column; } .btn { width: 100%; } } 블로그 > 프리랜서 생존 가이드 > 5060 특집 5060 세대, 디지털 격차와 노후 빈곤의 늪 대한민국 55세 이상이 직면한 디지털 소외와 경제적 불안정의 실체를 데이터로 파헤쳤습니다 아티링 리서치팀 • 2024.12.31 • 7분 읽기 📉 0 % 노인 빈곤율 (OECD 1위) 💻 0 점 디지털 정보화 수준 (전체 평균 대비 -19.5점) Problem 숫자로 보는 5060 세대의 위기 대한민국 5060 세대는 지금 두 가지 거대한 위기 앞에 서 있습니다. 하나는 '디지털 격차', 다른 하나는 '노후 빈곤'입니다. 이 두 위기는 서로 맞물려 악순환을 만들어내고 있습니다. 디지털 정보화 수준 69.2점(전체 평균 88.7점 대비 -19.5점), 디지털 역량 지수 69.8점(전체 평균 91.7점 대비 -21.9점). 이 격차는 단순히 기술을 못 다루는 문제가 아닙니다. 일자리, 소득, 그리고 노후 준비와 직결되는 생존의 문제입니다.한국의 노인 빈곤율은 40.4%로 OECD 38개국 중 압도적인 1위입니다. OECD 평균 14.2%의 거의 3배에 달하는 수치입니다. 더 심각한 것은 5060 세대 중 29.5%가 '근로빈곤층(Working Poor)'에 속한다는 사실입니다. 일을 하고도 빈곤에서 벗어나지 못하는 겁니다. OECD 주요국 노인 빈곤율 비교 (2022) 한국의 노인 빈곤율은 OECD 평균의 2.8배 수준입니다. "일을 하고도 가난에서 벗어나지 못하는 5060 세대가 29.5%. 디지털 격차가 소득 격차로, 소득 격차가 노후 빈곤으로 이어집니다." 아티링 리서치팀, 2024년 5060 디지털·경제 실태 분석 Data 디지털 격차, 얼마나 심각한가? 디지털 정보화 수준 69.2점 vs 전체 평균 88.7점 5060 세대는 전체 평균보다 19.5점이나 낮은 디지털 활용 능력을 보입니다. ❌ 온라인 업무 처리 어려움 ❌ 디지털 플랫폼 접근성 낮음 디지털 역량 지수 69.8점 vs 전체 평균 91.7점 실제 디지털 기기를 활용한 업무 수행 능력은 더욱 낮습니다. ❌ 문서 작성/편집 미숙 ❌ 화상회의 툴 사용 어려움 AI 디지털 정보화 수준 66.6점 vs 전체 평균 88.3점 AI 시대에 5060 세대의 격차는 더욱 벌어지고 있습니다. ❌ ChatGPT 등 AI 툴 생소함 ❌ 자동화 업무 도구 미활용 연령대별 디지털 역량 지수 비교 연령이 높아질수록 디지털 역량 격차가 급격히 벌어집니다. --> Solution 아티링 5060 세대 지원 프로세스 1 무료 디지털 교육 (3개월, 140시간) 디자인 기초 툴 (Figma, Canva, Photoshop)부터 시작. AI 활용법 (ChatGPT, Midjourney) 교육. 실전 프로젝트 중심 커리큘럼. 2 Type C 소속사 입사 지원 신입·경력단절·5060 특화 소속사 매칭. 정부 지원금 최대 활용 (두루누리, 일자리안정자금). AI 자동 매칭으로 적합한 프로젝트 배정. 3 안정적 소득 + 4대보험 가입 월 150~250만원 안정적 프로젝트 보장. 4대보험 100% 가입으로 국민연금 수급권 확보. 12개월 근속 시 Type B로 승급 가능. 4 지속 가능한 경력 관리 소속사 내 멘토링 및 동료 지원. 연 2회 디지털 역량 업그레이드 교육. 65세 이후에도 계속 일할 수 있는 시스템. 아티링 Type C 입사 전후 소득 비교 아티링 입사 후 평균 소득 4배 증가 (50만원 → 200만원) 출처: 통계청, OECD, 과학기술정보통신부, 아티링 리서치팀 (2024년 5060 디지털·경제 실태 분석) 5060 세대를 위한 새로운 시작, 아티링과 함께하세요 디지털 격차와 노후 빈곤, 이제 해결할 수 있습니다. 무료 디지털 교육부터 안정적 일자리까지, 아티링이 함께합니다. 더 알아보기 공유하기: 🔗 // AOS 초기화 AOS.init({ duration: 800, once: true, offset: 100 }); // 카운터 애니메이션 function initCounters() { // CountUp.js가 로드되었는지 확인 if (typeof CountUp === 'undefined' && typeof countUp === 'undefined') { // CountUp.js가 없으면 직접 값 설정 document.querySelectorAll('.stat-number').forEach(el => { const target = parseFloat(el.dataset.count); if (target && !isNaN(target)) { const hasDecimal = target % 1 !== 0; const decimals = hasDecimal ? 1 : 0; el.textContent = target.toFixed(decimals); } }); // 잠시 후 다시 시도 setTimeout(initCounters, 500); return; } // CountUp 또는 countUp 사용 const CountUpClass = typeof CountUp !== 'undefined' ? CountUp : countUp; document.querySelectorAll('.stat-number').forEach(el => { const target = parseFloat(el.dataset.count); if (target && !isNaN(target)) { // 소수점이 있는지 확인 const hasDecimal = target % 1 !== 0; const decimals = hasDecimal ? 1 : 0; // CountUp 옵션 설정 const options = { duration: 2, useEasing: true, separator: ',', decimal: '.', decimals: decimals }; try { const counter = new CountUpClass(el, target, options); if (counter.error) { el.textContent = target.toFixed(decimals); return; } // Intersection Observer로 뷰포트 진입 시 시작 const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { counter.start(); observer.unobserve(entry.target); } }); }, { threshold: 0.5 }); observer.observe(el); } catch (e) { // 오류 발생 시 직접 값 설정 el.textContent = target.toFixed(decimals); } } }); } // DOM 로드 후 실행 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', initCounters); } else { // 약간의 지연을 두어 스크립트가 완전히 로드되도록 setTimeout(initCounters, 100); } // 차트 초기화 함수 function initCharts() { // Chart.js가 로드되었는지 확인 if (typeof Chart === 'undefined') { console.error('Chart.js가 로드되지 않았습니다. 잠시 후 다시 시도합니다.'); setTimeout(initCharts, 500); return; } // 차트 1 생성 (노인 빈곤율) const ctx1 = document.getElementById('chart1'); if (ctx1) { const chart1 = new Chart(ctx1.getContext('2d'), { type: 'bar', data: { labels: ['한국', '일본', '미국', '독일', 'OECD 평균'], datasets: [{ label: '빈곤율 (%)', data: [40.4, 20.0, 23.1, 9.1, 14.2], backgroundColor: [ 'rgba(90, 90, 90, 0.8)', 'rgba(90, 90, 90, 0.6)', 'rgba(90, 90, 90, 0.4)', 'rgba(90, 90, 90, 0.3)', 'rgba(65, 105, 225, 0.8)' ], borderWidth: 0, borderRadius: 8 }] }, options: { responsive: true, maintainAspectRatio: true, plugins: { legend: { display: false }, tooltip: { backgroundColor: 'rgba(0,0,0,0.8)', padding: 12, titleFont: { size: 14, weight: 'bold' }, bodyFont: { size: 13 }, cornerRadius: 8, callbacks: { label: function(context) { return context.parsed.y + '%'; } } } }, scales: { y: { beginAtZero: true, grid: { color: '#F3F4F6' }, ticks: { callback: function(value) { return value + '%'; } } }, x: { grid: { display: false } } } } }); } // 차트 2 생성 (디지털 역량) const ctx2 = document.getElementById('chart2'); if (ctx2) { const chart2 = new Chart(ctx2.getContext('2d'), { type: 'line', data: { labels: ['20대', '30대', '40대', '50대', '60대 이상'], datasets: [{ label: '디지털 역량 지수', data: [98.5, 96.2, 89.4, 75.3, 64.2], borderColor: 'rgba(65, 105, 225, 1)', backgroundColor: 'rgba(65, 105, 225, 0.1)', borderWidth: 3, fill: true, tension: 0.4, pointRadius: 6, pointBackgroundColor: 'rgba(65, 105, 225, 1)', pointBorderColor: '#fff', pointBorderWidth: 2 }] }, options: { responsive: true, maintainAspectRatio: true, plugins: { legend: { display: false }, tooltip: { backgroundColor: 'rgba(0,0,0,0.8)', padding: 12, titleFont: { size: 14, weight: 'bold' }, bodyFont: { size: 13 }, cornerRadius: 8, callbacks: { label: function(context) { return '디지털 역량 지수: ' + context.parsed.y + '점'; } } } }, scales: { y: { beginAtZero: true, max: 100, grid: { color: '#F3F4F6' }, ticks: { callback: function(value) { return value + '점'; } } }, x: { grid: { display: false } } } } }); } // 차트 3 생성 (소득 비교) const ctx3 = document.getElementById('chart3'); if (ctx3) { const chart3 = new Chart(ctx3.getContext('2d'), { type: 'bar', data: { labels: ['Before (기존)', 'After (아티링)'], datasets: [ { label: '최저 월소득', data: [0, 150], backgroundColor: 'rgba(90, 90, 90, 0.6)' }, { label: '평균 월소득', data: [50, 200], backgroundColor: 'rgba(90, 90, 90, 0.8)' }, { label: '최대 월소득', data: [100, 250], backgroundColor: 'rgba(65, 105, 225, 0.8)' } ] }, options: { responsive: true, maintainAspectRatio: true, plugins: { legend: { display: true, position: 'top' }, tooltip: { backgroundColor: 'rgba(0,0,0,0.8)', padding: 12, titleFont: { size: 14, weight: 'bold' }, bodyFont: { size: 13 }, cornerRadius: 8, callbacks: { label: function(context) { return context.dataset.label + ': ' + context.parsed.y + '만원'; } } } }, scales: { y: { beginAtZero: true, grid: { color: '#F3F4F6' }, ticks: { callback: function(value) { return value + '만원'; } } }, x: { grid: { display: false } } } } }); } } // DOM 로드 후 차트 초기화 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', function() { setTimeout(initCharts, 100); }); } else { setTimeout(initCharts, 100); } // 소셜 공유 document.querySelectorAll('.share-btn').forEach(btn => { btn.addEventListener('click', () => { const platform = btn.dataset.platform; if (platform) { const url = encodeURIComponent(window.location.href); const title = encodeURIComponent(document.title); let shareUrl; switch(platform) { case 'twitter': shareUrl = `https://twitter.com/intent/tweet?url=${url}&text=${title}`; break; case 'facebook': shareUrl = `https://www.facebook.com/sharer/sharer.php?u=${url}`; break; case 'linkedin': shareUrl = `https://www.linkedin.com/sharing/share-offsite/?url=${url}`; break; } if (shareUrl) { window.open(shareUrl, '_blank', 'width=600,height=400'); } } else if (btn.classList.contains('copy-link')) { navigator.clipboard.writeText(window.location.href).then(() => { alert('링크가 복사되었습니다!'); }); } }); }); // Smooth Scroll document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function(e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); // iframe 높이 자동 전달 (부모 창에 메시지 전송) function sendHeightToParent() { if (window.parent !== window) { const height = Math.max( document.body.scrollHeight, document.body.offsetHeight, document.documentElement.clientHeight, document.documentElement.scrollHeight, document.documentElement.offsetHeight ); window.parent.postMessage({ type: 'iframe-resize', height: height }, '*'); } } // 초기 높이 전달 window.addEventListener('load', () => { sendHeightToParent(); // 동적 콘텐츠(차트, 애니메이션) 로드 후 높이 재전달 setTimeout(sendHeightToParent, 2000); }); // 리사이즈 이벤트 감지 let resizeTimer; window.addEventListener('resize', () => { clearTimeout(resizeTimer); resizeTimer = setTimeout(sendHeightToParent, 300); }); // MutationObserver로 DOM 변경 감지 const observer = new MutationObserver(() => { sendHeightToParent(); }); observer.observe(document.body, { childList: true, subtree: true, attributes: true });
마무리 배너
← 이전 글
"AI가 내 일자리를 뺏어갈까요?"
다음 글 →
한국 디자인 프리랜서 시장, 수치로 보았습니다
한국 디자인 프리랜서 시장, 수치로 보았습니다
목록으로 돌아가기
ARTIRING

프리랜서 에이전시 기반 인력 관리 플랫폼
새로운 프리랜서 생태계를 만들어갑니다.

페이지

  • 소개
  • 서비스
  • 기록
  • 문의

채널

© 2026 ARTIRING. All rights reserved.

개인정보처리방침이용약관