@charset "utf-8";
/* CSS Document */

/* ------------------------------------------------------------------------ */

/*  施工事例一覧

/* ------------------------------------------------------------------------ */

body.example section {
    margin: 48px auto 0;
}


/* mainVisual
--------------------------------------------------------------------------- */

body.example .mainVisual{
	background: url("/wp/wp-content/themes/bigman/example/img/img_mainvisual_example.jpg") no-repeat center / cover;
}



/* exampleNav_area
--------------------------------------------------------------------------- */

.exampleNav_area{
	background-color: #f5f5f5;
	margin-top: 48px;
	padding: 8px 10px 16px;
}

.exampleNav_area > ul{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	max-width: 680px;
	margin: 0 auto;
}

.exampleNav_area > ul > li.private,
.exampleNav_area > ul > li.corporation{
	margin-left: 40px;
}

.exampleNav_area > ul > li a{
	border-radius: 8px;
	font-size: 1.6rem;
	font-weight: 700;
	padding: 3px 16px;
	transition: all .3s;
}

.exampleNav_area > ul > li p{
	font-size: 1.8rem;
	font-weight: 700;
}

.exampleNav_area > ul > li.private p{
	color: #9dcdad;
}

.exampleNav_area > ul > li.corporation p{
	color: #9bbed3;
}

.exampleNav_area > ul > li > ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}

.exampleNav_area > ul > li a.btn_all{
	background-color: rgba(112, 112, 112,1.0);
	color: #fff;
	padding: 5px 30px;
	border-radius: 5px;
}

.exampleNav_area > ul > li a.btn_all:hover{
	background-color: rgba(112, 112, 112,0.8);
}

.exampleNav_area > ul > li a.btn_private{
	background-color: #fff;
	color: #469460;
	border: 2px solid #469460;
	margin: 0 8px;
}

.exampleNav_area > ul > li a.btn_private:hover{
	background-color: #469460;
	color: #fff;
}

.exampleNav_area > ul > li a.btn_corporation{
	background-color: #fff;
	color: #3689b3;
	border: 2px solid #3689b3;
	margin: 0 8px;
}

.exampleNav_area > ul > li a.btn_corporation:hover{
	background-color: #3689b3;
	color: #fff;
}

@media screen and (max-width: 940px){
	.exampleNav_area > ul > li.private,
	.exampleNav_area > ul > li.corporation{
		margin-left: 24px;
	}
	
	.exampleNav_area > ul > li a{
		padding: 3px 12px;
	}
	
	.exampleNav_area > ul > li a.btn_all{
		padding: 5px 16px;
	}
	
	.exampleNav_area > ul > li a.btn_corporation,
	.exampleNav_area > ul > li a.btn_private{
		margin: 0 4px;
	}
	
}

@media screen and (max-width: 424px){
	.exampleNav_area{
		margin-top: 24px;
	}
	
	.exampleNav_area > ul{
		justify-content: space-between;
	}
	
	.exampleNav_area > ul > li.private,
	.exampleNav_area > ul > li.corporation{
		margin-left: 0;
	}
	
	.exampleNav_area > ul > li p{
		font-size: 1.4rem;
	}
	
	.exampleNav_area > ul > li a{
		font-size: 1.4rem;
	}
	
	.exampleNav_area > ul > li a.btn_all{
		padding: 5px 10px;
	}
	
	.exampleNav_area > ul > li a.btn_corporation,
	.exampleNav_area > ul > li a.btn_private{
		padding: 3px 8px;	
	}
}

/* example_list
--------------------------------------------------------------------------- */

.example_list{
	margin-top: 50px;
}

.example_list > ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 48px;
	gap: 24px;
}

.example_list > ul > li{
	position: relative;
	width: calc(100% / 3 - 16px);
}

.example_list > ul > li:nth-of-type(-n+3){
	margin-top: 0;
}

.example_list > ul > li:nth-of-type(3n){
	margin-right: 0;
}

.example_list > ul > li  > a{
	display: block;
	height: 100%;
	background-color: #f5f5f5;
	border-radius: 16px;
	padding: 20px 20px 56px;
	transition: all .3s;
}

.example_list > ul > li  > a:hover{
	color: #3689b3;
}

.example_list > ul > li  > a  .example_img img{
	width: 100%;
	object-fit: cover;
    transition: .3s;
}

.example_list > ul > li  > a:hover .example_img img{
	transform: scale(1.1);
	transition: .3s;
}

.example_list > ul > li .example_img{
	position: relative;
	overflow: hidden;
}

.example_list > ul > li .example_img .category{
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	border-radius: 8px;
	padding: 0 8px;
	z-index: 10;
}

.example_list > ul > li .example_img .category.tag_private{
	background-color: #469460;
}

.example_list > ul > li .example_img .category.tag_corporation{
	background-color: #3689b3;
}

.example_list > ul > li .ttl{
	font-size: 2.0rem;
	text-align: left;
	line-height: calc(34 / 20);
	margin-top: 15px;
}

.example_list > ul > li .data{
	position: absolute;
	bottom: 8px;
    right: 24px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #9bbed3;
	text-align: right;
}

@media screen and (max-width: 940px){
	.example_list > ul{
		column-gap: 16px;
	}
	
	.example_list > ul > li{
		 width: calc(100% / 2 - 8px);
	}
	
	.example_list > ul > li > a{
		padding: 16px 16px 48px;
	}
	
	.example_list > ul > li .ttl{
		font-size: 1.8rem;
	}
	
	.example_list > ul > li .data{
		font-size: 1.6rem;
	}
	
	.example_list > ul > li .example_img .category{
		font-size: 1.4rem;
		right: 10px;
	}
	
}

@media screen and (max-width: 424px){
	
	.example_list{
		margin-top: 32px;
	}
	
	.example_list > ul{
		flex-direction: column;
	}
	
	.example_list > ul > li{
		width: 100%;
		margin: 0 0 24px;
	}
	
	.example_list > ul > li:nth-of-type(3n){
		margin: 0 0 24px;
	}
	
}

/* ------------------------------------------------------------------------ */

/*  施工事例詳細

/* ------------------------------------------------------------------------ */

body.example.detail section {
    margin: 48px auto 0;
}

.inner{
	max-width: 940px;
	width: 100%;
	margin: 0 auto;
}


/* mainVisual
--------------------------------------------------------------------------- */

body.example.detail .mainVisual{
	background: url("/wp/wp-content/themes/bigman/example/img/img_mainvisual_example-detail.jpg") no-repeat center / cover;
}

/* スライダー
--------------------------------------------------------------------------- */

.slider .slick-prev,
.slider .slick-next{
	border: 1px solid #3689b3;
	background-color: #fff;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	z-index: 10;
}

.slider .slick-prev{
	left:10px;
}

.slider .slick-next{
	right:10px;
}

.slider .slick-prev:hover,
.slider .slick-next:hover{
	background: rgba(255,255,255,0.8);
	color: inherit;
}

.slider .slick-prev:before,
.slider .slick-next:before{
	content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: solid 2px #3689b3;
    border-bottom: solid 2px #3689b3;
    transform: translateY(-50%) rotate(-45deg) translate(0,0);
    transform-origin: center center;
    transition: all .3s;
}

.slider .slick-prev:before{
	left: 20px;
	transform: translateY(-50%) rotate(135deg) translate(0,0);
}

.slider .slick-next:before{
    right: 20px;
}

.thumbnail {
	margin-top: 20px;
}

.thumbnail  .slick-track{
	display: flex;
	justify-content: space-between;
}

.thumbnail  .slick-track:before,
.thumbnail  .slick-track:after{
	content: none;
}

.thumbnail .slick-slide{
	aspect-ratio: 11 / 7;
	width: 23.5%!important;
	opacity: 0.5;
	cursor: pointer;
}

.thumbnail .slick-slide.slick-current{
	opacity: 1.0;
	border: 2px solid #D93638;
}

.thumbnail .slick-slide img{
	object-fit: cover;
	height: 100%;
}

@media screen and (max-width: 767px){
	.slider .slick-prev, .slider .slick-next{
		width: 32px;
		height: 32px;
	}
	
	.slider .slick-next{
		right: 16px;
	}
	
	.slider .slick-prev{
		left: 16px;
	}
	
	.slider .slick-next:before {
    	right: 12px;
	}
	
	.slider .slick-prev:before{
		left: 12px;
	}
	
}

/* 詳細
--------------------------------------------------------------------------- */

.ttl_detail{
	font-size: 3.2rem;
	text-align: left;
	color: #3689b3;
	letter-spacing: -0.06em;
	border-bottom: 3px solid #f5f5f5;
	margin-top: 24px;
	line-height: 1.4;
}

.detail_info{
	display: flex;
	margin-top: 16px;
}

.detail_info dl{
	display: flex;
}

.detail_info dl:not(:last-of-type){
	margin-right: 32px;
}

.detail_info dl dt{
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 32px;
	color: #fff;
	background-color: #a0a0a0;
	border-radius: 8px;
	margin-right: 16px;
	padding: 0 6px;
	transform: rotate(0.03deg);
}

.detail_info dl dd{
	font-size: 1.7rem;
	font-weight: 700;
	color: #a0a0a0;
	transform: rotate(0.03deg);
}

.detail_flex{
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	padding-bottom: 12px;
}

.detail_flex .textBox{
	width: 50%;
	order: 1;
}

.detail_flex:nth-of-type(2n) .textBox{
	order: 2;
}

.detail_flex .textBox p{
	text-align: left;
}

.detail_flex .imgBox{
	width: 45%;
	order: 2;
	margin-top: 10px;
}

.detail_flex:nth-of-type(2n) .imgBox{
	order: 1;
}

.detail_flex .imgBox figure{
	position: relative;
}

.detail_flex .imgBox figure.before:before,
.detail_flex .imgBox figure.after:before{
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    right: 24px;
    bottom: 20px;
    border-radius: 8px;
    padding: 0 16px;
    line-height: 32px;
    transform: rotate(0.03deg);
}

.detail_flex .imgBox figure.before:before{
	content: "Before";
    background-color: #3689b3;
}

.detail_flex .imgBox figure.after:before{
	content: "After";
	background-color: #469460;
}

.detail_flex .imgBox figure img{
	width: 100%;
}

@media screen and (max-width: 940px){
	.detail_info dl:not(:last-of-type){
		margin-right: 16px;
	}
	
	.detail_info dl dt{
		font-size: 1.6rem;
		margin-right: 8px;
		line-height: 28px;
	}
	
	.detail_info dl dd{
		line-height: 28px;
	}
}

@media screen and (max-width: 767px){
	.ttl_detail{
		font-size: 2.6rem;
	}
	
	.detail_info{
		flex-wrap: wrap;
	}
	
	.detail_info dl{
		margin-bottom: 16px;
	}
	
	.detail_info dl dt{
		font-size: 1.4rem;
	}
	
	.detail_flex .imgBox figure:before{
		font-size: 16px;
		right: 8px;
		bottom: 8px;
		padding: 0 8px;
	}
	
	.detail_flex{
		flex-direction: column;
	}
	
	.detail_flex .textBox,
	.detail_flex:nth-of-type(2n) .textBox{
		width: 100%;
		order: 2;
		margin-top: 16px;
	}
	
	.detail_flex .imgBox,
	.detail_flex:nth-of-type(2n) .imgBox{
		width: 100%;
		order: 1;
	}
}

@media screen and (max-width: 424px){
	.ttl_detail {
    	font-size: 2.2rem;
		margin-top: 16px;
	}
	
}

/* その他の施工事例
--------------------------------------------------------------------------- */



