body {
	font-family:'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	width: 100X;
	margin: 0px;
	padding: 0em;
	background-image: url("./images/bg.png");
}


/*
	ヘッダ
*/
.header {
	width: 100%;
	margin: 0px;
	padding: 0px;
	vertical-align: bottom;
}


/*
	フッダ
*/
.footer {
	width: 100%;
	height: 100px;
	margin: 0px;
	padding: 0px;
	vertical-align: bottom;
	background-image: url("./images/footer.jpg");
}


/*
	コンテンツ
*/
.contents {
	margin: 0px;
	padding: 1em;
	min-height: 1080px;
}


/*
	ショップ
*/
.shop {
	margin: 0 1em 3em 1em;
}


/*
	ショップメニュー
*/
.shop_menu {
}
.shop_menu ul {
	margin: 0px;
	padding: 0px;
}
.shop_menu ul li {
	border: 1px solid black;
	display: inline-block;
	padding: 0.2em 1em;
	margin-right: 0.5em;
	margin-bottom: 0.5em;
	text-align: center;
	font-weight: bold;
	width: 10em;
	border: 2px solid #DDD;
	color: #111;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
.shop_menu.active {
	background: -moz-linear-gradient(top,#FFF 0%,#E6E6E6);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFA000));
}


/*
	ショップアイテム
*/
.shop_item {
	float: left;
    text-align: center;
    margin: 1em;
	max-width: 300px;
	height: 360px;
}
.shop_item .img_box {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content:center;
	justify-content: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: 300px;
	max-width: 300px;
	margin: auto;
	border: 1px solid #e0e0e0;
}
.shop_item .img_box img {
	max-width: 300px;
	text-align: center;
}


