
/* readmoreボタン共通 */
.readmore *, .readmore *:before, .readmore *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.readmore {
	position: relative;
}
.readmore input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}

.readmore label {
	position: absolute;
	z-index: 10;
	bottom: 0;
	width: 100%;
	height: 100px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景に合わせて設定 */
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.readmore label:after {
	line-height: 2.5rem;
	position: absolute;
	z-index: 10;
	bottom: 20px;
	left: 48%;
	width: 16rem;
	font-family: "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
	content: "\3082\3063\3068\898B\308B";
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #333;
	border-radius: 8px;
	border: 1px solid #333;
	background-color: #FFF;
}
.readmore input {
	display: none;
}
.readmore input:checked + label:after {
	font-family: "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
	content: "\9589\3058\308B";
}

/* koshi readmore */
.readmore .koshi_readmore_container {
	overflow: hidden;
	height: 200px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.readmore input:checked ~ .koshi_readmore_container {
	height: auto !important;
	padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}

/* koza readmore */
.readmore .koza_readmore_container {
	overflow: hidden;
	/*height: 400px; *//* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.readmore input:checked ~ .koza_readmore_container {
	height: auto !important;
	padding-bottom: 110px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}