@charset "UTF-8";

/* 各商品カテゴリートップへのリンク */
#link-category-area {
	background-color: #f5d22e;
	padding: 50px 0;
	position: relative;
	z-index: 1;
}

#link-category-area::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/common/pattern-stripe.svg);
	background-size: 80px;
	opacity: 0.09;
	z-index: 2;
}

#link-category-area .contents {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 3;
}

#link-category-area .contents a {
	width: 31%;
	overflow: hidden;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	box-shadow: 0 0 10px rgba(153, 153, 153, 0.6);
	display: block;
}

#link-category-area .contents a figure img {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

#link-category-area .contents a:hover figure img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}



/* スマートフォン用 - ブレイクポイント768　*/
@media screen and (max-width: 768px) {

	/* 各商品カテゴリートップへのリンク */
	#link-category-area .contents {
		display: block;
	}

	#link-category-area .contents a {
		width: 100%;
		max-width: 450px;
		margin: 0 auto 30px;
	}

}