@charset "UTF-8";

/* 技術資料 */
/* -------------------------------------------------- */
.documentList {
	display: grid;
	gap: 30px;
}

.documentCard {
	padding: 40px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	align-items: center;
	gap: 35px;
	border: 1px solid #DADFDC;
	border-radius: 2px;
}

.documentCard h2 {
	margin-bottom: 12px;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
}

.documentCard p {
	font-size: 1.5rem;
	line-height: 1.6;
}

.documentCard_copy > p + p {
	margin-top: 24px;
}

.documentCard_copy > small {
	margin-top: 18px;
	display: block;
	color: #6B6B6B;
	font-size: 1.2rem;
	text-align: right;
}

.documentCard_img {
	height: 100%;
	width: 420px;
	padding-right: 35px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.documentCard:nth-of-type(4) .documentCard_img {
	justify-content: center;
}

.documentCard_img img {
	width: auto;
	height: auto;
	max-width: 410px;
	max-height: 293px;
	object-fit: contain;
}

.documentCard_img::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 30px;
	height: 30px;
	background: url(../../img/common/icon_zoom.svg) 0 0 no-repeat;
}

.documentCard_table {
	display: block;
}

.documentCard table {
	width: 100%;
	border-collapse: collapse;
}

.documentCard th,
.documentCard td {
	height: 58px;
	padding: 10px 14px;
	border: 1px solid #DADFDC;
	font-size: 1.5rem;
	text-align: center;
	vertical-align: middle;
}

.documentCard th {
	background: #F5F6F5;
	font-weight: 500;
}

/* .documentCard td:first-child { width: 249px; }
.documentCard th:nth-child(2) { width: 460px; }
.documentCard th:nth-child(3),
.documentCard th:nth-child(4) { width: 205px; } */

.documentCard td small {
	margin-top: 3px;
	display: block;
	font-size: 1rem;
}

.documentSource {
	margin-top: 10px;
	color: #6B6B6B;
	font-size: 1.2rem !important;
	text-align: right;
}

.warrantyLayout {
	display: grid;
	grid-template-columns: 520px 1fr;
	align-items: center;
	gap: 30px;
}

.documentCard_table h2 {
	margin-bottom: 20px;
}

.warrantyTable th {
	background: #FFF;
}

/* -------------------------------------------------- */
/* TAB/SP */
/* -------------------------------------------------- */

@media screen and (max-width: 1024px) {

	.documentCard {
		grid-template-columns: minmax(0, 1fr) 30%;
	}
	.documentCard_img {
		width: 100%;
	}

	.documentCard_img img {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.documentCard {
		height: auto;
		padding: 25px;
		grid-template-columns: 1fr;
	}

	.documentCard_img {
		height: 230px;
		grid-row: 1;
	}

	.documentCard_table {
		width: 100%;
		overflow: hidden;
	}

	.documentTable_scroll,
	.warrantyLayout {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
	}

	.documentCard table {
		min-width: 650px;
	}

	.warrantyLayout {
		display: block;
	}

	.warrantyLayout p { margin-top: 20px; }

	.documentCard--warranty table { min-width: 520px; }

	.documentCard h2 {
		font-size: clamp(2rem,3vw,2.4rem);
	}
}
