@charset "utf-8";

/*-------------------------------
	施工実績
-------------------------------*/

.Works{
	padding-bottom: 0;
}
.Works-slider:not(:last-child){
	margin-bottom: 4.8rem;
}
.Works-slider__header{
	margin-bottom: 2.8rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Works-slider__arrow-wrap{
	width: 9.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Works-slider__arrow{
	background: var(--blackcolor);
	transition: var(--transition);
	width: 3.8rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.Works-slider__arrow:hover{
	background: var(--maincolor);
}
.Works-slider__arrow::before{
	content: "";
	display: block;
	width: 1rem;
	height: 2.2rem;
	background-image: url(../images/works/icon_slider-arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.Works-slider__arrow.-prev::before{
	transform: scale(-1,1);
}

.Works-slider__inner{
	padding-left: calc((100% - var(--maxwidth)) / 2);
	padding-right: calc((100% - var(--maxwidth)) / 2);
}
.Works-slider__image-wrap{
	padding-left: var(--padding-leftright);
	padding-right: var(--padding-leftright);
}
.Works-slider__image{
	width: 41.6rem;
	height: 27.8rem;
	border-radius: .5rem;
	overflow: hidden;
}
.Works-slider__image:not(:last-child){
	margin-right: .6rem;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Works{
		padding-top: 0;
		padding-bottom: 0;
	}
	.Works-slider__header{
		margin-bottom: 4.8rem;
	}
	.Works-slider__header .C-Mask-title{
		flex-direction: row;
		align-items: center;
	}
	.Works-slider__header .C-Mask-title__en{
		padding-left: 2.8rem;
		font-size: 5rem;
	}
	.Works-slider__arrow-wrap{
		width: 14.2rem;
	}
	.Works-slider__arrow-wrapwrap{
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.Works-slider__arrow{
		width: 5.7rem;
		height: 7.6rem;
	}
	.Works-slider__arrow::before{
		width: 1.4rem;
		height: 3.4rem;
	}

	.Works-slider__inner{
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-bottom: 3rem;
	}
	.Works-slider__image-wrap{
		padding-left: 0;
		padding-right: 0;
	}
	.Works-slider__image{
		width: 60rem;
		height: 40rem;
		border-radius: 1rem;
	}
	.Works-slider__image:not(:last-child){
		margin-right: 1rem;
	}
	.Works-slider__image img{
		width: 100%;
	}

}



/*-------------------------------
	施工の流れ
-------------------------------*/

.Flow__text{
	margin-bottom: 7.8rem;
}
.Flow-block-wrap{
	padding-left: 4.7rem;
	padding-right: 4.7rem;
}
.Flow-block{
	width: 100%;
	padding: 2.4rem 3rem 1.6rem 2.5rem;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.Flow-block:not(:last-child){
	margin-bottom: 5rem;
}
.Flow-block:not(:last-child)::after{
	content: "";
	display: block;
	width: 2.1rem;
	height: 2.4rem;
	background-image: url(../images/common/icon_arrow-black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 50%;
	bottom: -2.5rem;
	transform: translate(-50%,50%) rotate(90deg);
}
.Flow-block::before{
	content: "";
	display: block;
	width: 14.8rem;
	height: 14.2rem;
	background-repeat: no-repeat;
	background-position: center center;
}
.Flow-block__number{
	background: var(--maincolor);
	font-family: var(--en);
	width: 6rem;
	height: 6rem;
	font-size: 3rem;
	font-weight: 600;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%,-50%);
}
.Flow-block__body{
	width: calc(100% - 14.8rem);
	padding-left: 2rem;
}
.Flow-block__title{
	color: var(--maincolor);
	font-size: 2rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
	line-height: 1;
}
.Flow-block__text{
	line-height: calc(3 / 1.7);
}

/*----- 01 */
.Flow-block:nth-of-type(1)::before{
	background-size: 13.7rem;
	background-image: url(../images/works/icon_flow1.svg);
}

/*----- 02 */
.Flow-block:nth-of-type(2)::before{
	background-size: 9rem;
	background-image: url(../images/works/icon_flow2.svg);
}

/*----- 03 */
.Flow-block:nth-of-type(3)::before{
	background-size: 14.8rem;
	background-image: url(../images/works/icon_flow3.svg);
}

/*----- 04 */
.Flow-block:nth-of-type(4)::before{
	background-size: 11.1rem;
	background-image: url(../images/works/icon_flow4.svg);
}

/*----- 05 */
.Flow-block:nth-of-type(5)::before{
	background-size: 12.6rem;
	background-image: url(../images/works/icon_flow5.svg);
}

/*----- 06 */
.Flow-block:nth-of-type(6)::before{
	background-size: 12.2rem;
	background-image: url(../images/works/icon_flow6.svg);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Flow-block-wrap{
		padding-left: 1.5rem;
		padding-right: 0;
	}
	.Flow-block{
		padding: 3.5rem 3.5rem 3.5rem 2.5rem;
	}
	.Flow-block__body{
		padding-left: 2.5rem;
	}
	.Flow-block__number{
		transform: translate(-25%, -25%);
	}

}
@media screen and (max-width:768px){

	.Flow__text{
		margin-bottom: 4.5rem;
	}
	.Flow-block-wrap{
		padding-left: 0;
		padding-right: 0;
	}
	.Flow-block{
		padding: 6.8rem 3.5rem 3.5rem 3.5rem;
		flex-direction: column;
	}
	.Flow-block:not(:last-child){
		margin-bottom: 9rem;
	}
	.Flow-block:not(:last-child)::after{
		width: 3.4rem;
		height: 3rem;
		bottom: -4.5rem;
	}
	.Flow-block::before{
		margin-bottom: 5.5rem;
	}
	.Flow-block__number{
		width: 10rem;
		height: 10rem;
		font-size: 5rem;
		left: 3.5rem;
		top: 3.5rem;
		transform: translate(0,0);
	}
	.Flow-block__body{
		width: 100%;
		padding-left: 0;
	}
	.Flow-block__title{
		font-size: 4rem;
		margin-bottom: 3rem;
		line-height: calc(5.2 / 4);
		text-align: center;
	}
	.Flow-block__text{
		line-height: calc(6.4 / 3);
	}

	/*----- 01 */
	.Flow-block:nth-of-type(1)::before{
		width: 20rem;
		height: 17.5rem;
		background-size: 20rem;
	}

	/*----- 02 */
	.Flow-block:nth-of-type(2)::before{
		width: 12.9rem;
		height: 17.2rem;
		background-size: 12.9rem;
	}

	/*----- 03 */
	.Flow-block:nth-of-type(3)::before{
		width: 24rem;
		height: 17.8rem;
		background-size: 24rem;
	}

	/*----- 04 */
	.Flow-block:nth-of-type(4)::before{
		width: 15.7rem;
		height: 17rem;
		background-size: 15.7rem;
	}

	/*----- 05 */
	.Flow-block:nth-of-type(5)::before{
		width: 17.6rem;
		height: 19.8rem;
		background-size: 17.6rem;
	}

	/*----- 06 */
	.Flow-block:nth-of-type(6)::before{
		width: 17.2rem;
		height: 18.9rem;
		background-size: 17.2rem;
	}

}