.goaisatsu {
	position: relative;
}

.goaisatsu + .goaisatsu {
	margin-top: 40px;
}

.grad-btn {
	z-index: 2;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 148px;
	margin: auto;
	padding: 5px 0;
	border-radius: 2px;
	background: #558048;
	color: #fff;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	transition: .2s ease;
	box-shadow: 0 0 3px rgba(0,0,0,.3);
}

.goaisatsu p{
	font-size:11px;
}

.grad-btn::after {
	content: "続きを読む"
}

.grad-btn:hover {
	background: #fff;
	color: #009e8f;
}

.grad-btn .fa {
	margin-right: .5em;
}

.grad-item {
	position: relative;
	overflow: hidden;
	height: 80px;
}

.grad-item p + p {
	margin-top: 1em;
}

.grad-item::before {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 40px; /*グラデーションで隠す範囲*/
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
	background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}

.grad-trigger {
	display: none;
}

.grad-trigger:checked ~ .grad-btn {
	bottom: -2em;
}

.grad-trigger:checked ~ .grad-btn::after {
	content: "閉じる"
}

.grad-trigger:checked ~ .grad-btn .fa {
	transform: rotate(180deg);
}

.grad-trigger:checked ~ .grad-item {
	height: auto;
	padding:0px 0px 20px 0px;
}

.grad-trigger:checked ~ .grad-item::before {
	display: none;
}