.black-bg-color {
	color: #fff;
	background: #000;
}
.breadcrumbs_back { margin: 0; }

/* メインビジュアル */
.main-container {
	background: url(/wp/wp-content/themes/appletree/images/page/bl-h2s/main_bg.jpg) no-repeat center / cover;
	aspect-ratio: 20 / 8;
	display: flex;
	align-items: center;
}
.main-wrap {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto;
}
.main-wrap .ttl {
	font-size: clamp(42px, 3vw, 56px);
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
}
.main-wrap .lead {
	margin: 0 0 40px;
	font-size: clamp(16px, 1.2vw, 22px);
	color: #ddd;
	line-height: 1.2;
}
.main-btn {
	display: flex;
	flex-wrap: wrap;
	width: 50%;
}
.main-btn a {
	display: inline-block;
	width: 220px;
	margin: 0 10px 10px 0;
	padding: 8px 0;
	font-size: clamp(14px, 1vw, 18px);
	text-align: center;
	color: #fff;
	border: 1px solid #00AE42;
	border-radius: 5px;
	background: #00AE42;
	transition: background-color 0.3s, color 0.3s;
}
.main-btn a:hover {
	text-decoration: none;
	color: #00AE42;
	background: #fff;
	opacity: 1;
}
.main-img {
	width: 40%;
}
@media screen and (max-width: 767px) {
	.main-container {
		background: url(/wp/wp-content/themes/appletree/images/page/bl-h2s/main_bg_sp.jpg) no-repeat center / cover;
		aspect-ratio: 3 / 4;
	}
	.main-wrap {
		height: 100%;
		padding: 30px 0 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		text-align: center;
	}
	.main-btn {
		justify-content: center;
		width: 100%;
	}
	.main-btn a {
		width: 46%;
	}
}

.black-primary-ttl, .white-primary-ttl, .green-primary-ttl {
	margin: 0 0 20px;
	font-size: clamp(26px, 2.4vw, 40px);
	font-weight: bold;
	line-height: 1.2;
}
.black-heading-ttl, .white-heading-ttl, .green-heading-ttl {
	margin: 0 0 20px;
	font-size: clamp(22px, 2.2vw, 34px);
	font-weight: bold;
	line-height: 1.2;
}
.black-lead-ttl, .white-lead-ttl, .green-lead-ttl {
	margin: 0 0 15px;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: bold;
	line-height: 1.4;
}
.black-lead-txt, .white-lead-txt, .green-lead-txt {
	margin: 0 0 15px;
	font-size: clamp(14px, 1.4vw, 16px);
	line-height: 1.4;
}
.dark-gray-sup-txt, .light-gray-sup-txt {
	margin: 0;
	font-size: clamp(12px, 1vw, 14px);
	line-height: 1.4;
}
.black-primary-ttl, .black-heading-ttl, .black-lead-ttl, .black-lead-txt { color: #000000; }
.white-primary-ttl, .white-heading-ttl, .white-lead-ttl, .white-lead-txt { color: #ffffff; }
.green-primary-ttl, .green-heading-ttl, .green-lead-ttl, .green-lead-txt { color: #00cd0a; }
.dark-gray-sup-txt { color: #333; }
.light-gray-sup-txt { color: #ccc; }
@media screen and (max-width: 1199px) {
	.black-heading-ttl, .white-heading-ttl, .green-heading-ttl {
		margin: 0 0 15px;
	}
	.black-lead-ttl, .white-lead-ttl, .green-lead-ttl,
	.black-lead-txt, .white-lead-txt, .green-lead-txt {
		margin: 0 0 10px;
	}
}
@media screen and (max-width: 767px) {
	.black-heading-ttl, .white-heading-ttl, .green-heading-ttl,
	.black-lead-ttl, .white-lead-ttl, .green-lead-ttl,
	.black-lead-txt, .white-lead-txt, .green-lead-txt {
		margin: 0 0 8px;
	}
	.black-lead-txt, .white-lead-txt, .green-lead-txt {
		text-align: left;
	}
}

#section1::before,
#section2::before,
#section3::before,
#section4::before,
#section5::before,
#section6::before,
#section7::before,
#section8::before,
#section9::before {
	content: '';
	display: block;
	height: 120px;
	margin-top: -120px;
}

.topics-container {
	margin-bottom: 140px;
	padding: 120px 0;
	background: #222;
}
.topics-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	max-width: 95vw;
	width: 1400px;
	margin: 0 auto 140px;
	gap: 20px;
}
.topics-box {
	height: 400px;
	border-radius: 12px;
	position: relative;
	background: #000;
	text-align: center;
}
.topics-txt {
	position: absolute;
	top: 10px;
	left: 15px;
	text-align: left;
}
.topics-side { flex: 1 1 calc(25% - 20px); }
.topics-center { flex: 2 1 calc(50% - 20px); }
.topics-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	border-radius: 10px;
}
@media screen and (max-width:767px) {
	.topics-container {
		margin-bottom: 60px;
		padding: 60px 0;
	}
	.topics-wrap {
		margin: 0 auto 60px;
		gap: 15px;
	}
	.topics-box {
		height: 260px;
	}
	.topics-side,
	.topics-center {
		flex: 1 1 100%;
	}
	.topics-box:nth-child(1) .topics-img,
	.topics-box:nth-child(3) .topics-img,
	.topics-box:nth-child(4) .topics-img,
	.topics-box:nth-child(6) .topics-img {
		width: 55%;
	}
	.topics-box:nth-child(5) .topics-img {
		height: 80%;
	}
}

.personal-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 95vw;
	width: 1200px;
	margin: 40px auto 0;
}
.personal-box {
	width: 48%;
}
.personal-video {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.personal-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 767px) {
	.personal-wrap {
		flex-direction: column;
		margin-top: 0;
	}
	.personal-box {
		width: 100%;
	}
	.personal-video {
		margin-top: 20px;
	}
}

.vision-encoder-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
	text-align: center;
}
.vision-encoder-wrap {
	width: 100%;
}
.vision-encoder-box {
	width: 100%;
}
.vision-encoder-video {
	width: 100%;
	margin-top: 30px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.vision-encoder-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media screen and (max-width: 1199px) {
	.vision-encoder-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.vision-encoder-container {
		margin-bottom: 60px;
	}
}

.fit-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
	text-align: center;
}
.fit-wrap {
	width: 100%;
}
.fit-box {
	width: 100%;
}
.fit-video {
	width: 100%;
	margin-top: 30px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.fit-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media screen and (max-width: 1199px) {
	.fit-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.fit-container {
		margin-bottom: 60px;
	}
}

.high-temp-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
}
.high-temp-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.high-temp-box {
	width: 48%;
}
.high-temp-img-wrap {
	width: 100%;
	position: relative;
}
.high-temp-img-wrap img {
	width: 100%;
	display: none;
}
.high-temp-img-wrap img.active {
	display: block;
}
.high-temp-switch {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.high-temp-switch button {
	background: none;
	color: #999;
	border: none;
	font-size: 14px;
	cursor: pointer;
	padding: 4px 0;
	border-bottom: 2px solid transparent;
}
.high-temp-switch button.active {
	color: #fff;
	font-weight: bold;
	border-color: #fff;
}
@media screen and (max-width: 1199px) {
	.high-temp-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.high-temp-container {
		margin-bottom: 60px;
	}
	.high-temp-wrap {
		flex-direction: column-reverse;
	}
	.high-temp-box {
		width: 100%;
		margin-bottom: 20px;
	}
}

.edge-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
}
.edge-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.edge-box {
	width: 48%;
}
.edge-img {
	width: 100%;
	display: block;
}
@media screen and (max-width: 1199px) {
	.edge-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.edge-container {
		margin-bottom: 60px;
	}
	.edge-wrap {
		flex-direction: column;
	}
	.edge-box {
		width: 100%;
		margin-bottom: 20px;
	}
}

.precision-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
}
.precision-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.precision-box {
	width: 48%;
}
.precision-img {
	width: 100%;
	display: block;
}
@media screen and (max-width: 1199px) {
	.precision-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.precision-container {
		margin-bottom: 60px;
	}
	.precision-wrap {
		flex-direction: column-reverse;
	}
	.precision-box {
		width: 100%;
	}
}

.feature-slider-container {
	width: 100%;
	margin: 0 auto 200px;
}
.feature-slider-wrap {
	max-width: 1400px;
	margin: 0 auto;
}
.feature-slider-heading {
	text-align: center;
	margin-bottom: 30px;
}
.feature-slider-heading .white-lead-txt {
	text-align: center;
}
.feature-slider {
	margin: 0 auto;
}
.feature-slider-item {
	margin: 0 10px;
	box-sizing: border-box;
}
.feature-slider-item img {
	width: 100%;
	height: auto;
	display: block;
}
.feature-slider .slick-dots {
	margin-top: 20px;
}
.feature-slider .slick-dots li button:before {
	color: #666;
	opacity: 0.5;
}
.feature-slider .slick-dots li.slick-active button:before {
	color: #00cd0a;
	opacity: 1;
}
.feature-slider .feature-slider-item {
	position: relative;
}
.feature-slider .feature-slider-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
	pointer-events: none;
}
.feature-slider .feature-slider-item .feature-slider-txt {
	position: absolute;
	bottom: 5px;
	left: 20px;
	z-index: 10;
}
@media screen and (max-width: 1199px) {
	.feature-slider-container {
		margin-bottom: 120px;
	}
}
@media screen and (max-width: 767px) {
	.feature-slider-heading {
		margin-bottom: 20px;
	}
}

.realtime-control-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
	text-align: center;
}
.realtime-control-img {
	width: 100%;
	height: auto;
	margin-top: 20px;
}
@media screen and (max-width: 1199px) {
	.realtime-control-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.realtime-control-container {
		margin-bottom: 60px;
	}
}

.sensors-container {
	max-width: 95vw;
	width: 1080px;
	margin: 0 auto 140px;
}
.sensors-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.sensors-box {
	width: 100%;
	text-align: center;
}
.sensors-img-wrap {
	width: 60%;
	margin: 0 auto;
}
.sensors-img-wrap img {
	width: 100%;
	display: none;
}
.sensors-img-wrap img.active {
	display: block;
}
.sensors-switch {
	margin: 20px 0 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.sensors-switch button {
	background: none;
	color: #999;
	border: none;
	font-size: clamp(12px, 1vw, 14px);
	cursor: pointer;
	padding: 4px 0;
	border-bottom: 2px solid transparent;
}
.sensors-switch button.active {
	color: #fff;
	font-weight: bold;
	border-color: #fff;
}
.sensors-txt-wrap p {display:none;}
.sensors-txt-wrap p.active {display:block;}

@media screen and (max-width: 1199px) {
	.sensors-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.sensors-container {
		margin-bottom: 60px;
	}
	.sensors-switch {
		margin: 15px 0 20px;
		gap: 10px;
	}
}

.checklist-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
	text-align: center;
}
.checklist-img {
	width: 100%;
	height: auto;
	margin-top: 20px;
}
@media screen and (max-width: 1199px) {
	.checklist-container {
		margin-bottom: 80px;
	}
}

.three-feature-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
	padding-bottom: 140px;
}
.three-feature-txt {
	text-align: center;
}
.three-feature-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.three-feature-col {
	width: 31%;
	text-align: center;
}
.three-feature-img {
	width: 100%;
	display: block;
	margin: 0 auto 20px;
}
@media screen and (max-width: 1199px) {
	.three-feature-container {
		margin-bottom: 80px;
		padding-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.three-feature-container {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}
	.three-feature-col {
		width: 100%;
		margin-bottom: 50px;
		text-align: left;
	}
	.three-feature-img {
		width: 80%;
		margin: 0 auto;
	}
}

.bigger-container {
	max-width: 95vw;
	width: 1000px;
	margin: 0 auto 140px;
	text-align: center;
}
.bigger-box {
	margin-top: 20px;
	position: relative;
}
.bigger-txt {
	position: absolute;
	top: 10px;
	left: 20px;
	right: 20px;
}
.bigger-img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 1199px) {
	.bigger-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.bigger-container {
		margin-bottom: 60px;
	}
	.bigger-box {
		margin-top: 10px;
	}
	.bigger-txt {
		top: 10px;
		left: 10px;
		right: 10px;
	}
}

.top-speed-container {
	max-width: 95vw;
	width: 1000px;
	margin: 0 auto 200px;
	text-align: center;
}
.top-speed-wrap {
	display: flex;
	flex-direction: column;
}
.top-speed-video {
	width: 100%;
	margin-top: 30px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	position: relative;
	text-align: left;
}
.top-speed-txt {
	position: absolute;
	top: 15px;
	left: 20px;
	right: 20px;
}
.top-speed-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.top-speed-box {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}
.top-speed-box-img {
	width: 49%;
	position: relative;
}
.top-speed-box-txt {
	text-align: left;
	position: absolute;
	bottom: 0;
	left: 20px;
}
.top-speed-sup {
	margin-top: 20px;
	position: relative;
}
@media screen and (max-width: 1199px) {
	.top-speed-container {
		margin-bottom: 120px;
	}
}
@media screen and (max-width: 767px) {
	.top-speed-video {
		margin-top: 10px;
	}
	.top-speed-txt {
		top: 10px;
		left: 10px;
		right: 10px;
	}
	.top-speed-box {
		margin-top: 10px;
	}
	.top-speed-box-txt {
		left: 10px;
	}
	.top-speed-sup {
		margin-top: 10px;
	}
}

.capable-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
	text-align: center;
}
.capable-wrap {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}
.capable-box {
	position: relative;
}
.capable-txt {
	position: absolute;
	top: 15px;
	left: 20px;
	right: 20px;
	color: #fff;
	text-align: left;
}
.capable-img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 1199px) {
	.capable-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.capable-container {
		margin-bottom: 60px;
	}
	.capable-wrap {
		flex-direction: column;
	}
	.capable-txt {
		top: 10px;
		left: 10px;
		right: 10px;
	}
}

.safety-container {
	max-width: 95vw;
	width: 1080px;
	margin: 0 auto 140px;
	padding-top: 140px;
}
.safety-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.safety-box {
	width: 100%;
	text-align: center;
}
.safety-img-wrap {
	width: 60%;
	margin: 0 auto;
}
.safety-img-wrap img {
	width: 100%;
	display: none;
}
.safety-img-wrap img.active {
	display: block;
}
.safety-switch {
	margin: 20px 0 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.safety-switch button {
	background: none;
	color: #999;
	border: none;
	font-size: clamp(12px, 1vw, 14px);
	cursor: pointer;
	padding: 4px 0;
	border-bottom: 2px solid transparent;
}
.safety-switch button.active {
	color: #fff;
	font-weight: bold;
	border-color: #fff;
}
.safety-txt-wrap p {display:none;}
.safety-txt-wrap p.active {display:block;}

@media screen and (max-width: 1199px) {
	.safety-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.safety-container {
		margin-bottom: 60px;
		padding-top: 60px;
	}
	.safety-wrap {
		flex-direction: column;
	}
	.safety-img-wrap {
		width: 80%;
	}
	.safety-switch {
		margin: 15px 0 20px;
		gap: 10px;
	}
}

.privacy-container {
	max-width: 95vw;
	width: 1000px;
	margin: 0 auto 160px;
	padding-bottom: 100px;
	text-align: center;
}
@media screen and (max-width: 1199px) {
	.privacy-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.privacy-container {
		margin-bottom: 60px;
		padding-bottom: 60px;
	}
}

.quick-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
}
.quick-wrap {
	margin-top: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.quick-box {
	width: 48%;
}
.quick-video {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.quick-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1199px) {
	.quick-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.quick-container {
		margin-bottom: 50px;
	}
	.quick-wrap {
		margin-top: 40px;
		flex-direction: column;
	}
	.quick-box {
		width: 100%;
	}
}

.quiet-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
}
.quiet-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.quiet-box {
	width: 48%;
}
.quiet-img {
	width: 100%;
	display: block;
}
@media screen and (max-width: 1199px) {
	.quiet-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.quiet-container {
		margin-bottom: 60px;
	}
	.quiet-wrap {
		flex-direction: column-reverse;
	}
	.quiet-box {
		width: 100%;
	}
}

.metal-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
}
.metal-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.metal-box {
	width: 48%;
}
.metal-img {
	width: 100%;
	display: block;
}
@media screen and (max-width: 1199px) {
	.metal-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.metal-container {
		margin-bottom: 60px;
	}
	.metal-wrap {
		flex-direction: column;
	}
	.metal-box {
		width: 100%;
	}
}

.ams-evolved-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
	padding-top: 140px;
}
.ams-evolved-wrap {
	text-align: center;
	margin-bottom: 30px;
}
.ams-evolved-box {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.ams-evolved-col {
	width: 50%;
	position: relative;
}
.ams-evolved-label {
	position: absolute;
	top: 15px;
	left: 20px;
	z-index: 1;
}
.ams-evolved-img {
	width: 100%;
	height: auto;
	display: block;
}
@media screen and (max-width: 1199px) {
	.ams-evolved-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.ams-evolved-container {
		margin-bottom: 60px;
		padding-top: 60px;
	}
	.ams-evolved-box {
		flex-direction: column;
		gap: 20px;
	}
	.ams-evolved-col {
		width: 100%;
	}
}

.dry-filament-container {
	max-width: 95vw;
	width: 1200px;
	margin: 0 auto 140px;
	padding-bottom: 140px;
	text-align: center;
}
.dry-filament-wrap {
	margin-bottom: 30px;
}
.dry-filament-img-2col {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.dry-filament-img-2col .img-box,
.dry-filament-img-2col .txt-box {
	width: 50%;
}
.dry-filament-img-2col .txt-box {
	text-align: left;
}
.dry-filament-video {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.dry-filament-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media screen and (max-width: 1199px) {
	.dry-filament-container {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.dry-filament-container {
		margin-bottom: 60px;
		padding-bottom: 20px;
	}
	.dry-filament-wrap {
		margin-bottom: 50px;
	}
	.dry-filament-img-2col {
		flex-direction: column;
		gap: 10px;
	}
	.dry-filament-reverse {
		flex-direction: column-reverse;
	}
	.dry-filament-img-2col .img-box,
	.dry-filament-img-2col .txt-box {
		width: 100%;
	}
}

.parameters-container {
	max-width: 96vw;
	width: 1400px;
	margin: 0 auto 180px;
	text-align: center;
}
.parameters-ttl {
	margin-bottom: 40px;
	font-size: clamp(20px, 1.4vw, 26px);
	font-weight: bold;
}
.parameters-wrap {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 15px;
}
.parameters-table {
	width: 49%;
}
.parameters-table th,
.parameters-table td {
	padding: 6px 8px 4px;
	font-size: clamp(12px, 1vw, 14px);
	line-height: 1.4;
	vertical-align: middle;
}
.parameters-table th {
	width: 34%;
	border-bottom: 3px solid #00AE42;
}
.parameters-table td {
	border-bottom: 1px solid #808080;
}
.parameters-txt {
	font-size: clamp(12px, 1vw, 14px);
	line-height: 1.4;
	text-align: left;
}
@media screen and (max-width: 767px) {
	.parameters-container {
		margin: 0 auto 100px;
	}
	.parameters-ttl {
		margin-bottom: 20px;
	}
	.parameters-wrap {
		flex-wrap: wrap;
	}
	.parameters-table {
		width: 100%;
	}
	.parameters-table th,
	.parameters-table td {
		padding: 5px 2px 3px;
	}
}

.foot-container {
	max-width: 95vw;
	width: 1000px;
	margin: 0 auto;
	padding-bottom: 100px;
}
.foot-wrap {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.foot-box {
	width: 50%;
}
.foot-box .ttl {
	font-size: clamp(30px, 3vw, 56px);
	font-weight: bold;
	line-height: 1.2;
}
.foot-box .lead {
	margin: 0 0 40px;
	font-size: clamp(16px, 1.2vw, 22px);
	line-height: 1.2;
}
.foot-btn {
	display: flex;
	flex-wrap: wrap;
}
.foot-btn a {
	display: inline-block;
	width: 220px;
	margin: 0 10px 10px 0;
	padding: 8px 0;
	font-size: clamp(14px, 1vw, 18px);
	text-align: center;
	color: #fff;
	border: 1px solid #00AE42;
	border-radius: 5px;
	background: #00AE42;
	transition: background-color 0.3s, color 0.3s;
}
.foot-btn a:hover {
	text-decoration: none;
	color: #00AE42;
	background: #fff;
	opacity: 1;
}
.foot-img {
	width: 30%;
}
@media screen and (max-width: 767px) {
	.foot-box {
		width: 100%;
		text-align: center;
	}
	.foot-box .lead {
		margin: 0 0 20px;
	}
	.foot-btn {
		justify-content: center;
	}
	.foot-btn a {
		width: 46%;
	}
	.foot-img {
		width: 40%;
		margin-bottom: 40px;
	}
}

.section-nav {
	position: fixed;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s;
	z-index: 999;
}
.section-nav.show {
	opacity: 1;
	pointer-events: auto;
}
.section-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}
.section-nav li {
	position: relative;
	padding-left: 12px;
}
.section-nav a {
	color: #888;
	text-decoration: none;
	font-size: 14px;
	position: relative;
	transition: color 0.3s;
	display: block;
	line-height: 1.8;
}
.section-nav a::before {
	content: '';
	position: absolute;
	left: -12px;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: #888;
	transition: background-color 0.3s;
}
.section-nav a.active {
	color: #00df00ff;
	font-weight: bold;
}
.section-nav a.active::before {
	background-color: #00df00ff;
}
@media screen and (max-width: 767px) {
	.section-nav {
		display: none;
	}
}
