.game_list {
	list-style: none;
 	display: grid;
  	grid-template-columns: repeat(5, 1fr);
	column-gap: 1rem;
	padding: 0;
	margin: 0;
	filter: drop-shadow(5px 5px 1px rgba(16, 9, 47, 0.29));
}

.game_list li {
	break-inside: avoid;
	display: inline-block;
	width: 100%;
	margin-bottom: 1rem;
}

.game_list figure {
	background: #fff;
	border: 1px solid #ccc;
	margin: 0;
}

.game_list figure time {
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	padding: 4px 8px;
	border-bottom: 1px solid #e0e0e0;
}

.game_list figure a {
	display: block;
}

.game_list figure a img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.game_list figure figcaption {
	font-size: 12px;
	line-height: 1.5;
	padding: 8px 10px;
	border-top: 1px solid #e0e0e0;
	color: #333;
}

.game_list figure details summary {
	list-style: none;
	cursor: pointer;
	font-size: 11px;
	color: #888;
	padding: 4px 10px 6px;
	border-top: 1px dashed #ddd;
}

.game_list figure details p {
	font-size: 12px;
	color: #555;
	line-height: 1.5;
	padding: 6px 10px 10px;
	border-top: 1px dashed #ddd;
}