본문 바로가기
이모저모

2025 새해 세금 정책: 달라진 주요 사항과 혜택 총정리

by wjdflgkrl 2025. 1. 2.
반응형

2025년 새해부터 변경되는 세금 정책을 확인해 보세요! 세금 감면, 공제 혜택, 대출 관련 규정까지 한눈에 살펴볼 수 있습니다. 빠르게 2025년 세금 정책 정보를 원하시면 아래 버튼에서 확인하세요.



달라진 세금 감면 혜택

① 다자녀 가구 세제 혜택 확대

- 감면 내용: 다자녀 가구는 기존보다 20% 추가 감면
- 대상: 미성년 자녀 2명 이상 가구

② 친환경 차량 세금 감면 연장

- 혜택: 전기차와 하이브리드 차량 구매 시 취득세 최대 140만 원 면제
- 기간: 2025년 12월까지 연장

③ 저소득층 근로장려금 확대

- 변화: 지급 금액 상한선이 기존 대비 15% 증가
- 대상: 연소득 4천만 원 이하 근로자

새로운 공제 및 감면 제도

① 개인 연금 세액 공제 증가

- 변경 내용: 연금저축 세액공제 한도 500만 원 → 700만 원
- 적용 대상: 2025년부터 새롭게 납입하는 개인

② 청년 주택 관련 세금 공제

- 혜택: 청년 월세 최대 30만 원 세액공제
- 조건: 만 34세 이하 무주택자

주목할 세금 정책 변화

① 부동산 세금 규제 완화

- 변경점: 주택 보유세율 인하, 다주택자 양도소득세 완화
- 의도: 부동산 시장 안정화

② 금융투자세 도입 연기

- 변화: 주식과 채권에 대한 금융투자세 도입 2026년으로 연기
- 이유: 개인 투자자 부담 완화

세금 신고와 납부 시 주의할 점

  • 변경된 공제 한도 확인 - 공제 혜택이 달라졌으므로 개별 항목별로 꼼꼼히 확인하세요.
  • 신청 기한 준수 - 감면 혜택 신청은 반드시 정해진 기간 내에 완료해야 합니다.
반응형

/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js'; import {LargestContentfulPaint as ComputedLcp} from '../../computed/metrics/largest-contentful-paint.js'; const UIStrings = { /** Description of the Largest Contentful Paint (LCP) metric, which marks the time at which the largest text or image is painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */ description: 'Largest Contentful Paint marks the time at which the largest text or image is ' + `painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)`, }; const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings); class LargestContentfulPaint extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'largest-contentful-paint', title: str_(i18n.UIStrings.largestContentfulPaintMetric), description: str_(UIStrings.description), scoreDisplayMode: Audit.SCORING_MODES.NUMERIC, supportedModes: ['navigation'], requiredArtifacts: ['HostUserAgent', 'Trace', 'DevtoolsLog', 'GatherContext', 'URL', 'SourceMaps'], }; } /** * @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}} */ static get defaultOptions() { return { mobile: { // 25th and 13th percentiles HTTPArchive -> median and p10 points. // https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1 // https://web.dev/articles/lcp#what_is_a_good_lcp_score // see https://www.desmos.com/calculator/1etesp32kt scoring: { p10: 2500, median: 4000, }, }, desktop: { // 25th and 5th percentiles HTTPArchive -> median and p10 points. // SELECT // APPROX_QUANTILES(lcpValue, 100)[OFFSET(5)] AS p05_lcp, // APPROX_QUANTILES(lcpValue, 100)[OFFSET(25)] AS p25_lcp // FROM ( // SELECT CAST(JSON_EXTRACT_SCALAR(payload, "$['_chromeUserTiming.LargestContentfulPaint']") AS NUMERIC) AS lcpValue // FROM `httparchive.pages.2020_04_01_desktop` // ) scoring: { p10: 1200, median: 2400, }, }, }; } /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static async audit(artifacts, context) { const trace = artifacts.Trace; const devtoolsLog = artifacts.DevtoolsLog; const gatherContext = artifacts.GatherContext; const metricComputationData = { trace, devtoolsLog, gatherContext, settings: context.settings, URL: artifacts.URL, SourceMaps: artifacts.SourceMaps, simulator: null, }; const metricResult = await ComputedLcp.request(metricComputationData, context); const options = context.options[context.settings.formFactor]; return { score: Audit.computeLogNormalScore( options.scoring, metricResult.timing ), scoringOptions: options.scoring, numericValue: metricResult.timing, numericUnit: 'millisecond', displayValue: str_(i18n.UIStrings.seconds, {timeInMs: metricResult.timing}), }; } } export default LargestContentfulPaint; export {UIStrings};