@charset "UTF-8";
/*------------------------
INFORMATION
------------------------*/
#info {
	position: relative;
}
#info .inner{
	padding: 60px 0 80px;
}
#info .inner .ttl-wrap{
	margin-bottom: 20px;
	text-align: center;
}

/* カテゴリー */
#info .filter ul{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
#info .filter ul li{
	background: #c9c9c9;
	color: #fff;
	padding: 10px 20px;
	font-size: 18px;
	line-height: 1;
	margin: 0 3px;
	cursor: pointer;
	transition: all 0.5s ease 0s;
}
#info .filter ul li.is-active{
	background: var(--black);
	cursor: unset;
}
#info .filter ul li:hover{
	background: var(--black);
}

#info .block-wrap {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
#info .block-wrap li {
	margin-right: 20px;
	margin-bottom: 25px;
}
#info .block-wrap li:nth-child(3n){
	margin-right: 0;
}
#info .block-wrap li a {
	width: 320px;
}
#info .block-wrap li .image{
	height: 213px;
	margin-bottom: 10px;
	overflow: hidden;
	border-radius: 10px;
}
#info .block-wrap li .image img{
	object-fit: cover;
	transition: all .3s ease 0s;
	border-radius: 12px;
}
#info .block-wrap li a:hover .image img {
	transform: scale(1.05, 1.05);
}
#info .block-wrap li .tag-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	white-space: nowrap;
}
#info .block-wrap li .tag-wrap .day {
	font-size: 15px;
	margin-right: 10px;
	line-height: 1.4;
	font-weight: 600;
}
/* #info .block-wrap li .tag {
	font-size: 13px;
	font-weight: 500;
	padding: 2px 11px 1px;
	line-height: 1.5;
	background: var(--yellow);
	color: #fff;
	letter-spacing: .04em;
} */
#info .block-wrap li .ttl {
	letter-spacing: .04em;
	font-weight: 500;
	transition: all .3s ease 0s;
	text-align: justify;
	line-height: 1.4;
	font-size: 18px;
}
#info .block-wrap li a:hover .ttl{
	color: var(--orange);
}

/* ページャー */
#pager-bottom {
	padding: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#pager-bottom li a ,#pager-bottom .current_page{
	height: 35px;
	min-width: 35px;
	margin-left: 3px;
	font-size: 18px;
	font-weight: bold;
	background: var(--black);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
#pager-bottom .current_page {
	background: var(--orange);
}
#pager-bottom li a:hover{
	background: var(--orange);
}