
.more-wrap {
	position: relative;
	overflow: hidden;
	transition: 1.0s;
	padding-bottom: 30px;
	
	background-color: #fff;
	
	height: 300px;				/* 対象要素のdata-more_height属性で設定 */
}

.more-btn {
	position: absolute;
	display: block;
	width: 130px;
	height: 35px;
	line-height: 35px;
	border-radius: 35px;
	color: #fff;
	background-color: rgba(0,0,0,.2);
	font-size: 12pt;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	padding: 0;
	margin: 0;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.more-btn:hover::before {
	position: absolute;
	display: block;
	content: attr(data-text);
	background-color: rgba(255,255,255,0.3);
	color: #fff;
	background-color: rgba(0,0,0,0.4);
	font-size: 12pt;
	font-weight: bold;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 35px;
}

.more-fade {
	position: absolute;
	display: block;
	width: 100%;
	height: 50px;
	bottom: 0;
	background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100% );
}

