﻿/*-----------------------
		メイン画面 
 -----------------------*/
 #DivCenterContent{
	width: 100%;
	min-height: 86%;
}
/*　写真エリア　*/
.image-area {
	/*margin-left:3vw;*/
}
.img-box {
	display:grid;
	width: 90%;
	margin: auto;
	margin-top:2vw;
}
.img-box.three {
	grid-template-columns: repeat(3, 1fr);
}
.img-box.two {
	grid-template-columns: repeat(2, 1fr);
}
.img-bouquet{
	text-align:center;
}
.img-bouquet img {
	box-shadow: 0px 5px 15px 0px rgb(14 14 14 / 42%);
	border-radius: 3px;
}
/*---------------------------------------*/
/*               スマホ　     　　       */
/*---------------------------------------*/
@media screen and (min-width:360px) {
}
/*---------------------------------------*/

/*               PC　     　　       */

/*---------------------------------------*/
@media screen and (min-width: 960px) {

	.img-box {
		width: 75%;
	}
	.img-bouquet img {
		width: 16vw;
	}
}