/* =========================
施工実績 一覧
========================= */
.construction_page {
    background: #F7F9FC;
    padding: 100px 0 240px;
}

.construction_archive {
    padding: 80px 0 120px;
}

.construction_archive__ttl {
    margin-bottom: 45px;
    color: #111;
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: 0.12em;
    text-align: center;
    font-weight: 500;
}

.construction_cat_list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 125px;
}

.construction_cat_item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 70px;
    background: #fff;
    color: #003b7a!important;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 5px;
}

.construction_list a:visited {
    color: #294C79 !important;
}

.construction_cat_item.is-active,
.construction_cat_item:hover {
    background: #0050E6;
    color: #fff !important;
}

.construction_cat_item:hover {
    background: #D9DCE5;
	color:#294C79!important;
}



.construction_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 25px;
}

.construction_item__button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
	transition: 0.3s;
}

.construction_item__button:hover {
    opacity: .7;
}

.construction_item__img {
    aspect-ratio: 350 / 260;
    overflow: hidden;
    background: #ddd;
}

.construction_item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.construction_item__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #A8A8A8;
}

.construction_item__cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 30px;
    padding: 0px 10px;
    background: #0050E6;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
}

.construction_item__date {
    font-size: 14px;
}

.construction_item__ttl {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
}

.construction_pager {
    margin-top: 80px;
    text-align: center;
}

.construction_pager .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.construction_pager .page-numbers {
    font-size: 18px;
    text-decoration: none;
	width: 40px;
}

.construction_pager .page-numbers.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0050E6;
    color: #fff;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media screen and (max-width: 767px) {
	.construction_list {
		grid-template-columns: repeat(1, 1fr);
		gap: 25px 25px;
	}
	
	.construction_cat_list {
		gap: 15px;
		margin-bottom: 50px;
	    flex-direction: column;
	}
	
.construction_cat_item {
    min-width: 240px;
    height: 60px;
}
}
