.table_area {
    display: flex;
}

.table_area > * {
    width: 50%;
}

.table_area img {
    object-fit: contain;
}

.salary_table {
	width: 100%;
    margin: 3px auto 0;
	padding: 35px 0 0;
    font-family: sans-serif;
    text-align: center;
}

.salary_table_month_selector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.salary_table_month_selector button {
    border: none;
    background-color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
	width: 0;
	height: 0;
}

.salary_table_month_selector .salary_table_prev {
	border-style: solid;
	border-width: 8px 13px 8px 0px;
	border-color: transparent #555555 transparent transparent;
}

.salary_table_month_selector .salary_table_next {
	border-style: solid;
	border-width: 8px 0px 8px 13px;
	border-color: transparent transparent transparent #555555;
}

/* 이동 불가 상태일 때 흐려지는 스타일 */
.salary_table_month_selector button.salary_table_disabled {
    opacity: 0.4;
    cursor: default;
}

.salary_table_current_month {
    font-weight: bold;
    font-size: 24px;
	line-height: 24px;
	padding: 0 28px;
}

.salary_table_table {
    max-width: 668px;
    width: 100%;
    border-collapse: collapse;
	margin: 0 auto;
}

.salary_table_table th {
	color: #f1e04e;
    background-color: #97989a;
    font-weight: bold;
    padding: 12px 0;
    border: 1px solid #ccc;
}

.salary_table_table td {
    border: 1px solid #ccc;
    padding: 12px 0;
	color: #232323;
}

.salary_table_table td:nth-child(3) {
    text-align: right;
	padding: 12px 20px;
}

.salary_table_footnote {
	display: flex;
	justify-content: space-between;
	max-width: 668px;
	width: 95%;
	margin: 0 auto;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
	font-weight: 400;
}

.salary_table_footnote strong {
	font-weight: 400;
}

.environment{ display: block; max-width: 668px; margin: 0 auto; width: 89.0666%; padding-bottom: 30px;}