@charset "UTF-8";
/*!
 * File Info:
 * Copyright: Studio FireColor
*/
/** ========================================
 * @RESET
 * リセット

 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain)
 
 *update 2017 FireColor
 * ====================================== */
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,
main {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	font-style: normal;
	vertical-align: baseline;
	/*aタグとかをタップしたときに色が変わるのを防ぐ*/
	-webkit-tap-highlight-color: rgba(253, 153, 153, 0);
	/*回転したときなど文字の大きさを調整*/
	-webkit-text-size-adjust : 100% ;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section,
main {
	display: block;
}
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;
}
em {
	font-weight: bold;
}
input,textarea,button {
	padding: 0;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input:focus,textarea:focus,button:focus {
	outline: 0;
}

/** ========================================
 * 
 * ====================================== */
body {
	text-align: justify;
	text-justify: inter-character;
	line-height: 1.6;
}

img {
	width: auto;
	max-width: 50%;
	height: auto;
}
@media screen and (max-width: 768px) {
	img {
		width: 100%;
		max-width: initial;
	}
}

table {
	width: 100%;
}

#wrapper {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	#wrapper {
		max-width: initial;
		margin: 0;
	}
}

.lead {
	font-size: .8rem;
}

header {
	padding: 1rem;
	background: #585858;
	color: #fff;
	text-align: center;
}
header h1 {
	font-size: 2.4rem;
}
header h2 {
	font-size: 1.2rem;
}

section {
	margin-top: 4rem;
	padding-top: 2.4rem;
	border-top: 1px dotted #d7d7d7;
}

* + p {
	margin-top: 1.2rem;
}

h3 {
	padding-left: .5em;
	border-bottom: 2px solid #d7d7d7;
	border-left: 16px solid #d7d7d7;
	font-size: 1.6rem;
}

h4 {
	margin-top: 1.6rem;
	padding-left: .5em;
	border-left: .5em solid #d7d7d7;
	font-size: 1.2rem;
}