@charset "utf-8";
[class*="listType"].indent3P7 > li{
	padding-left: 3.7em;
	text-indent: -3.7em;
}
.imgLinkBtn > .clm > .clmItem > .img {
	width: 30%;
	margin: 0 auto 20px;
}
/*----modal----*/
.modalBtn {
	cursor: pointer;
}

.modalBox .bg {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 1000;
}

.modalBox .closeBtn {
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 5px 0 auto;
	cursor: pointer;
}

.modalBox .closeBtn::before,
.modalBox .closeBtn::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
	width: 25px;
	height: 2px;
	background: #989898;
}

.modalBox .closeBtn::before {
	transform:rotate(45deg);
}

.modalBox .closeBtn::after {
	transform:rotate(-45deg);
}

.modalBox .modalCnt {
	display: none;
	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;
}

.modalBox .inr {
	padding: 0 10px 5px 0;
	margin-top: 10px;
	overflow-y: auto;
	max-height: calc(80vh - 80px);
}