#ProfileCard {
	font-family: 'Benguiat Book', sans-serif;
	position: relative;
	margin-bottom: 59px;
	width: 350px;
	height: 85px;
	background: #398cc0;
	border-radius: 20px;
	filter: drop-shadow(-20px 20px 40px #398cc055);
	transform: translateZ(0); /* Safari drop-shadow 表示崩れ対策 */
	transition: 0.5s ease-in-out;
}
#ProfileCard.active {
	height: 420px;
}
#ProfileCard .toggle {
	position: absolute;
	bottom: -59px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 60px;
	background: #398cc0;
	border-bottom-left-radius: 35px;
	border-bottom-right-radius: 35px;
	cursor: pointer;
}
#ProfileCard .toggle::before {
	content: "";
	position: absolute;
	left: -33px;
	width: 34px;
	height: 34px;
	background: transparent;
	border-top-right-radius: 34px;
	box-shadow: 10px -10px 0 10px #398cc0;
}
#ProfileCard .toggle::after {
	content: "";
	position: absolute;
	right: -33px;
	width: 34px;
	height: 34px;
	background: transparent;
	border-top-left-radius: 34px;
	box-shadow: -10px -10px 0 10px #398cc0;
}
#ProfileCard .toggle span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -70%) rotate(405deg);
	width: 10px;
	height: 10px;
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
	transition: 0.5s ease-in-out;
}
#ProfileCard.active .toggle span {
	transform: translate(-50%, -70%) rotate(225deg);
}
#ProfileCard .panel {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
#ProfileCard .panel .content {
	position: relative;
	padding: 20px;
	text-align: center;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#ProfileCard .panel .content h2 {
	color: #fff;
	font-weight: 500;
	font-size: 1.25em;
	/* text-transform: uppercase; */
	letter-spacing: 0.05em;
	line-height: 1.1em;
}
#ProfileCard .panel .content h2 span {
	font-weight: 400;
	font-size: 0.75em;
	text-transform: initial;
}
#ProfileCard .panel .content .imagebox {
	position: relative;
	width: 250px;
	height: 250px;
	background: #fff;
	margin-top: 20px;
	box-shadow: -10px 10px 10px rgb(0 0 0 / 15%);
	border: 5px solid #fff;
}
#ProfileCard .panel .content .imagebox img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#ProfileCard .panel .content button {
	font-family: 'Poppins', sans-serif;
	position: relative;
	margin-top: 20px;
	padding: 10px 35px;
	border-radius: 25px;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 1em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 500;
	color: #333;
	box-shadow: -10px 10px 10px rgb(0 0 0 / 15%);
}
