@charset 'UTF-8';
.works_detail .imgbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 20px;
}
.works_detail .imgbig {
	width: 450px;
}
.works_detail .imglist {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 452px;
}
.works_detail .imglist .square {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 144px;
	margin: 0 10px 10px 0;
}
.works_detail .imglist .square:nth-child(3n) {
	margin-right: 0;
}

.works_detail .button{
	max-width: 173px;
	width: 100%;
	margin-top: 40px;
}
.works_detail .button a{
	display: block;
	background: #F5D621;
	border-radius: 5px;
	text-align: center;
	position: relative;
	font-size: 1.4rem;
	padding: 4px 0 5px 45px;
}
.works_detail .button a::after{
	content: '';
	position: absolute;
	width: 16px;
	height: 15px;
	top: 50%;
	left: 30px;
	transform: translate(0, -50%);
	transition: .3s;
	background: url('../image/icon_back.png') center no-repeat;
}
.works_detail .button a:hover{
	text-decoration: none;
	opacity: 0.8;
}
.works_detail .button a:hover::after{
	transform: translate(-5px, -50%);
}