@charset "UTF-8";
/* CSS Document */
.judge {
	display: flex;
	width: 80%;
	height: auto;
	padding-top: 40px;
	margin: 30px auto;
	justify-content: space-around;
	position: relative;
	font-size: 1.2rem;
	color: #555;
}
.judge:before {
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	content: 'ロボット対策のため、下記の「赤色のボタン」をクリックしてください。';
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
.judge span {
	display: block;
	width: 15%;
	aspect-ratio: 1/1;
	border: 1px solid #ccc;
	position: relative;
	border-radius: 50%;
	transition: 0.6s all ease;
}
.judge span:first-of-type {
	background-color: #ffc1c1;
}
.judge span:nth-of-type(2) {
	background-color: #ffc1ff;
}
.judge span:nth-of-type(3) {
	background-color: #c1c1ff;
}
.judge span:nth-of-type(4) {
	background-color: #c1ffff;
}
.judge span:last-of-type {
	background-color: #c1ffc1;
}
.judge span:before {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: 'I am robot';
	text-align: center;
}
.judge span:first-of-type:before {
	content: "I am ailien";
}
.judge span:nth-of-type(2):before {
	content: "I am Alien Baltan";
}
.judge span:nth-of-type(3):before {
	content: "I am T-REX";
}
.judge span:nth-of-type(4):before {
	content: "I'm Majin Buu";
}
.judge span:last-of-type:before {
	content: "I'm Javva the Hutt";
}
.judge span:hover {
	cursor: pointer;
	background-color: gray;
}
.judge span.flg {
	background-color: red;
}
.judge span.flg:hover {
	background-color: #801113;
	color: white;
}
.judge span.flg:before {
	content: '私はロボットではありません';
	color: #ddd;
}

@media screen and (max-width: 767px) {
.judge {
	flex-direction: column;
	padding-top: 70px;
}
	.judge:before {
	text-align: left;
	}
	.judge span {
		width: 100%;
		height: 35px;
		margin-bottom: 8px;
		border-radius: 10px;
		aspect-ratio: inherit;
	}
		.judge span:last-child {
			margin-bottom: 0;
	}
}
