@charset "utf-8";

/*------------------------------
	リンク
------------------------------*/
.box_link {}

.list_circle_red {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 2.5%;
}

.list_circle_red > li {
	position: relative;
	width: 49%;
	padding-left: 1.3em;
}

.list_circle_red > li:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: .5em;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .4em 0 .4em .8em;
	border-color: transparent transparent transparent #B7272D;
}

.list_circle_red > li {
	margin-bottom: 1em;
	padding-bottom: 1em;
}

.list_circle_red > li a {
	display: block;
	text-decoration: underline;
	color: #333;
}


/*-------------------------------------
 ▼中型画面向けデザイン（タブレットなど）
 --------------------------------------*/
@media screen and (min-width: 768px) {

	.list_circle_red {
		display: block;
		text-align: center;
	}

	.list_circle_red > li {
		display: inline-block;
		width: auto;
		font-size: 16px;
	}

	.list_circle_red > li:not(:last-of-type) {
		margin-right: 4em;
	}

	.list_circle_red > li a:hover {
		text-decoration: none;
	}

}