@charset "UTF-8";
/* CSS Document */
.title_back {
	background-image: url("../../common/back_hoge2.jpg");
    background-size: cover;
}
.title_back h1 {
	color: #fff;
	margin: 0;
	padding: 30px 0 50px;
}

main .inner {
	max-width: 900px;
}
main dt,
main dd {
	/*text-indent: -3.58rem;
	padding-left: 3.58rem;*/
}
main dl div {
	width:calc(100% - 4rem) ;
}
main dt {
	counter-increment: question;
	margin-bottom: 10px;
	font-size: 1.3rem;
	font-weight: bold;
	color: #777;
	display: flex;
	
}

main dt::before {
	content: "Q." counter(question) ;
	color: #E40003;
	font-size: 1.3rem;
	font-weight: bold;
	display: inline-block;
	width: 4rem;
	
}
main dd {
	counter-increment: anser;
	margin-left: 0;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px dotted #bbb;
	font-size: 1.1rem;
	display: flex;
	
}
main dd::before {
	content: "A." counter(anser) ;
	font-size: 1.3rem;
	font-weight: bold;
	color: #005FAE;
	display: inline-block;
	width: 4rem;
	

}
.coment {
	color: #777;
}
small {
	margin-top: 20px;
	display: block;
	
}