@charset "utf-8";
/* CSS Document */

section:nth-of-type(n+2) {
	margin-top: 10rem;
	@media (max-width: 767.98px) {
		margin-top: 5rem;
	}
}

.p-products_download {
	max-width: 1200px;
	width: 90%;
	margin: 0px auto;
	padding-block: 10rem 0;
	@media (max-width: 767.98px) {
		padding-block: 5rem 0;
	}
}

.p-products_download > dl {
	display: grid;
	grid-template-columns: minmax(200px, 3fr) 2fr;
	gap: 4vw;
	@media (max-width: 767.98px) {
		grid-template-columns: repeat(1,1fr);
	}
}

.p-products_download > dl > dt {
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	line-height: 160%;
	text-align: justify;
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
	& sub {
		font-size: clamp(1.4rem,1.8vw,1.8rem);
		top: -4px;
		position: relative;
		line-height: 1;
		@media (max-width: 767.98px) {
			font-size: 1.4rem;
		}
	}
}

.download_box {
	background: #F8F8F8;
	display: grid;
	place-items: center;
	gap: 2rem;
	padding: 3rem 2rem;
	@media (max-width: 767.98px) {
		padding: 10px 20px;
	}
}

.download_ttl {
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	font-weight: 600;
	color: #0075C2;
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
}

.download_btn {
	background: #FFF;
	border-radius: 100px;
	border: 1px solid #CCCCCC;
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	max-width: 367px;
	width: 100%;
	@media (max-width: 767.98px) {
		padding: 10px 20px;
		font-size: 1.4rem;
	}
}

.download_btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 20px;
	position: relative;
	@media (max-width: 767.98px) {
		padding: 10px 20px;
	}
}

.download_btn a::after {
	content: '';
	background: url("../img/products/icon_download.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 23px;
	height: 18px;
	position: relative;
	margin-left: 20px;
}

.products_feature {
	display: flex;
	gap: 2rem;
	margin-top: 8rem;
	@media (max-width: 767.98px) {
		flex-direction: column;
		gap: 0;
	}
}

.products_feature__inner {
	width: 100%;
	@media (max-width: 767.98px) {
		margin-top: 0;
	}
}

.products_feature__inner > dl {
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	display: grid;
	row-gap: 2rem;
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
}

.products_feature__inner > dl:nth-of-type(n+2) {
	margin-top: 4rem;
}

.products_feature__inner > dl > dt {
	color: #0075C2;
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	font-weight: bold;
	padding: 7px 0px 7px 25px;
	border-left: 8px solid #0075C2;
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
}

.products_feature__inner > dl > dd {
	padding-left: 30px;
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
}

.p-products-img {
	max-width: 1200px;
	width: 100%;
	margin: 0px auto;
	@media (max-width: 767.98px) {
		padding-top: 5rem;
	}
}

section.p-graph {
	background: #f8f8f8;
	padding-block: 4vw;
	@media (max-width: 767.98px) {
		padding-block: 30px;
	}
}

.c-product_ttl {
	color: #000;
	font-size: clamp(2rem,3vw,3rem);
	font-weight: 500;
	position: relative;
    padding-bottom: clamp(10px,2vw,20px);
	border-bottom: 3px solid #CCCCCC;
	@media (max-width: 767.98px) {
		padding-bottom: 10px;
		margin-bottom: 20px;
		font-size: 2rem;
	}
}

.c-product_ttl::after {
	content: '';
	background: #0075C2;
	display: inline-block;
	max-width: 250px;
	width: 30%;
	height: 3px;
	left: 0px;
	bottom: -3px;
	position: absolute;
}

.graph_wrap {
	width: 100%;
}

.graph_table {
	width: 90%;
	margin: 4rem auto 1rem;
	@media (max-width: 767.98px) {
		width: 600px;
	}
}

.graph_table tr {
	display: grid;
	grid-template-columns: repeat(4,1fr);
}

.graph_table tr:first-of-type {
	background: #0075C2;
	align-items: center;
}

.graph_table tr:nth-of-type(odd) td {
	background: #fff;
}

.graph_table tr:nth-of-type(even) td {
	background: #fff;
}

.graph_table tr > * {
	empty-cells: show;
	width: 100%;
	position: relative;
	padding: 14px 0px;
}

.graph_table th {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	line-height: 110%;
}

.graph_table th > p > small {
	display: grid;
	place-items: center;
	width: 100%;
}

.exponent {
	font-size: 0.8rem;
	color: #666666;
	top: -2px;
	position: relative;
}

.graph_table th,
.graph_table td {
	height: 100%;
	border-left: 1px solid #E9E9E9;
}

.graph_table th:first-child,
.graph_table td:first-child {
	border-left: none;
	border-left: 1px solid #E9E9E9;
}

.graph_table td {
	font-size: clamp(1.2rem,1.6vw,1.6rem);
	@media (max-width: 767.98px) {
		font-size: 1.2rem;
	}
}

.graph_table tr:nth-child(odd) td {
	background: #f7fcff;
}

.graph_table td:first-child {
	font-weight: 600;
	color: #0075C2;
}

.graph_table tr > * > p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
}

.graph_table tr > * > p:nth-of-type(n+2) {
	margin-top: 10px;
}

.graph_table td:first-child > p {
	max-width: 180px;
	width: 100%;
	justify-content: flex-start;
	margin: 0px auto;
	@media (max-width: 767.98px) {
		padding-left: 10px;
	}
}

.graph_table td:first-child > p::before {
	content: '';
	background: #0075C2;
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-right: 10px;
}

.graph_table tr:first-of-type th > p,
.graph_table td:nth-of-type(n+3) > p,
.graph_table td:last-child > p {
	justify-content: center;
}

.graph_table td > p > small {
	font-size: clamp(1.2rem,1.4vw,1.4rem);
	font-weight: normal;
	color: #000;
	@media (max-width: 767.98px) {
		font-size: 1.2rem;
	}
}

.graph_memo {
	font-size: clamp(1.2rem,1.6vw,1.6rem);
	width: 90%;
	margin: 1vw auto 0px auto;
	@media (max-width: 767.98px) {
		font-size: 1.2rem;
	}
}

.c-packaging_img {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
}

.moderate-heat-img {
	max-width: 360px;
	width: 100%;
	margin: 0px auto;
	@media (max-width: 767.98px) {
		max-width: 100%;
	}
}


