section.panel {
	background: url(./image/panel01_bg_dot.svg),linear-gradient(to bottom,#eaf3f9 calc(100% - 100px), #fff 100%);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 100% 100%;
	> div.top {
		max-width: 3840px;
		margin-inline: auto;
		> div {
			padding-top: min(100px, 12vw);
			max-width: 1350px;
			margin-inline: auto;
			> figure {
				display: flex;
				justify-content: center;
				> img {
					max-width: 100%;
					width: 75%;
					@media (width < 1000px) {
						width: 90%;
					}
				}
			}
		}
	}
}
section.content {
	padding: 0px 5% 250px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			text-align: center;
			font-size: min(2.8rem, 7.0vw);
			line-height: 1.0;
			color: var(--color-accent);
			font-weight: 600;
		}
		> div {
			margin-top: 40px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			column-gap: 20px;
			row-gap: 20px;
			@media (width < 800px) {
				grid-template-columns: repeat(2, 1fr);
			}
			@media (width < 500px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> a {
				text-decoration: none;
				&:hover {
					opacity: 0.8;
				}
				> article {
					display: grid;
					> figure {
						grid-area: 1/1/2/2;
						> img {
							border-radius: 10px;
							max-width: 100%;
						}
					}
					> p {
						padding-inline: 10px;
						user-select: none;
						grid-area: 1/1/2/2;
						align-self: center;
						text-align: center;
						font-size: min(1.6rem, 6vw);
						line-height: 1.3;
						font-weight: 600;
						color: #fff;
					}
				}
			}
		}
	}
}
section.concrete {
	background-color: #ecefef;
	padding: 80px 5% 50px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(2.8rem, 9.0vw);
			line-height: 1.2;
			color: var(--color-accent);
			font-weight: 600;
		}
		> h3 {
			margin-top: 10px;
			font-size: min(1.3rem, 6.0vw);
			line-height: 1.4;
			color: #222;
			font-weight: 500;
			text-align: justify;
			padding-bottom: 30px;
			border-bottom: 1px solid #999;
			margin-bottom: 20px;
		}
		> p {
			font-size: min(1.0rem, 5.0vw);
			line-height: 1.6;
			font-weight: 500;
			color: #222;
			&:nth-of-type(1) {
				font-size: min(1.1rem, 5.5vw);
				color: var(--color-accent);
			}
		}
		> figure {
			padding-top: 50px;
			> img {
				border-radius: 10px;
				max-width: 100%;
			}
		}
		> div.block {
			padding-block: 20px 60px;
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			row-gap: 20px;
			column-gap: 20px;
			@media (width < 550px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> figure {
				> img {
					border-radius: 10px;
					max-width: 100%;
				}
			}
		}
		> div.link {
			text-align: center;
			> a {
				display: inline-block;
				text-decoration: none;
				background-color: var(--color-accent);
				border-radius: 10px;
				padding: 20px 15px;
				font-size: 1.8rem;
				line-height: 1.3;
				color: #fff;
				&:hover {
					opacity: 0.8;
				}
			}
		}
	}
}
section.gravel {
	padding: 80px 5% 80px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(2.8rem, 9.0vw);
			line-height: 1.4;
			color: var(--color-accent);
			font-weight: 600;
		}
		> h3 {
			margin-top: 10px;
			font-size: min(1.3rem, 6.0vw);
			line-height: 1.4;
			color: #222;
			font-weight: 500;
			text-align: justify;
		}
		> figure {
			padding-top: 50px;
			> img {
				border-radius: 10px;
				max-width: 100%;
			}
		}
		> div.block {
			padding-block: 20px 60px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			row-gap: 20px;
			column-gap: 20px;
			@media (width < 650px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> figure {
				> img {
					border-radius: 10px;
					max-width: 100%;
				}
			}
		}
		> div.equipment {
			padding-top: 50px;
			border-top: solid 1px #aaa;
			> h3 {
				font-size: min(1.3rem, 6.0vw);
				line-height: 1.3;
				color: var(--color-accent);
				font-weight: 500;
			}
			> p {
				margin-top: 5px;
				font-size: min(1rem, 5.0vw);
				line-height: 1.3;
				color: #222;
			}
			> div {
				padding-block: 20px 60px;
				display: grid;
				grid-template-columns: repeat(3, 1fr);
				row-gap: 20px;
				column-gap: 20px;
				@media (width < 650px) {
					grid-template-columns: repeat(1, 1fr);
				}
				> figure {
					> img {
						border-radius: 10px;
						max-width: 100%;
					}
				}
			}
		}
	}
}
section.realestate01 {
	background-color: #ecefef;
	padding: 80px 5% 80px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(2.8rem, 9.0vw);
			line-height: 1.2;
			color: var(--color-accent);
			font-weight: 600;
		}
		> h3 {
			margin-top: 10px;
			font-size: min(1.3rem, 6.0vw);
			line-height: 1.4;
			color: #222;
			font-weight: 500;
			text-align: justify;
		}
		> figure {
			padding-top: 50px;
			> img {
				border-radius: 10px;
				max-width: 100%;
			}
		}
		> div.block {
			padding-top: 20px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			row-gap: 20px;
			column-gap: 20px;
			@media (width < 650px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> figure {
				> img {
					border-radius: 10px;
					max-width: 100%;
				}
			}
		}
		> div.logo {
			margin-top: 30px;
			margin-left: min(50px,3vw);
			> a {
				text-decoration: none;
				&:hover {
					opacity: 0.7;
				}
				@media (width < 1000px) {
					max-width: 150px;
				}
				> img {
					max-width: 100%;
				}
			}
		}
		> div.blueitem {
			margin-top: 30px;
			display: flex;
			column-gap: 20px;
			row-gap: 20px;
			flex-wrap: wrap;
			justify-content: center;
			> article {
				max-width: 320px;
				display: grid;
				@media (width < 1130px) {
					width: calc((100% - 40px) / 3);
				}
				@media (width < 700px) {
					width: 45%;
				}
				@media (width < 500px) {
					width: 100%;
					max-width: unset;
				}
				> figure {
					grid-area: 1/1/2/2;
					> img {
						border-radius: 10px;
						max-width: 100%;
					}
				}
				> p {
					padding-inline: 10px;
					user-select: none;
					grid-area: 1/1/2/2;
					align-self: center;
					text-align: center;
					font-size: min(1.6rem, 6vw);
					line-height: 1.3;
					font-weight: 600;
					color: #fff;
				}
			}
		}
	}
}
section.realestate02 {
	padding: 80px 5% 80px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(2.8rem, 9.0vw);
			line-height: 1.2;
			color: var(--color-accent);
			font-weight: 600;
		}
		> h3 {
			margin-top: 10px;
			font-size: min(1.3rem, 6.0vw);
			line-height: 1.4;
			color: #222;
			font-weight: 500;
			text-align: justify;
		}
		> figure {
			padding-top: 50px;
			> img {
				border-radius: 10px;
				max-width: 100%;
			}
		}
		> div.block {
			padding-block: 20px 60px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			row-gap: 20px;
			column-gap: 20px;
			@media (width < 650px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> figure {
				> img {
					border-radius: 10px;
					max-width: 100%;
				}
			}
		}
	}
}
section.interior {
	background-color: #ecefef;
	padding: 80px 5% 80px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(2.8rem, 9.0vw);
			line-height: 1.4;
			color: var(--color-accent);
			font-weight: 600;
		}
		> div.dealer {
			padding-block: 10px;
			display: flex;
			flex-wrap: wrap;
			column-gap: 30px;
			row-gap: 20px;
			align-items: center;
			> figure {
				display: flex;
				align-items: center;
				column-gap: 10px;
				> img {
					max-width: 100%;
					max-height: 50px;
				}
				> figcaption {
					font-size: 2.2rem;
					line-height: 1.0;
					color: #e03;
					font-weight: 600;
				}
			}
		}
		> h3 {
			margin-top: 10px;
			font-size: min(1.3rem, 6.0vw);
			line-height: 1.4;
			color: #222;
			font-weight: 500;
			text-align: justify;
		}
		> figure {
			padding-top: 50px;
			> img {
				border-radius: 10px;
				max-width: 100%;
			}
		}
		> div.block {
			padding-block: 20px 60px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			row-gap: 20px;
			column-gap: 20px;
			@media (width < 650px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> figure {
				> img {
					border-radius: 10px;
					max-width: 100%;
				}
			}
		}
		> div.beforeafter {
			background-color: #fff;
			border: 3px solid var(--color-accent);
			border-radius: 8px;
			padding: 20px;
			display: grid;
			grid-template-columns: 1fr 36px 1fr;
			column-gap: 10px;
			@media (width < 800px) {
				grid-template-columns: 1fr;
				grid-template-rows: auto 100px auto;
			}
			> article {
				> figure {
					text-align: center;
					> img {
						max-width: 100%;
					}
					&:nth-of-type(1) {
						padding-bottom: 10px;
					}
					&:nth-of-type(2) {
						> img {
							border-radius: 10px;
						}
					}
				}
				> div {
					padding-top: 10px;
					display: grid;
					grid-template-columns: 1fr 1fr;
					column-gap: 10px;
					@media (width < 540px) {
						grid-template-columns: 1fr;
						row-gap: 10px;
					}
					> figure {
						> img {
							border-radius: 10px;
							max-width: 100%;
						}
					}
				}
			}
			> figure {
				margin-top: 40px;
				align-self: center;
				@media (width < 800px) {
					margin-top: 0px;
					justify-self: center;
				}
				> img {
					max-width: 100%;
					@media (width < 800px) {
						transform: rotate(90deg);
					}
					@media (width < 400px) {
						width: 40px;
					}
				}
			}
		}
		> div.link {
			padding-top: 40px;
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			column-gap: 10px;
			text-align: center;
			@media (width < 800px) {
				grid-template-columns: repeat(1, 1fr);
				row-gap: 20px;
			}
			> a {
				display: block;
				text-decoration: none;
				&:hover {
					opacity: 0.8;
				}
				> article {
					background-color: var(--color-accent);
					border-radius: 10px;
					max-width: 390px;
					margin-inline: auto;
					@media (width < 800px) {
						justify-self: center;
						width: 100%;
					}
					&:nth-of-type(1) {
						width: 100%;
						justify-self: end;
						@media (width < 800px) {
							justify-self: center;
						}
					}
					> figure {
						display: flex;
						align-items: center;
						justify-content: center;
						min-height: 90px;
						padding: 5px 10px;
						@media (width < 800px) {
							padding: 10px;
						}
						> img {
							max-width: 100%;
						}
					}
				}
			}
		}
	}
}
section.creation {
	padding: 80px 5% 80px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(2.8rem, 9.0vw);
			line-height: 1.4;
			color: var(--color-accent);
			font-weight: 600;
		}
		> h3 {
			margin-top: 10px;
			font-size: min(1.3rem, 6.0vw);
			line-height: 1.4;
			color: #222;
			font-weight: 500;
			text-align: justify;
		}
		> figure {
			padding-top: 50px;
			> img {
				border-radius: 10px;
				max-width: 100%;
			}
		}
		> div.block {
			padding-block: 20px 60px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			row-gap: 20px;
			column-gap: 20px;
			@media (width < 650px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> figure {
				> img {
					border-radius: 10px;
					max-width: 100%;
				}
			}
		}
	}
}
section.business {
	background-color: #ecefef;
	padding: 80px 5% 40px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.sasagase {
			display: flex;
			align-items: end;
			column-gap: 20px;
			@media (width < 790px) {
				flex-flow: column;
				align-items: start;
				row-gap: 5px;
			}
			> h2 {
				font-size: min(2.8rem, 9.0vw);
				line-height: 1.4;
				color: var(--color-accent);
				font-weight: 600;
			}
			> div {
				display: flex;
				align-items: center;
				column-gap: 10px;
				> img {
				}
				> div {
					font-size: min(1.8rem, 6.0vw);
					line-height: 1.4;
					color: #1baae4;
					font-weight: 600;
				}
			}
		}
		> h3 {
			margin-top: 10px;
			font-size: min(1.5rem, 6.0vw);
			line-height: 1.3;
			color: #222;
			font-weight: 500;
			text-align: justify;
		}
		> figure {
			padding-top: 20px;
			> img {
				border-radius: 10px;
				max-width: 100%;
			}
			&:nth-of-type(2) {
				padding-top: 30px;
				text-align: center;
				padding-bottom: 5px;
				> img {
					border-radius: 0px;
				}
			}
		}
		> div.block {
			padding-block: 20px 60px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			row-gap: 20px;
			column-gap: 20px;
			@media (width < 650px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> figure {
				> img {
					border-radius: 10px;
					max-width: 100%;
				}
			}
		}
		> h4 {
			display: flex;
			justify-content: center;
			align-items: center;
			column-gap: 10px;
			> img {
			}
			> div {
				font-size: min(2.0rem,6vw);
				line-height: 1.3;
				color: var(--color-accent);
				font-weight: 600;
			}
		}
		> div.link {
			margin-top: 5px;
			border-radius: 50px;
			padding: 20px;
			border: 3px solid #0e357f;
			display: grid;
			grid-template-columns: repeat(3, auto);
			column-gap: 10px;
			justify-self: center;
			align-content: center;
			text-align: center;
			@media (width < 450px) {
				grid-template-columns: repeat(1, 1fr);
				row-gap: 10px;
				padding: 20px 40px;
			}
			> a {
				text-decoration: none;
				&:hover {
					opacity: 0.8;
				}
				> figure {
					> img {
						max-width: 100%;
					}
				}
			}
		}
	}
}
