@charset "UTF-8";

.link_container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

.link_group {
	width: 49%;
}

.link_secttl {
	background: #E3E3DF;
	border-left: 5px solid #1B4E9E;
	line-height: 1.3;
	padding: 8px 10px;
	font-size: 19px;
	border-color: ;
}

.link_list {
	padding: 25px 10px;
	list-style: none;
}

.link_list li {
	margin-bottom: 5px;
}

.link_list li:last-child {
	margin-bottom: 0;
}

.link_list li a::before {
	padding-right: 5px;
	content: ">";
	display: inline-block;
}

/* All SP & Tablet */
@media screen and (max-width:1040px) {}

/* All SP */
@media screen and (max-width:640px) {
	.link_container {
		flex-direction: column;
	}

	.link_group {
		width: 100%;
	}

	.link_list {
		padding-top: 10px;
	}
}