@charset "UTF-8";
/*
	固定ページ親（目次）
*/
/*====================================
子ページの一覧
=====================================*/
.page-child_list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.page-child_item {
	display: flex; /*高さを揃える*/
	position: relative; /*矢印を固定*/
}
.page-child_item a {
	/*display: block;*/
	width: 100%;
	text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	font-size: 1.125rem;
	font-weight: bold;
	text-decoration: none;
}
.page-child_item a:after {
	/*↓右向きの▲*/
	font-family: "Font Awesome 5 Free";
	font-size: 1rem;
	line-height: 1em;
    content: "\f0da";
    font-weight: 900;
	/*↓矢印を固定*/
    display: inline-block;
	position: absolute;
	left: auto;
	right: 2rem;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 1rem;
	height: 1rem;
}
/*hover */
.page-child_item:hover {
	transform: translate(1px,1px);
}
.page-child_item:hover a {
	box-shadow: none;
	text-decoration: underline;
}

	/*====================================
	子ページの一覧　769px以上
	=====================================*/
	@media screen and (min-width: 769px) {
		.page-child_item {
			width: 33.33%;
			padding: 1rem;
		}
		.page-child_item a {
			/* border-radius: 2rem; */
			padding: 2rem 2.25rem;
		}
	}
	/*====================================
	子ページの一覧	768px以下
	=====================================*/
	@media screen and (max-width: 768px) {
		.page-child_item {
			width: 50%;
			padding: 0.5rem 1rem;
		}
		.page-child_item a {
			/* border-radius: 1rem; */
			padding: 1rem 1.5rem;
		}
	}
	/*====================================
	子ページの一覧	560px以下
	=====================================*/
	@media screen and (max-width: 560px) {
		.page-child_item {
			width: 100%;
		}
		.page-child_item a {
			/* border-radius: 0.5rem; */
			padding: 0.5rem 1rem;
		}
}



