@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: "Arial", sans-serif;
	font-size: 1rem;
	line-height: 1.3;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	max-width: 57.187rem;
	margin: 1rem auto;
	border: 1px solid #000;
	background: #fff;
	overflow: hidden;
	padding: 2rem 4rem;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

a.link {
	white-space: normal;
	color: #E40069;
}

p {
	padding-bottom: 1rem;
}

:is(h1, h2),
p strong,
a.red,
.red {
	color: #E40069;
}

h1 {
	margin: 0 0 1rem;
	font-size: 1.7rem;
	line-height: 1.2;
	text-align: center;
}

h1 span {
	white-space: nowrap;
}

h2 {
	font-size: 1.062rem;
	line-height: 1.3;
	margin: 0 0 .187rem
}

ul {
	padding: 0 0 1rem;
	list-style: none;
}

ul li {
	padding: 0 0 0 1.3rem;
	position: relative;
}

ul li:before {
	content: "\2010";
	font-size: 1rem;
	position: absolute;
	left: 0;
	top: -.062rem;
}

.text {
	text-align: center;
	font-size: 1.062rem;
	line-height: 1.2;
}

hr {
	border: none;
	background: #E40069;
	height: .125rem;
	margin: 0 0 1rem;
}

header {
	padding: 0 0 1rem;
	display: flex;
	justify-content: center;
}

article {
	position: relative
}

.justify {
	text-align: justify;
}

.container {
	position: relative
}

.box {
	width: 63.5%;
}

.center {
	text-align: center;
	margin: 0 0 1rem
}

.right {
	position: absolute;
	right: 0;
	top: 0;
	width: 232px;
}

footer {
	width: 232px;
	position: absolute;
	top: 48%;
	right: 4rem;
}

@media only screen and (max-width:57.125rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 1rem;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}

	h1 {
		font-size: 1.5rem;
	}

	ul li {
		padding: 0 0 0 1.125rem;
	}

	.justify {
		text-align: left;
	}

	.right {
		width: 32%;
	}

	footer {
		top: 49%;
		right: 1rem;
		width: 31%
	}
}

@media only screen and (max-width:50rem) {

	.box,
	.right,
	footer {
		width: 100%
	}

	.right,
	footer {
		position: static
	}
}

@media only screen and (max-width:23.5rem) {

	.box p:last-of-type,
	.right {
		text-align: center;
	}
}