@charset "Shift_JIS";

.gFootNav_col_icon > img {
	display: block;
	max-width: 100%;
	height: auto;
}
.gPointNav { margin-bottom: 70px;}
.snowPointList {
	list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.snowPointList > li > a {
	text-decoration: none;
	color: inherit;
	display: block;
}
.snowPointList_image {
	transition-duration: .3s;
	transition-property: opacity;
}
.snowPointList_image > img { display: block;}
.snowPointList_text {
	font-size: 16px;
	font-weight: bold;
	margin-top: 14px;
	transition-duration: .3s;
	transition-property: color, background-color;
}
@media screen and (min-width: 641px) {
	.snowPointList > li > a:hover {}
	a:hover .snowPointList_image {
		opacity: 0.8;
	}
	a:hover .snowPointList_text {
		color: #0874CD;
	}
}
@media screen and (max-width: 640px) {
	.gPointNav {
		margin-bottom: 30px;
	}
	.snowPointList {
		display: block;
		margin: 0 auto;
	}
	.snowPointList > li {}
	.snowPointList > li:nth-child(n+2) {
		margin-top: 20px;
	}
	.snowPointList > li > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.snowPointList_image {
		width: 150px;
	}
	.snowPointList_image > img {}
	.snowPointList_text {
		width: calc(100% - 158px);
		margin-top: 0;
	}
}