@charset "UTF-8";

/* ===============================
	共通スタイル
=============================== */

:root {
	--table-caption-color: #727272;
}

/* リセットスタイル */
table {
	caption-side: top
}

caption {
	color: #000;
	padding: 0;
}

/* セクション */
.sub-section {
	padding-top: 6rem;
}

/* ページタイトル */
.page-title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-top: 3.2rem;
}

/* ページ内リンク */
.skip-navi__container {
	margin-top: 2.4rem;
}

.skip-navi__list {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.skip-navi__list a {
	display: flex;
	column-gap: .5em;
	align-items: center;
	inline-size: fit-content;
	font-size: 1.4rem;
	font-weight: 400;
}

.skip-navi__list svg {
	inline-size: 1em;
	height: auto;
}

/* 見出し */
.sub-section__title {
	font-size: 2rem;
	font-weight: 700;
}

.sub-section__title + em {
	display: block;
	margin-block-start: 2em;
}

/* 基本仕様 */
.base-spec__table {
	inline-size: 100%;
	font-size: 1.4rem;
	border-collapse: separate;
	border-spacing: 0;
	border-bottom: 1px solid var(--light-gray);
	margin-top: 2rem;
}

.base-spec__table th,
.base-spec__table td {
	display: block;
	inline-size: 100%;
	padding: 1em;
	border-top: 1px solid var(--light-gray);
	border-left: 1px solid var(--light-gray);
	border-right: 1px solid var(--light-gray);
}

.base-spec__table th {
	background-color: var(--light-gray);
	font-weight: 500;
}

.base-spec__table th.rowspan {
	background-color: var(--white-gray);
}

/* 項目別仕様表 */
.base-spec__table-caption {
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	background-color: var(--table-caption-color);
	text-align: center;
	padding: 1em;
}

.tr-flex td {
	inline-size: calc(100% / 3);
}

.tr-flex td:not(:last-of-type) {
	border-right: none;
}

/* 寸法図 */

.size__image {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: left;
}

.size__image figure {
	max-inline-size: 260px;
	height: auto;
}

.size__image figure figcaption {
	font-size: 1.2rem;
	text-align: center;
	margin-top: 1em;
}

#size .caption__list li img {
	display: inline-block;
	margin-inline-end: .5em;
	width: 31px;
	height: auto;
}

/* 各種データダウンロード */
.data-download__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2%;
	max-inline-size: 900px;
	margin-top: var(--margin-small);
}

.data-download__list>li {
	inline-size: 100%;
}

.data-download__list a {
	display: grid;
	grid-template-columns: 25px auto;
	justify-content: center;
	place-items: center;
	column-gap: 0.6em;
	min-block-size: 65px;
	padding: 0.2em 1em;
	background: #fff;
	border: 1px solid #000;
	font-size: 1.8rem;
	font-weight: 400;
}

/* ==========================================
	ホバー、マウスポインタがサポートされている環境
=========================================== */
@media (hover:hover) and (pointer: fine) {
	.skip-navi__list a:hover {
		text-decoration: none;
		background-color: #000;
		color: #fff;
	}

	.data-download__list a:hover {
		text-decoration: none;
	}
}

/* ====================================
	スマートフォン専用スタイル（～768px）
===================================== */
@media screen and (width <768px) {

	.base-spec__table th.rowspan,
	.base-spec__table th.rowspan+td {
		border-top: none;
	}

	.base-spec__table th.rowspan {
		padding-bottom: 0.5em;
	}

	.base-spec__table th.rowspan+td {
		padding-top: 0.5em;
	}

	.base-spec__table tr:has(th[rowspan]) td {
		border-bottom: 1px solid var(--light-gray);
	}

	.base-spec__table th.rowspan-end {
		border-top: 1px solid var(--light-gray);
	}

	.tr-flex {
		display: flex;
		flex-wrap: wrap;
	}
}

/* ====================================
	TAB、PC、印刷専用スタイル（768px～）
===================================== */
@media print,
screen and (width >=768px) {

	/* セクション */
	.sub-section {
		padding-top: 10rem;
	}

	/* ページタイトル */
	.page-title {
		font-size: 4rem;
		margin-top: 5rem;
	}

	.sub-section__title {
		font-size: 2.8rem;
	}

	.section-sub-title {
		font-size: 1.8rem;
	}

	/* ページ内リンク */
	.skip-navi__container {
		margin-top: 3rem;
	}

	.skip-navi__list a {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		column-gap: 1em;
		border: 1px solid #000;
		border-radius: 5px;
		padding: .5em 1em;
	}

	/* 別売オプション */
	.link-option-wrap {
		margin-top: 0;
	}

	.link-option {
		font-size: 1.8rem;
	}

	.link-option::before {
		inline-size: 35px;
		block-size: 35px;
	}

	/* 基本仕様 */
	.base-spec__table {
		font-size: 1.6rem;
		border-left: 1px solid var(--light-gray);
		margin-top: 3rem;
	}

	.base-spec__table th,
	.base-spec__table td {
		display: table-cell;
		border: none;
		border-top: 1px solid var(--light-gray);
		padding: 1em .8em;
	}

	.base-spec__table th {
		inline-size: 25%;
		background-color: var(--white-gray);
	}

	.base-spec__table td {
		border-left: 1px solid var(--light-gray);
		border-right: 1px solid var(--light-gray);
	}

	th.rowspan {
		inline-size: 20%;
	}

	/* 項目別仕様表 */
	.base-spec__table-caption {
		font-size: 1.6rem;
	}

	.tr-flex td {
		inline-size: 20%;
	}

	/* 寸法図 */
	.size-img-container {
		justify-content: space-between;
		row-gap: 10rem;
	}

	.size-item {
		inline-size: 100%;
		max-inline-size: 860px;
		margin-inline: auto;
	}

	.size-sub-item {
		inline-size: 47%;
	}

	/* 各種データダウンロード */
	.data-download__list>li {
		inline-size: fit-content;
		min-inline-size: 280px;
	}
}