@charset "utf-8";

.main{
    padding-top: calc(var(--header-height) + var(--breadclumb-height));
	background: #2b2b2b;
}
.main__inner{
	padding-bottom: 0;
}
/* .C-Contact-badge{
	top: -4.5rem;
} */

.Keyvisual-Breadclumb{
	height: var(--breadclumb-height);
    margin-top: var(--header-height);
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
}
.Breadclumb{
	margin-top: 0;
	border-bottom-color: #959595;
}
.Breadclumb-list__item{
	color: #fff;
}

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

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

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

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

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

	.main{
		padding-top: var(--breadclumb-height);
	}
	.main__inner{
		padding-bottom: 9rem;
	}
	.Breadclumb{
		border-bottom-color: #fff;
	}

}



/*-------------------------------
	制作実績
-------------------------------*/

.Works{
	padding-top: 5rem;
}
.Works-category{
	transition: var(--transition);
	width: 100%;
	margin-bottom: 9rem;
	padding-left: 4.5rem;
	padding-right: 4.5rem;
	background: #fff;
}
.Works-category__title{
	font-family: var(--en);
	height: 7rem;
	font-weight: 700;
	width: 100%;
	letter-spacing: 0;
	position: relative;
	cursor: pointer;
}
.Works-category__title::before,
.Works-category__title::after{
	background: var(--maincolor);
	transition: var(--transition);
	content: "";
	display: block;
	width: 2rem;
	height: 2px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.Works-category__title::after{
	transform: translateY(-50%) rotate(90deg);
}
.Works-category__title span{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Works-category:hover .Works-category__title::after{
	transform: translateY(-50%) rotate(0deg)
}

.Works-category__inner{
	border-top: 1px solid var(--maincolor);
	padding-top: 3rem;
	padding-bottom: 5rem;
	display: none;
}
.Works-category-block-wrap{
	transition: var(--transition);
	margin-bottom: 6rem;
	opacity: 0;
}
.Works-category-block{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.Works-category-block:not(:last-child){
	margin-bottom: 3.2rem;
}
.Works-category-block__title{
	width: 15rem;
	line-height: 1;
	font-weight: 500;
	letter-spacing: .05em;
}
.Works-category-block__body{
	width: calc(100% - 15rem);
}
.Works-category-block__list{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.Works-category-block__list-item{
	width: calc(100% / 5);
}
.Works-category-block__list-item:not(:nth-last-of-type(-n+5)){
	margin-bottom: 1.4rem;
}
.Works-category-block__list-item input[type="checkbox"]{
	display: none;
}
.Works-category-block__list-text{
	font-size: 1.4rem;
	height: 1.8rem;
	letter-spacing: 0;
	padding-left: 2.5rem;
	line-height: 1;
	display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
	cursor: pointer;
}
.Works-category-block__list-text::before{
	content: "";
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid #bbb;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}
.Works-category-block__list-item input[type="checkbox"]:checked + .Works-category-block__list-text::before{
	background: var(--subcolor);
}
.Works-category__submit{
	background: var(--maincolor);
	transition: var(--transition);
	width: 35.4rem;
	height: 7rem;
	margin-bottom: 2.8rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	opacity: 0;
}
.Works-category__submit input[type="submit"]{
	width: 100%;
	height: 100%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	opacity: 0;
	position: relative;
	z-index: 6000;
}
.Works-category__submit-text{
	font-family: var(--en);
	letter-spacing: .025em;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	z-index: 4000;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.Works-category__submit-text::before{
	content: "";
	display: block;
	width: 1.4rem;
	height: 1.8rem;
	margin-right: .6rem;
	background-image: image-set(url(../images/works/icon_search.png) 1x, url(../images/works/icon_search@2x.png) 2x);
    background-image: -webkit-image-set(url(../images/works/icon_search.png) 1x, url(../images/works/icon_search@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.Works-category__clear{
	border: 1px solid var(--maincolor);
	transition: var(--transition);
	width: 22.8rem;
	height: 5rem;
	font-size: 1.4rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	opacity: 0;
}
.Works-category__clear:hover{
	background: var(--maincolor);
	color: #fff;
}

.Works-category__submit:hover{
	background: var(--subcolor);
}

.Works-category__inner.on .Works-category-block-wrap,
.Works-category__inner.on .Works-category__clear,
.Works-category__inner.on .Works-category__submit{
	opacity: 1;
}

.Works__title{
	margin-bottom: 5.5rem;
	color: #fff;
}
.Works__inner{
	position: relative;
}

.Works-pagenavi{
	margin-top: 15rem;
	padding-top: 5rem;
	border-top: 2px solid #363636;
}
.Works-pagenavi .wp-pagenavi{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.Works-pagenavi .current,
.Works-pagenavi .page{
	font-family: var(--en);
	width: 5rem;
	height: 5rem;
	margin-left: .5rem;
	margin-right: .5rem;
	border-radius: 50%;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Works-pagenavi .current{
	background: #fff;
}
.Works-pagenavi .page{
	border: 1px solid #363636;
	color: #fff;
	opacity: 1 !important;
}
.Works-pagenavi .page:hover{
	color: var(--blackcolor);
	background: #fff;
}
.Works-pagenavi .previouspostslink{
	transform: scale(-1,1);
	margin-right: 1.5rem;
}
.Works-pagenavi .nextpostslink{
	margin-left: 1.5rem;
}
.Works-pagenavi__arrow::before{
	background: #fff;
}
.Works-pagenavi__arrow::after{
	border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

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

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

	.Works-category-block__list-item{
		width: calc(100% / 4);
	}
	.Works-category-block__list-item:not(:nth-last-of-type(-n+4)){
		margin-bottom: 1.4rem;
	}

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

	.Works-category-block__list-item{
		width: calc(100% / 3);
	}
	.Works-category-block__list-item:not(:nth-last-of-type(-n+3)){
		margin-bottom: 1.4rem;
	}

	.Works-pagenavi{
		margin-top: 10rem;
	}

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

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

	.Works{
		padding-top: 4rem;
		padding-bottom: 9.5rem;
	}
	.Works-category{
		padding-left: 3.8rem;
		padding-right: 3.8rem;
	}
	.Works-category__title{
		height: 10rem;
		font-size: 3.6rem;
	}
	.Works-category__title::before,
	.Works-category__title::after{
		width: 2.4rem;
		height: 1px;
	}

	.Works-category__inner{
		padding-top: 5rem;
	}
	.Works-category-block-wrap{
		margin-bottom: 6rem;
	}
	.Works-category-block{
		flex-direction: column;
	}
	.Works-category-block:not(:last-child){
		margin-bottom: 5rem;
	}
	.Works-category-block__title{
		width: 100%;
		margin-bottom: 2.5rem;
		letter-spacing: 0;
	}
	.Works-category-block__body{
		width: 100%;
	}
	.Works-category-block__list{
		justify-content: space-between;
	}
	.Works-category-block__list-item{
		width: calc((100% - 1.5rem) / 2);
	}
	.Works-category-block__list-item:not(:nth-last-of-type(-n+2)){
		margin-bottom: 2.5rem;
	}
	.Works-category-block__list-text{
		font-size: 2.8rem;
		height: auto;
		line-height: 1.25;
		letter-spacing: 0;
		padding-left: 5rem;
	}
	.Works-category-block__list-text::before{
		width: 3.4rem;
		height: 3.4rem;
		top: .2rem;
	}
	.Works-category__submit{
		width: 100%;
		height: 10rem;
		margin-bottom: 3.5rem;
	}
	.Works-category__submit-text{
		letter-spacing: 0;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.Works-category__submit-text::before{
		width: 2.8rem;
		height: 3.6rem;
		margin-right: 1.2rem;
	}
	.Works-category__clear{
		width: 75%;
		height: 8.5rem;
		font-size: 2.4rem;
	}

	.Works__title{
		margin-bottom: 3.8rem;
	}

	.Works-pagenavi{
		margin-top: 0;
		padding-top: 9.5rem;
		border-top: none;
	}
	.Works-pagenavi .current,
	.Works-pagenavi .page{
		width: 8rem;
		height: 8rem;
		margin-left: .8rem;
		margin-right: .8rem;
		font-size: 2rem;
	}
	.Works-pagenavi .previouspostslink{
		margin-right: .5rem;
	}
	.Works-pagenavi .nextpostslink{
		margin-left: .5rem;
	}
	.Works-pagenavi__arrow{
		width: 1.6rem;
	}

}