@charset "UTF-8";
/* CSS Document */


#who_am_i #shindan_body {
	position: relative;
}

#who_am_i #shindan_body h1 {
	position: absolute;
	top: 0;
	left: 5%;
	width: 85%;
	margin-top: 5%;
}

#who_am_i #qa_field {
	position: absolute;
	top: 0;
	left: 10%;
	width: 80%;
  height: 45%;
	margin-top: 60%;
	padding: 0;
}

#who_am_i #qa_field .question_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45%;
	margin-bottom: 5%;
	font-size: calc(500px / ( 375 / 18 ));
	font-weight: bold;
	letter-spacing: 0.08em;
  text-align: center;
	background-color: rgba(255,255,255,.9);
	border-radius: 12px;
}

#who_am_i #qa_field .question_wrap #question_txt {
	text-align: center;
  color: #60745b;
}

#who_am_i #qa_field .choices_wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	line-height: 1.1;
  width: 100%;
  margin: 0 auto 12%;
}

#who_am_i #qa_field .choices_wrap li {
  display:flex;
  justify-content:center;
  align-items:center;
  width: 47.5%;
  text-align: center;
	background-color: rgba(255,255,255,.9);
	border-radius: 12px;
	position: relative;
	cursor: pointer;
}

#who_am_i #qa_field .choices_wrap li:first-child {
margin-right: 5%;
}

#who_am_i #qa_field .choices_wrap #choices_a,
#who_am_i #qa_field .choices_wrap #choices_b {
	font-size: calc(500px / ( 375 / 16 ));
	font-weight: bold;
  line-height: 1.2;
  display: inline-block;
  text-align: left;
}

#who_am_i #qa_field .choices_wrap #choices_a a,
#who_am_i #qa_field .choices_wrap #choices_b a {
  color: #60745b;
}

#who_am_i #qa_field .choices_wrap #choices_a a:hover,
#who_am_i #qa_field .choices_wrap #choices_b a:hover {
  opacity: 1;
}

#who_am_i #qa_field .choices_wrap .icon_a,
#who_am_i #qa_field .choices_wrap .icon_b{
	width: 35%;
  margin: 0;
  display: inline-block;
  padding: 15px 0;
}

#who_am_i #qa_field .choices_wrap .icon_a .choice_mark,
#who_am_i #qa_field .choices_wrap .icon_b .choice_mark{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 119%;
	height: 0;
	padding-bottom: 119%;
	transform: translate(-50%, -50%);
}

#who_am_i #qa_field .choices_wrap .choice_mark::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border: 5px solid #b71e71;
	border-radius: 50%;
	box-sizing: border-box;
  left: -20%;
  top: 20%;
}

#who_am_i #qa_field .choices_wrap .icon_a img,
#who_am_i #qa_field .choices_wrap .icon_b img {
	position: relative;
	z-index: 1;
}


#who_am_i #qa_field .choices_wrap .choice_mark::before {
	content: "";
	position: absolute;
	width: 70%;
	height: 70%;
	left: 15%;
	top: 15%;
	cursor: pointer;
  z-index: 100;
}


/* ---- animation ---- */
#who_am_i #qa_field .question_wrap {
	transition: all 0.5s 0s;
	backface-visibility: hidden;
	opacity: 0;
	transform: translateY(20%);
}

#who_am_i #qa_field.show_anime .question_wrap {
	opacity: 1;
	transform: translateY(0%);
}

#who_am_i #qa_field .choices_wrap {
	transition: all 0.9s 0.8s;
	backface-visibility: hidden;
	opacity: 0;
}

#who_am_i #qa_field.show_anime .choices_wrap{
	opacity: 1;
}

#who_am_i #qa_field .choices_wrap .choice_mark::before {
	transition: all 0.4s;
	backface-visibility: hidden;
	opacity: 0;
	transform: scale(1.45);
	transform-origin: center;
}

#who_am_i #qa_field .choices_wrap .decision .choice_mark::before {
	opacity: 1;
	transform: scale(1);
}

#who_am_i #qa_field .choices_wrap #choices_a,
#who_am_i #qa_field .choices_wrap #choices_b {
	transition: all 0.6s 1.1s;
	backface-visibility: hidden;
	opacity: 0;
	transform: translateX(-5px);
}

#who_am_i #qa_field.show_anime .choices_wrap #choices_a,
#who_am_i #qa_field.show_anime .choices_wrap #choices_b {
	opacity: 1;
	transform: translateX(0px);
}

#who_am_i #qa_field.hide_anime .question_wrap,
#who_am_i #qa_field.hide_anime .choices_wrap,
#who_am_i #qa_field.hide_anime .choices_wrap .choice_mark::before,
#who_am_i #qa_field.hide_anime .choices_wrap #choices_a,
#who_am_i #qa_field.hide_anime .choices_wrap #choices_b {
	transition-duration: 0.01s !important;
	transition-delay: 0s !important;
}



@media screen and (max-width: 750px) {

	#who_am_i #qa_field .question_wrap {
		font-size: calc(100vw / ( 375 / 25 ));
	}

	#who_am_i #qa_field .choices_wrap a {
		opacity: 1 !important;
	}

	#who_am_i #qa_field .choices_wrap #choices_a,
	#who_am_i #qa_field .choices_wrap #choices_b {
		font-size: calc(100vw / ( 375 / 18 ));
	}

}
