@charset "utf-8";

:root {
	font-size: 16px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font: 0.9375rem/1.5 "Arial", sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
	border: solid .187rem #FF9A55;
	background: url(../images/bg_top.png)no-repeat top 3.437rem left;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

p {
	margin: 0 0 1rem;
}

.center {
	text-align: center;
}

h1 {
	text-align: center;
	color: #FF9A55;
	font-size: 1.312rem;
	line-height: 1.3;
	margin: 1.25rem 0 0
}

h2 {
	font-size: 1rem;
	text-align: center;
	margin: 1.25rem 0;
}

h3 {
	font-size:  0.937rem;
	margin: 0 0 1rem;
}

ul {
	list-style: none;
	margin: 0 0 1rem 1.562rem;
	padding: 0;
}

ul li {
	padding-left: 1.75rem;
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -1.75rem;
	font-size: 1.375em;
	line-height: 1;
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 1.25rem 0
}


article {
	padding: 0.625rem 1.875rem;
	position: relative;
	background: url("../images/bg_bottom.png")no-repeat right bottom 9.375rem;
}

footer {
	padding: 0.625rem 1.875rem;
}

footer p {
	text-align: justify;
}
@media only screen and (max-width: 49.938rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}
	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}
@media only screen and (max-width: 48rem) {
	article {
		padding: 0.625rem 1.25rem;
	}

	footer {
		padding: 0.625rem 1.25rem 0;
	}
}
@media only screen and (max-width: 43.75rem) {

	#wrapper,
	article {
		background: none;
	}

	.top br {
		display: none;
	}

	h1,
	h2 {
		margin: 1rem 0;
	}

	h3,
	p,
	ul {
		margin: 0 0 1rem;
	}

	ul li {
		padding-left:  0.937rem;
	}

	ul li:before {
		margin-left: -0.937rem;
	}
}