@charset "utf-8";

/* ##### 固定ナビの指定 ##### */
.drawer-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: auto;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.drawer-menu {
	width: 100%;
	height: 7.0rem;
	height: 7.0rem;
	box-sizing: border-box;
	padding: 0;
	background-color: #fff;
	border-bottom: 5px solid #d8d8d8;
	border-top: 1px solid #d8d8d8;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.drawer-menu > li {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
/* ##### 固定ナビの指定ここまで ##### */

.shopping-cont > ul {
	overflow: hidden;
	margin: 15.0rem 0 3.0rem 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.shopping-cont > ul > li {
	width: %;
	width: -webkit-calc(100% / 3);
	width: calc(100% / 2);
	padding:2%;
}

.shopping-cont > ul > li:nth-of-type(2) {
	margin: 0 1.0rem;
}

.shopping-cont > ul > li > a > figure {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.shopping-cont > ul > li > a > figure figcaption {
	position: absolute;
	bottom: 30px;
	right: 40px;
	z-index: 2;
	width: 100%;
	height: 60px;
	background: rgba(141, 141, 141, 0.5);
	-webkit-transition: .3s;
	transition: .3s;
}
.shopping-cont > ul > li > a > figure:hover figcaption {
	right: 100%;
}

.shopping-cont > ul > li > a > figure figcaption h5 {
	text-align: center;
	color: #fff;
	height: 100%;
	line-height: 6.0rem;
}

.shopping-cont > ul > li > a > figure > img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.shopping-cont > ul > li > a > figure > img:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}