@charset "UTF-8";
/*=======================================================
共通
=======================================================*/
#works .ly_cont_inner {
	margin-bottom: 0!important;
}
/***施工事例検索***/
.bl_searchUnit {
	background: var(--lgray);
	padding: 41px;
	margin-bottom: 115px;
}
.bl_searchUnit .bl_search {
	display: flex;
}
.bl_searchUnit .bl_search + .bl_search {
	margin-top: 36px;
}
.bl_searchUnit .el_lv3Header {
	font-size: 16px;
	line-height: 2;
	padding-right: 20px;
	width: 165px;
	flex-shrink: 0;	
}
.bl_search_cat,
.bl_search_tag {
	display: flex; 
	flex-wrap: wrap;
	gap: 15px;
    padding-left: 20px;
    border-left: 1px solid #000;
}
.bl_search_cat li,
.bl_search_tag li {
	width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #000;
}
.bl_search li label,
.bl_search li span  {
	width: 100%;
	height: 100%;
	display:flex; 
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.bl_search li input[type="checkbox"] {
	appearance: none;
}
.bl_search li:has(input[type="checkbox"]:checked) {
	background: var(--yellow);
}
.bl_search_submit {
	margin: 26px auto auto;
	width: 340px;
	height: 80px;
	position: relative;
}
.bl_search_submit button {
	width: 100%;
	border: none;
	height: 100%;
	text-align: center; 
	background: var(--yellow);
	font-size: 18px;
}
.bl_search_submit::before {
	content: "";
	display: block;
	background: url(../images/common/icon_search.svg) center / cover no-repeat;
	width: 14px;
	height: 14px;
	position: absolute;
	left: 25px;
	top: 34px;
}
.bl_search_submit ::after {
	content: "";
    width: 9px;
    height: 9px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    position: absolute;
    right: 36px;
    top: 36px;
    transform: rotate(135deg);
}
/*投稿部分*/
.bl_postUnit {
	display: flex; 
	flex-wrap: wrap;
	align-items: flex-start;
}
.bl_post {
	max-width: 340px;
	width: 30.55%;
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
	position: relative;
	margin-right: 4%; 
	margin-bottom: 40px;
}
.bl_post:nth-of-type(3n) {
	margin-right: 0;
}
.bl_post a {
	color: #000;
}
.bl_post_cat.cat00 {
	display: none;
}
.bl_post_figureWrapper {
	height: 200px;
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
}
.bl_post_figureWrapper img {
	height: 200px;
	width: 100%;
	object-fit: cover;	
	transition: transform .6s ease;
}
.bl_post_body {
	padding: 0 22px 20px;
}
.bl_post_header {
	margin-bottom: 20px;
}
.bl_post_ttl {
	color: var(--blue);
	font-size: 25px; 
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.2;
	margin-bottom: 15px;
}
.bl_post_header,
.bl_post_footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.bl_post_header .all {
	display: none;
}
.bl_post_footer li {
	border: 1px solid #000;
	font-size: 12px;
	height: 20px;
	padding: 0 17px;
	display: flex; 
	align-items: center; 
	justify-content: center;
}
.bl_moreBtn img {
	margin-right: 0;
	transition: .3s;
	width: 51px;
	height: 6px;
}
.bl_post a:hover .bl_post_figureWrapper img {
	transform: scale(1.1);
}
.bl_post a:hover .bl_moreBtn img {
	margin-right: -5px;
	transition: .3s;
}
.bl_post .el_new {
	position: absolute; 
	top: -30px; 
	left: -24px;
	width: 60px; 
	height: 60px; 
	display: flex; 
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--yellow);
	border-radius: 50%;
	z-index: 2;
}
.bl_post .el_new::before {
	content: "";
	background: var(--yellow);
	width: 50px;
	height: 50px;
	display: block; 
	position: absolute; 
	top: 4px;
	left: 4px;
	border-radius: 50%;
	z-index: -1;
}
@media screen and (max-width : 767px) {
	.bl_searchUnit {
		padding: 25px 15px;
		margin-bottom: 75px;
	}
	.bl_searchUnit .bl_search {
    	display: block;
	}
	.bl_search_submit {
    	margin: 24px auto auto;
    	max-width: 305px;
		width: 100%;
	}
	.bl_searchUnit .el_lv3Header {
    	padding-right: 0;
    	width: 100%;
		border-bottom: 1px solid #000;
		margin-bottom: 17px; 
		padding-bottom: 16px;
		line-height: 1;
	}
	.bl_search_cat, .bl_search_tag {
    	gap: 13px;
    	padding-left: 0;
    	border-left: none;
	}
	.bl_search_cat li, .bl_search_tag li {
    	width: initial;
    	height: 36px;
    	padding: 10px 20px;
	}
	.bl_search_submit ::after {
		right: 21px;
	}
	.bl_post .el_new {
    	left: -12px;
    	width: 50px;
    	height: 50px;
		font-size: 12px;
	}
	.bl_post .el_new::before {
    	width: 40px;
    	height: 40px;
	}
}
@media screen and (max-width : 752px) {
	.bl_postUnit {
		justify-content: space-between;
	}
	.bl_post {
        width: 46.3%;
		margin-right: 0;
    }
}
@media screen and (max-width : 600px) {
	.bl_postUnit {
		justify-content: center;
	}
	.bl_post {
        width: 100%;
		max-width: 100%;
    }
}
/*=======================================================
詳細ページ
=======================================================*/
.single .ly_cont_inner {
	max-width: 1170px;
	padding: 0 80px;
}
.single .bl_post {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    margin-right: 0;
    margin-bottom: 0;
}
.single .el_lv1Header {
	max-width: 1170px;
	padding: 0 80px;
	margin: auto auto 50px;
}
.single .bl_post_detail div {
	display: flex; 
	align-items: center;
	margin-bottom: 23px;
}
.single .bl_post_detail div:last-of-type {
	display: block;
}
.single .bl_post_detail div:last-of-type dd {
	margin-top: 19px;
	font-size: 16px;
	line-height: 1.5;
}
.single .bl_post_detail div + div {
	border-top: 1px solid #CDDADF;
	padding-top: 24px;
}
.single .bl_post_detail dt {
	color: var(--blue);
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 18px;
	margin-right: 25px;
	width: 90px;
}
.single .bl_post_detail dd > ul {
	display: flex;
	gap: 0;
	margin-bottom: 0;
}
.single .bl_post_detail dd > ul li + li {
	margin-left: 15px;
}
.single .works_sliderWrapper {
	position: relative;
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
}
.single .works_slider {	
	margin: auto auto 30px;
	max-width: 1170px;
	display: flex; 
	align-items: center;
	justify-content: space-between;
}
.single .works_slider.slide-one {
	justify-content: center;
    padding: 0 85px;
}
.single .works_slider.slide-one img {
    height: min(44.741vw, 570px);
	width: 100%;
    object-fit: cover;
}
.single .works_sliderWrapper:has(.works_slider.slide-one) .bl_slider_dots {
	display: none;
}
.single .works_slide img {
	height: min(44.741vw,570px);
	width: auto;
}
.single .works_slide figcaption {
	text-align: center;
	margin-top: 20px;
}
.single .slick-dots {
	display: flex;
	flex-wrap: wrap;
	cursor: pointer;
	margin: 0 85px;
	gap: min(25px,1.8vw);
}
.single .slick-dots li {
	max-width: 230px;
	width: 22.9%;
	height: 130px;
}
.single .slick-dots img {
	width: 100%;
	height: 100%;
	transition: .3s;
	object-fit: cover;
}
.single .slick-dots img:hover {
	opacity: .5;
	transition: .3s;
}
.single .slide-arrow {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 1px solid #000;
	cursor: pointer;
	transition: .3s;
	display: block;
	flex-shrink: 0;
	position: relative;
	margin-right:15px;
}
.single .next-arrow {
	margin-right: 0;
	margin-left: 15px;
}
.single .slide-arrow::after {
	content: "";
    width: 10px;
    height: 10px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    position: absolute;
    right: 27px;
    top: 30px;
    transform: rotate(225deg);
}
.single .slide-arrow:hover {
	border: 1px solid var(--blue);
	background: var(--blue);
	transition: .3s;
}
.single .slide-arrow:hover::after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}
.single .next-arrow::after {
    transform: rotate(45deg);
    right: 31px;
}
.single .bl_slide_txt {
	max-width: 1170px;
	padding: 0 80px;
	margin-bottom: 30px;
}
.single .bl_post_detail {
	margin-top: 100px;
}
.bl_pageNavi {
	margin-bottom: 150px;
}
/*他の事例をみる*/
#other {
	background: var(--lgray);
}
#other .ly_cont_inner {
	padding-top: 100px;
	margin-bottom: 0;
	padding-bottom: 100px;
}
#other .el_lv2Header {
	margin-bottom: 60px;
}
#other .other_slider {
	margin: auto;
	max-width: 1160px;
	display: flex; 
	align-items: center;
	justify-content: space-between;
}
#other .other_slider .bl_post {
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
	margin-right: 40px;
}
#other .bl_post_footer {
	margin-bottom: 10px;
}
#other .slick-list {
	padding-right: 10%!important;
}
/*一つの場合*/
#other .other_slider.slide-one .slick-track {
	width: 100%!important;
}
#other .other_slider.slide-one .bl_post {
	width: 335px!important;
}
/***検索結果***/
.search-results .bl_pageNavi {
	margin-bottom: 50px;
	margin-top: 100px;
}
.search-results .wp-pagenavi {
	margin-top: 60px;
}
@media screen and (max-width : 910px) {
	#other .other_slider .bl_post {
		margin-right: 18px;
	}
}
@media screen and (max-width : 767px) {
	.single .ly_cont_inner:has(.bl_post_detail) {
		padding: 0 20px;
	}
	.single .el_lv1Header {
    	padding: 0 20px;
    	margin: 65px auto 34px;
    	font-size: 32px;
	}
	.single .slide-arrow {
    	width: 30px;
    	height: 30px;
    	margin-left: 5px;
		margin-right: 5px;
	}
	.single .next-arrow {
    	margin-right: 5px !important;
		margin-left: 5px !important;
	}
	.single .slide-arrow::after {
    	right: 10px;
        top: 12px;
        width: 5px;
        height: 5px;
	}
	.single .next-arrow::after {
    	right: 11px;
	}
	.single .bl_post_detail {
    	margin-top: 20px;
	}
	.single .bl_post_detail div {
		display: block;
		margin-bottom: 33px;
	}
	.single .bl_post_detail div + div {
		padding-top: 33px;
	}
	.single .bl_post_detail div dt {
		margin-bottom: 16px; 
		margin-right: 0;
	}
	.single .bl_slide_txt {
    	padding: 0 45px;
	}
	.single .slick-dots {
    	margin: 0 45px;
		gap: 2.4vw;
	}
	.single .slick-dots li {
    	width: 31%;
		height: 13.2vw;
	}
	.single .works_slider.slide-one {
    	padding: 0 45px;
	}
	#other .ly_cont_inner {
		padding: 60px 0;
		margin-bottom: 0!important;
	}
	#other .el_lv2Header {
		padding: 0 20px;
		margin-bottom: 30px;
	}
	#other .bl_post_figureWrapper {
		height: 143px;
		margin-bottom: 13px;
	}
	#other .bl_post_figureWrapper img {
		height: 100%;
	}
	#other .bl_post_body {
    	padding: 0 16px 15px;
	}
	#other .bl_post_header {
		font-size: 12px;
		margin-bottom: 12px;
	}
	#other .bl_post_footer {
		margin-bottom: 8px;
	}
	#other .bl_post_ttl {
		font-size: 18px;
	}
	.search-results .bl_pageNavi {
    	margin-top: 60px;
	}
	.single .bl_pageNavi {
		margin-bottom: 80px;
	}
	.single .bl_pageNavi .all {
    	font-size: 25px;
		padding: 0 5px;
	}
	.single .bl_pageNavi .previouspostslink,
	.single .bl_pageNavi .prev a {
        padding-right: 20px;
        margin-right: 10px;
    }
	.single .bl_pageNavi .nextpostslink,
	.single .bl_pageNavi .next a {
        padding-left: 20px;
        margin-left: 10px;
    }
	.single .bl_pageNavi .previouspostslink::after,
	.single .bl_pageNavi .nextpostslink::before,
	.single .bl_pageNavi .prev a::after,
	.single .bl_pageNavi .next a::before {
        top: 28px;
	}
}
@media screen and (max-width : 360px) {
	.single .bl_pageNavi .all,
	.single .bl_pageNavi .previouspostslink,
	.single .bl_pageNavi .nextpostslink,
	.single .bl_pageNavi .prev a,
	.single .bl_pageNavi .next a {
		font-size: 20px;
	}
	.single .bl_pageNavi .previouspostslink::after,
	.single .bl_pageNavi .nextpostslink::before,
	.single .bl_pageNavi .prev a::after,
	.single .bl_pageNavi .next a::before {
        top: 22px;
    }
}
.error-message {
	margin-bottom: 50px;
}