section.panel {
	background-color: #eef0f4;
	position: relative;
	> figure {
		max-width: 3840px;
		margin-inline: auto;
		> img {
			max-width: 100%;
			max-height: calc(100vh - 135px);
			width: 100%;
			object-fit: cover;
			object-position: 0 0;
		}
	}
	> div {
		width: 100%;
		position: absolute;
		bottom: 0;
		text-align: center;
		font-size: min(15rem,11vw);
		line-height: 0.8;
		color: rgba(255,255,255,0.5);
		font-weight: 700;
		font-family: var(--font-title);
		animation-name: panelTextMove;
		animation-duration: 1s;
		animation-fill-mode: forwards;
		animation-timing-function: ease-out;
	}
}
@keyframes panelTextMove {
	0% {
		bottom: 50px;
		opacity: 0;
	}
	100% {
		bottom: 0px;
		opacity: 1;
	}
}
section.title {
	padding: 60px 5% 0 5%;
	> div {
		max-width: 1920px;
		margin-inline: auto;
		> h1 {
			font-size: 2.4rem;
			line-height: 1.3;
			color: var(--color-accent);
			text-align: center;
			font-weight: 600;
		}
	}
}
section.text {
	padding: 60px 5% 0 5%;
	> div {
		max-width: 900px;
		margin-inline: auto;
		> div {
			font-size: min(1.4rem,5vw);
			line-height: 1.5;
			color: var(--color-accent);
			text-align: center;
			border-top: solid 1px var(--color-accent);
			border-bottom: solid 1px var(--color-accent);
			padding-block: 20px;
			margin-bottom: 20px;
		}
		> p {
			margin-top: 10px;
			font-size: 1rem;
			line-height: 1.5;
			color: #222;
			padding-left: 0.5em;
			text-indent: -0.5em;
		}
	}
}
section.nav {
	padding: 80px 5% 100px 5%;
	> div {
		max-width: 900px;
		margin-inline: auto;
		display: grid;
		grid-template-columns: repeat(2,1fr);
		column-gap: 15px;
		row-gap: 15px;
		@media (width < 860px) {
			grid-template-columns: repeat(1,1fr);
		}
		> div {
			> a {
				display: block;
				text-decoration: none;
				padding: 20px 50px 20px 20px;
				border: solid 3px #bbb;
				border-radius: 5px;
				font-size: min(1.3rem,5vw);
				line-height: 1.3;
				color: #222;
				font-weight: 500;
				background-image: url(./image/chevron_149.svg);
				background-repeat: no-repeat;
				background-position: right 15px top 50%;
				&:hover {
					background-color: var(--color-accent);
					border-color: var(--color-accent);
					color: #fff;
					background-image: url(./image/chevron_fff.svg);
				}
			}
		}
	}
}
