@charset "UTF-8";
label.cTxtLink05{
	text-decoration: underline;
}
/*----modal----*/

.labelModalBox .labelCloseBtn {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 5px 0 auto;
	cursor: pointer;
}

.labelModalBox .labelCloseBtn::before,
.labelModalBox .labelCloseBtn::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
	width: 25px;
	height: 2px;
	background: #989898;
}

.labelModalBox .labelCloseBtn::before {
	transform:rotate(45deg);
}

.labelModalBox .labelCloseBtn::after {
	transform:rotate(-45deg);
}

.labelModalBox .labelModalCnt {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 15px 5px 35px 15px;
	width: 100%;
	height: auto;
	max-height: 80vh;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.5);
	border-radius: 6px;
	z-index: 10000;
}

.labelModalBox .inr {
	padding: 0 10px 5px 0;
	margin-top: 10px;
	overflow-y: auto;
	max-height: calc(80vh - 80px);
}