@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;
	}
}