@charset "UTF-8";

#faqcat{
	overflow: hidden;
	margin-bottom: 40px;
	border-left: 1px solid #ccc;
}
#faqcat ul{
	display: table;
	width: 50%;
	float: left;
	table-layout: fixed;
}
#faqcat li{
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	border-right: 1px solid #ccc;
}
#faqcat li a{
	display: block;
	padding: 15px 10px;
}
@media screen and (max-width: 950px){
	#faqcat ul{
		width: 100%;
		float: none;
		overflow: hidden;
		height: 80px;
		line-height: 1.5;
	}
	#faqcat ul:nth-of-type(1){
		border-bottom: 1px solid #ccc;
	}
}

main section{
	margin-bottom: 60px;
}

main section h2.und{
	margin-bottom: 20px;
}

main section dl{
	display: block;
	margin-bottom: 30px;
	border-bottom: 1px dotted #ccc;
}
main section dl dt{
	display: block;
	font-size: 120%;
	position: relative;
	padding: 0 0 0 50px;
	margin-bottom: 20px;
	line-height: 1.4;
	font-weight: bold;
}
main section dl dt:before{
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -20px;
	content: "Q";
	font-weight: normal;
	background: #E6163C;
	color: #fff;
	display: block;
	line-height: 40px;
	height: 40px;
	width: 40px;
	text-align: center;
	border-radius: 100px;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
main section dl dd{
	display: block;
	position: relative;
	padding: 0 0 0 50px;
	margin-bottom: 30px;
}
main section dl dd:before{
	position: absolute;
	top: 0;
	left: 0;
	margin-top: -6px;
	content: "A";
	background: #FAC75A;
	font-size: 120%;
	color: #fff;
	display: block;
	line-height: 40px;
	height: 40px;
	width: 40px;
	text-align: center;
	border-radius: 100px;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

main section p,
main section ul{
	margin-bottom: 10px;
}
main section li{
	list-style: decimal;
	margin-left: 20px;
}