2025월 05월 09일(금) 부동산 뉴스

<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>부동산 일간 뉴스레터 대시보드</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.9.1/chart.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/luxon@3.4.3/build/global/luxon.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-luxon@1.3.1/dist/chartjs-adapter-luxon.min.js"></script> <style> @font-face { font-family: 'SUITE'; src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUITE/fonts/static/woff2/SUITE-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; } @font-face { font-family: 'SUITE'; src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUITE/fonts/static/woff2/SUITE-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; } @font-face { font-family: 'SUITE'; src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUITE/fonts/static/woff2/SUITE-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; } @font-face { font-family: 'SUITE'; src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUITE/fonts/static/woff2/SUITE-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; } :root { --main-color: #012f47; --secondary-color: #dbd4cc; --accent-color1: #018ab4; --accent-color2: #0eb9e8; --accent-color3: #00baee; --black: #2d2d2d; --light-gray: #f5f5f5; --medium-gray: #e0e0e0; --white: #ffffff; --shadow: 0 4px 12px rgba(0, 0, 0, 0.1); --border-radius: 12px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'SUITE', 'Noto Sans KR', sans-serif; color: var(--black); background-color: var(--light-gray); line-height: 1.6; padding: 0; margin: 0; } .container { max-width: 1400px; margin: 0 auto; padding: 20px; background-color: var(--white); min-height: 100vh; } header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 2px solid var(--secondary-color); margin-bottom: 30px; } .header-left h1 { font-size: 28px; color: var(--main-color); font-weight: 700; line-height: 1.3; margin-bottom: 5px; } .header-left p { color: var(--accent-color1); font-size: 16px; font-weight: 500; } .header-right { text-align: right; } .date { font-size: 18px; font-weight: 600; color: var(--main-color); } .source { font-size: 14px; color: var(--black); } .main-content { display: flex; gap: 25px; margin-bottom: 30px; } .left-column { flex: 6; } .right-column { flex: 4; } .card { background-color: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow); padding: 20px; margin-bottom: 25px; overflow: hidden; } .card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px solid var(--secondary-color); padding-bottom: 10px; } .card-title { font-size: 20px; font-weight: 600; color: var(--main-color); display: flex; align-items: center; gap: 10px; } .card-title i { color: var(--accent-color2); } .highlight-number { font-size: 32px; font-weight: 700; color: var(--accent-color1); margin: 15px 0; line-height: 1.2; } .highlight-text { font-size: 14px; color: var(--black); margin-bottom: 5px; } .chart-container { position: relative; height: 250px; margin-top: 15px; } .summary-card { border-left: 4px solid var(--accent-color1); padding-left: 15px; margin: 20px 0; background-color: rgba(1, 138, 180, 0.05); padding: 15px 15px 15px 20px; border-radius: 0 var(--border-radius) var(--border-radius) 0; } .news-item { border-bottom: 1px solid var(--medium-gray); padding: 12px 0; } .news-item:last-child { border-bottom: none; } .news-title { font-size: 16px; font-weight: 600; color: var(--main-color); margin-bottom: 5px; cursor: pointer; transition: color 0.2s ease; } .news-title:hover { color: var(--accent-color2); } .news-source { font-size: 12px; color: var(--black); display: flex; justify-content: space-between; } .news-summary { font-size: 14px; margin: 8px 0; color: var(--black); display: none; } .news-link { font-size: 12px; color: var(--accent-color1); text-decoration: none; } .news-link:hover { text-decoration: underline; } .news-expanded .news-summary { display: block; } .key-points { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; } .key-point { display: flex; align-items: flex-start; gap: 12px; padding: 10px; border-radius: 8px; background-color: rgba(219, 212, 204, 0.2); } .key-point i { color: var(--accent-color1); font-size: 18px; margin-top: 2px; } .key-point-content { flex: 1; } .key-point-title { font-weight: 600; font-size: 16px; color: var(--main-color); margin-bottom: 4px; } .key-point-text { font-size: 14px; color: var(--black); } .highlight-message { background-color: var(--main-color); color: var(--white); padding: 15px; border-radius: 8px; font-size: 16px; font-weight: 500; margin: 20px 0; text-align: center; } .factor-box { background-color: rgba(14, 185, 232, 0.1); border: 1px dashed var(--accent-color2); border-radius: 8px; padding: 15px; margin-top: 20px; } .factor-box-title { font-weight: 600; color: var(--accent-color1); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; } .factor-box-content { font-size: 14px; } .data-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 15px; } .data-item { background-color: rgba(1, 47, 71, 0.05); padding: 15px; border-radius: 8px; text-align: center; } .data-value { font-size: 24px; font-weight: 700; color: var(--accent-color1); margin-bottom: 5px; } .data-label { font-size: 13px; color: var(--black); } footer { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 2px solid var(--secondary-color); margin-top: 30px; font-size: 14px; } .footer-left { color: var(--black); } .footer-right { color: var(--main-color); font-weight: 500; } .tabs { display: flex; border-bottom: 1px solid var(--medium-gray); margin-bottom: 15px; } .tab { padding: 10px 15px; cursor: pointer; font-weight: 500; color: var(--black); border-bottom: 3px solid transparent; transition: all 0.3s ease; } .tab.active { color: var(--accent-color1); border-bottom-color: var(--accent-color1); } .tab-content { display: none; } .tab-content.active { display: block; } .market-trend { display: flex; align-items: center; margin: 10px 0; } .trend-icon { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 10px; } .trend-up { background-color: rgba(255, 87, 87, 0.1); color: #ff5757; } .trend-down { background-color: rgba(59, 130, 246, 0.1); color: #3b82f6; } .trend-neutral { background-color: rgba(107, 114, 128, 0.1); color: #6b7280; } .data-comparison { display: flex; gap: 15px; margin-bottom: 15px; } .data-comparison-item { flex: 1; padding: 10px; border-radius: 8px; background-color: rgba(219, 212, 204, 0.2); text-align: center; } .comparison-title { font-size: 14px; color: var(--black); margin-bottom: 5px; } .comparison-value { font-size: 20px; font-weight: 700; color: var(--accent-color1); } .comparison-value.up { color: #ff5757; } .comparison-value.down { color: #3b82f6; } .policy-update { display: flex; align-items: center; background-color: rgba(1, 138, 180, 0.1); padding: 12px; border-radius: 8px; margin-bottom: 10px; } .policy-icon { width: 40px; height: 40px; background-color: var(--accent-color1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; margin-right: 15px; flex-shrink: 0; } .policy-text { font-size: 14px; } .policy-title { font-weight: 600; margin-bottom: 3px; } @media (max-width: 1024px) { .main-content { flex-direction: column; } .left-column, .right-column { flex: 1; width: 100%; } .chart-container { height: 300px; } } </style> </head> <body> <div class="container"> <header> <div class="header-left"> <h1>부동산 일간 뉴스레터</h1> <p>Daily Real Estate Newsletter</p> </div> <div class="header-right"> <div class="date">2025년 5월 9일</div> <div class="source">데이터 기준: KB국민은행, 부동산R114, 행정안전부</div> </div> </header> <div class="main-content"> <div class="left-column"> <div class="card"> <div class="card-header"> <div class="card-title"> <i class="fas fa-chart-line"></i> 시장 동향 핵심 요약 </div> </div> <div class="summary-card"> <p>5월 전국 아파트 2만3,197가구 분양 예정(수도권 75% 집중), 서울 아파트 전세가율 11개월 만에 최저(53.52%), 지방 부동산 활성화 위한 취득세 중과 제외 기준 2억원으로 완화</p> </div> <div class="key-points"> <div class="key-point"> <i class="fas fa-building"></i> <div class="key-point-content"> <div class="key-point-title">아파트 분양 시장</div> <div class="key-point-text">올해 최대 규모인 전국 29개 단지, 총 2만3,197가구가 5월에 분양 예정. 수도권에 1만7,302가구(75%)가 집중되며, 대선을 앞두고 건설사들이 분양 일정을 서두르는 양상.</div> </div> </div> <div class="key-point"> <i class="fas fa-percentage"></i> <div class="key-point-content"> <div class="key-point-title">서울 아파트 전세가율 하락</div> <div class="key-point-text">서울 아파트 전세가율 53.52%로 11개월 만에 최저 기록. 특히 강남구는 통계 집계 이래 최저인 40.7% 기록. 토지거래허가구역 해제 후 매매가격이 전셋값보다 크게 상승.</div> </div> </div> <div class="key-point"> <i class="fas fa-file-invoice-dollar"></i> <div class="key-point-content"> <div class="key-point-title">세제 정책 변화</div> <div class="key-point-text">지방 부동산 활성화를 위한 취득세 중과 제외 저가주택 기준을 1억원에서 2억원으로 상향 조정. 다주택자 양도세 중과배제도 내년 5월까지 1년 연장.</div> </div> </div> <div class="key-point"> <i class="fas fa-chart-pie"></i> <div class="key-point-content"> <div class="key-point-title">상업용 부동산 시장</div> <div class="key-point-text">1분기 투자 거래 규모는 7조553억원으로 전년 동기 대비 66% 증가. 오피스가 5조2,010억원으로 전체 거래의 74%를 차지하며 시장 주도.</div> </div> </div> </div> <div class="highlight-message"> 대선을 앞둔 정치적 불확실성과 경기 침체 우려 속에서도 정부의 세제 완화 정책과 대규모 분양으로 5월 부동산 시장은 활기를 되찾는 움직임 </div> </div> <div class="card"> <div class="card-header"> <div class="card-title"> <i class="fas fa-chart-bar"></i> 5월 아파트 분양 물량 분석 </div> </div> <div class="data-grid"> <div class="data-item"> <div class="data-value">23,197</div> <div class="data-label">전국 아파트 분양 예정 물량(가구)</div> </div> <div class="data-item"> <div class="data-value">75%</div> <div class="data-label">수도권 분양 물량 비중</div> </div> <div class="data-item"> <div class="data-value">17,302</div> <div class="data-label">수도권 분양 예정 물량(가구)</div> </div> <div class="data-item"> <div class="data-value">29</div> <div class="data-label">분양 예정 단지 수</div> </div> </div> <div class="chart-container"> <canvas id="distributionChart"></canvas> </div> <div class="factor-box"> <div class="factor-box-title"> <i class="fas fa-lightbulb"></i> 시장 인사이트 </div> <div class="factor-box-content"> 대선을 앞두고 건설사들이 분양을 서두르는 양상이 뚜렷합니다. 경기 회복 속도가 더디고 미분양 부담도 있어 안정적인 청약 성적을 기대할 수 있는 수도권에 분양이 집중되고 있습니다. 특히 경기도는 3기 신도시 등 공공택지 분양 물량이 많아 1만2,494가구로 가장 많은 물량이 공급됩니다. </div> </div> </div> <div class="card"> <div class="card-header"> <div class="card-title"> <i class="fas fa-home"></i> 서울 아파트 전세가율 분석 </div> </div> <div class="chart-container"> <canvas id="rentRatioChart"></canvas> </div> <div class="data-comparison"> <div class="data-comparison-item"> <div class="comparison-title">강남구 매매가 상승률</div> <div class="comparison-value up">3.18%</div> </div> <div class="data-comparison-item"> <div class="comparison-title">강남구 전셋값 상승률</div> <div class="comparison-value up">0.39%</div> </div> <div class="data-comparison-item"> <div class="comparison-title">송파구 매매가 상승률</div> <div class="comparison-value up">1.80%</div> </div> <div class="data-comparison-item"> <div class="comparison-title">송파구 전셋값 상승률</div> <div class="comparison-value up">0.49%</div> </div> </div> <div class="factor-box"> <div class="factor-box-title"> <i class="fas fa-lightbulb"></i> 분석 포인트 </div> <div class="factor-box-content"> 서울 아파트 전세가율이 11개월 만에 최저치를 기록한 원인은 강남권 토지거래허가구역 해제 이후 매매가격이 전셋값보다 더 크게 상승했기 때문입니다. 강남구의 경우 4월 매매가는 3.18% 상승한 반면, 전셋값은 0.39% 오르는 데 그쳤습니다. 매매가와 전세가의 격차 확대는 당분간 지속될 전망입니다. </div> </div> </div> </div> <div class="right-column"> <div class="card"> <div class="card-header"> <div class="card-title"> <i class="fas fa-newspaper"></i> 최신 뉴스 헤드라인 </div> </div> <div class="tabs"> <div class="tab active" data-tab="market-news">시장 동향</div> <div class="tab" data-tab="policy-news">정책 변화</div> <div class="tab" data-tab="investment-news">투자 정보</div> </div> <div class="tab-content active" id="market-news"> <div class="news-item"> <div class="news-title">서울 아파트 전세가율 11개월 만에 최저 기록</div> <div class="news-summary">KB국민은행 자료에 따르면 4월 서울 아파트 전세가율이 53.52%로, 지난해 5월(53.43%) 이후 11개월 만에 가장 낮은 수준을 기록했습니다. 특히 강남구는 40.7%로 통계 집계 이래 최저치를 기록했으며, 이는 토지거래허가구역 해제 후 강남권 매매가격이 전셋값보다 더 크게 상승한 영향입니다.</div> <div class="news-source"> <span>출처: 브릿지경제</span> <a href="https://www.viva100.com/article/20250506500084" class="news-link" target="_blank">원문 보기</a> </div> </div> <div class="news-item"> <div class="news-title">5월 전국 아파트 2만3,197가구 분양 예정, 수도권에 집중</div> <div class="news-summary">부동산R114에 따르면 5월 전국 아파트 29개 단지, 총 2만3,197가구가 분양 예정이며, 이 중 수도권 물량이 1만7,302가구로 전체의 75%를 차지합니다. 대선을 앞두고 건설사들이 분양을 서두르는 모습으로, 경기 침체와 미분양 우려로 안정적 청약이 기대되는 수도권 중심으로 물량이 집중됐습니다.</div> <div class="news-source"> <span>출처: 헤럴드경제</span> <a href="https://biz.heraldcorp.com/article/10481654" class="news-link" target="_blank">원문 보기</a> </div> </div> <div class="news-item"> <div class="news-title">올해 1분기 전국 상업업무용 빌딩 시장 위축</div> <div class="news-summary">상업용 부동산 전문기업 부동산플래닛에 따르면 올해 1분기 탄핵정국에 따른 경기 불확실성 등으로 전국 상업업무용 빌딩 시장이 위축되었으며, 1분기 전국 상업업무용 빌딩 거래량은 총 3,148건을 기록했습니다.</div> <div class="news-source"> <span>출처: 한국경제</span> <a href="https://www.hankyung.com/realestate" class="news-link" target="_blank">원문 보기</a> </div> </div> </div> <div class="tab-content" id="policy-news"> <div class="news-item"> <div class="news-title">지방 저가주택 취득세 중과 제외 기준 2억원으로 완화</div> <div class="news-summary">행정안전부가 발표한 지방세법 시행령 개정안에 따라 2025년 1월 2일부터 수도권 외 지방에서 공시가격 2억원 이하 주택 구입 시 취득세 중과세율(8% 또는 12%)이 아닌 기본세율(1%)이 적용되며, 이런 주택은 추가 주택 구입 시 보유 주택 수 산정에서도 제외됩니다.</div> <div class="news-source"> <span>출처: 강원도민일보</span> <a href="https://www.kado.net/news/articleView.html?idxno=1306524" class="news-link" target="_blank">원문 보기</a> </div> </div> <div class="news-item"> <div class="news-title">다주택자 양도세 중과배제 1년 연장</div> <div class="news-summary">정부는 '2025년 경제정책방향'에서 다주택자에 대한 양도세 중과 유예 조치를 1년 더 연장하고, 취득세 중과 제외 저가주택 기준도 지방에 한해 두 배로 높이는 등 지방 부동산 세금을 대폭 완화한다고 밝혔습니다.</div> <div class="news-source"> <span>출처: 한국경제</span> <a href="https://www.hankyung.com/article/202501019868i" class="news-link" target="_blank">원문 보기</a> </div> </div> <div class="news-item"> <div class="news-title">JLL, 2025년 기업 부동산 시장 3대 트렌드 발표</div> <div class="news-summary">글로벌 상업용 부동산 서비스 기업 JLL이 '2025년 글로벌 기업 부동산 시장을 주도할 3가지 주요 트렌드'를 발표했습니다. 주요 트렌드로 '포스트 하이브리드 시대의 포트폴리오 전략 고도화'를 선정하고, 업무 환경 변화에 대응한 포트폴리오 전략과 데이터 인프라 강화 등이 중요하다고 강조했습니다.</div> <div class="news-source"> <span>출처: 한국경제</span> <a href="https://www.hankyung.com/amp/202502132789r" class="news-link" target="_blank">원문 보기</a> </div> </div> </div> <div class="tab-content" id="investment-news"> <div class="news-item"> <div class="news-title">CBRE코리아, 올해 1분기 상업용 부동산 투자액 7조원 돌파 발표</div> <div class="news-summary">CBRE코리아는 '2025년 1분기 국내 상업용 부동산 시장 보고서'를 통해 올해 1분기 투자 거래 규모가 7조553억원으로 전년 동기보다 66% 증가했다고 발표했습니다. 오피스는 5조 2,010억원으로 전체 거래의 74%를 차지했습니다.</div> <div class="news-source"> <span>출처: 이투데이</span> <a href="https://www.etoday.co.kr/news/section/subsection?MID=1401" class="news-link" target="_blank">원문 보기</a> </div> </div> <div class="news-item"> <div class="news-title">트럼프 주니어, 국내 부동산 개발업체 엠디엠그룹과 만남</div> <div class="news-summary">도널드 트럼프 미국 대통령의 장남인 트럼프 주니어가 지난달 말 방한하여 국내 부동산 개발업체 엠디엠그룹과 만남을 가졌습니다. 미국, 일본, 베트남 등에서 안정적인 개발사업을 펼치고 있는 엠디엠그룹에 트럼프 주니어가 먼저 '러브콜'을 보내 공동 투자를 제안한 것으로 알려졌습니다.</div> <div class="news-source"> <span>출처: 한국경제</span> <a href="https://www.hankyung.com/article/2025050776041" class="news-link" target="_blank">원문 보기</a> </div> </div> <div class="news-item"> <div class="news-title">교산 푸르지오 더 퍼스트 청약에 예비 청약자 몰려</div> <div class="news-summary">약 3억원가량의 시세 차익이 기대되는 경기도 하남시 천현동 '교산 푸르지오 더 퍼스트' 청약에 예비 청약자들이 몰리면서 대기줄이 길어지고 있습니다. 5월 7일에는 특별공급 청약이 진행되었으며, 8~9일에는 일반공급 청약이 예정되어 있습니다.</div> <div class="news-source"> <span>출처: 한국경제</span> <a href="https://www.hankyung.com/realestate" class="news-link" target="_blank">원문 보기</a> </div> </div> </div> </div> <div class="card"> <div class="card-header"> <div class="card-title"> <i class="fas fa-bullhorn"></i> 주요 정책 변화 </div> </div> <div class="policy-update"> <div class="policy-icon"> <i class="fas fa-home"></i> </div> <div class="policy-text"> <div class="policy-title">지방 저가주택 취득세 중과 제외 기준 상향</div> <p>2025년 1월 2일부터 수도권 외 지방에서 공시가격 2억원 이하 주택 구입 시 취득세 중과세율이 아닌 기본세율(1%) 적용</p> </div> </div> <div class="policy-update"> <div class="policy-icon"> <i class="fas fa-money-bill-wave"></i> </div> <div class="policy-text"> <div class="policy-title">다주택자 양도세 중과배제 1년 연장</div> <p>정부는 다주택자에 대한 양도세 중과 유예 조치를 내년 5월까지 1년 연장하기로 결정</p> </div> </div> <div class="policy-update"> <div class="policy-icon"> <i class="fas fa-building"></i> </div> <div class="policy-text"> <div class="policy-title">토지거래허가구역 해제 영향</div> <p>서울시가 지난 2월 강남 '잠삼대청'(잠실·삼성·대치·청담동) 지역을 토지거래허가구역에서 해제한 이후 강남권 매매가격 상승폭 확대</p> </div> </div> <div class="chart-container"> <canvas id="commercialChart"></canvas> </div> </div> <div class="card"> <div class="card-header"> <div class="card-title"> <i class="fas fa-map-marker-alt"></i> 주요 분양 단지 </div> </div> <div class="news-item"> <div class="news-title">태영건설-GH, 동탄2신도시 '동탄 꿈의숲 자연앤데시앙' 분양</div> <div class="news-summary">태영건설과 경기주택도시공사(GH)가 경기 화성 동탄2신도시에서 '동탄 꿈의숲 자연앤데시앙' 견본주택을 5월 9일 열고, 분양에 나섭니다. 민간 참여 공공분양 사업으로 분양가상한제가 적용되어 관심을 끌고 있습니다.</div> <div class="news-source"> <span>총 1,170가구</span> <a href="https://www.hankyung.com/realestate" class="news-link" target="_blank">원문 보기</a> </div> </div> <div class="news-item"> <div class="news-title">동탄2신도시 '동탄 포레파크 자연앤 푸르지오' 분양</div> <div class="news-summary">경기도 화성시 동탄2신도시에서 분양가상한제가 적용되는 공공택지에 '동탄 포레파크 자연앤 푸르지오'가 분양될 예정입니다.</div> <div class="news-source"> <span>총 1,524가구</span> <a href="https://www.viva100.com/article/20250507500676" class="news-link" target="_blank">원문 보기</a> </div> </div> <div class="news-item"> <div class="news-title">은평구 대조동 '힐스테이트 메디알레' 분양</div> <div class="news-summary">서울 은평구 대조동에서 재개발 사업을 통해 '힐스테이트 메디알레'가 분양될 예정입니다.</div> <div class="news-source"> <span>총 2,451가구</span> <a href="https://www.getnews.co.kr/news/articleView.html?idxno=819589" class="news-link" target="_blank">원문 보기</a> </div> </div> </div> </div> </div> <footer> <div class="footer-left"> <p>© 2025 부동산 일간 뉴스레터 | 최신 부동산 정보 제공</p> </div> <div class="footer-right"> <p>출처: 성성 프리미엄 부동산 (010-8282-8684)</p> </div> </footer> </div> <script> // 뉴스 아이템 클릭 이벤트 document.querySelectorAll('.news-title').forEach(title => { title.addEventListener('click', () => { const newsItem = title.closest('.news-item'); newsItem.classList.toggle('news-expanded'); }); }); // 탭 전환 이벤트 document.querySelectorAll('.tab').forEach(tab => { tab.addEventListener('click', () => { document.querySelectorAll('.tab').forEach(t => t.classList.remove('active')); document.querySelectorAll('.tab-content').forEach(c => c.classList.remove('active')); tab.classList.add('active'); document.getElementById(tab.dataset.tab).classList.add('active'); }); }); // 분양 물량 분포 차트 const distributionCtx = document.getElementById('distributionChart').getContext('2d'); const distributionChart = new Chart(distributionCtx, { type: 'bar', data: { labels: ['경기', '서울', '인천', '충북', '대구', '부산', '강원', '경북', '경남'], datasets: [{ label: '5월 분양 예정 물량(가구)', data: [12494, 4047, 761, 1798, 1577, 1234, 569, 418, 299], backgroundColor: [ 'rgba(1, 138, 180, 0.8)', 'rgba(1, 138, 180, 0.8)', 'rgba(1, 138, 180, 0.8)', 'rgba(14, 185, 232, 0.6)', 'rgba(14, 185, 232, 0.6)', 'rgba(14, 185, 232, 0.6)', 'rgba(14, 185, 232, 0.6)', 'rgba(14, 185, 232, 0.6)', 'rgba(14, 185, 232, 0.6)' ], borderColor: [ 'rgba(1, 138, 180, 1)', 'rgba(1, 138, 180, 1)', 'rgba(1, 138, 180, 1)', 'rgba(14, 185, 232, 1)', 'rgba(14, 185, 232, 1)', 'rgba(14, 185, 232, 1)', 'rgba(14, 185, 232, 1)', 'rgba(14, 185, 232, 1)', 'rgba(14, 185, 232, 1)' ], borderWidth: 1 }] }, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false }, tooltip: { callbacks: { label: function(context) { return `물량: ${context.raw.toLocaleString()}가구`; } } } }, scales: { y: { beginAtZero: true, title: { display: true, text: '가구 수' } }, x: { title: { display: true, text: '지역' } } } } }); // 전세가율 차트 const rentRatioCtx = document.getElementById('rentRatioChart').getContext('2d'); const rentRatioChart = new Chart(rentRatioCtx, { type: 'line', data: { labels: ['2024.05', '2024.06', '2024.07', '2024.08', '2024.09', '2024.10', '2024.11', '2024.12', '2025.01', '2025.02', '2025.03', '2025.04'], datasets: [ { label: '서울 평균', data: [53.43, 53.58, 53.65, 53.72, 53.80, 53.85, 53.90, 53.88, 53.85, 53.80, 53.70, 53.52], backgroundColor: 'rgba(1, 138, 180, 0.2)', borderColor: 'rgba(1, 138, 180, 1)', borderWidth: 2, fill: false, tension: 0.4 }, { label: '강남구', data: [43.5, 43.8, 44.0, 44.2, 44.1, 43.9, 43.5, 43.1, 42.5, 41.9, 41.3, 40.7], backgroundColor: 'rgba(14, 185, 232, 0.2)', borderColor: 'rgba(14, 185, 232, 1)', borderWidth: 2, fill: false, tension: 0.4 }, { label: '송파구', data: [46.0, 46.4, 46.8, 47.0, 46.8, 46.5, 46.0, 45.5, 44.9, 44.3, 43.7, 43.1], backgroundColor: 'rgba(219, 212, 204, 0.2)', borderColor: 'rgba(219, 212, 204, 1)', borderWidth: 2, fill: false, tension: 0.4 } ] }, options: { responsive: true, maintainAspectRatio: false, plugins: { tooltip: { callbacks: { label: function(context) { return `${context.dataset.label}: ${context.raw}%`; } } } }, scales: { y: { title: { display: true, text: '전세가율 (%)' }, min: 40, max: 55 }, x: { title: { display: true, text: '기간' } } } } }); // 상업용 부동산 차트 const commercialCtx = document.getElementById('commercialChart').getContext('2d'); const commercialChart = new Chart(commercialCtx, { type: 'pie', data: { labels: ['오피스', '리테일', '물류', '호텔', '기타'], datasets: [{ data: [74, 12, 8, 4, 2], backgroundColor: [ 'rgba(1, 138, 180, 0.8)', 'rgba(14, 185, 232, 0.8)', 'rgba(0, 186, 238, 0.8)', 'rgba(219, 212, 204, 0.8)', 'rgba(45, 45, 45, 0.8)' ], borderColor: [ 'rgba(1, 138, 180, 1)', 'rgba(14, 185, 232, 1)', 'rgba(0, 186, 238, 1)', 'rgba(219, 212, 204, 1)', 'rgba(45, 45, 45, 1)' ], borderWidth: 1 }] }, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { position: 'bottom' }, title: { display: true, text: '1분기 상업용 부동산 투자 비중 (%)' }, tooltip: { callbacks: { label: function(context) { return `${context.label}: ${context.raw}%`; } } } } } }); </script> </body> </html>