@charset "UTF-8";


/* +++#portfolio+++ */
.portfolio-list{
	max-width: 136.8rem;
	width: 100%;
}

.portfolio{
	position: relative;
	overflow: hidden;	
	width: calc(33.333% - 2.4rem);
	margin-bottom: 7.2rem;
}
.portfolio:not(:nth-of-type(3n)){
	margin-right: 3.6rem;
}






.portfolio .pic{
	position: relative;
}
.portfolio .pic:before{
	content: "";
	display: block;
	width: 120%;
	height: 100%;
	position: absolute;
	background: #3dd2b7;
	transform: skew(-15deg, 0) scale(0,1);
	left: -10%;
	top: 0;
	transition: .3s all ease;
	opacity: 0;
}
.portfolio:hover .pic:before{
	transform: skew(-15deg, 0) scale(1,1);
	opacity: .85;
}






.view-more{
	display: flex !important;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.view-more:before{
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	margin-right: .5em;
	background: url(../images/zoom-icon01-white.svg) no-repeat;
	background-position: center center;
	background-size: auto 100%;
}

.view-more,
.portfolio date,
.portfolio ul{
	opacity: 0;
	transition: .3s opacity ease;
	transition-delay: 0s;
}

.portfolio:hover .view-more,
.portfolio:hover date,
.portfolio:hover ul{
	opacity: 1;
	transition-delay: .3s;
}







.portfolio h3 a{
	font-size: 1.7rem;
	line-height: 1.25;
	color: #434343 !important;
	margin-top: 1.8rem;
	display: block;
	width: fit-content;
}
.portfolio date{
	position: absolute;
	left: 1.8rem;
	top: 1.8rem;
	font-size: 1.4rem;
}
.portfolio ul{
	position: absolute;
	right: 1.8rem;
	bottom: 1.8rem;
}
.portfolio li{
	width: 4rem;
	height: 4rem;
	margin-left: 1.2rem;
}
.portfolio li a{
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s transform ease;
}
.portfolio li a:hover{
	transform: scale(1.1);
}
.portfolio li a img{
	width: 33%;
	height: auto;
}




@media screen and (max-width: 768px){
	.portfolio-list{
		max-width: 100%;
	}

	.portfolio{	
		width: 100%;
		margin-bottom: 4.8rem;
	}
	.portfolio:not(:nth-of-type(3n)){
		margin-right: 0;
	}



/* +++#portfolio+++ */

	.portfolio:before{
		display: none;
	}
	.portfolio h3,
	.portfolio date,
	.portfolio ul{
		opacity: 1;
	}

	.portfolio h3{
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		margin: auto;
		font-size: 1.6rem;
		color: #434343 !important;
		opacity: 1;
	}
	.portfolio h3 a{
		height: auto;
		color: #434343 !important;
		display: block;
		margin-top: .8rem;
	}
	.portfolio date{
		position: relative;
		left: auto;
		top: auto;
		font-size: 1.2rem;
		margin: 1.8rem 0 0;
		color: #434343 !important;
		display: block;
	}
	.portfolio .pic{
		height: calc(100vw / 1.25 / 3 * 2);
		overflow: hidden;
		position: relative;
	}

	.portfolio .pic>a{
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 2;
	}
	.portfolio ul{
		position: absolute;
		right: 1.2rem;
		top: calc((100vw / 1.25 / 3 * 2) - 3.6rem - 1.2rem);
		bottom: auto;
		z-index: 9;
	}
	.portfolio li{
		width: 3.6rem;
		height: 3.6rem;
		margin-left: 1.2rem;
	}
}