section.switchpanel {
	background-color: #eee;
	overflow: hidden;
	max-height: 1400px;
	&.off {
		max-height: 0;
	}
	> div {
		max-width: 1920px;
		margin-inline: auto;
		overflow: hidden;
		> #switchPanelStage {
			user-select: none;
			display: grid;
			grid-template-rows: 1fr;
			grid-template-columns: 1fr;
			> div {
				grid-row: 1/2;
				grid-column: 1/2;
				&:nth-of-type(1) {
					z-index: 0;
				}
				&:nth-of-type(2) {
					z-index: 1;
					transition: 0.5s;
					cursor: ew-resize;
				}
				&:nth-of-type(3) {
					z-index: 2;
					justify-self: end;
					align-self: start;
					display: flex;
					justify-content: center;
					align-items: center;
					column-gap: 5px;
					padding-top: 17px;
					padding-right: 20px;
					@media (width < 1370px) {
						align-self: end;
						padding-top: unset;
						padding-bottom: 17px;
					}
					@media (width < 670px) {
						column-gap: 3px;
						padding-top: unset;
						padding-right: 4px;
						padding-bottom: 4px;
						justify-self: center;
						> span {
							> img {
								width: 14px;
							}
						}
					}
					> span {
						transition: 0.3s;
						cursor: pointer;
						> img:nth-of-type(1) {
							display: block;
						}
						> img:nth-of-type(2) {
							display: none;
						}
						&.on {
							> img:nth-of-type(1) {
								display: none;
							}
							> img:nth-of-type(2) {
								display: block;
							}
						}
					}
				}
				> div {
					> div.pc {
						display: grid;
						@media (width < 670px) {
							display: none;
						}
						> picture {
							grid-area: 1/1/2/2;
							> img {
								width: 100%;
							}
						}
						> a {
							grid-area: 1/1/2/2;
							text-decoration: none;
							&:hover {
								opacity: 0.7;
							}
							> img {
							}
						}
					}
					> div.sp {
						display: none;
						@media (width < 670px) {
							display: grid;
						}
						> picture {
							grid-area: 1/1/2/2;
							> img {
								width: 100%;
							}
						}
						> a {
							grid-area: 1/1/2/2;
							text-decoration: none;
							&:hover {
								opacity: 0.7;
							}
							> img {
							}
						}
					}
				}
			}
		}
	}
}
section.link {
	position: relative;
	z-index: 2;
	margin-top: -80px;
	padding: 0px 5% 0px 5%;
	@media (width < 1370px) {
		margin-top: 0px;
		padding: 40px 5% 60px 5%;
	}
	> div {
		max-width: 1000px;
		margin-inline: auto;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: 20px;
		row-gap: 20px;
		@media (width < 960px) {
			grid-template-columns: repeat(1, 1fr);
		}
		> article {
			padding: 40px;
			@media (width < 1050px) {
				padding: 40px 20px;
			}
			&:nth-of-type(1) {
				padding: 40px 15x;
				background-color: #006eff;
				> div {
					background-image: url(./image/category01.webp);
					@media (width < 1050px) {
						padding: 20px 15x;
					}
				}
			}
			&:nth-of-type(2) {
				background-color: #00787c;
				> div {
					background-image: url(./image/category02.webp);
				}
			}
			&:nth-of-type(3) {
				background-color: #9b4696;
				> div {
					background-image: url(./image/category03.webp);
					@media (width < 960px) {
						width: unset;
						grid-area: unset;
						justify-self: unset;
					}
				}
			}
			> h2 {
				text-align: center;
				font-size: 2.0rem;
				line-height: 1.0;
				font-weight: 600;
				color: #fff;
			}
			> div {
				margin-top: 20px;
				padding-top: 150px;
				background-repeat: no-repeat;
				background-size: contain;
				background-position: 50% 0%;
				> p {
					padding-block: 20px 40px;
					text-align: center;
					font-size: 1.0rem;
					line-height: 1.0;
					font-weight: 600;
					color: #fff;
				}
				> div.threeblock {
					padding-top: 30px;
					display: grid;
					grid-template-columns: repeat(3, 1fr);
					column-gap: 15px;
					> a {
						text-decoration: none;
						&:hover {
							opacity: 0.8;
						}
						> div {
							padding-block: 20px;
							border: 1px solid #fff;
							> p {
								text-align: center;
								font-size: 1.0rem;
								line-height: 1.0;
								font-weight: 600;
								color: #fff;
								user-select: none;
							}
							> figure {
								text-align: center;
								line-height: 1.0;
								> img {
									width: 12px;
								}
							}
						}
					}
				}
				> div.text {
					padding-block: 20px 40px;
					display: grid;
					grid-template-columns: repeat(3, 1fr);
					> p {
						border-right: 1px solid #fff;
						text-align: center;
						font-size: 1.0rem;
						line-height: 1.0;
						font-weight: 600;
						color: #fff;
						&:nth-of-type(3) {
							border-right: none;
						}
					}
				}
				> a {
					text-decoration: none;
					&:hover {
						opacity: 0.8;
					}
					> div {
						display: flex;
						justify-content: center;
						> p {
							background-image: url(./image/vector.svg);
							background-position: calc(100% - 10px) 50%;
							background-size: 12px 6px;
							background-repeat: no-repeat;
							padding: 5px 40px;
							border: 1px solid #fff;
							text-align: center;
							font-size: 1.0rem;
							line-height: 1.0;
							font-weight: 600;
							color: #fff;
						}
					}
				}
			}
		}
	}
}
section.product {
	padding: 80px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h1 {
			text-align: center;
			font-size: 2.0rem;
			line-height: 1.4;
			font-weight: 600;
			color: #333;
			letter-spacing: 1px;
			padding-bottom: 30px;
		}
		> div {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			column-gap: 20px;
			row-gap: 20px;
			@media (width < 990px) {
				grid-template-columns: repeat(2, 1fr);
			}
			@media (width < 670px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> article {
				&:nth-of-type(1) {
					grid-row: 1/2;
					grid-column: 1/2;
					padding: 40px 15x;
					@media (width < 990px) {
						grid-row: 1/3;
						grid-column: 1/2;
					}
					@media (width < 670px) {
						grid-row: 1/2;
						grid-column: 1/2;
					}
					> h2 {
						background-color: #006eff;
					}
					> div.item {
						> a {
							&:last-of-type {
								> p {
									border-bottom: 1px solid #bfdbff;
								}
							}
							> p {
								background-image: url(./image/vector_blue.svg);
								border-top: 1px solid #bfdbff;
							}
						}
					}
				}
				&:nth-of-type(2) {
					grid-row: 1/2;
					grid-column: 2/3;
					@media (width < 990px) {
						grid-row: 1/2;
						grid-column: 2/3;
					}
					@media (width < 670px) {
						grid-row: 2/3;
						grid-column: 1/2;
					}
					> h2 {
						background-color: #00787c;
						margin-bottom: 40px;
						@media (width < 670px) {
							margin-bottom: 10px;
						}
					}
					> div.item {
						> a {
							&:last-of-type {
								> p {
									border-bottom: 1px solid #acc;
								}
							}
							> p {
								background-image: url(./image/vector_green.svg);
								border-top: 1px solid #acc;
							}
						}
					}
				}
				&:nth-of-type(3) {
					grid-row: 1/2;
					grid-column: 3/4;
					@media (width < 990px) {
						grid-row: 2/3;
						grid-column: 2/3;
					}
					@media (width < 670px) {
						grid-row: 3/4;
						grid-column: 1/2;
					}
					> h2 {
						background-color: #9b4696;
						margin-bottom: 40px;
						@media (width < 990px) {
							margin-bottom: 10px;
						}
					}
					> div.item {
						> a {
							&:last-of-type {
								> p {
									border-bottom: 1px solid #eae;
								}
							}
							> p {
								background-image: url(./image/vector_purple.svg);
								border-top: 1px solid #eae;
							}
						}
					}
				}
				> h2 {
					text-align: center;
					font-size: 1.3rem;
					line-height: 1.8;
					font-weight: 600;
					color: #fff;
				}
				> p {
					padding-block: 20px 40px;
					text-align: center;
					font-size: 1.2rem;
					color: #fff;
				}
				> div.type {
					padding-block: 10px;
					max-height: 40px;
					display: grid;
					grid-template-columns: repeat(3, 1fr);
					column-gap: 20px;
					align-self: center;
					justify-self: center;
					> p {
						padding: 3px 15px;
						text-align: center;
						font-size: min(0.9rem, 4.5vw);
						line-height: 1.0;
						color: #fff;
						&:nth-of-type(1) {
							background-color: #7484c1;
						}
						&:nth-of-type(2) {
							background-color: #3bb094;
						}
						&:nth-of-type(3) {
							background-color: #db4f4a;
						}
					}
				}
				> div.item {
					> a {
						text-decoration: none;
						&:hover {
							opacity: 0.8;
						}
						&:last-of-type {
							> p {
								border-bottom: 1px solid #bfdbff;
							}
						}
						> p {
							background-image: url(./image/vector_blue.svg);
							background-position: right 25px top 50%;
							background-size: 18px;
							background-repeat: no-repeat;
							padding: 10px;
							border-top: 1px solid #bfdbff;
							font-size: 1.1rem;
							line-height: 1.0;
							color: #333;
							user-select: none;
						}
					}
				}
			}
		}
	}
}
section.industry {
	padding: 60px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> a {
			text-decoration: none;
			&:hover {
				opacity: 0.8;
			}
			> figure {
				> img {
					max-width: 100%;
				}
			}
		}
	}
}
section.catalog01 {
	padding: 100px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			text-align: center;
			font-size: 2.0rem;
			line-height: 1.4;
			font-weight: 600;
			color: #333;
			letter-spacing: 1px;
		}
	}
}
section.access {
	padding: 100px 0% 40px 0%;
	> div {
		display: grid;
		align-content: end;
		> figure {
			padding-top: 100px;
			grid-area: 1/1/2/2;
			justify-self: start;
			align-self: end;
			width: 90%;
			@media (width < 1400px) {
				padding-top: 60px;
				width: 65%;
			}
			@media (width < 850px) {
				padding-top: 8%;
				width: calc(100% - 20vw);
				margin-left: -20vw;
			}
			> img {
				max-width: 100%;
			}
		}
		> div {
			width: 60%;
			min-width: 330px;
			min-height: 300px;
			grid-area: 1/1/2/2;
			justify-self: end;
			display: grid;
			@media (width < 1400px) {
				width: 40%;
			}
			@media (width < 750px) {
				width: 65%;
				min-width: unset;
				min-height: unset;
			}
			> div.bg {
				position: relative;
				z-index: 2;
				grid-area: 1/1/2/2;
				background-color: #009fe8;
				clip-path: polygon(100% 0, 0% 100%, 100% 100%);
				@media (width < 530px) {
					clip-path: polygon(75% 0, 100% 0, 100% 100%, 5% 100%);
				}
				@media (width < 430px) {
					clip-path: polygon(35% 0, 100% 0, 100% 100%, 5% 100%);
				}
			}
			> div.link {
				position: relative;
				z-index: 3;
				grid-area: 1/1/2/2;
				justify-self: end;
				align-self: end;
				margin-right: 10%;
				margin-bottom: 5%;
				@media (width < 750px) {
					margin-right: 5%;
					margin-bottom: 3%;
				}
				> p {
					text-align: center;
					font-size: min(1.1rem, 5vw);
					line-height: 1.3;
					color: #fff;
					padding-bottom: 15px;
					@media (width < 750px) {
						padding-bottom: 10px;
					}
				}
				> a {
					text-decoration: none;
					&:hover {
						opacity: 0.8;
					}
					> p {
						text-align: center;
						font-size: min(0.9rem, 4.5vw);
						color: #333;
						line-height: 1.0;
						background-color: #fff;
						padding: 15px 52px 15px 30px;
						background-image: url(./image/vector_blue.svg);
						background-repeat: no-repeat;
						background-size: 12px 12px;
						background-position: right 22px top 55%;
						@media (width < 750px) {
							padding: 10px 42px 10px 20px;
						}
						@media (width < 530px) {
							padding: 10px 32px 10px 10px;
							background-position: calc(100% - 12px) 55%;
						}
					}
				}
			}
		}
	}
}
