* {
margin: 0;
padding: 0;
box-sizing: border-box;
touch-action: manipulation;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #f8fafc;
min-height: 100vh;
padding: 0;
margin: 0;
transition: background 0.3s ease;
overflow-x: hidden;
}
body.dark-mode {
background: #0f172a;
}
.main-content {
padding: 40px;
padding-top: 60px;
max-width: 1400px;
}
/* Add padding when hero section is present to prevent overlap with top bar */
.main-content:has(.hero-section) {
padding-top: 70px;
}
/* Category index pages with fixed sidebar - need more top padding */
.main-content:has(.hero-section[data-fixed-sidebar="true"]) {
padding-top: 70px;
}
/* Individual tool pages without fixed sidebar - less top padding */
.main-content:has(.hero-section:not([data-fixed-sidebar="true"])) {
padding-top: 10px;
}
@media (max-width: 1024px) {
.main-content {
padding: 76px 30px 30px 30px;
}
/* Keep top padding on mobile even with hero section (for mobile menu) */
.main-content:has(.hero-section) {
padding-top: 76px;
}
}
@media (max-width: 768px) {
.main-content {
padding: 76px 20px 20px 20px;
}
}
@media (max-width: 480px) {
.main-content {
padding: 76px 16px 16px 16px;
}
}
.top-bar {
position: fixed !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
height: 60px !important;
background: rgba(255, 255, 255, 0.95) !important;
backdrop-filter: blur(10px) !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
padding: 0 30px !important;
z-index: 1000 !important;
border-bottom: 1px solid rgba(229, 231, 235, 0.5) !important;
}
body.dark-mode .top-bar {
background: rgba(30, 41, 59, 0.95) !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
border-bottom-color: rgba(51, 65, 85, 0.5) !important;
}
.brand-logo {
display: flex !important;
align-items: center !important;
gap: 10px !important;
text-decoration: none !important;
color: #2d3748 !important;
font-weight: 700 !important;
font-size: 18px !important;
transition: all 0.3s !important;
}
.brand-logo:hover {
color: #06b6d4 !important;
transform: translateY(-1px) !important;
}
body.dark-mode .brand-logo {
color: #06b6d4 !important;
}
body.dark-mode .brand-logo:hover {
color: #22d3ee !important;
}
body > .hero-section {
margin-top: 60px;
}
@media (max-width: 768px) {
body > .hero-section {
margin-top: 60px;
}
}
.card {
background: white;
border-radius: 12px;
padding: 25px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
border: 1px solid #e2e8f0;
}
.card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
body.dark-mode .card {
background: #1e293b;
border-color: #334155;
}
.section-title {
font-size: 24px;
font-weight: 700;
color: #0f172a;
margin-bottom: 24px;
display: flex;
align-items: center;
gap: 12px;
}
body.dark-mode .section-title {
color: #f8fafc;
}
h1, h2, h3, h4, h5, h6 {
color: #0f172a;
}
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
color: #f1f5f9;
}
p {
color: #475569;
line-height: 1.6;
}
body.dark-mode p {
color: #cbd5e1;
}
a {
color: #3b82f6;
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: #2563eb;
}
body.dark-mode a {
color: #60a5fa;
}
body.dark-mode a:hover {
color: #93c5fd;
}
button {
font-family: inherit;
cursor: pointer;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
body.dark-mode ::-webkit-scrollbar-track {
background: #1e293b;
}
body.dark-mode ::-webkit-scrollbar-thumb {
background: #475569;
}
body.dark-mode ::-webkit-scrollbar-thumb:hover {
background: #64748b;
}
/* Breadcrumb Navigation */
.breadcrumb {
display: flex;
align-items: center;
gap: 4px;
font-size: 13px;
color: #64748b;
margin: 0 20px 24px 20px;
padding: 10px 16px;
background: linear-gradient(to right, #f8fafc, #f1f5f9);
border-radius: 8px;
flex-wrap: wrap;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
border: 1px solid #e2e8f0;
}
.breadcrumb a {
color: #667eea;
text-decoration: none;
transition: all 0.2s ease;
padding: 4px 8px;
border-radius: 4px;
font-weight: 500;
}
.breadcrumb a:hover {
color: #5a67d8;
background: rgba(102, 126, 234, 0.08);
text-decoration: none;
}
.breadcrumb-separator {
color: #cbd5e0;
user-select: none;
font-weight: 400;
margin: 0 2px;
}
.breadcrumb-current {
color: #1e293b;
font-weight: 600;
padding: 4px 8px;
background: rgba(102, 126, 234, 0.1);
border-radius: 4px;
}
/* Dark Mode Breadcrumb */
body.dark-mode .breadcrumb {
background: linear-gradient(to right, #1e293b, #0f172a);
border-color: #334155;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
color: #94a3b8;
}
body.dark-mode .breadcrumb a {
color: #a78bfa;
}
body.dark-mode .breadcrumb a:hover {
color: #c4b5fd;
background: rgba(167, 139, 250, 0.15);
}
body.dark-mode .breadcrumb-separator {
color: #475569;
}
body.dark-mode .breadcrumb-current {
color: #f1f5f9;
background: rgba(167, 139, 250, 0.2);
}
/* Mobile Responsive Breadcrumb */
@media (max-width: 768px) {
.breadcrumb {
font-size: 12px;
gap: 2px;
padding: 8px 12px;
margin: 0 15px 16px 15px;
}
.breadcrumb a,
.breadcrumb-current {
padding: 3px 6px;
}
.breadcrumb-separator {
margin: 0 1px;
}
}
@media (max-width: 480px) {
.breadcrumb {
font-size: 11px;
padding: 6px 10px;
margin: 0 12px 16px 12px;
}
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
@media (max-width: 768px) {
.container {
padding: 0 15px;
}
}
/* SEO Content Sections */
.seo-section {
background: #ffffff;
padding: 30px;
margin: 30px 0;
border-radius: 12px;
border-left: 4px solid #3b82f6;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
body.dark-mode .seo-section {
background: #1e293b;
border-color: #60a5fa;
}
.seo-section h2 {
color: #1e293b;
font-size: 1.5em;
margin-bottom: 15px;
font-weight: 700;
}
body.dark-mode .seo-section h2 {
color: #f1f5f9;
}
.seo-section p {
color: #475569;
line-height: 1.8;
font-size: 1em;
}
body.dark-mode .seo-section p {
color: #cbd5e1;
}
@media (max-width: 768px) {
.seo-section {
padding: 20px;
margin: 20px 0;
}
.seo-section h2 {
font-size: 1.3em;
}
}
홈 > KR 계산기 > Transfer Tax Calculator
이 계산기의 용도
주식 양도 시 발생하는 양도소득세를 자동으로 계산합니다. 대주주, 소액주주, 상장주식, 비상장주식 모두 지원하며 정확한 세금을 계산할 수 있습니다.
취득가액 (총액)
양도가액 (총액)
취득 비용 (증권거래세 등)
양도 비용 (증권거래세 등)
보유기간
계산하기
초기화
양도소득세 계산 결과
양도차익
0 원
과세표준
0 원
세율
0%
양도소득세
0 원
지방소득세
0 원
총 납부세액
0 원
순이익 (세후)
0 원
주식 양도소득세 정보
대주주 기준 (상장주식)
• 지분율 1% 이상
• 또는 시가총액 10억원 이상
• 세율: 22% (지방소득세 포함 24.2%)
• 기본공제: 연 250만원
소액주주 (상장주식)
• 대주주 기준 미만
• 상장주식 양도 시 비과세
• 2023년부터 금융투자소득세 도입 예정이었으나 폐지
비상장주식
• 대주주/소액주주 모두 과세
• 중소기업: 10% (지방소득세 포함 11%)
• 일반법인: 20% (지방소득세 포함 22%)
• 기본공제: 연 250만원
양도차익 계산
• 양도차익 = 양도가액 - (취득가액 + 필요경비)
• 필요경비: 증권거래세, 중개수수료 등
• 장기보유공제: 3년 이상 보유 시 최대 30%
주식 양도소득세 완벽 가이드: 대주주 vs 소액주주 세금 전략 (2025)
주식 양도소득세란?
주식 양도소득세는 주식을 매도하여 얻은 차익(양도소득)에 대해 부과하는 세금입니다. 양도차익 = 양도가액 - 취득가액으로 계산되며, 대주주 인지 소액주주 인지에 따라 과세 여부가 달라집니다. 대주주는 상장주식의 경우 지분율 1% 이상 또는 시가총액 10억원 이상 을 보유한 주주를 말하며, 소액주주는 이 기준에 미달하는 주주입니다. 예를 들어 삼성전자 주식을 1억원 에 매수하여 1억5천만원 에 매도하면 양도차익은 5천만원 이 됩니다. 대주주라면 이 5천만원에 대해 양도소득세를 납부해야 하지만, 소액주주라면 비과세 입니다.
대주주 양도소득세 계산 (상장주식)
대주주가 상장주식을 양도할 경우 양도소득세율은 22% (지방소득세 포함 24.2% )입니다. 양도차익에서 기본공제 250만원 을 차감한 후 세율을 적용합니다. 예를 들어 양도차익 5천만원 인 경우, 과세표준은 4,750만원 (5천만원 - 250만원)이 되며, 양도소득세는 1,045만원 (4,750만원 × 22%), 지방소득세는 104만5천원 (1,045만원 × 10%)으로 총 1,149만5천원 을 납부합니다. 대주주 판정은 양도일이 속한 사업연도 말일 기준으로 하며, 특수관계인의 주식도 합산하여 계산합니다.
비상장주식 양도소득세
비상장주식은 대주주와 소액주주 구분 없이 모두 과세 됩니다. 중소기업 주식은 10% (지방소득세 포함 11% ), 일반법인 주식은 20% (지방소득세 포함 22% )의 세율이 적용됩니다. 3년 이상 보유 시 장기보유공제 가 적용되어 최대 30% 까지 공제받을 수 있습니다(3년 10%, 4년 20%, 5년 이상 30%). 예를 들어 중소기업 비상장주식을 5년간 보유하고 양도차익 1억원 이 발생한 경우, 장기보유공제 3천만원 (1억 × 30%)을 적용하면 과세표준은 6,750만원 (1억 - 3천만원 - 기본공제 250만원)이 되고, 양도소득세는 675만원 (6,750만원 × 10%)입니다.