@charset "UTF-8";
/*entry
----------------------------------------*/
.entry_ttl {
  background: #000;
  color: #fff;
  padding: 29px 20px;
  font-size: 2.8rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: .1em;
}

.entry_list ul {
	max-width: 1000px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.entry_list ul li {
	width: 48%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 120px;
	margin-bottom: 30px;
}
.entry_list ul li a {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #D2D2D2;
	border-radius: 10px;
	font-size: 2rem;
	padding: 10px 40px;
	text-align: center;
	line-height: 1.45;
	font-weight: 300;
	letter-spacing: .1em;
  color: inherit;
	overflow: hidden;
  position: relative;
	transition: opacity .3s;
}
.entry_list ul li a::after {
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	border-top: 2px solid #CA0000;
	border-right: 2px solid #CA0000;
	transform: scaleY(.89) rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto 0;
	transition: right .3s;
}
@media only screen and (min-width: 769px) {
	.entry_list ul li a:hover {
		opacity: .6;
	}
	.entry_list ul li a:hover::after {
		right: 15px;
	}
}
@media only screen and (max-width: 768px) {
  .entry_ttl {
    padding: 2rem;
    font-size: 2.2rem;
  }
	.entry_list ul {
		display: block;
	}
	.entry_list ul li {
		width: auto;
		display: block;
		min-height: 0;
		margin-bottom: 2rem;
	}
	.entry_list ul li a {
		display: block;
		border-radius: .5rem;
		font-size: 1.5rem;
		padding: 1.5rem 3rem;
	}
	.entry_list ul li a::after {
		width: 1rem;
		height: 1rem;
		right: 1.4rem;
	}
}