@charset "UTF-8";

.contentNav {
	display : grid;
	grid-template-columns : 1fr 1fr 1fr;
	grid-gap : 16px;
}
.contentNav > li a {
	display : flex;
	justify-content : left;
	align-items : center;
	border: 1px solid #333333;
	font-size: 1.25em;
	font-weight: bold;
	padding: 20px;
	font-family: "新ゴ B";
	text-decoration: none;
}
.contentNav > li a:hover {
	background-color: #CCCCCC;
}
.contentNav > li a img {
	width : 48px;
	margin-right: 10px;
}

.attention {
	padding : 1em;
	color : #cc0000;
	border : 2px solid #cc0000;
}

@media screen and (max-width: 767px) {
	.contentNav {
		grid-template-columns : 1fr;
	}
	#pageBody #main > section .column {
		grid-template-columns : 1fr;
	}
	
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
}
@media screen and (min-width: 1025px) and (max-width: 1439px) {
}
@media screen and (min-width: 1440px) and (max-width: 1919px) {
}
@media screen and (min-width: 1920px) {
}
