section.content01 {
	background-color: #f7e7ca;
	> div {
		max-width: 950px;
		margin-inline: auto;
		> img {
			max-width: 100%;
		}
	}
}
section.belt {
	padding: 0 5%;
	background-color: #683464;
	> div {
		max-width: 950px;
		margin-inline: auto;
		display: flex;
		column-gap: 30px;
		@media (width < 600px) {
			flex-direction: column;
		}
		> figure {
			&:nth-of-type(1) {
				border-right: solid 1px rgba(255,255,255,0.2);
				padding-right: 30px;
				@media (width < 600px) {
					order: 2;
					border-right: none;
					padding-right: 0px;
				}
			}
			&:nth-of-type(2) {
				@media (width < 600px) {
					order: 1;
				}
			}
			> img {
				width: 100%;
			}
		}
	}
}

section.message {
	padding: 30px 5% 0 5%;
	> div {
		max-width: 950px;
		margin-inline: auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
		row-gap: 20px;
		@media (width < 600px) {
			grid-template-columns: 1fr;
		}
		> div {
			@media (width < 600px) {
				text-align: center;
			}
			> p {
				font-size: 1.7rem;
				line-height: 1.5;
				@media (width < 800px) {
					font-size: 1.3rem;
				}
			}
		}
		> figure {
			margin: 0;
			> img {
				max-width: 100%;
			}
			> figcaption {
				font-size: 1rem;
				line-height: 1.3;
			}
		}
	}
}
section.map {
	padding: 30px 5% 60px 5%;
	> div {
		max-width: 950px;
		margin-inline: auto;
		> iframe {
			width: 100%;
			height: 500px;
		}
		> small {
			> a {
				font-size: 0.9rem;
				line-height: 1.4;
				color: #333;
				&:hover {
					opacity: 0.7;
				}
			}
		}
	}
}
