section.panel {
	background-color: #faf0c8;
	padding: 20px 5% 80px 5%;
	> div {
		max-width: 1160px;
		margin-inline: auto;
		> figure {
			> img {
				max-width: 100%;
				border-radius: 20px;
				@media (width < 550px) {
					border-radius: 0px;
				}
			}
		}
	}
}
section.breadcrumbs {
	background-color: #faf0c8;
}
section.top {
	padding: 0px 5% 180px 5%;
	background: url(./image/top_logo.svg) #faf0c8 ;
	background-size: min(30vw, 350px);
	background-repeat: no-repeat;
	background-position: top 15% left 90%;
	@media (width < 730px) {
		background-position: bottom 100px left 90%;
	}
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> p {
			padding-top: 30px;
			font-size: min(1.8rem, 6vw);
			line-height: 1.8;
			color: var(--color-accent);
			font-weight: 800;
			letter-spacing: 0.2rem;
			&:nth-of-type(1) {
				> span {
					color: #ceb79d;
					font-size: min(2.8rem, 8vw);
				}
			}
			> b {
				font-size: min(2.2rem, 7vw);
			}
			@media (width < 400px) {
				letter-spacing: 0.1em;
			}
		}
	}
}
section.flow {
	margin-top: -80px;
	padding: 100px 5% 100px 5%;
	background-color: #fff;
	border-radius: 80px 80px 0px 0px;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(3.2rem, 10vw);
			line-height: 1.4;
			color: var(--color-accent);
			font-weight: 800;
			padding-bottom: 30px;
			letter-spacing: 0.3rem;
		}
		> div {
			display: grid;
			@media (width < 840px) {
				grid-template-columns: auto 1fr;
				align-items: stretch;
			}
			> div.flow {
				display: grid;
				grid-template-columns: repeat(3, 1fr);
				@media (width < 840px) {
					grid-template-columns: unset;
					grid-template-rows: repeat(3, 1fr);
					display: grid;
				}
				> article {
					@media (width < 840px) {
						width: 100%;
					}
					&:nth-of-type(1) {
						> h3 {
							background-color: #fff;
							border-radius: 20px 0px 0px 0px;
							@media (width < 840px) {
								border-radius: 0px 0px 0px 20px;
							}
						}
					}
					&:nth-of-type(2) {
						background: linear-gradient(to right,#fff,#fff 50%,#b29b62 50%, #b29b62);
						> h3 {
							background-color: #faf0c8;
							clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
						}
						@media (width < 840px) {
							background: linear-gradient(to bottom,#fff,#fff 50%,#b29b62 50%, #b29b62);
							> h3 {
								clip-path: polygon(0 0, 50% 3%, 100% 0, 100% 97%, 50% 100%, 0 97%);
								
							}
						}
					}
					&:nth-of-type(3) {
						> h3 {
							border-radius: 0px 20px 0px 0px;
							background-color: #b29b62;
							color: #fff;
							@media (width < 840px) {
								border-radius: 0px 0px 0px 20px;
							}
						}
					}
					> h3 {
						width: 100%;
						text-align: center;
						font-size: min(1.6rem, 5vw);
						line-height: 1.0;
						color: var(--color-accent);
						font-weight: 800;
						letter-spacing: 0.2rem;
						padding-block: 20px;
						> span {
							&:nth-of-type(2) {
								display: none;
							}
						}
						@media (width < 840px) {
							letter-spacing: 0.2rem;
							padding-block: 2vw;
							align-items: center;
							justify-items: center;
							writing-mode: vertical-rl;
							height: 100vh;
							max-height: 460px;
							> span {
								&:nth-of-type(1) {
									display: none;
								}
								&:nth-of-type(2) {
									display: inline-block;
									text-combine-upright: all;
									padding-bottom: 0.8rem;
								}
							}
						}
						@media (width < 600px) {
							max-height: 510px;
						}
					}
				}
			}
			> div.content {
				border-radius: 0px 0px 20px 20px;
				margin-top: -1px;
				background-color: #b29b62;
				padding: 15px;
				display: grid;
				grid-template-columns: repeat(3, 1fr);
				column-gap: 15px;
				@media (width < 840px) {
					grid-template-columns: repeat(1, 1fr);
					grid-template-rows: repeat(3, 1fr);
					column-gap: 0px;
					row-gap: 15px;
					border-radius: 0px 20px 20px 0px;
					display: grid;
				}
				@media (width < 600px) {
					column-gap: 0px;
					row-gap: 10px;
					padding: 10px;
				}
				> article {
					background-color: #fff;
					border-radius: 10px;
					padding-inline: 20px;
					display: grid;
					grid-template-rows: subgrid;
  					grid-row: span 3;
					row-gap: 30px;
					@media (width < 840px) {
						grid-template-rows: unset;
						grid-row: unset;
						row-gap: 20px;
						padding: 20px;
					}
					> figure {
						padding-top: 30px;
						text-align: center;
						align-self: end;
						@media (width < 840px) {
							padding-block: 10px;
							align-self: center;
						}
						> img {
							max-height: min(30%,200px);
							@media (width < 1000px) {
								max-height: unset;
								max-width: 100%;
							}
						}
					}
					> p {
						font-size: min(1.1rem, 5vw);
						line-height: 1.6;
						color: #333;
						font-weight: 600;
						letter-spacing: 0.1em;
						text-align: justify;
					}
					> div {
						align-self: end;
						margin-bottom: 30px;
						@media (width < 840px) {
							margin-bottom: unset;
							align-self: center;
						}
						> a {
							text-decoration: none;
							&:hover {
								opacity: 0.8;
							}
							> div {
								background: url(./image/move.svg)var(--color-accent);
								background-size: 10px;
								background-repeat: no-repeat;
								background-position: top 51% right 15px;
								border-radius: 30px;
								padding: 10px 30px 10px 30px;
								> p {
									text-align: center;
									font-size: min(1.1rem, 5vw);
									line-height: 1.2;
									color: #fff;
									font-weight: 800;
									letter-spacing: 2px;
								}
							}
						}
					}
					> h4 {
						margin-bottom: 30px;
						border-radius: 5px;
						background-color: var(--color-accent);
						padding: 10px;
						text-align: center;
						font-size: min(1.4rem, 6vw);
						line-height: 1.2;
						color: #fff;
						font-weight: 800;
						letter-spacing: 0.1rem;
						text-align: center;
						@media (width < 840px) {
							margin-bottom: unset;
							align-self: center;
							justify-self: center;
							padding: 10px 30px;
						}
					}
				}
			}
		}
	}
}
section.plan01 {
	padding: 100px 5% 0px 5%;
	background-color: #faf0c8;
	border-radius: 80px 80px 0px 0px;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.item {
			display: flex;
			justify-content: center;
			background-color: #fff;
			padding: 10px 30px;
			border-radius: 10px;
			> h2 {
				text-align: center;
				font-size: min(2.8rem, 8vw);
				line-height: 1.4;
				color: var(--color-accent);
				font-weight: 800;
				letter-spacing: 0.4rem;
				> small {
					font-size: min(2.4rem, 6vw);
				}
			}
		}
		> h3 {
			padding-block: 20px 10px;
			text-align: center;
			font-size: min(1.7rem, 8vw);
			line-height: 1.4;
			color: var(--color-accent);
			font-weight: 600;
			letter-spacing: 0.1rem;
		}
		> p {
			padding-top: 40px;
			max-width: 700px;
			margin-inline: auto;
			font-size: min(1.0rem, 5vw);
			line-height: 2.0;
			color: #333;
			font-weight: 600;
			letter-spacing: 0.1rem;
			text-align: justify;
		}
		> div.content {
			padding-top: 80px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			@media (width < 840px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> article {
				padding-inline: 30px;
				display: grid;
				grid-template-rows: subgrid;
				grid-row: span 3;
				&:nth-of-type(n + 2) {
					border-left: 1px solid #000;
					@media (width < 840px) {
						border-left: none;
						border-top: 1px solid #000;
					}
				}
				@media (width < 910px) {
					padding-inline: 20px;
				}
				@media (width < 840px) {
					padding: 60px 10px;
				}
				> figure {
					text-align: center;
					> img {
						max-width: 100%;
					}
				}
				> h4 {
					padding-block: 30px 20px;
					text-align: center;
					font-size: min(1.4rem, 7vw);
					line-height: 1.4;
					color: var(--color-accent);
					font-weight: 600;
					letter-spacing: 0.1rem;
				}
				> p {
					font-size: min(1.0rem, 5vw);
					line-height: 1.8;
					color: #333;
					font-weight: 600;
					text-align: justify;
				}
			}
		}
	}
}
section.plan02 {
	padding: 120px 5% 160px 5%;
	background-color: #faf0c8;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(2.0rem, 8vw);
			line-height: 1.4;
			color: var(--color-accent);
			font-weight: 800;
			letter-spacing: 0.2rem;
			text-align: center;
		}
		> div {
			margin-block: 20px;
			max-width: 800px;
			margin-inline: auto;
			display: grid;
			grid-template-columns: repeat(3, auto);
			column-gap: 20px;
			@media (width < 910px) {
				grid-template-columns: repeat(1, auto);
				justify-items: center;
				row-gap: 20px;
			}
			> article {
				min-width: 140px;
				border-radius: 10px;
				padding: 10px 20px;
				&:nth-of-type(1) {
					background-color: #00a0e9;
				}
				&:nth-of-type(2) {
					background-color: #f2bb4c;
				}
				&:nth-of-type(3) {
					background-color: #dc2850;
				}
				> h3 {
					font-size: min(1.8rem, 8vw);
					line-height: 1.4;
					color: #fff;
					font-weight: 800;
					letter-spacing: 0.2rem;
					text-align: center;
				}
			}
		}
		> p {
			font-size: min(1.3rem, 8vw);
			line-height: 1.4;
			color: var(--color-accent);
			font-weight: 700;
			letter-spacing: 0.1rem;
			text-align: center;
		}
	}
}
section.about {
	margin-top: -80px;
	background-color: #fff;
	padding: 100px 5% 100px 5%;
	border-radius: 80px 80px 0px 0px;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.item {
			> h2 {
				text-align: center;
				font-size: min(2.8rem, 8vw);
				line-height: 1.4;
				color: var(--color-accent);
				font-weight: 800;
				letter-spacing: 0.4rem;
			}
		}
		> h3 {
			padding-block: 20px 10px;
			text-align: center;
			font-size: min(1.5rem, 8vw);
			line-height: 1.4;
			color: var(--color-accent);
			font-weight: 600;
		}
		> div.plan {
			margin-top: 50px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			column-gap: 20px;
			@media (width < 930px) {
				grid-template-columns: repeat(1, 1fr);
				row-gap: 30px;
				justify-items: center;
			}
			> article {
				padding: 20px;
				border-radius: 20px;
				border: 2px solid #eaeaea;
				@media (width < 930px) {
					width: 100%;
					max-width: 600px;
				}
				&:nth-of-type(1) {
					> h4 {
						color: #00a0e9;
					}
					> div {
						&:nth-of-type(1) {
							background-color: #00a0e9;
						}
					}
				}
				&:nth-of-type(2) {
					> h4 {
						color: #f2bb4c;
					}
					> div {
						&:nth-of-type(1) {
							background-color: #f2bb4c;
						}
					}
				}
				&:nth-of-type(3) {
					> h4 {
						color: #dc2850;
					}
					> div {
						&:nth-of-type(1) {
							background-color: #dc2850;
						}
					}
				}
				> h4 {
					padding-top: 30px;
					text-align: center;
					font-size: min(2.4rem, 8vw);
					line-height: 1.0;
					font-weight: 600;
				}
				> h6 {
					text-align: center;
					font-size: min(1.3rem, 6vw);
					line-height: 1.8;
					font-weight: 500;
				}
				> div {
					> h5 {
						text-align: center;
						font-size: min(1.4rem, 6vw);
						line-height: 1.4;
						font-weight: 600;
						color: #fff;
					}
					> p {
						font-size: min(1.0rem, 5vw);
						line-height: 1.4;
						color: var(--color-accent);
						font-weight: 700;
						letter-spacing: 0.1rem;
					}
					&:nth-of-type(1) {
						margin-block: 20px 40px;
						border-radius: 20px;
						padding-block: 5px;
					}
					&:nth-of-type(2) {
						border-top: 1px solid var(--color-accent);
						padding-top: 10px;
						margin-top: 10px;
						margin-inline: 10px;
						@media (width < 990px) {
							margin-inline: 0px;
						}
						> p {
							text-indent: -0.8em;
							padding-left: 0.8em;
						}
					}
				}
				> p {
					font-size: min(1.1rem, 5.5vw);
					line-height: 1.4;
					color: var(--color-accent);
					font-weight: 700;
					letter-spacing: 0.1rem;
					text-align: center;
				}
			}
		}
		> div.content {
			margin-top: 50px;
			> article {
				background-color: #fffbe9;
				border-radius: 10px;
				display: grid;
				grid-template-columns: 150px 1fr 1fr 1fr;
				@media (width < 750px) {
					grid-template-columns: 1fr 1fr;
				}
				@media (width < 520px) {
					grid-template-columns: 1fr;
					max-width: 400px;
					margin-inline: auto;
				}
				> div {
					display: grid;
					grid-template-rows: auto 1fr;
					> h5 {
						grid-row: 1/3;
						align-self: center;
						text-align: center;
						font-size: min(1.6rem, 10vw);
						line-height: 1.4;
						font-weight: 600;
						color: var(--color-accent);
						@media (width < 520px) {
							padding-block: 20px;
						}
					}
					> div.color {
						align-self: start;
						height: 15px;
						width: 100%;
					}
					> p {
						align-self: start;
						font-size: min(1.0rem, 5.5vw);
						line-height: 1.4;
						color: #333;
						font-weight: 700;
						letter-spacing: 0.1rem;
						text-align: justify;
						padding: 30px 25px;
						@media (width < 890px) {
							padding: 20px 15px;
						}
						@media (width < 750px) {
							padding: 40px 30px;
						}
					}
					&:nth-of-type(2) {
						> div.color {
							background-color: #00a0e9;
						}
					}
					&:nth-of-type(3) {
						> div.color {
							background-color: #f2bb4c;
						}
					}
					&:nth-of-type(4) {
						> div.color {
							background-color: #dc2850;
						}
					}
					&:nth-of-type(n + 2) {
						@media (width < 520px) {
							display: grid;
							grid-template-columns: auto 1fr;
							> div.color {
								height: 100%;
								width: 15px;
							}
							> p {
								padding: 20px;
							}
						}
					}
				}
			}
		}
	}
}
section.example {
	background-color: #fff;
	padding: 0px 5% 100px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.item {
			> h2 {
				font-size: min(2.8rem, 8vw);
				line-height: 1.4;
				color: var(--color-accent);
				font-weight: 800;
				letter-spacing: 0.4rem;
			}
		}
		> p {
			padding-block: 20px 10px;
			text-align: justify;
			font-size: min(1.1rem, 7vw);
			line-height: 1.8;
			color: #333;
			font-weight: 600;
		}
		> article {
			margin-top: 40px;
			background-color: #f7f7f7;
			border-radius: 20px;
			padding: 30px;
			@media (width < 850px) {
				padding: 20px;
			}
			> div {
				max-width: 800px;
				margin-inline: auto;
				> div {
					display: grid;
					grid-template-columns: 90px 1fr;
					column-gap: 10px;
					align-items: center;
					@media (width < 850px) {
						grid-template-columns: 1fr;
						row-gap: 10px;
					}
					> figure {
						> img {
							max-width: 100%;
							@media (width < 850px) {
								width: 70px;
							}
						}
					}
					> h3 {
						font-size: min(1.6rem, 5vw);
						line-height: 1.5;
						color: var(--color-accent);
						font-weight: 600;
						letter-spacing: 0.2rem;
					}
				}
				> figure {
					margin-block: 40px;
					> img {
						max-width: 100%;
					}
				}
				> p {
					font-size: min(1.1rem, 5.0vw);
					line-height: 1.4;
					color: var(--color-accent);
					font-weight: 700;
					letter-spacing: 0.1rem;
					text-align: center;
					@media (width < 850px) {
						text-align: justify;
					}
				}
			}
		}
	}
}
section.support {
	padding: 100px 5% 140px 5%;
	background-color: #faf0c8;
	border-radius: 80px 80px 0px 0px;
	> div {
		max-width: 700px;
		margin-inline: auto;
		> h2 {
			font-size: min(2.8rem, 9vw);
			line-height: 1.4;
			color: #333;
			font-weight: 700;
			letter-spacing: 0.4rem;
			> span {
				&:nth-of-type(1) {
					color: var(--color-accent);
				}
			}
		}
		> div.check {
			display: grid;
			justify-content: center;
			margin-top: 40px;
			padding-top: 40px;
			> div {
				padding-bottom: 40px;
				display: grid;
				grid-template-columns: 35px 1fr;
				column-gap: 30px;
				align-items: start;
				@media (width < 470px) {
					grid-template-columns: 25px 1fr;
					column-gap: 5px;
				}
				> img {
					margin-top: 4px;
					max-width: 100%;
					@media (width < 470px) {
						margin-top: 1vw;
					}
				}
				> p {
					font-size: min(1.6rem, 5vw);
					line-height: 1.6;
					color: #333;
					font-weight: 600;
					letter-spacing: 0.2rem;
					@media (width < 470px) {
						letter-spacing: 0.1rem;
					}
					> small {
						font-size: min(1.2rem, 4.5vw);
						line-height: 1.4;
					}
				}
			}
		}
	}
}
section.bottom {
	margin-top: -80px;
	padding: 100px 5% 100px 5%;
	background-color: #fff;
	border-radius: 80px 80px 0px 0px;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.content {
			display: grid;
			grid-template-columns: 2fr 1fr;
			column-gap: 30px;
			@media (width < 760px) {
				grid-template-columns: 1fr;
				row-gap: 30px;
			}
			> article {
				> h3 {
					font-size: min(2.0rem, 6.5vw);
					line-height: 1.6;
					color: var(--color-accent);
					font-weight: 800;
					letter-spacing: 0.2rem;
					@media (width < 450px) {
						letter-spacing: 0.1rem;
					}
				}
				> p {
					margin-top: 40px;
					font-size: min(1.1rem, 5.5vw);
					line-height: 2.0;
					color: #333;
					font-weight: 600;
					letter-spacing: 0.05rem;
					text-align: justify;
				}
			}
			> figure {
				align-self: end;
				text-align: center;
				> img {
					max-width: 100%;
				}
			}
		}
		> div.link {
			margin-top: 60px;
			display: flex;
			justify-content: center;
			> a {
				text-decoration: none;
				&:hover {
					opacity: 0.8;
				}
				> div {
					background: url(./image/arrow_fff.svg)var(--color-accent);
					background-size: 16px;
					background-repeat: no-repeat;
					background-position: top 51% right 40px;
					border-radius: 10px;
					padding: 5px 70px 5px 30px;
					> p {
						font-size: min(1.0rem, 5vw);
						line-height: 2.0;
						color: #fff;
						font-weight: 500;
						letter-spacing: 3px;
					}
				}
			}
		}
	}
}
