@charset "UTF-8";
/* CSS Document */
a .PDFLink {
	position: relative;
	padding-left: 30px;
	display: inline-block;
}
a .PDFLink::before {
	content: '';
	display: block;
	position: absolute;
	left: 5px;
	width: 25px;
	height: 25px;
	top: 50%;
	transform: translateY(-50%);
	background: url("../images/global/icn_pdf_25_g.png") no-repeat center center;
	background-size: 25px;
}
/*製品情報*/
.ProdList {
	width: 100%;
	display: block;
}
.ProdBlock {
	display: grid;
	display: -ms-grid;
	grid-template-columns: 210px auto;
	-ms-grid-columns: 210px 1fr;
	grid-template-rows: 2em auto;
	-ms-grid-rows: 2em auto;
	grid-template-areas: "TitleArea BreedTable"
		"PhotoArea BreedTable";
	width: 100%;
	background-color: #ffffff;
	border: solid 1px #9ac418;
	border-radius: 5px;
	box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
	padding: 5px;
	margin: 5px;
}
.ProdBlock h2 {
	grid-area: TitleArea;
	-ms-grid-column: 1;
	-ms-grid-row: 1;
	width: 100%;
	text-align: left;
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: 700;
	border: none;
	color: #9ac418;
}
.PhotoArea {
	grid-area: PhotoArea;
	-ms-grid-column: 1;
	-ms-grid-row: 2;
	height: auto;
	min-height: 200px;
	display: block;
	position: relative;
	overflow: hidden;
}
.PhotoArea img {
	width: 200px;
	height: auto;
}
.BreedTableArea {
	grid-area: BreedTable;
	-ms-grid-column: 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
}
.BreedTableArea table {
	margin: 0 auto 0;
	width: 100%;
}
.BreedTableArea th, .BreedTableArea td {
	font-weight: 500;
	padding: 0.25em 1em;
	font-size: 80%;
}
.BreedTableArea th {
	text-align: center;
	border-bottom: solid 2px #9ac418;
	color: #9ac418;
}
.BreedTableArea td {
	text-align: left;
	border-bottom: solid 1px #eeeeee;
}
.BreedTableArea tr:last-child td {
	border: none;
}
.BreedTableArea td a {
	display: block;
	text-align: center;
	background-color: #9ac418;
	color: #ffffff;
	line-height: 100%;
	text-decoration: none;
	padding: 0.25em 1em;
	border-radius: 12.5px;
}
.BreedTableArea td a:hover {
	background-color: #c2dc74;
}
/*タブレット*/
@media screen and (max-width: 999px) {
	.ProdBlock {
		grid-template-columns: 15vw auto;
		-ms-grid-columns: 15vw auto;
	}
	.PhotoArea {
		min-height: 15vw;
	}
	.PhotoArea img {
		width: 14vw;
		height: auto;
	}
	.BreedTableArea th, .BreedTableArea td {
		font-size: 1.3vw;
	}
}
/*スマホ*/
@media screen and (max-width: 767px) {
	.ProdBlock {
		width: 100%;
	}
	.PhotoArea {
		height: 15.5vw;
	}
	.BreedTableArea th, .BreedTableArea td {
		font-size: 80%;
	}
	/* 縦向きの場合のスタイル */
	@media screen and (max-aspect-ratio: 11/10) {
		.ProdBlock {
			grid-template-columns: auto;
			-ms-grid-columns: auto;
			grid-template-rows: auto auto auto;
			-ms-grid-rows: auto auto auto;
			grid-template-areas: "TitleArea""PhotoArea""BreedTable";
			margin: 0 0 5px;
		}
		.ProdBlock h2 {
			grid-area: TitleArea;
			-ms-grid-column: 1;
			-ms-grid-row: 1;
		}
		.PhotoArea {
			grid-area: PhotoArea;
			-ms-grid-column: 1;
			-ms-grid-row: 2;
			overflow: hidden;
			height: auto;
			min-height: auto;
		}
		.PhotoArea img {
			width: 100%;
			height: auto;
		}
		.BreedTableArea {
			grid-area: BreedTable;
			-ms-grid-column: 1;
			-ms-grid-row: 3;
		}
		.BreedTableArea th, .BreedTableArea td {
			padding: 5px;
		}
	}
}