@charset "UTF-8";
/* nailcheck css */

.container * {
	box-sizing: border-box;
}
.container ul {
	list-style: none;
}
#footer .footer_part1 {
	display: none;
}

@media all and (max-width: 767px) {
	.container a {
		text-decoration: none;
	}
}


/* question
------------------------------------------------------------ */
.question {
	padding-top: 200px;
}
.question h1 {
	/*font-size: 171.4%;*/ /* 24px */
	font-size: 24px;
	text-align: center;
}
.question .box_question {
	margin: 40px auto 0;
	max-width: 630px;
	min-height: 280px;
	padding: 20px 20px 0 38px;
	position: relative;
	text-align: left;
}
.question .box_question:before,
.question .box_question:after {
	border: 1px solid #000;
	content:"";
	height: 60px;
	position: absolute;
	width: 60px;
}
.question .box_question:before {
	border-bottom: none;
	border-right: none;
	top: 0;
	left: 0;
}
.question .box_question:after {
	border-top: none;
	border-left: none;
	bottom: 0;
	right: 0;
}
.question .box_question .box_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.question .box_question .question_number {
	font-family: "Libre Baskerville", sans-serif;
	/*font-size: 571.4%;*/ /* 80px */
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: 155px;
}
.question .box_question .question_number:after {
	background-color: #000;
	content: "";
	position: absolute;
	bottom: -25px;
	right: 20px;
	transform: rotate(35deg);
	height: 60px;
	width: 2px;
}
.question .box_question .question_number span {
	/*font-size: 125%;*/ /* 100px */
	font-size: 100px;
	line-height: 1;
}
.question .box_question .question_text {
	/*font-size: 257%;*/ /* 36px */
	font-size: 36px;
	font-weight: 600;
	line-height: 1.33;
	padding-left: 10px;
	padding-top: 100px;
	text-align: left;
	width: calc(100% - 155px);
}
.question .link_back {
	/*font-size: 128.5%;*/ /* 18px */
	font-size: 18px;
	margin-top: 100px;
	text-align: left;
}
.question .link_back a {
	color: #000;
	padding-left: 50px;
	position: relative;
}
.question .link_back a:before,
.question .link_back a:after {
	background-color: #000;
	content: "";
	position: absolute;
	left: 0;
	height: 1px;
}
.question .link_back a:before {
	transform: rotate(-35deg);
	bottom: 8px;
	width: 10px;
}
.question .link_back a:after {
	bottom: 5px;
	width: 38px;
}
@media all and (max-width: 767px) {
	.question {
		padding-top: 140px;
	}
	.question h1 {
		font-size: 15px;
	}
	.question .box_question {
		margin-top: 20px;
		max-width: inherit;
		min-height: inherit;
		padding: 10px 18px 20px;
	}
	.question .box_question:before,
	.question .box_question:after {
		height: 30px;
		width: 30px;
	}
	.question .box_question .question_number {
		font-size: 40px;
		width: 80px;
	}
	.question .box_question .question_number:after {
		bottom: -15px;
		right: 15px;
		height: 30px;
		width: 1px;
	}
	.question .box_question .question_number span {
		font-size: 50px;
	}
	.question .box_question .question_text {
		font-size: 18px;
		padding-left: 5px;
		padding-top: 50px;
		width: calc(100% - 85px);
	}
	.question .link_back {
		font-size: 12px;
		margin-top: 60px;
	}
	.question .link_back a {
		padding-left: 35px;
	}
	.question .link_back a:before {
		bottom: 4px;
		width: 7px;
	}
	.question .link_back a:after {
		bottom: 2px;
		width: 24px;
	}
}


/* answer
------------------------------------------------------------ */
.answer {
	padding-top: 200px;
}
.answer h1 {
	/*font-size: 171.4%;*/ /* 24px */
	font-size: 24px;
	text-align: center;
}
.answer .box_answer .answer_mark {
	margin-top: 40px;
}
.answer .box_answer .answer_text {
	display: table;
	margin: 30px auto 0;
	min-width: 520px;
	padding: 35px;
	position: relative;
	text-align: center;
}
.answer .box_answer .answer_text:before,
.answer .box_answer .answer_text:after {
	border: 1px solid #000;
	content:"";
	height: 60px;
	position: absolute;
	width: 60px;
}
.answer .box_answer .answer_text:before {
	border-bottom: none;
	border-right: none;
	top: 0;
	left: 0;
}
.answer .box_answer .answer_text:after {
	border-top: none;
	border-left: none;
	bottom: 0;
	right: 0;
}
.answer .box_answer .answer_text p {
	display: flex;
	/*font-size: 257%;*/ /* 36px */
	font-size: 36px;
	font-weight: 600;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	line-height: 1.33;
}
.answer .box_answer .answer_image {
	margin: 50px auto 0;
	max-width: 630px;
}
.answer .box_answer .detail_text {
	/*font-size: 171.4%;*/ /* 24px */
	font-size: 24px;
	line-height: 1.5;
	margin-top: 45px;
}
.answer .link_back {
	margin-top: 30px;
	text-align: center;
}
.answer .link_back a {
	/*font-size: 142.8%;*/ /* 20px */
	font-size: 20px;
	color: #000;
	text-decoration: underline;
}
.answer .link_back a:hover {
	text-decoration: none;
}
@media all and (max-width: 767px) {
	.answer {
		padding-top: 140px;
	}
	.answer h1 {
		font-size: 15px;
	}
	.answer .box_answer .answer_mark {
		margin: 20px auto 0;
		width: 75px;
	}
	.answer .box_answer .answer_text {
		margin-top: 15px;
		min-width: 270px;
		padding: 20px;
	}
	.answer .box_answer .answer_text:before,
	.answer .box_answer .answer_text:after {
		height: 30px;
		width: 30px;
	}
	.answer .box_answer .answer_text p {
		font-size: 18px;
	}
	.answer .box_answer .answer_image {
		margin-top: 25px;
		max-width: inherit;
	}
	.answer .box_answer .detail_text {
		font-size: 14px;
		margin-top: 25px;
	}
	.answer .link_back {
		margin-top: 10px;
	}
	.answer .link_back a {
		font-size: 14px;
	}
}



.box_link {
	margin: 100px auto 0;
	max-width: 790px;
}
.box_link > .list_button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.box_link > .list_button li {
	height: 60px;
	margin-left: 1%;
	margin-right: 1%;
	width: 48%;
}
.box_link > .list_button li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
}
.box_link > .list_button li a:hover {
	opacity: 0.5;
}

/* question */
.question .box_link > .list_button.choice li a {
	background-color: #a59fcc;
	color: #fff;
	font-family: "Libre Baskerville", sans-serif;
	/*font-size: 207%;*/ /* 29px */
	font-size: 29px;
	line-height: 65px;
}
/* answer */
.answer .box_link > .list_button li a {
	/*font-size: 142.8%;*/ /* 20px */
	font-size: 20px;
	line-height: 1.2;
}
.answer .box_link > .list_button li.search a {
	background-color: #eca7ac;
	color: #fff;
}
.answer .box_link > .list_button li.back a {
	background-color: #eee;
	color: #000;
}
@media all and (max-width: 767px) {
	.box_link {
		margin-top: 50px;
		max-width: inherit;
	}
	.box_link > .list_button li {
		height: 50px;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	.box_link > .list_button li + li {
		margin-top: 25px;
	}
	.box_link > .list_button li a {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		height: 100%;
		text-align: center;
	}
	
	/* question */
	.question .box_link > .list_button.choice li a {
		font-size: 24px;
		line-height: 55px;
	}
	/* answer */
	.answer .box_link {
		margin-top: 30px;
	}
	.answer .box_link > .list_button li a {
		font-size: 15px;
	}
}