@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap";

.content-inner * {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
}

.heroHeading.products .heroHeading_image {
	background: url("../images/products/main.jpg") no-repeat center center;
	background-size: cover;
}

@media print, screen and (width >= 800px) {
	.heroHeading.products .heroHeading_image {
		background: url("../images/products/main.jpg") no-repeat center center;
		background-size: cover;
	}
}

.point {
	margin-top: -0.5rem;
	overflow: hidden;

	@media print, screen and (width >= 800px) {
		margin-top: -2rem;
		overflow: unset;
	}
}

.point_media {
	display: grid;

	@media print, screen and (width >= 800px) {
		grid-template-columns: 61% 1fr;
	}
}

.point_contentTitle {
	padding: 0.3em 0 0.3em 1rem;
	font-size: 2.2rem;
	font-weight: bold;
	border-left: solid 0.6rem #004da0;

	@media print, screen and (width >= 800px) {
		padding: 0.2em 0 0.2em 1.6rem;
		font-size: 2.6rem;
	}
}

.point_contentText {
	padding: 2rem;
	margin-top: 4rem;
	font-size: 2rem;
	font-weight: bold;
	line-height: calc(32 / 20);
	color: #004da0;
	text-align: center;
	background: #ecf3f5;
	border-radius: 1rem;

	small {
		display: inline-block;
		font-size: calc(16em / 22);
	}

	@media print, screen and (width >= 800px) {
		padding: unset;
		font-size: 2.2rem;
		text-align: start;
		background: transparent;
	}
}

.point_image {
	position: relative;
	z-index: 1;
	width: 100vw;
	margin: 0 calc(50% - 50vw);

	@media print, screen and (width >= 800px) {
		width: unset;
		margin: unset;
	}

	> * {
		width: 100%;
		max-width: unset;
		translate: 2% -13%;

		@media print, screen and (width >= 800px) {
			width: 115%;
			translate: -5% -10%;
		}
	}
}

.point_contents {
	display: grid;
	gap: 3rem;
	margin-top: -1rem;

	@media print, screen and (width >= 800px) {
		gap: 6rem;
		margin-top: -10rem;
	}
}

.point_sectionHeading {
	display: grid;
	gap: 2rem;
	justify-items: center;
	margin-bottom: 4.5rem;
}

.point_contentNumber {
	width: 7rem;
}

.point_contentMain {
	display: flex;
	gap: 5rem;
	align-items: flex-end;
	justify-content: center;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: calc(46 / 32);
	text-align: center;

	@media print, screen and (width >= 800px) {
		align-items: center;
	}

	&::before,
	&::after {
		display: block;
		width: 1px;
		height: 6.5rem;
		content: "";
		background: #004da0;
	}

	&::before {
		rotate: -45deg;
	}

	&::after {
		rotate: 45deg;
	}
}

.point_box {
	position: relative;
	width: calc(100% - 2rem);
	padding: 0 1.5rem;
	margin: auto;
	background: #fff;
	border: 2px solid #004da0;
	border-radius: 1rem;

	@media print, screen and (width >= 800px) {
		width: unset;
		border-radius: 2rem;
	}
}

.point_boxHeading {
	position: absolute;
	inset: 0 auto auto 50%;
	padding-inline: 2rem;
	font-size: 2.2rem;
	font-weight: bold;
	color: #004da0;
	text-align: center;
	white-space: nowrap;
	background-color: #fff;
	border-right: solid 2px #004da0;
	border-left: solid 2px #004da0;
	translate: -50% -50%;

	@media print, screen and (width >= 800px) {
		padding-inline: 4rem;
		font-size: 2.4rem;
	}
}

ol.point_list {
	display: grid;
	gap: 2rem;
	margin: 3.5rem auto 2rem;
	counter-reset: counter;

	@media print, screen and (width >= 800px) {
		grid-template-columns: repeat(2, 1fr);
		max-width: 80rem;
		margin: 5.5rem auto 4rem;
	}

	.point_item {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 0.5rem;
		align-items: center;
		font-size: 1.8rem;
		font-weight: bold;

		@media print, screen and (width >= 800px) {
			gap: 1rem;
			font-size: 2.2rem;
		}

		&::before {
			display: grid;
			place-items: center;
			width: 3.7rem;
			height: auto;
			aspect-ratio: 1;
			font-size: 1.9rem;
			font-weight: bold;
			line-height: 0;
			color: #fff;
			content: "" counter(counter, decimal-leading-zero);
			counter-increment: counter 1;
			background: #ff6c00;
			border-radius: 50%;

			@media print, screen and (width >= 800px) {
				width: 4.2rem;
				font-size: 2.2rem;
			}
		}
	}
}

ul.point_list {
	display: grid;
	gap: 2.5rem;
	width: calc(100% - 2rem);
	margin: auto;

	@media print, screen and (width >= 800px) {
		width: unset;
		margin-top: -2rem;
	}

	.point_item {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 1rem;
		padding: 1.3rem 1.5rem;
		font-size: 2.6rem;
		font-weight: bold;
		line-height: calc(36 / 26);
		color: #004da0;
		background: #f7f7f7;
		border: 1px solid #004da0;
		border-left-width: 8px;

		@media print, screen and (width >= 800px) {
			padding: 1.5rem 2rem;
			font-size: 2.7rem;
		}

		&::before {
			display: inline-block;
			width: 3.5rem;
			height: auto;
			aspect-ratio: 1/1;
			vertical-align: middle;
			content: "";
			background: url("../images/products/square-pipe/check_icon.svg") no-repeat center / contain;
		}
	}
}

.data {
	padding-top: 4rem;
	padding-bottom: 7.5rem;

	@media print, screen and (width >= 800px) {
		padding-top: 7rem;
	}
}

.data_heading {
	position: relative;
	padding-bottom: 1.5rem;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: calc(35 / 24);
	border-bottom: 2px solid #c6c6c6;

	&::before {
		position: absolute;
		inset: auto auto -2px 0;
		width: 14rem;
		height: 2px;
		content: "";
		background: #004da0;
	}
}

.data_lead {
	margin-top: 2rem;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: calc(32 / 18);
}

.data_intro-buttons {
	margin-top: 4rem;
}

.data_bottom-buttons {
	margin-top: 6rem;
}

.data_buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem 1rem;
	align-items: center;
	justify-content: center;
}

.data_button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 31rem;
	min-height: 5.6rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	background: #004da0;
	border-radius: 0.6rem;

	img {
		position: absolute;
		inset: 50% 1.5rem auto auto;
		width: 2rem;
		translate: 0 -50%;
	}
}

.data_subheading {
	margin-top: 5rem;
	font-size: 2rem;
	font-weight: bold;

	@media print, screen and (width >= 800px) {
		margin-top: 7rem;
	}
}

.data_definitionList {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2.5rem;
	margin-top: 3rem;
}

.data_definitionItem {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.data_tableWrapper + .data_definitionList {
	margin-top: 5rem;
}

.data_term,
.data_description {
	font-size: 1.5rem;
}

.data_term {
	&.bg {
		display: block;
		width: 2.5rem;
		height: 2.5rem;
		background: #ffedba;
	}
}

.data_note {
	display: flex;
	gap: 0.5em;
	align-items: center;
	margin-top: 4rem;
	font-size: 1.5rem;
	font-weight: 600;

	@media print, screen and (width >= 800px) {
		display: none;
	}

	img {
		width: 1.3rem;
	}
}

.data_tableWrapper {
	margin-top: 2rem;
	position: relative;
	overflow: scroll;

	@media print, screen and (width >= 800px) {
		margin-top: 3rem;
	}
}

.data_table {
	width: 100%;
	min-width: 970px;
	font-size: 15px;
	text-align: center;
	border-collapse: collapse;
	border: 1px solid #707070;

	th,
	td {
		padding: 0.6em 0.5em;
		border: 1px solid #707070;
		vertical-align: middle;
	}

	thead {
		tr {
			th {
				font-size: 15px;
				font-weight: bold;
			}

			&:nth-of-type(1) {
				background: #004da0;

				th {
					color: #fff;
				}
			}

			&:nth-of-type(2),
			&:nth-of-type(3) {
				background: #d7e7f5;
			}
		}
	}

	tbody {
		tr {
			th {
				position: sticky;
				left: 0;
			}

			td {
				&.bg {
					background: #ffedba !important;
				}
			}

			&:nth-of-type(odd) {
				th {
					background: #fff;
				}

				td {
					background: #fff;
				}
			}

			&:nth-of-type(even) {
				th {
					background: #ededed;
				}

				td {
					background: #f8f8f8;
				}
			}
		}
	}
}

.point_tabButtons {
	position: relative;
	height: 56px;
	max-width: 970px;
	width: 100%;
	margin: 0 auto 32px;
	display: flex;
}

.point_tabButton {
	flex: 1;
	height: 56px;
	background: #cdd8e5;
	border: none;
	cursor: pointer;
	border-radius: 8px 0 0 0;
	position: relative;
}

.point_tabButton--heavy {
	border-radius: 0 8px 0 0;
}

.point_tabButtonText {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 18px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	color: #000;
}

.point_tabButton.is-active {
	background: #004da0;
}

.point_tabButton.is-active .point_tabButtonText {
	color: #fff;
}

.point_tabBorder {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	border-bottom: 2px solid #004da0;
}

.point_tabContents {
	margin-top: 40px;
}

.point_tabContent {
	display: none;
}

.point_tabContent.is-active {
	display: block;
}

.point_tabInner--heavy {
	position: relative;
	width: 100%;
}

.point_tabButtons button:focus-visible {
	outline: 2px solid #004da0;
	outline-offset: 2px;
}

.tolerance-table {
	margin-top: 32px;
}

.tolerance_table {
	margin-top: 0;
	caption-side: top;

	caption {
		margin-bottom: 1rem;
		font-size: 20px;
		font-weight: 700;
		text-align: left;
	}

	th[scope="rowgroup"],
	th[scope="row"] {
		text-align: left;
		width: 30%;
	}

	td:first-of-type {
		text-align: left;
	}

	th,
	td {
		border: 1px solid #707070;
		font-size: 15px;
		font-weight: 700;
		color: #000;
	}

	thead th {
		background: #f4e2c2 !important;
		color: #000 !important;
	}

	tbody {
		th {
			background: #f4e2c2 !important;
		}

		td {
			background: #fff4d8 !important;
		}
	}
}

.data_subheading--no-top-margin {
	margin-top: 0;
}

.data_metaText {
	display: block;
	text-align: right;
	font-size: 14px;
}

.data_noteText {
	font-size: 15px;
	margin-top: 1em;
}
.data_notedl {
	display: flex;
	font-size: 15px;
	margin-top: 1em;
}

.data_noteText--spaced {
	margin-bottom: 40px;
}

tbody tr.highlight th.size,
tbody tr.highlight td {
	background: #f7f2e5 !important;
}

.spec_table_wrap {
	width: 100%;
}

.spec_table {
	width: 100%;
	min-width: 970px;
	font-size: 15px;
	font-weight: 700;
}

.spec_table th,
.spec_table td {
	border: 1px solid #707070;
	background: #fff4d8;
	text-align: center;
	vertical-align: middle;
	height: 60px;
	padding: 0 10px;
	word-wrap: break-word;
	line-height: 20px;
}

.spec_table thead th {
	background: #f4e2c2;
}

.spec_table .bg_head {
	background: #f4e2c2;
}

.spec_table_2 {
	width: 100%;
	min-width: 970px;
	font-size: 15px;
	font-weight: 700;
}

.spec_table_2 th,
.spec_table_2 td {
	border: 1px solid #707070;
	background: #fff4d8;
	text-align: center;
	vertical-align: middle;
	height: 60px;
	padding: 0 10px;
	word-wrap: break-word;
}

.spec_table_2 thead th {
	background: #f4e2c2;
}

.spec_table_2 .bg_head {
	background: #f4e2c2;
}
