@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
}

html {
	min-height: 100%;
}

body {
	color: #000;
	font-family: 'Arial', sans-serif;
	line-height: 1.3;
	font-size: 1rem;
}

img {
	max-width: 100%;
	height: auto;
	display: inline-block;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	border: 0.0625rem solid #000;
	background: #fff;
	overflow: hidden;
	padding: 2rem;
}

:is(a:link, a:visited, a:active) {
	color: #000;
	text-decoration: none;
}

ins {
	color: #0000FF;
}

a:hover {
	text-decoration: underline;
}

h1 {
	display: inline-block;
	margin: 0 0 .937rem;
	font-size: 1.375rem;
	line-height: 1.1;
}

h1 span {
	font-weight: normal;
	font-size: 1.125rem;
}

h2 {
	font-size: 1em;
	line-height: 1.2;
	margin-bottom: .625rem;
}

ul {
	padding: 0 0 0.625rem 1.25rem;
	list-style: none;
}

li {
	padding-left: 0.7rem;
}

li:before {
	content: "\2022";
	display: block;
	font-size: 1.3em;
	line-height: 0.8;
	position: relative;
	float: left;
	margin: 0.0625rem 0 0 -.687rem;
}

header {
	padding: 0;
}

header img {
	display: block;
}

article {
	padding: 0.8rem 1.5rem;
	background: #E8EDF8;
}

article p {
	text-align: justify;
	margin: 0 0 .625rem;
}

footer {
	padding: 1.3rem 1.25rem 0;
	position: relative;
}

footer section {
	display: flex;
	justify-content: space-between;
}

.aside {
	display: flex;
	align-items: flex-start;
	column-gap: .937rem
}

.right {
	text-align: right;
}

footer > p {
	text-align: center;
	position: relative;
	top: .625rem;
}

@media only screen and (max-width: 49.9375rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 1rem;
	}

	p,
	article p {
		text-align: left;
		word-spacing: 0;
	}

	ul {
		padding-left: 0.6rem;
	}

	article {
		padding: .812rem .812rem 0;
	}

	footer {
		padding: 0.625rem 0 0;
	}

	footer p {
		text-align: center;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		margin: 0 0 1rem;
	}
}

@media only screen and (max-width: 43.75rem) {
	footer section {
		display: block;
	}

	.aside {
		display: flex;
		align-items: center;
		justify-content: center
	}

	.right {
		margin: 0
	}

	.aside {
		margin: 0 0 .625rem
	}
}

@media only screen and (max-width: 480px) {
	.aside {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}


	.aside:nth-of-type(2) p {
		margin: 0;
	}

	.right {
		margin: 0 0 16px;
		text-align: center;
	}

	a.web {
		overflow-wrap: break-word;
		word-wrap: break-word;
		-ms-word-break: break-all;
		word-break: break-all;
		word-break: break-word;
		-ms-hyphens: auto;
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		hyphens: auto;
	}
}

@media only screen and (max-width: 23.437rem) {
	header img {
		margin: 0 auto .625rem;
		display: block
	}

	ul li {
		padding-left: 0
	}

	.right {
		text-align: center;
	}
}