@font-face {
	font-family: 'GmarketSansMedium';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

body {
	margin: 0;
	font-family: 'GmarketSansMedium', sans-serif;
	background-color: #fff;
	color: #000;
	text-align: center;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	border-bottom: 1px solid #ccc;
	flex-wrap: wrap;
}

.header img {
	height: 50px;
}

.main {
	padding: 40px 20px;
}


.thin {
	font-weight: 100;
}

.notice-box {
	max-width: 600px;
	margin: 0 auto 40px auto;
	padding: 30px 20px;
	border: 1px solid #ccc;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.notice-box2 {
	max-width: 330px;
	margin: 0 auto 40px auto;
	padding: 30px 20px;
	border: 1px solid #ccc;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.notice-box2 {
	width: calc(33.333% - 40px);
	min-width: 280px;
	box-sizing: border-box;
	margin: 0;
}


.notice-box p,
.notice-box2 p {
	font-size: 18px;
	line-height: 1.6;
	font-weight: 700;
}

.btn {
	display: block;
	width: 300px;
	max-width: 90%;
	margin: 20px auto;
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	background-color: #1f4497;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
}

.btn2 {
	display: block;
	width: 200px;
	max-width: 90%;
	margin: 10px auto;
	padding: 12px;
	font-size: 18px;
	font-weight: bold;
	background-color: #1f4497;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
}

.btn3 {
	display: block;
	width: 100px;
	max-width: 90%;
	margin: 5px auto;
	padding: 5px;
	font-size: 12px;
	font-weight: bold;
	background-color: #1f4497;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
}

.btn4 {
	display: inline-block;
	background: #003478;
	color: #fff;
	padding: 12px 30px;
	border-radius: 6px;
	font-size: 16px;
	text-decoration: none;
}

.btn:hover,
.btn2:hover,
.btn3:hover,
.btn4:hover {
	background-color: #15306e;
}

.row-box2 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.info-table {
	margin: 0 auto;
	border-collapse: collapse;
	width: 90%;
	max-width: 700px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.info-table th {
	background-color: #1f4497;
	color: #fff;
	padding: 12px;
	font-size: 16px;
	border: 1px solid #ccc;
}

.info-table td {
	padding: 12px;
	font-size: 16px;
	border: 1px solid #ccc;
	background-color: #fff;
}

.notes {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}

.notes img {
	display: block;
	width: 100%;
}


.confirm-check {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 10px;
	font-size: 18px;
}

.confirm-check input[type="checkbox"] {
	margin-right: 6px;
	transform: scale(1.2);
}


@media (max-width: 768px) {
	.header {
		padding: 10px 20px;
	}

	.header img {
		height: 26px;
		margin: 5px;
	}

	.notice-box2 {
		width: 100%;
		margin-bottom: 20px;
	}
}


@media (max-width: 480px) {

	.notice-box p,
	.notice-box2 p {
		font-size: 15px;
	}

	.btn,
	btn2,
	btn3,
	btn4 {
		font-size: 15px;
		padding: 10px;
	}

	.info-table th,
	.info-table td {
		font-size: 14px;
		padding: 10px;
	}
	
	.confirm-check {
		font-size:14px;
	}
}


.popup_notice_zone1 {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	width: 480px;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	border-radius: 12px;
	z-index: 9999;
	display: none;
	padding: 20px;
	box-sizing: border-box;
}

.popup_notice_zone1 .popup_content {
	font-family: 'Noto Sans KR', sans-serif;
	color: #333;
	font-size: 14px;
	line-height: 1.6;
}

.popup_notice_zone1 h2 {
	font-size: 18px;
	text-align: center;
	margin-bottom: 10px;
	color: #c0392b;
}

.popup_notice_zone1 .popup_buttons {
	text-align: center;
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.popup_notice_zone1 .popup_buttons button {
	flex: 1;
	padding: 10px;
	font-size: 14px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: 0.3s;
}

.popup_notice_zone1 .popup_buttons button:first-child {
	background-color: #f39c12;
	color: #fff;
}

.popup_notice_zone1 .popup_buttons button:last-child {
	background-color: #7f8c8d;
	color: #fff;
}

@media screen and (max-width: 480px) {
	.popup_notice_zone1 {
		width: 95%;
		padding: 15px;
	}
}

/* 팝업 전체 영역 (검은 배경) */
#noticeUploadPopup {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.7);
	display: none; /* 기본 숨김 */
	align-items: center;	/* 수직 중앙 */
	justify-content: center; /* 수평 중앙 */
	z-index: 1000;
}

/* 팝업 안쪽 컨텐츠 박스 */
#noticeUploadPopup .popup-inner {
	background: #fff;
	padding: 20px 30px;
	border-radius: 8px;
	width: 90%;
	max-width: 520px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	text-align: center;
}

/* 미리보기 이미지 */
#noticeUploadPopup .preview {
	display: inline-block;
	margin: 10px 0 16px;
	max-width: 100%;
	border: 1px solid #ddd;
	border-radius: 6px;
}
