section.panel {
	position: relative;
	> picture {
		max-width: 3840px;
		margin-inline: auto;
		> img {
			max-width: 100%;
			max-height: 100vh;
			width: 100%;
			object-fit: cover;
			object-position: 0 50%;
		}
	}
	> div {
		position: absolute;
		top: 50%;
		left: 5%;
		font-size: min(5.0rem, 8vw);
		line-height: 1.3;
		color: #fff;
		font-weight: 600;
		text-shadow: 0 0 10px rgba(0,0,0,0.2);
		transform: translate(0%, -50%);
		> small {
			font-size: min(4.0rem, 5.5vw);
		}
		animation-name: panelTextMove;
		animation-duration: 1s;
		animation-fill-mode: forwards;
		animation-timing-function: ease-out;
	}
}
@keyframes panelTextMove {
	0% {
		margin-left: 50px;
		opacity: 0;
	}
	100% {
		margin-left: 0px;
		opacity: 1;
	}
}
section.top {
	margin-top: -1px;
	margin-bottom: -100px;
	padding: 90px 5% 200px 5%;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 100px));
	background: url(./image/top_bg.webp) 50% / cover;
	@media (width < 600px) {
		margin-bottom: -50px;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px));
	}
	> div {
		> h2 {
			text-align: center;
			font-size: min(2.2rem, 6.0vw);
			line-height: 1.0;
			color: #fff;
			font-weight: 600;
		}
		> div.line {
			margin-top: 25px;
			margin-inline: auto;
			width: min(50px,5vw);
			height: 4px;
			background-color: #fff;
		}
		> figure {
			margin-top: 80px;
			max-width: 900px;
			margin-inline: auto;
			@media (width < 500px) {
				margin-top: 20px;
			}
			> img {
				max-width: 100%;
			}
		}
	}
}
section.item01 {
	margin-block: -100px;
	padding: 140px 5% 140px 5%;
	clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
	background-color: rgba(226, 226, 226, 0.8);
	@media (width < 600px) {
		margin-block: -50px;
		clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
	}
	> div {
		padding-top: 20px;
		background-image: url(./image/number01.svg);
		background-repeat: no-repeat;
		background-size: 80px;
		background-position: 5% 0%;
		max-width: 1000px;
		margin-inline: auto;
		@media (width < 600px) {
			padding-top: 40px;
		}
		> div {
			> h3 {
				text-align: center;
				font-size: min(2rem, 6.0vw);
				line-height: 1.3;
				color: var(--color-accent);
				font-weight: 600;
				letter-spacing: 1px;
				> span.number {
					font-size: min(2.8rem, 6.5vw);
				}
				> span.unit {
					font-size: min(1.8rem, 6.0vw);
				}
			}
			> h2 {
				text-align: center;
				font-size: min(2.8rem, 6.5vw);
				line-height: 1.5;
				color: var(--color-accent);
				font-weight: 600;
			}
			> div.line {
				margin-top: 10px;
				margin-inline: auto;
				width: min(50px,5vw);
				height: 4px;
				background-color: var(--color-accent);
			}
			> p {
				margin-top: 5px;
				text-align: center;
				font-size: min(0.8rem, 4.5vw);
				line-height: 1.8;
				color: #111;
			}
		}
		> figure {
			padding-top: 40px;
			max-width: 900px;
			margin-inline: auto;
			> img {
				max-width: 100%;
			}
		}
	}
}
section.item02 {
	position: relative;
	z-index: 0;
	mix-blend-mode: multiply;
	margin-block: -100px;
	padding: 140px 5% 140px 5%;
	clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 calc(100% - 100px));
	background-color: rgba(201, 220, 240, 0.8);
	@media (width < 600px) {
		margin-block: -50px;
		clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 calc(100% - 50px));
	}
	> div {
		padding-top: 10px;
		background-image: url(./image/number02.svg);
		background-repeat: no-repeat;
		background-size: 80px;
		background-position: 5% 0%;
		max-width: 1000px;
		margin-inline: auto;
		@media (width < 600px) {
			padding-top: 40px;
		}
		> div.top {
			> h2 {
				text-align: center;
				font-size: min(2.4rem, 6.5vw);
				line-height: 1.5;
				color: var(--color-accent);
				font-weight: 600;
				> small {
					font-size: min(1.7rem, 6.0vw);
				}
				> span.number {
					font-size: min(3.0rem, 6.5vw);
				}
			}
			> div.line {
				margin-top: 10px;
				margin-inline: auto;
				width: min(50px,5vw);
				height: 4px;
				background-color: var(--color-accent);
			}
			> p {
				padding-top: 30px;
				text-align: center;
				font-size: min(1.8rem, 5.0vw);
				line-height: 1.6;
				color: #111;
				font-weight: 600;
			}
		}
		> div.block {
			padding-top: 40px;
			max-width: 900px;
			margin-inline: auto;
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			column-gap: 60px;
			row-gap: 60px;
			@media (width < 680px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> article {
				> figure {
					text-align: center;
					> img {
						max-width: 100%;
					}
				}
				> h4 {
					margin-top: 5px;
					display: inline-block;
					font-size: min(1.0rem, 4.5vw);
					line-height: 1.6;
					color: var(--color-accent);
					border-bottom: 3px solid var(--color-accent);
					font-weight: 600;
				}
				> p {
					margin-top: 5px;
					font-size: min(1.5rem, 5vw);
					line-height: 1.8;
					color: var(--color-accent);
					font-weight: 600;
				}
			}
		}
	}
}
section.item03 {
	mix-blend-mode: multiply;
	position: relative;
	z-index: 1;
	margin-block: -100px;
	padding: 140px 5% 140px 5%;
	clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
	background-color: rgba(226, 226, 226, 0.8);
	@media (width < 600px) {
		margin-block: -50px;
		clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
	}
	> div {
		padding-top: 20px;
		background-image: url(./image/number03.svg);
		background-repeat: no-repeat;
		background-size: 80px;
		background-position: 5% 0%;
		max-width: 1000px;
		margin-inline: auto;
		@media (width < 600px) {
			padding-top: 40px;
		}
		> div.top {
			> h3 {
				text-align: center;
				font-size: min(1.8rem, 6.0vw);
				line-height: 1.0;
				color: var(--color-accent);
				font-weight: 600;
				letter-spacing: 1px;
			}
			> h2 {
				text-align: center;
				font-size: min(2.0rem, 6.5vw);
				line-height: 1.4;
				color: var(--color-accent);
				font-weight: 600;
				> span.number {
					font-size: min(3.2rem, 7vw);
				}
				> small {
					font-size: min(1.0rem, 4.5vw);
					padding-left: 3px;
				}
			}
			> div.line {
				margin-top: 15px;
				margin-inline: auto;
				width: min(50px,5vw);
				height: 4px;
				background-color: var(--color-accent);
			}
		}
		> div.block {
			padding-top: 50px;
			max-width: 900px;
			margin-inline: auto;
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			column-gap: 60px;
			row-gap: 60px;
			@media (width < 680px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> article {
				> figure {
					text-align: center;
					> img {
						max-width: 100%;
					}
				}
				> h3 {
					background-color: var(--color-accent);
					padding: 10px;
					text-align: center;
					font-size: min(1.4rem, 6.0vw);
					line-height: 1.0;
					color: #fff;
					font-weight: 600;
					letter-spacing: 1px;
				}
				> h2 {
					text-align: center;
					font-size: min(2.0rem, 6.5vw);
					line-height: 1.4;
					color: var(--color-accent);
					font-weight: 600;
					> span.number {
						font-size: min(4.5rem, 12vw);
					}
				}
				> p {
					margin-top: 5px;
					text-align: center;
					font-size: min(0.9rem, 4.5vw);
					line-height: 1.0;
					color: var(--color-accent);
					font-weight: 600;
				}
			}
		}
	}
}
section.item04 {
	position: relative;
	z-index: 0;
	mix-blend-mode: multiply;
	margin-top: -100px;
	padding: 140px 5% 140px 5%;
	clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
	background-color: rgba(201, 220, 240, 0.8);
	@media (width < 600px) {
		margin-top: -50px;
		clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 100%);
	}
	> div {
		padding-top: 10px;
		background-image: url(./image/number04.svg);
		background-repeat: no-repeat;
		background-size: 80px;
		background-position: 5% 0%;
		max-width: 1000px;
		margin-inline: auto;
		@media (width < 600px) {
			padding-top: 40px;
		}
		> div.top {
			> h2 {
				text-align: center;
				font-size: min(2.5rem, 6.5vw);
				line-height: 1.6;
				color: var(--color-accent);
				font-weight: 600;
			}
			> div.line {
				margin-top: 15px;
				margin-inline: auto;
				width: min(50px,5vw);
				height: 4px;
				background-color: var(--color-accent);
			}
			> p {
				padding-top: 30px;
				text-align: center;
				font-size: min(1.3rem, 5.0vw);
				line-height: 1.6;
				color: #111;
				font-weight: 600;
			}
		}
		> div.block {
			padding-top: 60px;
			max-width: 900px;
			margin-inline: auto;
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			column-gap: 60px;
			row-gap: 60px;
			@media (width < 680px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> figure {
				text-align: center;
				> img {
					max-width: 100%;
				}
			}
			> div {
				> h3 {
					font-size: min(1.6rem, 6vw);
					line-height: 1.6;
					color: var(--color-accent);
					font-weight: 600;
				}
				> p {
					margin-top: 5px;
					font-size: min(1.0rem, 5.0vw);
					line-height: 1.6;
					color: #111;
					font-weight: 600;
					text-align: justify;
					> span {
						color: #d00;
					}
				}
			}
		}
	}
}
