@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	--header-color: #ff6688;
}


html, body {
	width: 100%;
}


body {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	font-size: 16px;
	background: url(../images/bg.jpg) center/cover fixed;
	padding: 30px;
	min-height: 100%;
}


em {
	font-style: normal;
	font-weight: bold;
}

strong {
	color: #f00;
}

header {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 30px;
}

main {
	background: rgba(255, 255, 255, .8);
	padding: 30px;
	border-radius: 20px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.text {
	width: 68%;
	line-height: 1.8;
}

.images {
	width: 30%;
}


section {
	margin-bottom: 30px;
}

section>.header {
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .4)), var(--header-color);
	color: #fff;
	padding: 3px 10px;
	font-size: 20px;
	letter-spacing: 3px;
	font-weight: bold;
	margin-bottom: 5px;
	border-radius: 5px;
}


section>.header>.small {
	letter-spacing: 0;
	font-weight: normal;
}

section>article {
	margin-bottom: 1em;
}

section>article>.header {
	font-size: 14px;
}

section>article>.header>em {
	font-size: 20px;
}


footer {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

footer img {
	display: inline;
}

#map {
	width: 100%;
	height: 400px;
	border: none;
}

h1 {
	font-weight: 300;
	letter-spacing: 10px;
	margin-bottom: 30px;
	text-align: center;
}


p {
	text-indent: -1.5em;
	margin-left: 1.5em;
	margin-bottom: 1em;
}


.lead>div {
	font-size: 20px;
	text-indent: 1.5em;
}

.small {
	font-size: 14px;
}

.small .header {
	background: transparent;
	color: #000;
	padding: 0;
	font-size: 16px;
	letter-spacing: 0;
	font-weight: bold;
	margin-bottom: 3px;

}


@media (max-width: 1023px) {

	body {
		padding: 10px;
	}

	main {
		display: block;
		padding: 10px;
		border-radius: 10px;
	}

	.images {
		width: 100%;
	}

	.text {
		width: 100%;
		margin-bottom: 30px;
	}

	h1 {
		font-size: 20px;
		letter-spacing: 0;
		font-weight: 500;
	}
}