급여일할계산 2026에 대한 완벽한 가이드입니다. 급여일할계산 2026를 이해하면 더 나은 결정을 내릴 수 있습니다.
💡 급여일할계산 2026 핵심 정리
급여일할계산 2026의 핵심 내용을 간략히 정리합니다. 급여일할계산 2026와 관련된 최신 정보를 확인하세요.
급여일할계산 완벽 가이드 2026: 중도입사·퇴사 계산법 총정리
/* ===== TYD CSS DESIGN SYSTEM ===== */
:root {
--primary: #1a56db;
--primary-dark: #1e429f;
--primary-light: #ebf5ff;
--secondary: #0e9f6e;
--secondary-light: #f3faf7;
--accent: #ff6b35;
--accent-light: #fff5f0;
--warning: #fbbf24;
--warning-light: #fffbeb;
--danger: #e02424;
--danger-light: #fdf2f2;
--gray-50: #f9fafb;
--gray-100: #f3f4f6;
--gray-200: #e5e7eb;
--gray-300: #d1d5db;
--gray-400: #9ca3af;
--gray-500: #6b7280;
--gray-600: #4b5563;
--gray-700: #374151;
--gray-800: #1f2937;
--gray-900: #111827;
--font-main: 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
--radius-sm: 6px;
--radius-md: 12px;
--radius-lg: 20px;
--shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
--shadow-md: 0 4px 16px rgba(0,0,0,0.10);
--shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
--transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: var(--font-main);
font-size: 16px;
line-height: 1.8;
color: var(--gray-800);
background: #f0f4ff;
-webkit-font-smoothing: antialiased;
}
/* ===== LAYOUT ===== */
.tyd-container {
max-width: 860px;
margin: 0 auto;
padding: 0 20px 60px;
}
/* ===== HERO ===== */
.tyd-hero {
background: linear-gradient(135deg, #1a56db 0%, #6c3ce1 60%, #0e9f6e 100%);
border-radius: 0 0 var(--radius-lg) var(--radius-lg);
padding: 60px 40px 50px;
margin-bottom: 40px;
position: relative;
overflow: hidden;
}
.tyd-hero::before {
content: '';
position: absolute;
top: -60px; right: -60px;
width: 280px; height: 280px;
background: rgba(255,255,255,0.07);
border-radius: 50%;
}
.tyd-hero::after {
content: '';
position: absolute;
bottom: -80px; left: -40px;
width: 220px; height: 220px;
background: rgba(255,255,255,0.05);
border-radius: 50%;
}
.tyd-hero-badge {
display: inline-block;
background: rgba(255,255,255,0.18);
color: #fff;
font-size: 13px;
font-weight: 700;
letter-spacing: 1.5px;
padding: 5px 16px;
border-radius: 50px;
border: 1px solid rgba(255,255,255,0.3);
margin-bottom: 18px;
text-transform: uppercase;
}
.tyd-hero h1 {
font-size: clamp(24px, 4vw, 38px);
font-weight: 900;
color: #fff;
line-height: 1.3;
margin-bottom: 16px;
position: relative;
z-index: 1;
word-break: keep-all;
}
.tyd-hero h1 em {
color: #fbbf24;
font-style: normal;
}
.tyd-hero-desc {
color: rgba(255,255,255,0.87);
font-size: 16px;
max-width: 620px;
position: relative;
z-index: 1;
word-break: keep-all;
}
.tyd-hero-meta {
display: flex;
gap: 20px;
margin-top: 24px;
flex-wrap: wrap;
position: relative;
z-index: 1;
}
.tyd-hero-meta span {
display: flex;
align-items: center;
gap: 6px;
color: rgba(255,255,255,0.8);
font-size: 13px;
font-weight: 600;
}
.tyd-hero-meta span::before {
content: '✦';
color: #fbbf24;
font-size: 11px;
}
/* ===== TOC ===== */
.tyd-toc {
background: var(--primary-light);
border: 1.5px solid #bfdbfe;
border-radius: var(--radius-md);
padding: 28px 32px;
margin-bottom: 36px;
}
.tyd-toc-title {
font-size: 15px;
font-weight: 800;
color: var(--primary);
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 8px;
}
.tyd-toc ol {
padding-left: 22px;
}
.tyd-toc ol li {
margin-bottom: 6px;
}
.tyd-toc a {
color: var(--primary-dark);
text-decoration: none;
font-size: 14.5px;
font-weight: 600;
transition: var(--transition);
}
.tyd-toc a:hover { color: var(--accent); text-decoration: underline; }
/* ===== HEADINGS ===== */
.tyd-h2 {
font-size: clamp(20px, 3vw, 26px);
font-weight: 900;
color: var(--gray-900);
margin: 52px 0 22px;
padding-left: 16px;
border-left: 5px solid var(--primary);
line-height: 1.35;
word-break: keep-all;
}
.tyd-h3 {
font-size: 18px;
font-weight: 800;
color: var(--primary-dark);
margin: 32px 0 14px;
display: flex;
align-items: center;
gap: 8px;
word-break: keep-all;
}
.tyd-h3::before {
content: '';
display: inline-block;
width: 10px; height: 10px;
background: var(--primary);
border-radius: 50%;
flex-shrink: 0;
}
/* ===== PARAGRAPH ===== */
.tyd-p {
color: var(--gray-700);
font-size: 15.5px;
line-height: 1.9;
margin-bottom: 16px;
word-break: keep-all;
}
/* ===== CALLOUT BOXES ===== */
.tyd-callout {
border-radius: var(--radius-md);
padding: 20px 24px;
margin: 24px 0;
display: flex;
gap: 14px;
align-items: flex-start;
}
.tyd-callout-icon {
font-size: 22px;
flex-shrink: 0;
margin-top: 2px;
}
.tyd-callout-body { flex: 1; }
.tyd-callout-title {
font-size: 15px;
font-weight: 800;
margin-bottom: 6px;
}
.tyd-callout-text {
font-size: 14.5px;
line-height: 1.75;
word-break: keep-all;
}
.tyd-callout.info {
background: var(--primary-light);
border: 1.5px solid #bfdbfe;
}
.tyd-callout.info .tyd-callout-title { color: var(--primary-dark); }
.tyd-callout.info .tyd-callout-text { color: #1e429f; }
.tyd-callout.success {
background: var(--secondary-light);
border: 1.5px solid #a7f3d0;
}
.tyd-callout.success .tyd-callout-title { color: #065f46; }
.tyd-callout.success .tyd-callout-text { color: #064e3b; }
.tyd-callout.warning {
background: var(--warning-light);
border: 1.5px solid #fde68a;
}
.tyd-callout.warning .tyd-callout-title { color: #92400e; }
.tyd-callout.warning .tyd-callout-text { color: #78350f; }
.tyd-callout.danger {
background: var(--danger-light);
border: 1.5px solid #fca5a5;
}
.tyd-callout.danger .tyd-callout-title { color: var(--danger); }
.tyd-callout.danger .tyd-callout-text { color: #9b1c1c; }
/* ===== FORMULA BOX ===== */
.tyd-formula {
background: linear-gradient(135deg, #1a56db 0%, #6c3ce1 100%);
border-radius: var(--radius-md);
padding: 28px 32px;
margin: 28px 0;
text-align: center;
box-shadow: var(--shadow-md);
position: relative;
overflow: hidden;
}
.tyd-formula::before {
content: '수식';
position: absolute;
top: 12px; right: 16px;
font-size: 11px;
font-weight: 700;
color: rgba(255,255,255,0.45);
letter-spacing: 2px;
text-transform: uppercase;
}
.tyd-formula-label {
font-size: 13px;
color: rgba(255,255,255,0.75);
font-weight: 700;
letter-spacing: 1px;
margin-bottom: 12px;
text-transform: uppercase;
}
.tyd-formula-main {
font-size: clamp(17px, 2.5vw, 22px);
font-weight: 900;
color: #fff;
letter-spacing: 0.5px;
line-height: 1.5;
word-break: keep-all;
}
.tyd-formula-main .hl { color: #fbbf24; }
/* ===== EXAMPLE BOX ===== */
.tyd-example {
background: var(--gray-50);
border: 1.5px solid var(--gray-200);
border-radius: var(--radius-md);
padding: 24px 28px;
margin: 24px 0;
position: relative;
}
.tyd-example::before {
content: '예시';
position: absolute;
top: -12px; left: 20px;
background: var(--secondary);
color: #fff;
font-size: 12px;
font-weight: 800;
padding: 3px 14px;
border-radius: 50px;
letter-spacing: 1px;
}
.tyd-example-title {
font-size: 15px;
font-weight: 800;
color: var(--gray-800);
margin-bottom: 12px;
padding-top: 4px;
}
.tyd-example-step {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 10px;
}
.tyd-step-num {
background: var(--primary);
color: #fff;
font-size: 12px;
font-weight: 800;
width: 24px; height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 2px;
}
.tyd-step-text {
font-size: 14.5px;
color: var(--gray-700);
line-height: 1.75;
flex: 1;
word-break: keep-all;
}
.tyd-step-text strong { color: var(--primary-dark); }
.tyd-example-result {
background: var(--primary);
color: #fff;
border-radius: var(--radius-sm);
padding: 12px 18px;
margin-top: 14px;
font-size: 15px;
font-weight: 800;
text-align: center;
}
/* ===== TABLES ===== */
.tyd-table-wrap {
overflow-x: auto;
margin: 28px 0;
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
}
.tyd-table {
width: 100%;
border-collapse: collapse;
font-size: 14.5px;
}
.tyd-table thead tr {
background: linear-gradient(90deg, var(--primary) 0%, #6c3ce1 100%);
}
.tyd-table thead th {
color: #fff;
font-weight: 800;
padding: 14px 16px;
text-align: center;
letter-spacing: 0.3px;
white-space: nowrap;
}
.tyd-table thead th:first-child { text-align: left; }
.tyd-table tbody tr {
transition: var(--transition);
border-bottom: 1px solid var(--gray-200);
}
.tyd-table tbody tr:nth-child(even) { background: var(--gray-50); }
.tyd-table tbody tr:hover { background: var(--primary-light); }
.tyd-table tbody td {
padding: 13px 16px;
color: var(--gray-700);
vertical-align: middle;
text-align: center;
}
.tyd-table tbody td:first-child {
text-align: left;
font-weight: 700;
color: var(--gray-900);
}
.tyd-badge {
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
font-size: 12px;
font-weight: 700;
}
.tyd-badge.blue { background: var(--primary-light); color: var(--primary); }
.tyd-badge.green { background: var(--secondary-light); color: #065f46; }
.tyd-badge.yellow { background: var(--warning-light); color: #92400e; }
.tyd-badge.red { background: var(--danger-light); color: var(--danger); }
/* ===== CARD GRID ===== */
.tyd-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 18px;
margin: 24px 0;
}
.tyd-card {
background: #fff;
border-radius: var(--radius-md);
padding: 22px 20px;
box-shadow: var(--shadow-sm);
border: 1.5px solid var(--gray-200);
transition: var(--transition);
text-align: center;
}
.tyd-card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
border-color: var(--primary);
}
.tyd-card-icon { font-size: 32px; margin-bottom: 10px; }
.tyd-card-title {
font-size: 15px;
font-weight: 800;
color: var(--gray-800);
margin-bottom: 6px;
}
.tyd-card-text {
font-size: 13.5px;
color: var(--gray-500);
line-height: 1.65;
word-break: keep-all;
}
/* ===== CHECKLIST ===== */
.tyd-checklist {
list-style: none;
margin: 16px 0;
}
.tyd-checklist li {
display: flex;
align-items: flex-start;
gap: 10px;
padding: 8px 0;
border-bottom: 1px dashed var(--gray-200);
font-size: 15px;
color: var(--gray-700);
line-height: 1.7;
word-break: keep-all;
}
.tyd-checklist li:last-child { border-bottom: none; }
.tyd-checklist li::before {
content: '✓';
background: var(--secondary);
color: #fff;
font-size: 11px;
font-weight: 900;
width: 20px; height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 3px;
}
/* ===== STEP TIMELINE ===== */
.tyd-timeline {
position: relative;
padding-left: 32px;
margin: 24px 0;
}
.tyd-timeline::before {
content: '';
position: absolute;
left: 11px; top: 0; bottom: 0;
width: 2px;
background: linear-gradient(180deg, var(--primary) 0%, #6c3ce1 100%);
}
.tyd-timeline-item {
position: relative;
margin-bottom: 24px;
}
.tyd-timeline-item::before {
content: '';
position: absolute;
left: -25px; top: 6px;
width: 14px; height: 14px;
background: var(--primary);
border-radius: 50%;
border: 3px solid #fff;
box-shadow: 0 0 0 2px var(--primary);
}
.tyd-timeline-title {
font-size: 15px;
font-weight: 800;
color: var(--primary-dark);
margin-bottom: 5px;
}
.tyd-timeline-text {
font-size: 14.5px;
color: var(--gray-600);
line-height: 1.75;
word-break: keep-all;
}
/* ===== FAQ ===== */
.tyd-faq {
margin: 12px 0;
}
.tyd-faq-item {
background: #fff;
border: 1.5px solid var(--gray-200);
border-radius: var(--radius-md);
margin-bottom: 14px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.tyd-faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.tyd-faq-q {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 20px 24px;
cursor: pointer;
}
.tyd-faq-qmark {
background: linear-gradient(135deg, var(--primary) 0%, #6c3ce1 100%);
color: #fff;
font-size: 14px;
font-weight: 900;
width: 30px; height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.tyd-faq-qtext {
font-size: 15.5px;
font-weight: 800;
color: var(--gray-800);
flex: 1;
line-height: 1.5;
word-break: keep-all;
}
.tyd-faq-a {
padding: 0 24px 20px 68px;
}
.tyd-faq-a p {
font-size: 14.5px;
color: var(--gray-600);
line-height: 1.8;
word-break: keep-all;
}
.tyd-faq-a strong { color: var(--primary-dark); }
/* ===== HIGHLIGHT TEXT ===== */
.tyd-highlight {
background: linear-gradient(120deg, #fbbf24 0%, #f97316 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 900;
}
.tyd-underline {
background: linear-gradient(180deg, transparent 60%, rgba(26,86,219,0.22) 60%);
font-weight: 700;
}
/* ===== SUMMARY BOX ===== */
.tyd-summary {
background: linear-gradient(135deg, #1a56db 0%, #6c3ce1 100%);
border-radius: var(--radius-lg);
padding: 36px 40px;
margin: 40px 0;
color: #fff;
position: relative;
overflow: hidden;
}
.tyd-summary::after {
content: '';
position: absolute;
right: -40px; top: -40px;
width: 180px; height: 180px;
background: rgba(255,255,255,0.06);
border-radius: 50%;
}
.tyd-summary-title {
font-size: 20px;
font-weight: 900;
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 10px;
}
.tyd-summary ul {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 12px;
}
.tyd-summary ul li {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 14.5px;
color: rgba(255,255,255,0.9);
line-height: 1.65;
word-break: keep-all;
}
.tyd-summary ul li::before {
content: '→';
color: #fbbf24;
font-weight: 900;
flex-shrink: 0;
}
/* ===== DIVIDER ===== */
.tyd-divider {
border: none;
height: 2px;
background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
margin: 40px 0;
border-radius: 2px;
opacity: 0.25;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
.tyd-hero { padding: 40px 22px 36px; }
.tyd-toc { padding: 20px 18px; }
.tyd-formula { padding: 22px 18px; }
.tyd-example { padding: 20px 18px; }
.tyd-summary { padding: 28px 22px; }
.tyd-faq-a { padding-left: 20px; }
.tyd-h2 { font-size: 20px; }
.tyd-table { font-size: 13px; }
.tyd-table thead th, .tyd-table tbody td { padding: 10px 10px; }
}
2026 완벽 가이드 급여일할계산 2026
급여 일할계산 완벽 가이드
중도입사·퇴사 계산법 총정리
2026년 기준 급여 일할계산의 모든 것을 한 권에 담았습니다. 중도입사·중도퇴사 시 정확한 급여 산정법, 월별 일수 차이 처리, 세금 계산까지 실무에서 바로 적용할 수 있는 가이드입니다.
📌 급여 일할계산이란? 개념과 기본 원리 (급여일할계산 2026)
급여 일할계산(日割計算)이란 근로자가 한 달 전체가 아닌 일부 기간만 근무했을 때, 실제 근무한 날수에 비례하여 급여를 산정하는 방식입니다. 주로 월 중간에 입사하거나 퇴사하는 경우, 혹은 장기 결근·휴직이 발생했을 때 적용됩니다.
2026년 현재 고용노동부 기준과 근로기준법은 일할계산의 특정 방식을 법적으로 강제하지 않으며, 취업규칙·근로계약서 또는 회사 내규에 따라 방식을 달리 적용할 수 있습니다. 단, 어떤 방식을 택하든 근로자에게 불리하게 작용해서는 안 된다는 원칙은 반드시 지켜야 합니다.
💡 급여일할계산 2026
핵심 원칙 급여일할계산 2026
일할계산은 "월 급여 ÷ 기
(adsbygoogle=window.adsbygoogle||[]).push({});
이 글이 도움이 되셨나요?