section.panel {
	> picture {
		display: block;
		max-width: 1920px;
		margin-inline: auto;
		> img {
			max-width: 100%;
		}
	}
}
section.top {
	padding: 30px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> figure {
			text-align: center;
			> img {
				max-width: 150px;
			}
		}
		> h4 {
			margin-top: 5px;
			font-size: min(1.2rem, 6vw);
			line-height: 1.5;
			color: #231815;
			font-weight: 600;
			letter-spacing: 1px;
			text-align: center;
		}
		> h2 {
			margin-top: 5px;
			font-size: 2.2rem;
			line-height: 1.4;
			color: #464646;
			font-weight: 600;
			letter-spacing: 5px;
			text-align: center;
		}
		> p {
			margin-top: 20px;
			font-size: min(1.0rem, 5vw);
			line-height: 1.8;
			color: #000;
			font-weight: 500;
			letter-spacing: 2px;
			text-align: justify;
		}
	}
}
section.about {
	padding: 60px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div {
			display: flex;
			justify-content: center;
			> h2 {
				padding: 10px 40px;
				border-top-left-radius: 15px;
				border-top-right-radius: 15px;
				border-top: 5px solid #eaf1bf;
				border-left: 5px solid #eaf1bf;
				border-right: 5px solid #eaf1bf;
				font-size: 1.5rem;
				line-height: 1.4;
				color: #5aaa00;
				font-weight: 600;
				letter-spacing: 5px;
				text-align: center;
				@media (width < 360px) {
					padding: 10px 20px;
				}
			}
		}
	}
}
section.content {
	padding: 30px 5% 30px 5%;
	background-color: #e9f1c3;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> p {
			font-size: min(1.1rem, 5vw);
			line-height: 1.8;
			color: #000;
			font-weight: 500;
			letter-spacing: 2px;
			text-align: justify;
			> b {
				color: #e7404b;
			}
		}
	}
}
section.step {
	padding: 30px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		border-bottom: 2px dotted #a6c60f;
		display: grid;
		grid-template-columns: auto 25px auto;
		column-gap: 20px;
		@media (width < 880px) {
			grid-template-columns: 1fr;
			grid-template-rows: auto 1fr auto;
			row-gap: 20px;
			padding-bottom: 20px;
		}
		> article {
			> figure {
				&:nth-of-type(1) {
					justify-self: right;
					@media (width < 460px) {
						justify-self: center;
					}
				}
				&:nth-of-type(2) {
					justify-self: left;
					@media (width < 460px) {
						justify-self: center;
					}
				}
				> img {
					max-width: 100%;
				}
			}
			> p {
				font-size: min(1.0rem, 4.5vw);
				line-height: 2.2;
				color: #000;
				font-weight: 500;
				letter-spacing: 2px;
				text-align: justify;
				border-bottom: 1px dotted #a6c60f;
				> b {
					color: #e7404b;
				}
				&:last-of-type {
					border-bottom: none;
				}
				@media (width < 420px) {
					letter-spacing: 0px;
					white-space: nowrap;
				}
			}
			&:nth-of-type(1) {
				display: grid;
				grid-template-columns: repeat(2, 1fr);
				column-gap: 20px;
				align-items: start;
				@media (width < 880px) {
					justify-items: center;
				}
				@media (width < 460px) {
					grid-template-columns: repeat(1, 1fr);
					row-gap: 20px;
				}
			}
			&:nth-of-type(2) {
				border-radius: 8px;
				border: 3px solid #a6c60f;
				background-color: #f2f6db;
				padding: 20px;
				align-self: center;
				justify-self: center;
				@media (width < 420px) {
					padding: 10px;
				}
			}
		}
		> div {
			background-color: #d2e287;
			width: 25px;
			height: 50px;
			align-self: center;
			justify-self: center;
			clip-path: polygon(0 0, 0% 100%, 100% 50%);
			@media (width < 880px) {
				transform: rotate(90deg);
			}
		}
	}
}
section.flow {
	padding: 30px 5% 0px 5%;
	> div {
		max-width: 800px;
		margin-inline: auto;
		> h2 {
			font-size: 1.3rem;
			line-height: 1.4;
			color: #333333;
			font-weight: 600;
			letter-spacing: 1px;
			text-align: center;
		}
		> div {
			padding-top: 30px;
			display: grid;
			grid-template-columns: 1fr 25px 1fr 25px 1fr;
			column-gap: 20px;
			row-gap: 40px;
			@media (width < 920px) {
				grid-template-columns: 1fr 25px 1fr;
				justify-items: center;
			}
			@media (width < 590px) {
				grid-template-columns: 1fr;
				grid-template-rows: repeat(6, 1fr auto);
				row-gap: 10px;
			}
			> div {
				background-color: #f07d41;
				width: 25px;
				height: 50px;
				align-self: center;
				justify-self: center;
				clip-path: polygon(0 0, 0% 100%, 100% 50%);
				&.none {
					display: none;
					@media (width < 920px) {
						display: block;
					}
				}
				&:nth-of-type(even) {
					@media (width < 920px) {
						display: none;
					}
					@media (width < 590px) {
						display: block;
					}
				}
				@media (width < 590px) {
					transform: rotate(90deg);
				}
			}
			> article {
				background-color: #fdf6d9;
				height: 230px;
				width: 230px;
				border-radius: 50%;
				display: grid;
				> figure {
					grid-area: 1/1/2/2;
					text-align: center;
					margin-top: -5px;
					> img {
						max-width: 60px;
					}
				}
				> p {
					margin-top: 10px;
					grid-area: 1/1/2/2;
					align-self: center;
					font-size: 1.2rem;
					line-height: 1.6;
					color: #333333;
					font-weight: 600;
					letter-spacing: 1px;
					text-align: center;
				}
			}
		}
	}
}
section.information {
	padding: 30px 5% 160px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> article {
			margin-bottom: 40px;
			> div {
				margin-bottom: 5px;
				display: flex;
				align-items: center;
				column-gap: 10px;
				> div {
					width: 12px;
					height: 12px;
					border-radius: 50%;
					background-color: #abc900;
					@media (width < 370px) {
						align-self: start;
						margin-top: 0.45rem;
					}
				}
				> h2 {
					font-size: min(1.2rem, 6vw);
					line-height: 1.5;
					color: #333333;
					font-weight: 600;
					letter-spacing: 2px;
					@media (width < 350px) {
						letter-spacing: 1px;
					}
				}
			}
			> p {
				margin-bottom: 5px;
				font-size: 1.0rem;
				line-height: 1.6;
				color: #000;
				font-weight: 500;
				letter-spacing: 1px;
			}
			> h3 {
				margin-bottom: 5px;
				padding-inline: 20px;
				font-size: 1.1rem;
				line-height: 1.6;
				color: #000;
				font-weight: 500;
				letter-spacing: 1px;
				@media (width < 630px) {
					padding-inline: 10px;
				}
			}
			> dl {
				> div {
					min-height: 45px;
					display: grid;
					grid-template-columns: 150px 1fr;
					@media (width < 630px) {
						grid-template-columns: 1fr;
						height: auto;
						margin-bottom: 20px;
					}
					&:first-of-type {
						> dt {
							border-top: 1px solid #e6e6e6;
						}
						> dd {
							border-top: 1px solid #e6e6e6;
							@media (width < 630px) {
								border-top: none;
							}
						}
					}
					> dt {
						align-content: center;
						font-size: min(1.0rem,4.5vw);
						line-height: 1.3;
						color: #464646;
						font-weight: 500;
						padding: 10px 20px 10px 20px;
						border-bottom: 1px solid #e6e6e6;
						@media (width < 630px) {
							border-top: 1px solid #e6e6e6;
							padding: 10px;
						}
					}
					> dd {
						align-content: center;
						border-bottom: 1px solid #e6e6e6;
						color: #464646;
						font-size: min(1.0rem,5vw);
						line-height: 1.8;
						padding: 10px 20px 10px 20px;
						text-align: justify;
						@media (width < 630px) {
							border: none;
							padding: 10px;
						}
					}
				}
			}
		}
		> iframe {
			padding-top: 40px;
			border: 0;
			width: 100%;
			height: 550px;
		}
	}
}
