<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.link-group{ 
	 margin-bottom: 70px;
}

.link-page ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.link-page li{
	margin: 10px 0;
	flex: 0 1 100%;
}
.link-page li a{
	background: #F3FAFD;
	display: block;
	border-radius: 5px;
	padding: 20px;
	line-height: 1.4;
	color: #333333;
}
.link-page li a:hover{
	opacity: 1;
	background: #219BD9;
	color: #FFF;
}

.link-page .title {
    margin: 50px 0 10px;
    font-size: 2.4rem;
    font-weight: bold;
    color: #219BD9;
}	


@media screen and (min-width: 750px) {

	.link-page {
		padding: 0 20px;
	}
	.link-page li{
		flex-basis: 49%;
	}

} /*  (min-width: 750px)  */
</pre></body></html>