@charset "UTF-8";
/* CSS Document */
/*製品情報*/
.ProdList {
	width: 100%;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}
.ProdBlock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 232px;
	background-color: #ffffff;
	border: solid 1px #a67c52;
	border-radius: 5px;
	box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
	padding: 5px;
	margin: 5px;
}
.PhotoArea {
	width: 100%;
	height: 120px;
}
.ProdName {
	padding-top: 0.5em;
	font-weight: 700;
	color: #a67c52;
}
.ProdDescription {
	padding-top: 0.5em;
	font-size: 80%;
	line-height: 120%;
}
.BtnArea {
	margin-top: auto;
	padding-top: 0.5em;
}
.BtnArea a {
	display: inline-block;
	background-color: #a67c52;
	color: #ffffff;
	font-size: 80%;
	line-height: 25px;
	text-decoration: none;
	padding: 0 1em;
	height: 25px;
	border-radius: 12.5px;
	margin: 0 0.5em;
}
.BtnArea a:hover {
	background-color: #cab097;
}
.BtnArea a.PDF {
	background-image: url("../images/global/icn_pdf_20_wh.png");
	background-repeat: no-repeat;
	background-position: left 5px center;
	background-size: 20px;
	padding-left: 30px;
}
/*スマホ*/
@media screen and (max-width: 767px) {
	.ProdBlock {
		width: 30vw;
	}
	.PhotoArea {
		height: 15.5vw;
	}
	/* 縦向きの場合のスタイル */
	@media screen and (max-aspect-ratio: 11/10) {
		.ProdBlock {
			width: 100%;
		}
		.PhotoArea {
			height: 50vw;
		}
		.ProdDescription {
			font-size: 3vw;
		}
		.BtnArea a {
			display: block;
			font-size: 100%;
			line-height: 25px;
			text-decoration: none;
			padding: 0 1em;
			height: 25px;
			border-radius: 12.5px;
			margin: 0.5em 0;
		}
		.BtnArea a.PDF {
			background-image: url("../images/global/icn_pdf_20_wh.png");
			background-repeat: no-repeat;
			background-position: left 15px center;
			background-size: 20px;
			padding-left: 0;
		}
	}
}