@media screen and (max-width: 768px) {
	.novel-window {
		display: inline-block;
		width: 100%;
		height: 100%;
		background: white;
		position: absolute;
		top: -50%;
		right: 50%;
		transform: translate(50%, 50%);
		overflow-x: hidden;
		overflow-y: auto;
		border: 1px solid #ddd;
		border-radius: 5px;
		padding: 5px;
		text-align: justify;
		font-family: Noto Serif KR;
		color: black;
	}
	.moblile-x-btn-margin {
		display: inline-block;
		float: right;
		width: 2.5em;
		height: 1em;
	}
}
@media screen and (min-width: 768px) {
	.novel-window {
		display: inline-block;
		max-width: 700px;
		height: 100%;
		background: white;
		position: absolute;
		top: -50%;
		right: 50%;
		transform: translate(50%, 50%);
		overflow-x: hidden;
		overflow-y: auto;
		border: 1px solid #ddd;
		border-radius: 5px;
		padding: 5px;
		text-align: justify;
		font-family: Noto Serif KR;
		color: black;
	}
	.moblile-x-btn-margin {
		display: none;
	}
}