@charset 'UTF-8';


.gallery-detail .box{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.gallery-detail .imgbox {
	width: 500px;
}
.gallery-detail .imgbig {
	width: 100%;
	margin: 0 auto;
}
.gallery-detail .imglist {
	width: 100%;
	margin:10px auto 0;
	text-align: center;
	font-size: 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
}
.gallery-detail .imglist .square {
	width: 116px;
	margin:10px 12px 0 0;
}
.gallery-detail .imglist .square:nth-child(4n){
	margin-right: 0;
}
.gallery-detail .text_box{
	width: 450px;
}

.gallery-detail .title{
	font-weight: bold;
	padding-bottom: 25px;
	line-height: 1.2;
	font-size: 2rem;
	border-bottom: 2px solid #000;
	margin-bottom: 20px;
}
.gallery-detail .price{
	text-align: right;
	margin-bottom: 35px;
}

.gallery-detail .button{
	margin-top: 50px;
}
.gallery-detail .button a{
	width: 250px;
	display: block;
	background: #000;
	text-decoration: none;
	color: #fff;
	padding: 2px  30px 0;
	line-height: 50px;
	text-align: left;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.15em;
    -webkit-transition: 1.0s ;
    -o-transition: 1.0s ;
    transition: 1.0s ;
}

.gallery-detail .button a:hover{
    opacity: 0.6;
}