html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CLEARFIX */

.clearfix:before,
.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix {
    zoom:1;
}

/* STYLE */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.4;
	padding-top: 50px;
}

.header {
	background: #303030;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 11px 0;
	z-index: 50;
}

.logo {
	width: 181px;
	display: block;
	margin: 0 auto;
	line-height: 0;
}

.disclosure {
	font-size: 0.75rem;
	color: #fff;
	line-height: 18px;
	position: absolute;
	top: 16px;
	right: 15px;
}

.disclosure:hover {
	text-decoration: underline;
}

.disclosure-box {
	display: none;
	position: absolute;
	top: 40px;
	right: 10px;
	background: #fff;
	width: 100%;
	max-width: 500px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 20px;
	border: 1px solid #e2e2e2;
	box-shadow: 0 3px 15px rgba(51, 51, 51, .431);
}

.bold {
	font-weight: 700;
}

.disclosure-box p {
	font-size: 0.875rem;
	line-height: 1.5;
	text-align: justify;
}

.disclosure-box p:last-child {
	margin-top: 10px;
}

.content {
	margin: 30px auto;
	max-width: 768px;
	padding: 0 15px;
}

.content h1 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.content p {
	font-family: 'Merriweather', serif;
	margin-bottom: 20px;
	line-height: 1.8;
}

.content p a {
	color: #65657e;
	text-decoration: underline;
}

.content h2 {
	margin: 24px 0 16px;
	font-size: 1.75rem;
	font-weight: 700;
}

.content ul {
	margin-bottom: 20px;
	font-family: 'Merriweather', serif;
	list-style: disc;
	padding-left: 24px;
}

.content ul li {
	padding: 5px 0;
}

.footer {
	background: #e5f6ff;
	padding: 30px 20px;
	text-align: center;
}

.footer img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.bottom-menu {
	font-size: 0;
	margin-top: 12px;
}

.bottom-menu li {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
}

.bottom-menu li a {
	font-size: 0.875rem;
	color: #000;
	text-decoration: underline;
}

.footer p {
	margin-top: 12px;
	font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
	.disclosure-box {
		max-height: 420px;
		overflow-y: scroll;
		width: auto;
		max-width: 1024px;
		left: 10px;
	}

	.logo {
		margin-left: 15px;
		margin-right: 0;
	}
}