@charset "UTF-8";
.shop__spPageTitle{
	padding: 10px 0 !important;
}
.shop__container{
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}
.shop__heading-lv2{
	color: #646464;
	padding: 0 30px;
	display: inline-block;
	position: relative;
}
.shop__heading-lv2::before {
	content: "";
	width: 1px;
	height: 1rem;
	border-right: solid 1px #646464;
	position: absolute;
	top: 15%;
	left: 0;
}
.shop__heading-lv2::after {
	content: "";
	width: 1px;
	height: 1rem;
	border-right: solid 1px #646464;
	position: absolute;
	top: 15%;
	right: 0;
}
.shop__fv img{
	width: auto;
	height: 500px;
	object-fit: cover;
	aspect-ratio: 8 / 5;
}
.shop__fv-body{
	margin-top: 50px;
	text-align: center;
}
/* works */
.shop__work{
	margin-top: 100px;
}
.shop__work-list{
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.shop__work-link{
	text-decoration: none !important;
	color: inherit !important;
	display: inline-block;
}
.shop__work-ttl{
	text-align: center;
	font-weight: 700;
	padding: 10px 0;
	font-size: 14px;
}
/* concept */
.shop__concept{
	margin-top: 100px;
	margin-bottom: 100px;
}
.shop__concept-lead{
	margin-top: 50px;
}
.shop__concept-list{
	margin-top: 50px;
	display: grid;
	gap: 20px;
}
.shop__concept-item{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	text-align: left;
}
.shop__concept-img img{
	max-width: none;
	height: auto;
	object-fit: cover;
}
.shop__concept-ttl{
	font-weight: 700;
	margin-bottom: 20px;
}
/* FOR tablet
***************************************************************************/
@media screen and (max-width:1024px) {

}


/* FOR smartphone landscape
***************************************************************************/
@media screen and (max-width:700px) {
	.shop__fv img{
		height: 300px;
	}
	/* works */
	.shop__work{
		margin-top: 50px;
	}
	.shop__work-list{
		margin-top: 30px;
		grid-template-columns: repeat(2, 1fr);
	}
	/* concept */
	.shop__concept{
		margin-top: 50px;
	}
	.shop__concept-lead,
	.shop__concept-list{
		margin-top: 30px;
	}
	.shop__concept-item{
		flex-direction: column;
	}
}


/* FOR smartphone portrait
***************************************************************************/
@media screen and (max-width:400px) {

}


