@charset "utf-8";
p{
	margin-block-start: 0%;
	margin-block-end: 0%;
}
.margin-a {
	margin: auto;
}
.disp-center {
	display: flex;
	justify-content: center;
}
.accordion{
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease-in-out;
}
.accordion.active {
	height: auto;
}
.accordionClickable:hover {
	cursor: pointer;
	background-color: #bee1de;
}
.acc-first {
	background-color: #00a5a0;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}
.acc-second {
	background-color: #00cac3;
	font-size: 15px;
}
.acc-third {
	background-color: #00fff7;
}

#contents {
	margin-top: 10px;
}
.s-card {
	border: solid 1px;
	margin-bottom: 5px;
	height: 110px;
	width: 50%;
}
.rank-icon {
	float: left;
}
.reward {
	padding-left: 30px;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-image: url(/img/reward.svg);
}
.reward-1{
	background: gold;
}
.reward-2{
	background: silver;
}
.reward-3{
	background: #B87333;
}
.s-card img {
	height: 100px;
	width: 100px;
	float: right;
	margin: 5px;
}
.card-name {
	text-align: center;
}
.usage-rate {
}
.button-title {
	width: 10%;
	margin: auto;
}

.change-button {
	color: #ffffff;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	padding: 1.3em .5em;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid transparent;
	border-radius: 6px;
	box-sizing: border-box;
	width: 20%;
	position: relative;
}
.change-button:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	box-sizing: border-box;
	transform: translate(-3px, -3px);
	transition: 0.3s;
}
.change-button:hover:after {
	transform: translate(0, 0);
}

.change-button span {
	position: relative;
	display: block;
	transform: translate(-3px, -3px);
	transition: 0.3s;
	z-index: +1;
}
.ch-progress {

}