#MagicNav3 {
	position: relative;
	margin-top: 35px;
	width: 400px;
	height: 60px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}
#MagicNav3 ul {
	display: flex;
	width: 350px;
}
#MagicNav3 ul li {
	list-style: none;
	position: relative;
	width: 70px; /* 350 / 5 = 70 */
	height: 60px;
	z-index: 2;
}
#MagicNav3 ul li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
#MagicNav3 ul li a .icon {
	position: relative;
	display: block;
	width: 55px;
	height: 55px;
	text-align: center;
	line-height: 55px;
	border-radius: 50%;
	color: #222327;
	font-size: 1.5em;
	transition: 0.5s;
	transition-delay: 0s;
}
#MagicNav3 ul li.active a .icon {
	background: var(--clr);
	color: #fff;
	transform: translateY(-27px);
	transition-delay: 0.25s;
}
#MagicNav3 ul li a .icon::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--clr);
	border-radius: 50%;
	filter: blur(5px);
	opacity: 0;
	transition: 0.5s;
	transition-delay: 0s;
	z-index: -1; /* 調整 */
}
#MagicNav3 ul li.active a .icon::before {
	opacity: 0.5;
	transition-delay: 0.25s
}
#MagicNav3 .indicator {
	position: absolute;
	top: -35px;
	width: 70px;
	height: 70px;
	background: #fff;
	border-radius: 50%;
	z-index 1;
	transition: 0.5s;
}
#MagicNav3 .indicator::before {
	content: "";
	position: absolute;
	top: 5px;
	left: -28px;
	width: 30px;
	height: 30px;
	background: transparent;
	/* background: #0f0; */
	border-radius: 50%;
	box-shadow: 15px 18px #fff;
}
#MagicNav3 .indicator::after {
	content: "";
	position: absolute;
	top: 5px;
	right: -28px;
	width: 30px;
	height: 30px;
	background: transparent;
	/* background: #0f0; */
	border-radius: 50%;
	box-shadow: -15px 18px #fff;
}
#MagicNav3 ul li:nth-child(1).active ~ .indicator {
	transform: translateX(calc(70px * 0));
}
#MagicNav3 ul li:nth-child(2).active ~ .indicator {
	transform: translateX(calc(70px * 1));
}
#MagicNav3 ul li:nth-child(3).active ~ .indicator {
	transform: translateX(calc(70px * 2));
}
#MagicNav3 ul li:nth-child(4).active ~ .indicator {
	transform: translateX(calc(70px * 3));
}
#MagicNav3 ul li:nth-child(5).active ~ .indicator {
	transform: translateX(calc(70px * 4));
}
