.hjModal {
	display: none; /* 숨김 상태로 시작 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999; /* 최상위로 설정 */
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
}

.hjModal-content {
	background: white;
	padding: 20px;
	border-radius: 5px;
	position: relative;
	max-width: 90%; /* 기본 최대 크기 */
	max-height: 90%;
	box-sizing: border-box;
	overflow: auto;

/*	background: white;*/
/*	padding: 20px;*/
/*	border-radius: 5px;*/
/*	text-align: center;*/

/*	background-color: #fff;*/
/*	padding: 20px;*/
/*	border-radius: 5px;*/
/*	width: 80%;*/
/*	max-width: 600px;*/
/*	text-align: left;*/
/*	position: relative;*/
}

.hjModalClose {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
}