section.title {
	padding: 60px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h1 {
			font-size: 2.0rem;
			line-height: 1.5;
			color: #333;
			text-align: center;
			font-weight: 600;
		}
		> p {
			padding-top: 30px;
			font-size: 1.1rem;
			line-height: 1.8;
			color: #333;
			text-align: justify;
			@media (width < 630px) {
				font-size: min(0.9rem,5vw);
			}
			> a {
				color: #c00;
			}
		}
	}
}
section.mailform {
	padding: 60px 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;
			}
		}
	}
}
section.contact {
	padding: 50px 5% 0px 5%;
	background-color: #fff;
	> div {
		max-width: 600px;
		margin-inline: auto;
		border: 1px solid #333;
		> div {
			padding: 30px;
			max-width: 400px;
			margin-inline: auto;
			> p {
				font-size: min(1.1rem,5vw);
				line-height: 1.4;
				color: #333;
				text-align: center;
				&:nth-of-type(1) {
					border-bottom: 1px solid #333;
					padding-bottom: 10px;
				}
				&:nth-of-type(2) {
					padding-top: 20px;
				}
			}
			> a {
				margin-top: 20px;
				text-decoration: none;
				display: grid;
				justify-self: center;
				> figure {
					> img {
						max-width: 100%;
					}
				}
				&:hover {
					opacity: 0.8;
				}
			}
		}
	}
}
section.bottom {
	padding-top: min(120px,17vw);
	border-bottom: solid 1px #009fe8;
}
