.p-archive {
    padding: 0 0 40px;
}
@media only screen and (max-width: 767px){}

.attention-wrap {
    margin: 0 0 20px;
}
.attention {
	display: block;
	padding: 15px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: .05em;
	color: #E6263D !important;
	border: 2px solid #E6263D;
	transition: .2s;
}
.attention:hover{
	opacity: 1;

	background: rgba(230, 38, 60, 0.1);
}
.attention + .attention{
	margin: 10px 0 0;
}

@media only screen and (max-width: 767px){

	.attention-wrap{

	}
	.attention{
		padding: 10px;
		font-size: 14px;
		background: #fff;
		border: 1px solid #E6263D;
	}
	.attention:hover{
		opacity: 1;
		background: #fff;
	}

}

.tab {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin: 0 0 20px;
}
.tab__item {

}
.tab__link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: #efefef;
}

.tab__link.is-all{
	background: rgba(56, 55, 52, 0.2);
}
.tab__link.is-all.is-active{
    color: #fff;
    background: rgba(56, 55, 52, 1);
}

.tab__link.is-company_post{
	background: rgba(47, 101, 176, 0.2);
}
.tab__link.is-company_post.is-active{
    color: #fff;
    background: rgba(47, 101, 176, 1);
}

.tab__link.is-item_post{
	background: rgba(80, 178, 53, 0.2);
}
.tab__link.is-item_post.is-active{
    color: #fff;
    background: rgba(80, 178, 53, 1);
}

.tab__link.is-recruit_post{
	background: rgba(244, 162, 31, 0.2);
}
.tab__link.is-recruit_post.is-active{
    color: #fff;
    background: rgba(244, 162, 31, 1);
}

@media only screen and (max-width: 767px){
    .tab{

    }
    .tab__link{
        height: 40px;
        font-size: 12px;
    }
}

.topics {
    border-top: 1px solid #9E9E9E;
}
.topics__item{
	border-bottom: 1px solid #9E9E9E;
}
.topics__link{
	display: flex;
	align-items: center;
	padding: 18px 0;
}
.topics__link:hover{
	/* opacity: 1;
	background: #efefef; */
}

.topics__date{
	flex: none;
	width: 110px;
}
.topics__category{
	display: flex;
	justify-content: center;
	align-items: center;
	flex: none;
	width: 100px;
	height: 33px;
	margin: 0 20px 0 0;
	padding: 5px 10px;
	line-height: 1;
	color: #fff;
	text-align: center;
	background: #383734;
}
.topics__category.is-company_post{
	background: #2f65b0;
}
.topics__category.is-item_post{
	background: #51b235;
}
.topics__category.is-recruit_post{
	background: #f4a21f;
}
.topics__category.is-caution{
	background: #E6263D;
}
@media only screen and (max-width: 767px){

	.topics{

		background: rgba(255, 255, 255, 0.9);
	}

	.topics__link{
		align-items: center;
		flex-wrap: wrap;
		padding: 15px 0;
	}

	.topics__date{
		width: inherit;
		margin: 0 15px 0 0;
	}
	.topics__category{
		width: 75px;
		height: 22px;
		margin: 0 0 0 auto;
		padding: 5px 10px;
		font-size: 11px;
	}
	.topics__title{
		width: 100%;
		margin: 8px 0 0;
	}

}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 0;
}
.pagination a,.pagination span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border: 1px solid rgba(56, 55, 52, 0.5);
}
.pagination .current{
    background: #efefef;
}
.pagination .prev{
    color: transparent;
    border: none;
    background: url(../img/news/arrow_left.svg) no-repeat center;
    background-size: 9px 15px;
}
.pagination .next{
    color: transparent;
    border: none;
    background: url(../img/news/arrow_right.svg) no-repeat center;
    background-size: 9px 15px;
}
@media only screen and (max-width: 767px){

    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0 0;
    }
    .pagination a,.pagination span{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
    }

}