@charset "utf-8";

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
	font-family: "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
	color: #222;
	background: #f5f6f8;
}

a {
	color: inherit;
	text-decoration: none;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 100;
	padding: 10px 14px;
	color: #fff;
	background: #222;
}

.skip-link:focus {
	top: 16px;
}

.entry-page {
	width: 100%;
	padding: 56px 20px;
}

.entry-container {
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
}

.entry-header {
	margin-bottom: 24px;
	text-align: center;
}

.entry-header img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 18px;
}

.entry-header h1 {
	margin: 0;
	font-size: 30px;
	line-height: 1.4;
}

.entry-header p {
	margin: 10px 0 0;
	color: #666;
	font-size: 16px;
}

.entry-panel {
	padding: 42px;
	border: 1px solid #d9dde3;
	background: #fff;
}

.entry-panel h2 {
	margin: 0 0 28px;
	font-size: 24px;
	text-align: center;
}

.entry-panel .guide {
	margin: 12px 0 32px;
	color: #555;
	font-size: 15px;
	line-height: 1.7;
	text-align: center;
}

.entry-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.entry-action {
	display: flex;
	min-height: 190px;
	padding: 30px 26px;
	border: 1px solid #cfd4dc;
	flex-direction: column;
	justify-content: space-between;
	background: #fff;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.entry-action:hover,
.entry-action:focus {
	border-color: #1d4f91;
	background: #f7faff;
	outline: none;
}

.entry-action strong {
	display: block;
	margin-bottom: 12px;
	font-size: 21px;
}

.entry-action span {
	display: block;
	color: #666;
	font-size: 14px;
	line-height: 1.65;
}

.entry-action em {
	display: inline-block;
	margin-top: 22px;
	color: #1d4f91;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
}

.entry-notice {
	margin-top: 24px;
	padding: 18px 20px;
	background: #f2f4f7;
	color: #555;
	font-size: 14px;
	line-height: 1.7;
}

.entry-notice strong {
	color: #222;
}

.entry-footer {
	margin-top: 26px;
	color: #777;
	font-size: 13px;
	line-height: 1.7;
	text-align: center;
}

.form-panel {
	max-width: 720px;
	margin: 0 auto;
}

.form-guide {
	margin: 12px 0 28px;
	color: #666;
	font-size: 14px;
	line-height: 1.7;
	text-align: center;
}

.form-row {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 16px 0;
	border-top: 1px solid #e6e8ec;
}

.form-row:first-of-type {
	border-top: 2px solid #333;
}

.form-row label {
	font-size: 15px;
	font-weight: 700;
}

.required {
	margin-right: 4px;
	color: #c12828;
}

.form-row input {
	width: 100%;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #c9ced6;
	border-radius: 2px;
	color: #222;
	font: inherit;
}

.form-row input[type="radio"] {
	width: auto;
	height: auto;
	margin: 0 4px 0 0;
	vertical-align: middle;
}

.form-row .radio-label {
	display: inline-block;
	margin: 0 14px 6px 0;
	font-weight: 400;
}

.form-row input:focus {
	border-color: #1d4f91;
	outline: 2px solid #d9e6f8;
	outline-offset: 0;
}

.field-note {
	display: block;
	margin-top: 7px;
	color: #777;
	font-size: 12px;
	line-height: 1.5;
}

.form-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
}

.button {
	display: inline-block;
	min-width: 148px;
	height: 46px;
	padding: 0 20px;
	border: 1px solid #1d4f91;
	border-radius: 2px;
	background: #1d4f91;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 44px;
	text-align: center;
}

.button.secondary {
	border-color: #777;
	background: #fff;
	color: #333;
}

.button.danger {
	border-color: #c62828;
	background: #c62828;
	color: #fff;
}

.button.danger:hover,
.button.danger:focus {
	border-color: #a51f1f;
	background: #a51f1f;
	color: #fff;
}

.error-box {
	margin: 0 0 20px;
	padding: 14px 16px;
	border: 1px solid #dfaaaa;
	background: #fff4f4;
	color: #9e1d1d;
	font-size: 14px;
	line-height: 1.6;
}

.step-list {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
	border: 1px solid #d9dde3;
}

.step-list li {
	min-height: 70px;
	padding: 12px 8px;
	border-left: 1px solid #d9dde3;
	color: #888;
	font-size: 13px;
	text-align: center;
}

.step-list li:first-child {
	border-left: 0;
}

.step-list .step-number {
	display: block;
	margin-bottom: 5px;
	font-size: 12px;
}

.step-list .current {
	background: #1d4f91;
	color: #fff;
	font-weight: 700;
}

.step-list .completed {
	color: #1d4f91;
	font-weight: 700;
}

.step-list .skipped {
	color: #999;
	background: #f3f4f6;
}

.step-list .step-skip-note {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 500;
	color: #888;
}

.step-list .completed a {
	text-decoration: underline;
}

.step-section-title {
	margin: 0 0 18px;
	font-size: 20px;
}

.conditional-field {
	display: none;
}

.conditional-field.is-visible {
	display: grid;
}

.business-only,
.procurement-only,
.product-field {
	display: grid;
}

#certification_dates {
	display: none;
}

#certification_dates.is-visible {
	display: grid;
}

.step-nav-guide {
	margin: 24px 0 10px;
	color: #c62828;
	font-size: 14px;
	line-height: 1.6;
}

.status-message {
	margin: 0 0 20px;
	padding: 12px 14px;
	border: 1px solid #b9d4b8;
	background: #f2faf1;
	color: #326c30;
	font-size: 14px;
}

.application-page {
	padding-top: 36px;
	background: #fff;
}

.application-container {
	max-width: 1000px;
}

.application-brand {
	position: sticky;
	top: 0;
	z-index: 20;
	margin: 0 0 18px;
	padding: 0;
	border-bottom: 1px solid #e5e8ec;
	background: #f6f7f9;
	text-align: center;
}

.application-brand img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0;
	object-fit: cover;
}

.application-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 3px solid #222;
}

.application-header h1 {
	margin: 0;
	font-size: 25px;
	line-height: 1.35;
}

.application-header p {
	margin: 7px 0 0;
	color: #666;
	font-size: 13px;
	line-height: 1.5;
}

.application-actions {
	display: flex;
	gap: 7px;
	padding-top: 2px;
}

.application-actions .button {
	min-width: 80px;
	height: 34px;
	padding: 0 12px;
	font-size: 13px;
	line-height: 32px;
}

.application-form {
	max-width: none;
	padding: 0;
	border: 0;
}

.application-form .step-section-title {
	margin: 0;
	padding: 18px 0 14px;
	border-bottom: 2px solid #333;
	font-size: 22px;
}

.application-form .form-guide {
	margin: 12px 0 18px;
	text-align: left;
}

.application-form .attachment-upload-guide {
	color: #c62828;
	font-size: 16px;
	line-height: 1.75;
	font-weight: 500;
}

.application-form .form-row {
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 0;
	min-height: 56px;
	padding: 0;
	border-top: 0;
	border-bottom: 1px solid #dfe3e8;
}

.application-form .form-row > label:first-child {
	display: flex;
	align-items: center;
	padding: 14px 18px;
	background: #f2f4f6;
	border-right: 1px solid #dfe3e8;
	font-size: 15px;
}

.application-form .form-row > div {
	padding: 10px 20px;
}

.application-form .form-row input {
	max-width: 100%;
	height: 36px;
	border-color: #d4dae2;
	border-radius: 0;
	font-size: 14px;
}

.application-form .form-row input[readonly] {
	background: #f8f9fa;
	color: #666;
}

.application-form .form-row input + input {
	margin-top: 7px;
}

.application-form #company_lookup_button {
	min-width: 142px;
	height: 36px;
	margin: 7px 0 0;
	font-size: 13px;
	line-height: 34px;
}

.application-form .form-actions {
	padding: 28px 0 0;
	border-top: 0;
}

.field-with-guide {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	flex-wrap: wrap;
}

.field-with-guide .field-inputs {
	flex: 1 1 240px;
	min-width: 0;
}

.field-with-guide .field-inputs input {
	display: block;
	width: 100%;
}

.field-with-guide .field-inputs input + input {
	margin-top: 7px;
}

.money-unit-banner {
	margin: 0 0 10px;
	padding: 8px 10px;
	border: 1px solid #f0d48a;
	background: #fff8e6;
	color: #7a4b00;
	font-size: 13px;
	line-height: 1.5;
}

.money-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.money-fields .money-row:first-child {
	margin-top: 0;
}

.money-year {
	flex: 0 0 58px;
	margin: 0;
	color: #333;
	font-size: 13px;
	font-weight: 700;
}

.money-row input {
	flex: 1 1 auto;
	min-width: 0;
	margin-top: 0 !important;
}

.money-suffix {
	flex: 0 0 auto;
	color: #1d4f91;
	font-size: 14px;
	font-weight: 700;
}

.money-preview {
	margin: 4px 0 0 66px;
	color: #555;
	font-size: 12px;
	line-height: 1.4;
}

.money-preview.is-warn {
	color: #c62828;
	font-weight: 700;
}

.guide-download {
	display: inline-block;
	flex: 0 0 auto;
	min-width: 96px;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #1d4f91;
	background: #fff;
	color: #1d4f91;
	font-size: 13px;
	font-weight: 700;
	line-height: 34px;
	text-align: center;
	white-space: nowrap;
}

.guide-download:hover,
.guide-download:focus {
	background: #f7faff;
	outline: none;
}

button.guide-download {
	cursor: pointer;
	font-family: inherit;
}

.guide-download.guide-info {
	position: relative;
}

.guide-download.guide-info:hover::after,
.guide-download.guide-info:focus::after {
	content: attr(title);
	position: absolute;
	left: 0;
	top: calc(100% + 6px);
	z-index: 20;
	width: 280px;
	padding: 10px 12px;
	border: 1px solid #c5d4ea;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(29, 79, 145, 0.18);
	color: #333;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
	white-space: normal;
}

.inline-fields {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.inline-fields input {
	width: auto;
	max-width: 140px;
}

.inline-fields #jumin1 {
	max-width: 100px;
}

.inline-fields #jumin2,
.inline-fields #age {
	max-width: 120px;
}

.inline-sep,
.inline-prefix,
.inline-suffix {
	color: #555;
	font-size: 14px;
}

.address-fields {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.zip-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.zip-row input {
	width: 140px;
	max-width: 100%;
}

.zip-row .button {
	min-width: 110px;
	height: 36px;
	font-size: 13px;
	line-height: 34px;
}

.repeat-section {
	margin-top: 28px;
}

.repeat-section-header,
.review-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 10px;
}

.repeat-section-header h3,
.review-header h3 {
	margin: 0;
	font-size: 17px;
}

.repeat-section-header p {
	margin: 5px 0 0;
	color: #777;
	font-size: 12px;
}

.small-button {
	height: 32px;
	padding: 0 12px;
	border: 1px solid #1d4f91;
	background: #1d4f91;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
}

.small-button.secondary {
	background: #fff;
	color: #333;
	border-color: #888;
}

.table-scroll {
	overflow-x: auto;
	border-top: 2px solid #333;
}

.repeat-table {
	width: 100%;
	min-width: 780px;
	border-collapse: collapse;
	table-layout: fixed;
}

.repeat-table th,
.repeat-table td {
	padding: 8px;
	border-right: 1px solid #dfe3e8;
	border-bottom: 1px solid #dfe3e8;
	text-align: center;
}

.repeat-table th {
	background: #f2f4f6;
	font-size: 13px;
}

.repeat-table input,
.repeat-table select {
	width: 100%;
	height: 36px;
	padding: 0 7px;
	border: 1px solid #d4dae2;
	background: #fff;
	font: inherit;
	font-size: 13px;
}

.career-table {
	min-width: 1050px;
}

.summary-field {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	padding: 12px;
	background: #f8f9fa;
}

.summary-field label {
	font-size: 14px;
	font-weight: 700;
}

.summary-field input {
	width: 160px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid #d4dae2;
	background: #fff;
}

.attachment-list {
	border-top: 2px solid #333;
}

.attachment-row {
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1.1fr);
	border-bottom: 1px solid #dfe3e8;
}

.attachment-info,
.attachment-input {
	padding: 16px 18px;
}

.attachment-info {
	background: #f7f8fa;
	border-right: 1px solid #dfe3e8;
}

.attachment-info strong,
.attachment-info span {
	display: block;
}

.attachment-info strong {
	font-size: 14px;
}

.attachment-info > span {
	margin-top: 6px;
	color: #666;
	font-size: 12px;
	line-height: 1.5;
}

.required-badge,
.optional-badge {
	display: inline-block !important;
	margin-left: 6px;
	padding: 2px 5px;
	border-radius: 2px;
	font-size: 11px;
}

.required-badge {
	background: #c12828;
	color: #fff;
}

.optional-badge {
	background: #e5e8ec;
	color: #666;
}

.guide-download.compact {
	height: 30px;
	margin-top: 10px;
	line-height: 28px;
}

.attachment-input input[type="file"] {
	width: 100%;
	font-size: 13px;
}

.current-file {
	margin: 0 0 10px;
	color: #444;
	font-size: 13px;
	line-height: 1.5;
}

.current-file a {
	color: #1d4f91;
	text-decoration: underline;
}

.current-file.empty {
	color: #999;
}

.privacy-terms-section {
	margin-top: 28px;
}

.privacy-terms-section > h3 {
	margin: 0 0 10px;
	font-size: 17px;
}

.privacy-terms-scroll {
	height: 220px;
	padding: 18px 20px;
	overflow-y: auto;
	border: 1px solid #cfd5dc;
	background: #fff;
	box-sizing: border-box;
	color: #555;
	font-size: 13px;
	line-height: 1.75;
}

.privacy-terms-scroll:focus {
	outline: 2px solid #1d4f91;
	outline-offset: 2px;
}

.privacy-terms-content h4 {
	margin: 0 0 12px;
	color: #222;
	font-size: 17px;
	text-align: center;
}

.privacy-terms-content .privacy-terms-subtitle {
	margin: -6px 0 22px;
	color: #555;
	text-align: center;
}

.privacy-terms-content h5 {
	margin: 24px 0 10px;
	color: #222;
	font-size: 14px;
}

.privacy-terms-content p {
	margin: 0 0 10px;
}

.privacy-terms-content ol,
.privacy-terms-content ul {
	margin: 8px 0 14px;
	padding-left: 24px;
}

.privacy-terms-content li {
	margin: 3px 0;
}

.privacy-terms-content li > ul {
	margin-top: 4px;
}

.privacy-terms-table {
	width: 100%;
	margin: 10px 0 14px;
	border-collapse: collapse;
	table-layout: fixed;
}

.privacy-terms-table th,
.privacy-terms-table td {
	padding: 7px 9px;
	border: 1px solid #d7dce2;
	text-align: left;
	vertical-align: top;
}

.privacy-terms-table th {
	background: #f2f4f6;
	color: #333;
	font-weight: 700;
}

.consent-box {
	margin-top: 24px;
	padding: 18px 20px;
	border: 1px solid #d9dde3;
	background: #f8f9fa;
}

.consent-box label {
	display: block;
	font-size: 14px;
	line-height: 1.7;
}

.consent-box label + label {
	margin-top: 8px;
}

.consent-box input {
	margin-right: 6px;
	vertical-align: middle;
}

.consent-box a {
	color: #1d4f91;
	text-decoration: underline;
}

.review-section {
	margin-top: 24px;
	border-top: 2px solid #333;
}

.review-header {
	margin: 0;
	padding: 13px 16px;
	background: #f2f4f6;
}

.review-header a {
	color: #1d4f91;
	font-size: 13px;
	font-weight: 700;
	text-decoration: underline;
}

.review-grid {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) 150px minmax(0, 1fr);
	margin: 0;
	border-left: 1px solid #dfe3e8;
}

.review-grid dt,
.review-grid dd {
	min-height: 46px;
	margin: 0;
	padding: 12px 14px;
	border-right: 1px solid #dfe3e8;
	border-bottom: 1px solid #dfe3e8;
	font-size: 14px;
	line-height: 1.5;
}

.review-grid dt {
	background: #fafafa;
	font-weight: 700;
}

.review-files {
	margin: 0;
	padding: 0;
	list-style: none;
	border-left: 1px solid #dfe3e8;
}

.review-files li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 11px 14px;
	border-right: 1px solid #dfe3e8;
	border-bottom: 1px solid #dfe3e8;
	font-size: 13px;
}

.review-files a {
	color: #1d4f91;
	text-decoration: underline;
}

.review-files .missing strong {
	color: #c12828;
}

.complete-page {
	background: #f5f6f8;
}

.complete-panel {
	max-width: 700px;
	margin: 40px auto 0;
	text-align: center;
}

.complete-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #1d4f91;
	color: #fff;
	font-size: 34px;
}

.complete-panel h1 {
	font-size: 26px;
}

.complete-panel > p {
	margin: 12px 0 28px;
	color: #666;
	font-size: 14px;
}

.complete-summary {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	margin: 0;
	border-top: 2px solid #333;
	border-left: 1px solid #dfe3e8;
	text-align: left;
}

.complete-summary dt,
.complete-summary dd {
	margin: 0;
	padding: 12px 14px;
	border-right: 1px solid #dfe3e8;
	border-bottom: 1px solid #dfe3e8;
	font-size: 14px;
}

.complete-summary dt {
	background: #f2f4f6;
	font-weight: 700;
}

.site-footer {
	margin-top: 48px;
	border-top: 1px solid #dddde4;
	background: #fff;
}

.site-footer .footer_inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 32px 20px 40px;
	box-sizing: border-box;
}

.site-footer .info a {
	display: inline-block;
	margin-bottom: 10px;
	color: #555;
	font-size: 13px;
	font-weight: 700;
}

.site-footer .address {
	margin: 0;
	font-style: normal;
}

.site-footer .address span,
.site-footer .copyright,
.site-footer .footer-contact {
	margin: 0;
	color: #a9a9a9;
	font-size: 12px;
	line-height: 1.7;
}

.site-footer .copyright {
	margin-top: 4px;
}

.site-footer .footer-contact {
	margin-top: 10px;
}

.site-footer .fot_logo {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.site-footer .fot_logo img {
	display: block;
	height: 36px;
	width: auto;
	max-width: 120px;
}

@media (max-width: 700px) {
	.entry-page {
		padding: 28px 14px;
	}

	.entry-header h1 {
		font-size: 24px;
	}

	.entry-panel {
		padding: 28px 18px;
	}

	.entry-actions {
		grid-template-columns: 1fr;
	}

	.entry-action {
		min-height: 160px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.step-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.step-list li:nth-child(4) {
		border-left: 0;
		border-top: 1px solid #d9dde3;
	}

	.step-list li:nth-child(n+5) {
		border-top: 1px solid #d9dde3;
	}

	.application-header {
		display: block;
	}

	.application-actions {
		margin-top: 14px;
	}

	.application-form .form-row {
		grid-template-columns: 1fr;
	}

	.application-form .form-row > label:first-child {
		padding: 10px 12px;
		border-right: 0;
		border-bottom: 1px solid #dfe3e8;
	}

	.application-form .form-row > div {
		padding: 10px 12px;
	}

	.site-footer .footer_inner {
		flex-direction: column;
		padding: 28px 14px 36px;
	}

	.site-footer .fot_logo {
		gap: 14px;
	}

	.attachment-row {
		grid-template-columns: 1fr;
	}

	.attachment-info {
		border-right: 0;
		border-bottom: 1px solid #dfe3e8;
	}

	.review-grid {
		grid-template-columns: 110px minmax(0, 1fr);
	}

	.review-files li {
		display: block;
	}

	.review-files li a,
	.review-files li strong {
		display: block;
		margin-top: 5px;
	}

	.repeat-section-header {
		align-items: flex-start;
		flex-direction: column;
	}
}
