@charset "utf-8";
/* メインビジュアル */
@media screen and (max-width: 767px) {
	.page_mv--inner {
		padding: 20px 0;
		flex-direction: column;
	}
	.page_mv--inner figure {
		height: 150px;
		width: auto;
		img {
			height: 60%;
			width: auto;
			margin-top: 10px;
		}
	}
}

/* 製品画像一覧 */
.products_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	@media screen and (max-width: 767px) {
		gap: 20px;
	}
}
.products_list--item {
	max-width: calc(25% - 30px);
	width: 100%;
	@media screen and (max-width: 767px) {
		max-width: calc(50% - 10px);
	}
}
.products_list--txt {
	padding: 0.5em 0;
}

/* 製品箇条書き */
.products_bullet--list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-20);
}
.products_bullet--item {
	max-width: calc(100% / 3 - 40px / 3);
	width: 100%;
	display: flex;
	align-items: flex-start;
	@media screen and (max-width: 767px) {
		max-width: calc(50% - 7.5px);
	}
}
.products_bullet--item::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background: var(--sub-color);
	border-radius: 50%;
	margin-top: calc(0.5em + 6px);
	margin-right: 10px;
	line-height: 1.5;
}

/* テーブル */
.products_table {
	width: 675px;
	@media screen and (max-width: 767px) {
		width: 100%;
		margin-inline: auto;
	}
}
.products_table tr {
	border-top: 1px solid #ccc;
	&:last-child {
		border-bottom: 1px solid #ccc;
	}
}
.products_table th {
	padding: 10px 15px;
	font-weight: bold;
	text-align: left;
	@media print, screen and (min-width: 768px) {
		white-space: nowrap;
	}
	@media screen and (max-width: 767px) {
		width: 100%;
		padding: 1em 1em 0.5em;
		display: block;
	}
}
.products_table td {
	width: 100%;
	padding: 1em 0;
	@media screen and (max-width: 767px) {
		padding: 0 1em 1em;
		display: block;
	}
}

.products_flex {
	display: flex;
	gap: 20px;
	@media screen and (max-width: 767px) {
		flex-direction: column-reverse;
		display: flex;
	}
}

/* ページ下部 関連ページ */
.products_aside {
	width: 100%;
	background: #707070;
	padding: 50px 0;
	@media screen and (max-width: 767px) {
		padding: 35px 0;
	}
}

/* 取り扱いメーカーはこちらボタン */
.more_btn {
	width: 80%;
	margin-bottom: var(--space-65);
}