/* ==================== #category-list.css ==================== */

#category-list {
	display: flex;
	justify-content: center;
	margin: 3em auto;
}

#category-list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#category-list li {
	padding-left: 1.6em;
	position: relative;

}
#category-list li:not(:first-child) {
	margin-top: 0.5em;
}
#category-list a {
	text-decoration: none;
}
#category-list li:before {
	content: ' ';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 1.4em;
	height: 1.4em;
	background: url(../images/common/arrow_b2_down.png) no-repeat center center;
	background-size: 100% 100%;
}


@media (max-width: 640px) {
	#category-list {
		font-size: 90%;
	}
}


@media (min-width: 641px) {
	#category-list {
	}
}



/* ==================== qanda-title.css ==================== */

.qanda-title {
	margin: 3em auto;
}

.qanda-title h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: #2c70b3;
}

.qanda-title h1::before {
	content: '';
	display: block;
	width: 1.75em;
	height: 1.75em;
	margin-right: 0.5em;
	background: url(../images/common/qanda_title_icon.png) no-repeat center center / contain;
}


@media (max-width: 640px) {
	.qanda-title h1 {
		font-size: 150%;
	}
}


@media (min-width: 641px) {
	.qanda-title h1 {
		font-size: 175%;
	}
}