<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


.cp_ranking *, .cp_ranking *:before, .cp_ranking *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.02em;

}
.cp_ranking {
	position: relative;
}
.cp_ranking label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 140px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.cp_ranking input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_ranking label:before {
	line-height: 2.5rem;
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 50%;
	width: 16rem;
	content: 'もっと見る';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #4C372B;

	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.02em;

}
.cp_ranking label:after {
    content: "";
    position: absolute;
    z-index: 2;
    right: 100px;
    bottom: 7px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #4C372B;
    border-right: 2px solid #4C372B;
    transform: rotate(135deg);
    margin: 40px 0 0 0;

}
.cp_ranking input {
	display: none;
}
.cp_ranking .cp_container {
	overflow: hidden;
	height: 150px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.cp_ranking input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_ranking input:checked + label:before {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.02em;
	content: '閉じる';
}
.cp_ranking input:checked + label:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 100px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #4C372B;
    border-right: 2px solid #4C372B;
    transform: rotate(-45deg);
    margin: 23px 17px 0 0;

}

.cp_ranking input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 30px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}
</pre></body></html>