#DotsMenu {
	position: relative;
	margin: 65px;
	width: 70px;
	height: 70px;
	background: #212532;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
	transition-delay: 0.8s;
}
#DotsMenu.active {
	margin: 0;
	width: 200px;
	height: 200px;
	transition-delay: 0s;
}
#DotsMenu span {
	position: absolute;
	width: 7px;
	height: 7px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	transform: translate(calc(12px * var(--x)),calc(12px * var(--y)));
	transition: transform 0.5s, width 0.5s, height 0.5s, background 0.5s;
	transition-delay: calc(0.1s * var(--i));
}
#DotsMenu.active span {
	width: 45px;
	height: 45px;
	background: #333849;
	transform: translate(calc(60px * var(--x)),calc(60px * var(--y)));
}
#DotsMenu span i {
	transition: 0.5s;
	font-size: 0em;
	color: #333849;
	transition-delay: calc(0.1s * var(--i));
	transition-property: font-size;
}
#DotsMenu.active span i {
	font-size: 1.35em;
	color: #fff;
}
#DotsMenu.active span:hover i {
	color: #2dfc52;
	filter: drop-shadow(0 0 2px #2dfc52) drop-shadow(0 0 5px #2dfc52) drop-shadow(0 0 15px #2dfc52);
	transform: translateZ(0); /* Safari バグ対策 */
}
