@charset "UTF-8";
/*------------------------
一覧
------------------------*/
.archive {
	background: var(--bgcolor);
	padding: 100px 0;
	border-radius: 32px 32px 0 0;
	margin-top: -32px;
	position: relative;
	z-index: 1;	
}
.archive .inner {
	width: 1200px;
	margin: auto;
}
.archive .inner .lead-area {
	font-size: 2.1rem;
	line-height: 1.71;
	margin-bottom: 60px;
}
.archive .inner .lead-area p {
	margin-bottom: 20px;
}
/*タブ*/
.archive .inner .tab_area {
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}
.archive .inner .tab_area li a {
	display: block;
	background: #fff;
	padding: 10px 15px;
	border: 1px solid var(--mygray);
	color: var(--mygray);
	line-height: 1;
}
.archive .inner .tab_area li a.select ,
.archive .inner .tab_area li a:hover {
	background: var(--mygray);
	color: #fff;
}
/*一覧*/
.archive .inner .item-list {
	flex-wrap: wrap;
	gap: 30px;
	align-items: stretch;
	margin-bottom: 50px;
}
.archive .inner .item-list .item {
	width: calc(50% - 15px);
	height: auto;
}
.archive .inner .item-list .item a {
	display: block;
	height: 100%;
	padding: 30px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 1px 1px 16px 0px rgba(0, 0, 0, .05);
	position: relative;
}
.archive .inner .item-list .item .img {
	height: 350px;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 20px;
}
.archive .inner .item-list .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease 0s;
}
.archive .inner .item-list .item a:hover .img img {
	transform: scale(1.05, 1.05);
}
.archive .inner .item-list .item h2 {
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 10px;
}
.archive .inner .item-list .item .wrap-area {
	margin-bottom: 10px;
}
.archive .inner .item-list .item .cat-area {
	margin-left: 10px;
}
.archive .inner .item-list .item .cat-area .cat {
	background: var(--mygray);
	padding: 7px 10px;
	border-radius: 6px;
	font-size: 1.5rem;
	color: #fff;
	line-height: 1;
	margin: 0 2px 2px 0;
}
.archive .inner .item-list .item .wrap {
	display: block;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.1;
	margin-top: 5px;
}
.archive .inner .item-list .item p {
	font-size: 1.8rem;
	text-align: justify;
}
@media screen and (max-width:1300px) {
	.archive .inner {
		width: 1160px;
	}
	.archive .inner .item-list .item .cat-area {
		width: 485px;
	}
}
/*------------------------
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(--mygreen);
	border: 1px solid var(--mygreen);
	min-width: 30px;
	height: 30px;
	font-size: 1.4rem;
	color: #fff;
	line-height: 28px;
	margin-inline: 0 3px;
}
.pager .nav-links .page-numbers.dots {
	border: none;
	background: none;
	color: var(--mygreen);
}
.pager .nav-links .current {
	min-width: 30px;
	height: 30px;
	line-height: 28px;
	background: #fff;
	border: 1px solid var(--mygreen);
	color: var(--mygreen);
}
.pager .nav-links a:hover {
	background: #fff;
	color: var(--mygreen);
}
/*------------------------
pagetop
------------------------*/
.page-top {
	margin-top: -50px;
}
