

.list{
	margin: 0 0 20px 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.list ul{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	justify-content: flex-start;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.list li{
	position: relative;
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
	width: calc(100% / 2);
	height: 40px;
	font-size: 12px;
	line-height: 15px;
	color: #333;
	background: #fff;
	text-align: left;
	padding: 10px 10px 10px 25px;
	border-bottom: 1px solid #ffdced;
	border-right: 1px solid #ffdced;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.list li:after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #ff3399;
	position: absolute;
	top: 15px;
	left: 12px;
}
.list li a{	color: #333;}
.list li:nth-of-type(1),
.list li:nth-of-type(2){
	border-top: 1px solid #ffdced;
}
.list li:nth-of-type(even){
	border-right: none;
}

.title{
	margin-bottom: 20px;
}

.cnt{
	padding: 0 10px 20px 10px;
}

#qa,
.qa{
	padding: 0 10px;
}

.qbox{
	background: #fff3f9;
	margin-bottom: 20px;
	padding: 10px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.qbox h3,
.qbox h4{
	position: relative;
	display: block;
	font-size: 16px;
	font-weight: bold;
	line-height: 18px;
	color: #ff3399;
	margin: 0 0 12px 40px;
	padding: 6px 0 6px 0;
}

.qbox h3:before,
.qbox h4:before{
	content: "Q";
	display: inline-block;
	width: 30px;
	height: 30px;
	font-family: "FontB";
	font-size: 20px;
	font-weight: normal;
	line-height: 30px;
	text-align: center;
	color: #fff;
	background: #ff3399;
	border-radius: 0 15px 0 15px;
	position: absolute;
	top: 0;
	left: -40px;
}

.qbox .qbox_txt{
	position: relative;
	font-size: 13px;
	line-height: 25px;
	margin: 0 0 0 40px;
}

.qbox .qbox_txt:before{
	content: "A";
	display: inline-block;
	width: 30px;
	height: 30px;
	font-family: "FontB";
	font-size: 20px;
	font-weight: normal;
	line-height: 30px;
	text-align: center;
	color: #fff;
	background: #e0ac21;
	border-radius: 3px;
	position: absolute;
	top: -3px;
	left: -40px;
}

.anchor{
	display: block;
	padding-top: 80px;
	margin-top: -80px;
}