@charset "UTF-8";

.link_box {
	display: flex;
	flex-wrap: wrap;
}
.link_box > .col {
	background: #fff;
	border: 1px solid #B9D01B;
	margin-right: 0;
	width: 46%;
	width: calc(100% / 2 - 10px);
}
.link_box > .col:nth-of-type(2n) {
    margin-left: 20px;
}
.link_box a {
  color: #444444;
  display: block;
  font-size: 15px;
  padding: 18px 30px 18px 18px;
  position: relative;
}
.link_box a::before {
  background: #7B7B7B;
  background: -moz-linear-gradient( #A0A0A0 0%, #7B7B7B 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#A0A0A0), to(#7B7B7B));
  background: -webkit-linear-gradient( #A0A0A0 0%, #7B7B7B 100%);
  background: -o-linear-gradient( #A0A0A0 0%, #7B7B7B 100%);
  background: linear-gradient( #A0A0A0 0%, #7B7B7B 100%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
}
.link_box a::after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
  display: inline-block;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: rotate(-135deg) translateY(-50%);
  width: 6px;
}
.col_l_img {
	display: flex;
}
.col_l_img figure {
	margin-left: 0;
	margin-right: 15px;
	max-width: 100px;
	padding: 10px 0;
	text-align: center;
	width: 100%;
}
.col_l_img img {
	max-height: 51px;
	max-width: 51px;
	width: auto;
}
.col_l_img .col:last-of-type {
	align-self: center;
	min-height: 71px;
	margin-left: 0;
	width: calc(100% - 100px);
}
.col_l_img .h4_type01 {
	color: inherit;
}
.col_l_img .h4_type01 + p {
    margin-top: 5px;
}

@media screen and (max-width: 767px) {
	.link_box {
		display: block;
		flex-wrap: wrap;
	}
	.link_box > .col {
		background: #fff;
		border: 1px solid #B9D01B;
		margin-right: 0;
		width: 100%;
	}
	.link_box > .col:nth-of-type(2n) {
			margin-left: 0;
	}
}