.reveal-modal-bg { 
	width: 100%;
	height: 100%;
	padding: 20px;
	position: fixed; 
	top: 0;
	left: 0; 
	background: rgba(255,255,255,.95);
	z-index: 100;
	display: none;
}
	
.reveal-modal {
	width: 50%;
	height: 80%;
	padding: 30px 20px;
	position: absolute;
	top: 50px;
	left: 25%;
	visibility: hidden;
	cursor: default;
	border: 1px solid #C8C8C8;
	background: #FFF;
	box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
	z-index: 101;
}

/*閉ボタン*/
.close-reveal-modal {
    width: 15px;
    height: 15px;
    padding: 0;
　  margin: 0;
    position: absolute;
    top: 7px;
    right: 7px;
    cursor: pointer;
    border: none;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
}

.close-reveal-modal:hover {
	transform: rotate(180deg);
}

/*カスタムスクロールバー*/
.mCustomScrollbar {
	width: 100%;
	height: 100%;
	overflow: auto;
}

.mCustomScrollbar img {
	margin: 0 0 20px 0;
}

.mCustomScrollbar img:last-child {
	margin: 0 0 0 0;
}

.mCustomScrollbar span {
	font-size: 80%;
	display: block;
	margin: 0 0 30px 0;
}

.mCustomScrollbar span:last-child {
	margin: 0 0 0 0;
}

@media screen and (max-width: 700px) {
.reveal-modal {
	width: 90%;
	height: 90%;
	padding: 30px 10px;
	position: absolute;
	top: 5%;
	left: 5%;
}
}