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: 50%;
		font-size: min(2.6rem, 6.5vw);
		line-height: 1.3;
		color: #111;
		font-weight: 600;
		transform: translate(-50%, -50%);
		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 {
	padding: 100px 5% 80px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		display: grid;
		> h2 {
			padding-inline: 5px;
			display: inline-block;
			justify-self: center;
			text-align: center;
			font-size: min(2.2rem, 6vw);
			line-height: 1.4;
			color: #000;
			font-weight: 600;
			&:nth-of-type(1) {
				border-bottom: 4px solid #004f9d;
				@media (width < 720px) {
					border-bottom: none;
					> span {
						padding-inline: 10px;
						border-bottom: 4px solid #004f9d;
						line-height: 1.8;
					}
				}
			}
			&:nth-of-type(2) {
				line-height: 1.8;
			}
		}
		> p {
			padding-block: 40px;
			text-align: center;
			font-size: min(1.1rem, 5.0vw);
			line-height: 1.6;
			color: #111;
			letter-spacing: 1px;
			font-weight: 600;
			@media (width < 730px) {
				text-align: justify;
				> br {
					display: none;
				}
			}
		}
		> article {
			max-width: 800px;
			margin-inline: auto;
			display: grid;
			grid-template-columns: repeat(5, 1fr);
			column-gap: 30px;
			@media (width < 650px) {
				column-gap: 10px;
				row-gap: 10px;
			}
			@media (width < 550px) {
				grid-template-columns: repeat(2, 1fr);
				column-gap: 20px;
				row-gap: 20px;
			}
			&:nth-of-type(1) {
				@media (width < 600px) {
					display: none;
				}
			}
			&:nth-of-type(2) {
				> figure {
					&:nth-of-type(1),&:nth-of-type(2),&:nth-of-type(3),&:nth-of-type(4),&:nth-of-type(5) {
						display: none;
						@media (width < 600px) {
							display: block;
						}
					}
				}
			}
			> figure {
				justify-self: center;
				> img {
					max-width: 100%;
				}
			}
		}
		> div.plan {
			padding-block: 40px;
			> figure {
				text-align: center;
				> img {
					max-width: 100%;
				}
			}
			> p {
				text-align: center;
				font-size: min(1.3rem, 5.5vw);
				line-height: 1.2;
				color: #171c61;
				letter-spacing: 3px;
				font-weight: 600;
			}
		}
		> div.guarantee {
			margin-top: 80px;
			max-width: 770px;
			margin-inline: auto;
			display: flex;
			justify-content: center;
			> p {
				padding: 15px 35px;
				border: 1px dotted #004f9d;
				text-align: center;
				font-size: min(1.1rem, 5.0vw);
				line-height: 1.6;
				color: #111;
				letter-spacing: 1px;
				@media (width < 580px) {
					padding: 15px;
				}
			}
		}
	}
}
section.support {
	background-color: #dcebf5;
	padding: 80px 5% 80px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.title {
			background-color: #fff;
			padding: 40px 10px;
			@media (width < 400px) {
				padding: 40px 10px;
			}
			> p {
				text-align: center;
				font-size: min(1.2rem, 4.5vw);
				line-height: 1.6;
				color: #171c61;
				letter-spacing: 3px;
				font-weight: 600;
				padding-bottom: 5px;
				@media (width < 400px) {
					padding-bottom: 15px;
					letter-spacing: 2px;
				}
			}
			> h2 {
				text-align: center;
				font-size: min(2.0rem, 6vw);
				line-height: 1.6;
				color: #000;
				font-weight: 600;
				> span {
					> b {
						border-bottom: 4px solid #004f9d;
					}
				}
				@media (width < 400px) {
					line-height: 1.8;
				}
			}
		}
		> div.block_pc {
			padding-top: 50px;
			display: grid;
			@media (width < 600px) {
				display: none;
			}
			> figure {
				grid-area: 1/1/2/2;
				> img {
					max-width: 100%;
				}
			}
			> p {
				padding-top: 10px;
				grid-area: 1/1/2/2;
				align-self: center;
				justify-self: center;
				text-align: center;
				font-size: 1.6rem;
				line-height: 1.5;
				color: #111;
				letter-spacing: 1px;
				font-weight: 600;
				@media (width < 1200px) {
					font-size: 2.3vw;
				}
			}
		}
		> div.block_sp {
			padding-top: 50px;
			display: none;
			@media (width < 600px) {
				display: block;
			}
			> p {
				text-align: center;
				font-size: min(1.4rem, 5vw);
				line-height: 1.5;
				color: #111;
				letter-spacing: 1px;
				font-weight: 600;
			}
			> article {
				margin-top: 20px;
				min-height: 120px;
				background-color: #006ab4;
				border-radius: 10px;
				display: grid;
				grid-template-columns: 1fr 3fr;
				column-gap: 30px;
				padding-inline: 20px;
				@media (width < 600px) {
					column-gap: 15px;
				}
				> figure {
					align-self: center;
					justify-self: end;
					> img {
						width: 60px;
					}
				}
				> p {
					align-self: center;
					justify-self: center;
					text-align: center;
					font-size: min(1.4rem, 5vw);
					line-height: 1.5;
					color: #fff;
					letter-spacing: 1px;
					font-weight: 600;
				}
			}
		}
	}
}
section.backup {
	margin-bottom: -5%;
	padding: 0px 5% 0px 5%;
	background: radial-gradient(circle closest-corner, #eaf3f9 70%, #fff 70%);
	@media (width < 1020px) {
		margin-bottom: -60px;
	}
	> div {
		padding-block: 80px 140px;
		max-width: 1100px;
		margin-inline: auto;
		display: grid;
		> div.content {
			max-width: 1000px;
			margin-inline: auto;
			margin-top: 5%;
			grid-area: 1/1/2/2;
			> h3 {
				text-align: center;
				font-size: min(1.5rem, 5.5vw);
				line-height: 1.6;
				color: #000;
				font-weight: 600;
			}
			> p {
				padding-top: 10px;
				text-align: center;
				font-size: min(1.0rem, 5.0vw);
				line-height: 2.0;
				color: #111;
				font-weight: 600;
			}
			> figure {
				position: relative;
				margin-top: 5%;
				align-self: center;
				text-align: center;
				> img {
					max-width: 100%;
				}
				> div {
					position: absolute;
					top: 52%;
					left: 50%;
					font-size: min(1.8rem, 4.5vw);
					line-height: 1.3;
					color: #fff;
					text-shadow: #004f9d 0 0 10px;
					font-weight: 600;
					transform: translate(-50%, -52%);
				}
			}
		}
	}
}
