@charset "utf-8";
/*------------------------*
 * 1369px以上
 *------------------------*/
@media screen and (max-width: 768px) {
	.rankindex_wrapper {
	}
	.rankindex {
		width:100%;
	}
}
/*------------------------*
 * 769px以上
 *------------------------*/
@media (min-width: 769px){
	.rankindex_wrapper {
	}
	.rankindex {
		width:100%;
	}
}
/*------------------------*
 * 1750px以上
 *------------------------*/
@media (min-width: 1751px){
	.rankindex_wrapper {
	}
	.rankindex {
		width:calc(100% / 2 - 40px / 2);
	}
}
/*-----------------------------*
 * toc
 *-----------------------------*/
.toc {
	margin: 40px 0;
	padding: 20px;
	background: #09131c;
	border: 1px solid #00d8ff;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0,216,255,.15);
}
.toc legend {
	padding: 0 12px;
}
.toc legend h3 {
	margin: 0;
	color: #00d8ff;
	font-size: 1.1rem;
	text-shadow: 0 0 8px rgba(0,216,255,.6);
}
.toc ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.toc a {
	display: block;
	padding: 6px 12px;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(0,216,255,.35);
	border-radius: 4px;
	transition: .2s;
}
.toc a:hover {
	color: #fff;
	border-color: #00d8ff;
	box-shadow: 0 0 10px rgba(0,216,255,.35), inset 0 0 8px rgba(0,216,255,.12);
}
/*-----------------------------*
 * rankindex
 *-----------------------------*/
.rankindex_wrapper {
	display:flex;
	flex-wrap:wrap;
	gap:40px;
}
.rankindex {
/*
	width:calc(100% / 2 - 40px / 2);
*/
	padding: 20px;
	background: #09131c;
	border: 1px solid #00d8ff;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0,216,255,.15);
}
.rankindex legend{
	padding: 0 12px;
}
.rankindex legend h3{
	margin: 0;
	color: #00d8ff;
	font-size: 1.1rem;
	text-shadow: 0 0 8px rgba(0,216,255,.6);
}
.rankindex table{
	width:100%;
	table-layout:fixed;
}
.rankindex table tr:hover {
  background-color: rgba(0, 229, 255, 0.2);
}
.rankindex table th {
	color: #00d8ff;
}
.rankindex table th,
.rankindex table td{
	vertical-align:middle;
	text-align:center;
	white-space: nowrap;
	padding: 4px 5px;
	font-size: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}
.rankindex table img{
	width:40px;
	vertical-align:middle;
	margin-right:5px;
}
.rankindex table th.header_rank{
	width: 50px;;
}
.rankindex table th.header_name{
	width: auto;
	
}
.rankindex table th.header_score{
	width:100px;
}
.rankindex table th.header_datetime{
	width:150px;
}
.rankindex table td.data_rank{
	text-align:center;
}
.rankindex table td.data_name{
	text-align:left;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.rankindex table td.data_score{
	text-align:center;
}
.rankindex table td.data_score span{
	font-size: 14px;
	font-weight: bold;
	color: #f7ff00;
	background: linear-gradient(to left, #ff34f2, #ffa3ff, #ff34f2) 0% center/200%;
	background-size: 200% auto;
	background-clip: border-box;
	background-size: 200% auto;
	background-clip: border-box;
	background-size: 200% auto;
	background-clip: text;
	color: transparent;
	font-weight: bold;
	animation: game_score 2.0s linear infinite;
	text-align: right;
}
@keyframes game_score {
  to {
    background-position: 200% center;
  }
}
/*---------------*
 * rank
 *---------------*/
.data_score span::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	vertical-align: -2px;
	background-image: url("/common/img/icon/crown/star.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.data_score span[data-rank="1"]::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	vertical-align: -2px;
	background-image: url("/common/img/icon/crown/1.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.data_score span[data-rank="2"]::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	vertical-align: -2px;
	background-image: url("/common/img/icon/crown/2.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.data_score span[data-rank="3"]::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	vertical-align: -2px;
	background-image: url("/common/img/icon/crown/3.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}



.rankindex table td.data_datetime{
	text-align:center;
}
.rankindex .showmore {
	text-align:right;
	font-size:14px;
}