@charset "UTF-8";

span.new {
  background: #ED722F;
  padding: 3px 5px;
  color: #fff;
  font-size: 12px;
  text-align: left;
}

.min_ttl {
  margin: 8px 0 10px;
  font-weight: bold;
  font-size: 15px;
  border-bottom: solid 1px #ccc;
  padding-bottom: 5px;
}

.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;
	height: 100%;
  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: 80px;
	padding: 10px 0;
	text-align: center;
	width: 100%;
}
.col_l_img img {
	max-height: 70px;
	max-width: 70px;
	width: auto;
}
.col_l_img .col:last-of-type {
	margin-left: 30px;
	width: calc(100% - 100px);
}
.col_l_img .small_ttl + p {
    margin-top: 5px;
}

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