@charset "UTF-8";
/* CSS Document */

body{
	grid-template: 
		"b-header"
		"b-title"
		"b-nav"
		"b-hphoto"
		"b-contact"
		"b-faq"
		"b-footer"
		;
}

b-contact{
	grid-area: b-contact;
}

b-faq{
	grid-area: b-faq;
}

dl.faq dt{
	margin: 10px 0;
	text-indent: -20px;

}

dl.faq dd{
	margin-bottom: 10px;
	text-indent: -20px;
}
dl.faq dt::before{
	content: "Q. ";
}

dl.faq dd::before{
	content: "A. ";
}

.question{
	padding: 8px 0;
}

.answer{
	padding-bottom: 8px;
}