.msg_modal_bg {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	z-index: 5;
}

.msg_modal {
	background: #fff;
	width: 90%;
	max-width: 540px;
	border-radius: 8px;
	position: relative;
	padding: 20px;
	box-shadow: 0 0 8px rgba(0,0,0,0.5);
	text-align: left;
}

.msg_close_btn {
	position: absolute;
	top: -55px;
	right: 0;
	font-size: 50px;
	background: none;
	border: none;
	cursor: pointer;
	color: #ccc;
	line-height: 1;
}

.msg_modal_header{
	font-weight: bold;
	font-size: 1.5rem;
}

.msg_modal_body{
	font-size: 1rem;
	line-height: 1.4;
}

.msg_modal_body p{
	margin-top: 20px;
}

.msg_telnumber{
	margin-top: 20px;
	font-size: 1.25rem;
	text-align: center;
}

.msg_telnumber span{
	display: inline-block;
	font-weight: bold;
	padding: 2px;
	border: 2px solid #e8374a;
}