.hint {
	position: absolute;
	z-index: 1;
	display: flex;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.hint .body {
	position: relative;
	background: #ffd1d1;
	padding: 3em 1.5em 2em;
	border: 4px solid white;
	border-radius: 1.5em;
}

.hint:not(.open) {
	opacity: 0;
	visibility: hidden;
}
.hint.open {
	transition: opacity 400ms;
}


.hint .close {
	display: flex;
	position: absolute;
	align-items: center;
	justify-content: center;
	right: 0.5em;
	top: 0.5em;
	width: 1.5em;
	height: 1.5em;
}

.hint .chara {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-1em, -50%);
}


.play .body {
	display: flex;
	align-items: center;
	justify-content: center;
}

.play .answers {
	display: flex;
	justify-content: center;
	margin: 1em 0;
}


@media (max-width: 640px) {

	.play .body {
		flex-wrap: wrap;
		width: 80%;
	}

	.play .body img {
		font-size: 80%;
	}

	.play .body .chara1 {
		margin-right: auto;
	}
	.play .body .chara2 {
		margin-left: auto;
	}

	.play .answers {
		width: 95%;
		flex-wrap: wrap;
	}
	.play .answers .answer {
		width: 45%;
	}
}


@media (min-width: 641px) {
	
	.play .body {
		margin-top: 1em;
	}
	.play .body .chara2 {
		order: 2;
	}
		
}