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.0vw);
		line-height: 1.3;
		color: #111;
		font-weight: 600;
		white-space: nowrap;
		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.title {
	padding: 60px 5% 0px 5%;
	> div {
		> h2 {
			text-align: center;
			font-size: min(2.2rem, 6.0vw);
			line-height: 1.0;
			color: var(--color-accent);
			font-weight: 600;
		}
		> div.line {
			margin-top: 25px;
			margin-inline: auto;
			width: min(50px,5vw);
			height: 4px;
			background-color: var(--color-accent);
		}
	}
}
section.mailform {
	padding: 50px 2% 100px 2%;
	> div {
		max-width: 900px;
		margin-inline: auto;
		> form {}
		> #submitResult {
			background-color: var(--color-accent);
			font-size: 1rem;
			line-height: 1.6;
			color: #fff;
			padding: 10px 20px;
			border-radius: 3px;
			&:empty {
				display: none;
			}
		}
	}
}
