section.panel {
	> div {
		max-width: 1920px;
		margin-inline: auto;
		display: grid;
		> picture {
			grid-area: 1/1/2/2;
			> img {
				max-width: 100%;
			}
		}
		> div {
			grid-area: 1/1/2/2;
			justify-self: start;
			align-self: end;
			margin-left: 10.4%;
			margin-bottom: 7%;
			width: 25%;
			@media (width < 700px) {
				margin-left: 10%;
				margin-bottom: 6%;
				width: 80%;
			}
			> a {
				text-decoration: none;
				&:hover {
					opacity: 0.8;
				}
				> figure {
					> img {
						max-width: 100%;
					}
				}
			}
		}
	}
}
section.title {
	padding: 60px 5% 0 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h1 {
			font-size: 2.0rem;
			line-height: 1.5;
			color: #41ae94;
			text-align: center;
			font-weight: 600;
		}
		> p {
			font-size: 1.2rem;
			line-height: 1.0;
			color: #41ae94;
			text-align: center;
			font-weight: 600;
		}
	}
}
section.category {
	padding: 40px 5% 0 5%;
	> div {
		max-width: 1300px;
		margin-inline: auto;
		display: grid;
		grid-template-columns: 38px 1fr 38px;
		column-gap: 15px;
		@media (width < 500px) {
			grid-template-columns: 18px 1fr 18px;
			column-gap: 10px;
		}
		> div.arrow {
			display: flex;
			align-items: center;
			cursor: pointer;
			padding-block: 5px;
			padding-inline: 10px;
			user-select: none;
			@media (width < 500px) {
				padding-inline: 0px;
			}
			&:hover {
				background-color: rgba(59,176,148,0.2);
			}
			> img {}
		}
		> div.category {
			display: flex;
			overflow-x: auto;
			scrollbar-color: #3bb094 #eee;
			scrollbar-width: thin;
			scroll-behavior: smooth;
			> label {
				justify-self: center;
				display: grid;
				cursor: pointer;
				user-select: none;
				width: 260px;
				min-width: 260px;
				@media (width < 900px) {
					width: 30vw;
					max-width: 30vw;
					min-width: 30vw;
				}
				@media (width < 500px) {
					width: 40vw;
					max-width: 40vw;
					min-width: 40vw;
				}
				> input[type="radio"] {
					display: none;
					&:checked + div.circle {
						display: block;
					}
				}
				> div.circle {
					display: none;
					grid-area: 1/1/2/2;
					background-color: rgba(0, 120, 124, 0.3);
					width: 210px;
					height: 210px;
					border-radius: 200px;
					justify-self: center;
					align-self: center;
					@media (width < 900px) {
						width: 90%;
						height: auto;
						aspect-ratio: 1/1;
					}
				}
				> figure {
					grid-area: 1/1/2/2;
					padding-top: 10px;
					display: flex;
					justify-content: center;
					max-width: 250px;
					margin-inline: auto;
					@media (width < 900px) {
						max-width: 30vw;
					}
					@media (width < 500px) {
						max-width: 40vw;
					}
					> img {
						max-width: 100%;
					}
				}
				> div.text {
					grid-area: 1/1/2/2;
					justify-items: center;
					margin-top: 60%;
					display: flex;
					align-self: center;
					justify-content: center;
					> h3 {
						background-color: #41ae94;
						color: #fff;
						font-size: min(1.0rem,5vw);
						padding-inline: 10px;
						white-space: nowrap;
						@media (width < 900px) {
							font-size: 0.8rem;
						}
					}
					> p {
						font-size: 1.1rem;
						color: #333;
						white-space: nowrap;
						background-color: rgba(255,255,255,0.6);
						padding-inline: 5px;
						@media (width < 900px) {
							font-size: 0.8rem;
						}
					}
				}
			}
		}
	}
}
section.type {
	padding: 60px 5% 60px 5%;
	&.hidden {
		display: none;
	}
	> div {
		max-width: 1600px;
		margin-inline: auto;
		> h2 {
			background-color: #41ae94;
			padding-block: 10px;
			padding-inline: 20px;
			color: #fff;
			font-size: 1.5rem;
			line-height: 1.1;
			> b {	/*type名*/
				font-size: 2.0rem;
				font-weight: 900;
				font-style: italic;
				white-space: nowrap;
				> small {
					padding-left: 5px;
					font-size: 1.3rem;
					font-weight: 500;
				}
			}
		}
		> figure {
			padding-top: 60px;
			display: flex;
			justify-content: center;
			> img {
				max-width: 100%;
			}
		}
		> h3 {
			font-size: min(1.8rem,7vw);
			line-height: 1.3;
			color: #333;
			border-bottom: 3px solid #41ae94;
			padding-top: 40px;
			margin-bottom: 20px;
			padding-bottom: 10px;
			> small {
				font-size: min(1.4rem,5.5vw);
			}
		}
		> p {
			font-size: min(1.0rem,5vw);
			line-height: 1.5;
			color: #333;
		}
		> h4 {
			margin-top: 60px;
			background-color: #adadad;
			padding: 20px 30px;
			font-size: 1.3rem;
			line-height: 1.0;
			color: #fff;
		}
		> div.block {
			padding-top: 40px;
			display: grid;
			grid-template-columns: 1fr 1.2fr;
			grid-template-rows: auto 1fr;
			column-gap: 40px;
			@media (width < 650px) {
				padding-top: 20px;
				grid-template-columns: 1fr;
				grid-template-rows: unset;
				row-gap: 40px;
			}
			&.es {
				grid-template-columns: 1.4fr 1fr;
				@media (width < 650px) {
					grid-template-columns: 1fr;
					grid-template-rows: unset;
				}
			}
			> figure {
				grid-area: 1/1/3/2;
				justify-self: center;
				align-self: center;
				@media (width < 650px) {
					grid-area: unset;
					order: 2;
				}
				> img {
					max-width: 100%;
				}
			}
			> div.contenttext {
				grid-area: 1/2/2/3;
				@media (width < 650px) {
					grid-area: unset;
					order: 1;
				}
				> h4 {
					padding-top: 20px;
					font-size: min(1.4rem,6vw);
					line-height: 1.3;
					color: #41ae94;
				}
				> p {
					text-indent: -1em;
					padding-left: 1em;
					font-size: min(1.0rem,5vw);
					line-height: 1.5;
					color: #333;
					> small {
						font-size: min(0.9rem,4.5vw);
						line-height: 2;
					}
				}
			}
			> div.imageblock {
				margin-top: 20px;
				grid-area: 2/2/3/3;
				display: grid;
				grid-template-columns: 1fr 1.5fr;
				column-gap: 20px;
				row-gap: 20px;
				align-items: end;
				align-self: end;
				&.single {
					text-align: center;
					grid-template-columns: 1fr;
					max-height: 400px;
					width: auto;
				}
				@media (width < 650px) {
					grid-area: unset;
					order: 3;
				}
				> figure {
					> img {
						max-width: 100%;
					}
				}
			}
		}
		> div.option {
			padding-top: 60px;
			display: grid;
			grid-template-columns: 1fr 1.3fr;
			column-gap: 40px;
			&.singleimage {
				grid-template-columns: 1.5fr 1fr;
				@media (width < 830px) {
					grid-template-columns: 1fr;
				}
				> div.optionimage {
					grid-template-columns: 1fr;
				}
			}
			@media (width < 830px) {
			   grid-template-columns: 1fr;
			   row-gap: 20px;
			}
			> div.content {
				> h3 {
					background-color: #adadad;
					padding: 15px 30px;
					font-size: 1.3rem;
					line-height: 1.0;
					color: #fff;
					margin-bottom: 30px;
				}
				> p {
					text-indent: -1em;
					padding-left: 1em;
					font-size: min(1.0rem, 5vw);
					line-height: 1.5;
					color: #333;
				}
			}
			> div.optionimage {
				display: grid;
				grid-template-columns: 1fr 1fr;
				column-gap: 20px;
				> figure {
					> img {
						max-width: 100%;
					}
				}
			}
		}
		> div.table {
			> div.scrolltable {
				max-width: 90vw;
				&.on {
					> div.guidance {
						display: block;
					}
				}
				> div.guidance {
					display: none;
					background-color: #ddd;
					font-size: 0.9rem;
					line-height: 1;
					color: #777;
					border-radius: 50px;
					padding-block: 3px;
					padding-inline: 10px;
				}
				> div.table {
					overflow: auto;
					&.data117 {
						> table {
							> tbody {
								> tr {
									&:nth-of-type(odd) {
										background-color: #e2f3ef;
									}
									> td {
										padding-inline: 20px;
										text-align: left;
										&:nth-of-type(odd) {
											background-color: unset;
										}
									}
									
								}
							}
						}
					}
					> table {
						margin-top: 3px;
						width: 100%;
						height: 100%;
						border-collapse: collapse;
						> thead {
							> tr {
								> th {
									padding-block: 10px;
									padding-inline: 5px;
									background-color: #9dd7ca;
									color: #222;
									font-size: min(0.9rem,4.5vw);
									line-height: 1.6;
									font-weight: 400;
									text-align: center;
									white-space: nowrap;
									border: solid 1px rgba(255,255,255,0.5);
									&.on {
										background-color: #7483bc;
										color: #fff;
									}
								}
							}
						}
						> tbody {
							> tr {
								> th {
									padding-block: 5px;
									padding-inline: 5px;
									background-color: #bae3da;
									color: #222;
									font-size: min(0.9rem,4.5vw);
									line-height: 1.6;
									font-weight: 400;
									text-align: center;
									white-space: nowrap;
									border: solid 1px rgba(255,255,255,0.5);
									> img {
										width: 60px;
									}
									&:nth-of-type(1) {
										background-color: #9dd7ca;
									}
									&.notfirst {
										background-color: #bae3da;
									}
								}
								> td {
									padding-block: 5px;
									padding-inline: 5px;
									color: #222;
									font-size: min(0.9rem,4.5vw);
									line-height: 1.6;
									text-align: center;
									white-space: nowrap;
									border: solid 1px rgba(0,0,0,0.2);
									&:nth-of-type(odd) {
										background-color: #e2f3ef;
									}
								}
							}
						}
					}
				}
			}
		}
		> div.note {
			display: flex;
			justify-content: space-between;
			@media (width < 960px) {
				flex-direction: column;
			}
			> p {
				padding-top: 10px;
				font-size: 0.9rem;
				line-height: 1.5;
				color: #333;
				text-indent: -1em;
				padding-left: 1em;
			}
			> div.notice {
				margin-top: 10px;
				border: 1px solid #c00;
				border-radius: 5px;
				display: flex;
				justify-self: end;
				> p {
					padding: 5px 10px;
					font-size: min(1.0rem,5vw);
					line-height: 1.2;
					color: #c00;
				}
			}
		}
		> div.notice {
			margin-top: 10px;
			display: flex;
			justify-content: end;
			> p {
				border: 1px solid #c00;
				border-radius: 5px;
				padding: 5px 10px;
				font-size: min(1.0rem,5vw);
				line-height: 1.2;
				color: #c00;
				> img {
					height: 1.0rem;
				}
			}
			> div {
				display: grid;
				grid-template-columns: 25px 1fr;
				border: 1px solid #c00;
				border-radius: 5px;
				padding: 5px 10px;
				> img {
					width: 20px;
				}
				> p {
					font-size: min(1.0rem,5vw);
					line-height: 1.2;
					color: #c00;
					@media (width < 500px) {
						> br {
							display: none;
						}
					}
				}
			}
		}
	}
}
section.composition {
	padding: 60px 5% 60px 5%;
	&.hidden {
		display: none;
	}
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: 1.8rem;
			line-height: 1.3;
			color: #333;
			border-bottom: 3px solid #41ae94;
			margin-bottom: 20px;
			padding-bottom: 10px;
		}
		> h3 {
			font-size: min(1.2rem,5vw);
			line-height: 1.3;
			color: #333;
			> span {
				color: #9dd6c9;
				padding-right: 3px;
			}
		}
		> h4 {
			font-size: min(1.5rem,7vw);
			line-height: 1.3;
			color: #333;
			text-align: center;
		}
		> figure {
			max-width: 800px;
			margin-inline: auto;
			padding-block: 40px;
			text-align: center;
			> img {
				max-width: 100%;
			}
		}
		> p {
			margin-block: 3px;
			max-width: 800px;
			margin-inline: auto;
			font-size: min(1rem,5vw);
			line-height: 1.2;
			color: #333;
		}
		> div.table {	
			max-width: 800px;
			margin-inline: auto;
			> div.scrolltable {
				max-width: 90vw;
				&.on {
					> div.guidance {
						display: block;
					}
				}
				> div.guidance {
					display: none;
					background-color: #ddd;
					font-size: 0.9rem;
					line-height: 1;
					color: #777;
					border-radius: 50px;
					padding-block: 3px;
					padding-inline: 10px;
				}
				> div.table {
					overflow: auto;
					> table {
						margin-top: 3px;
						width: 100%;
						height: 100%;
						border-collapse: collapse;
						> thead {
							> tr {
								> th {
									padding-block: 5px;
									padding-inline: 10px;
									background-color: #9dd7ca;
									color: #222;
									font-size: min(0.9rem,4.5vw);
									line-height: 1.6;
									font-weight: normal;
									text-align: center;
									white-space: nowrap;
									border: solid 1px rgba(0,0,0,0.2);
								}
							}
						}
						> tbody {
							> tr {
								&:nth-of-type(odd) {
									> td {
										background-color: #e2f3ef;
									}
								}
								> th {
									padding-block: 5px;
									padding-inline: 10px;
									background-color: #9dd7ca;
									color: #222;
									font-size: min(0.9rem,4.5vw);
									line-height: 1.6;
									font-weight: normal;
									text-align: center;
									white-space: nowrap;
									border: solid 1px rgba(0,0,0,0.2);
								}
								> td {
									padding-block: 10px;
									padding-inline: 5px;
									color: #222;
									font-size: min(0.9rem,4.5vw);
									line-height: 1.6;
									text-align: left;
									text-align: center;
									white-space: nowrap;
									border: solid 1px rgba(0,0,0,0.2);
									background-color: #fff;
								}
							}
						}
					}
				}
			}
		}
		> div.option {
			padding-block: 5px;
			display: flex;
			align-items: center;
			column-gap: 10px;
			max-width: 800px;
			margin-inline: auto;
			> h4 {
				border-radius: 5px;
				background-color: #3bb094;
				padding-inline: 10px;
				font-size: min(1.1rem,5.5vw);
				line-height: 1.8;
				color: #fff;
				font-weight: 500;
			}
			> p {
				font-size: min(1.0rem,5vw);
				line-height: 1.6;
				color: #333;
			}
		}
	}
}
section.specification {
	padding: 60px 5% 60px 5%;
	background-color: #f5fbfa;
	&.hidden {
		display: none;
	}
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.title {
			background: url(./image/title_bg.svg) 75% / cover;
			min-height: 85px;
			display: flex;
			justify-content: center;
			align-items: center;
			> h2 {
				text-align: center;
				font-size: min(2.2rem, 7vw);
				line-height: 1;
				color: #fff;
			}
		}
		> figure {
			padding-top: 50px;
			text-align: center;
			> img {
				max-width: 100%;
			}
		}
		> article {
			padding-top: min(80px,12vw);
			display: grid;
			grid-template-columns: 1fr 1fr;
			column-gap: 40px;
			&.noimage_right {
				grid-template-columns: 1fr;
			}
			&:last-of-type {
				padding-bottom: 50px;
			}
			@media (width < 760px) {
				grid-template-columns: 1fr;
				row-gap: 30px;
			}
			> div.title {
				> div.point {
					display: grid;
					grid-template-columns: 30px 1fr;
					column-gap: 10px;
					> img {
						width: 30px;
					}
					> h3 {
						align-self: center;
						font-size: 1.3rem;
						line-height: 1;
						color: #3bb094;
					}
				}
				> div.block {
					margin-top: 5px;
					margin-bottom: 20px;
					padding: 20px;
					background-color: #d8efea;
					display: grid;
					grid-template-columns: repeat(3, 1fr);
					column-gap: 20px;
					@media (width < 1020px) {
						grid-template-columns: 1fr;
						row-gap: 30px;
					}
					> div {
						display: grid;
						grid-template-rows: auto auto 1fr;
						@media (width < 1020px) {
							row-gap: 20px;
						}
						> h4 {
							text-align: center;
							background-color: #3bb094;
							border-radius: 5px;
							font-size: min(1.0rem,5vw);
							line-height: 2;
							color: #fff;
							padding-inline: 10px;
						}
						> p {
							font-size: min(0.9rem,5vw);
							line-height: 1.6;
							color: #333;
							padding-inline: 10px;
							text-align: justify;
						}
						> figure {
							padding-top: 30px;
							align-self: end;
							&.add_text {
								display: grid;
								grid-template-rows: auto 1fr;
								row-gap: 5px;
							}
							@media (width < 1020px) {
								padding-top: 0px;
								text-align: center;
								justify-self: center;
							}
							> div {
								> p {
									font-size: min(1.0rem,5vw);
									line-height: 1.6;
									color: #333;
									text-align: justify;
									&:nth-of-type(1) {
										text-align: center;
										background-color: #fff;
										border: 1px solid#3bb094;
										color: #3bb094;
									};
								}
							}
							> img {
								max-width: 100%;
								@media (width < 1020px) {
								   width: 100%;
								}
							}
						}
					}
				}
				> p {
					padding-top: 10px;
					font-size: min(1.0rem,5vw);
					line-height: 1.6;
					color: #333;
					text-align: justify;
					> span {
						color: #ff7d31;
					}
					> small {
						padding-top: 10px;
						font-size: 0.9rem;
					}
				}
				> figure {
					padding-top: 50px;
					text-align: center;
					> img {
						max-width: 100%;
					}
				}
			}
			> div.twoimage {
				display: grid;
				grid-template-columns: 1fr auto;
				column-gap: 20px;
				row-gap: 20px;
				@media (width < 610px) {
					grid-template-columns: 1fr;
				}
				> figure {
					> img {
						height: 190px;
					}
				}
			}
			> div.imageblock {
				margin-top: 20px;
				display: grid;
				grid-template-columns: 1fr 1fr;
				column-gap: 20px;
				row-gap: 20px;
				@media (width < 610px) {
					grid-template-columns: 1fr;
				}
				> figure {
					> img {
						max-width: 100%;
					}
					> p {
						padding-top: 10px;
						font-size: min(1.0rem,5vw);
						line-height: 1.6;
						color: #333;
						text-align: left;
					}
				}
			}
			> figure {
				text-align: center;
				> img {
					max-width: 100%;
				}
			}
		}
		> a {
			text-decoration: none;
			&:hover {
				opacity: 0.8;
			}
			> div {
				border-radius: 10px;
				background-color: #3bb094;
				background-image: url(./image/link_mark.svg);
				background-position: 60% 50%;
				background-size: 20px;
				background-repeat: no-repeat;
				@media (width < 1000px) {
					background-position: calc(50% + 100px) 50%;
				}
				> p {
					text-align: center;
					padding-block: 15px;
					font-size: 1.2rem;
					line-height: 1;
					color: #fff;
				}
			}
		}
	}
}
section.order {
	padding: min(100px,15vw) 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> a {
			text-decoration: none;
			&:hover {
				opacity: 0.8;
			}
			> div {
				border-radius: 5px;
				display: grid;
				@media (width < 670px) {
					background: url(./image/link_bg.webp) 50% / cover;
					min-height: 170px;
				}
				> figure {
					grid-area: 1/1/2/2;
					@media (width < 670px) {
						display: none;
					}
					> img {
						border-radius: 5px;
						max-width: 100%;
					}
				}
				> div {
					grid-area: 1/1/2/2;
					display: grid;
					grid-template-columns: auto 1fr;
					column-gap: 30px;
					@media (width < 530px) {
						grid-template-columns: auto 40px;
					}
					@media (width < 450px) {
						grid-template-columns: 1fr;
						background-image: url(./image/link_mark.svg);
						background-position: 95% 50%;
						background-size: 20px;
						background-repeat: no-repeat;
					}
					> div.text {
						padding-left: 50px;
						align-content: center;
						@media (width < 820px) {
							padding-inline: 5vw;
							padding-block: 10px;
						}
						> h2 {
							padding-bottom: 10px;
							font-size: 2.2rem;
							line-height: 1;
							color: #fff;
							letter-spacing: 3px;
							@media (width < 450px) {
								line-height: 1.3;
							}
						}
						> p {
							font-size: min(1.0rem,5vw);
							line-height: 1.6;
							color: #fff;
						}
					}
					> figure {
						align-content: center;
						@media (width < 450px) {
							display: none;
						}
						> img {
							max-width: 100%;
						}
					}
				}
			}
		}
		> h3 {
			margin-top: 20px;
			text-align: center;
			font-size: 1.4rem;
			line-height: 1.3;
			color: #333;
		}
	}
}
section.bottom {
	padding-top: min(120px,17vw);
	border-bottom: solid 1px #3bb094;
}
