@charset "utf-8";


@media screen and (max-width: 768px) {
	
/*もっと見るボタン*/
.readmore {
	position: relative;
	margin-bottom: 0px;
	padding-bottom: 50px;
}

.readmore *, .readmore *:before, .readmore *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.readmore::before {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.95) 90%);
	content: "";
	bottom: -40px;
	left: 0;
	position: absolute;
	height: 140px;
	width: 100%;
	z-index: 2;
}

.readmore .readmore-label {
	position: absolute;
	left: 50%;
	-webkit-transform : translateX(-50%);
	transform : translateX(-50%);
	bottom: 0;
	display: block;
	width: 230px;
	/*height: 100px;*/ /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	transition: all 0.7s;
	z-index: 3;
}

.readmore .readmore-check:checked + .readmore-label {
	background: inherit; /* 開いた時にグラデーションを消す */
}

.readmore .readmore-label::after {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 3rem;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	-webkit-transform : translateX(-50%);
	transform : translateX(-50%);
	content: 'もっと見る';
	letter-spacing: 0.05em;
	color: #fff;
	border-radius: 40px;
	background-color: #017A4F;
	padding: 8px 0;
	width: 200px;
	height: 50px;
	transition: all 0.7s;
}

.readmore .readmore-label::before {
	color: #fff;
	font-size: 1.6rem;
	position: absolute;
	bottom: 35px;
	font-family: 'Font Awesome 5 Free';
	content: '\f107';
	right: 35px;
	z-index: 50;
	font-weight: 700;
}

.readmore .readmore-check {
	display: none;
}

.readmore .readmore-content {
	overflow: hidden;
	height: 400px; /* 開く前に見えている部分の高さ */
	transition: all 0.7s;
}

.readmore .readmore-check:checked + .readmore-label::after {
	content: '閉じる';
}

.readmore .readmore-check:checked + .readmore-label::before {
	content: '\f106';
}

.readmore .readmore-check:checked ~ .readmore-content {
	height: auto;
	padding-bottom: 40px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.7s;
}
}

