@charset "UTF-8";
/*------------------------
一覧
------------------------*/
article .inner {
	 width: 1200px;
	 margin: 100px auto;
}
article .inner .item-list {
	flex-wrap: wrap;
	gap: 36px 36px;
	margin-bottom: 60px;
}
.item-list .item {
	width: 376px;
}
.item-list .item a {
	display: block;
	position: relative;
}
.item-list .item .img {
	height: 268px;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 20px;
}
.item-list .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease 0s;
}
.item-list .item a:hover .img img {
	transform: scale(1.05, 1.05);
}
.img.no {
	background: var(--career);
	background: linear-gradient(45deg,var(--newgraduate) 0%, var(--career) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.3);
	padding-bottom: 10px;
}
.img.no span {
	line-height: 1;
	font-size: 1.2rem;
}
.img.no span b{
	font-size: 4rem;
	display: inline-block;
	padding-top: .1em;
}
.item-list .item .cat {
	position: absolute;
	top: 20px;
	left: 0;
	display: inline-block;
	min-width: 84px;
	padding: 8px 10px;
	color: #fff;
	text-align: center;
	line-height: 1;
}
.item-list .item .cat.newgraduate {
	background: var(--newgraduate);
}
.item-list .item .cat.career {
	background: var(--career);
	letter-spacing: 0;
}
.item-list .item .txt {
	line-height: 1;
}
.item-list .item .txt .head {
	align-items: center;
	margin-bottom: 10px;
}
.item-list .item .txt .head h2 {
	font-size: 2.6rem;
	font-weight: bold;
	color: var(--btncolor);
	margin-right: 15px;
}
.item-list .item .txt .head .position {
	display: block;
}
.item-list .item .txt .year {
	display: block;
	font-size: 1.8rem;
	margin-bottom: 15px;
}
.item-list .item .txt .tag-area {
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.item-list .item .txt .tag-area span {
	display: block;
	padding: 8px 15px;
	border: 1px solid var(--btncolor);
	border-radius: 50vw;
	font-size: 1.4rem;
	color: var(--btncolor);
	letter-spacing: .025em;
	margin: 0 5px 5px 0;
}
.item-list .item .txt h3 {
	font-size: 2.1rem;
	font-weight: bold;
	text-align: justify;
	line-height: 1.3;
}
@media screen and (max-width: 1240px) {
	article .inner {
		width: 1160px;
	}
	article .inner .item-list {
		gap: 36px 31px;
	}
	.item-list .item {
		width: 366px;
	}
}
/*------------------------
pager
------------------------*/
.screen-reader-text {
	display: none;
}
.pager {
	text-align: center;
}
.pager .nav-links {
	display: flex;
	flex-wrap: wrap;
}
.pager .nav-links .page-numbers {
	display: block;
	background: var(--bgcolor);
	min-width: 30px;
	height: 30px;
	border-radius: 50vw;
	font-size: 1.4rem;
	line-height: 28px;
	margin-inline: 0 5px;
}
.pager .nav-links .page-numbers.dots {
	border: none;
}
.pager .nav-links .current {
	min-width: 30px;
	height: 30px;
	line-height: 28px;
	background: var(--btncolor);
	color: #fff;
}
.pager .nav-links a:hover {
	background: var(--btncolor);
	color: #fff;
}