@charset "UTF-8";
/* CSS Document */
/*
　RESET
*/
/**
* YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
* http://cssreset.com
* Copyright 2012 Yahoo! Inc. All rights reserved.
* http://yuilibrary.com/license/
*/
/*TODO will need to remove settings on HTML since we can't namespace it.
TODO with the prefix, should I group by selector or property for weight savings?*/
html {
	color: #000;
	background: #FFF;
}
/*TODO remove settings on BODY since we can't namespace it.*/
/*TODO test putting a class on HEAD.- Fails on FF.*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset, img {
	border: 0;
}
/*TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...*/
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
caption, th {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
q:before, q:after {
	content: '';
}
abbr, acronym {
	border: 0;
	font-variant: normal;
}
/* to preserve line-height and selector appearance */
sup {
	vertical-align: text-top;
}
sub {
	vertical-align: text-bottom;
}
input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}
/*to enable resizing for IE*/
input, textarea, select {
	*font-size: 100%;
}
/*because legend doesn't inherit in IE */
legend {
	color: #000;
}
/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
	display: none;
}


/*
	STYLE
======================================*/
html {
	height: 100%;
	width: 100%;
	margin: 0;
	font-size: 62.5%;
	box-sizing: border-box;
	background: #FFFFFF;
}
body {
	min-height: 100%;
	width: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
}
*, :after, :before {
	box-sizing: border-box;
}

body {
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "HiraKakuProN-W3", "メイリオ", Meiryo, Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 400;
	color: #1A1A1A;
}
strong,
.bold {
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W6", "HiraKakuProN-W6", "メイリオ", Meiryo, Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 700;
}

header {
	border-top: 5px solid #333;
	padding: 3rem 4.75vw 0;
	width: 100%;
}
header img {
	display: block;
	width: 50%;
	max-width: 200px;
	margin: 0 auto 0 0;
}
main {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	width: 100%;
	padding: 5rem 4.75vw;
}
section {
	border: 1px solid #ccc;
	width: 100%;
	max-width: 1000px;
	padding: 4rem 4.75vw;
}
section h2 {
	color: #333;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 4rem;
	text-align: center;
}
section p, section dt, section dd {
	line-height: 1.6;
	margin-bottom: 2rem;
	text-align: center;
}
section dl {
	margin: 3rem 0;
}
section p:last-child {
	margin-bottom: 0;
}
section dt {
	font-weight: bold;
	margin-bottom: 0;
}
section a {
	color: #00a7af;
	text-decoration: underline;
}
section a:hover {
	text-decoration: noe;
}
footer {
	background: #333333;
	color: #fff;
	padding: 1.5rem 4.75vw;
	width: 100%;
}
footer .fff_003 {
	height: auto;
	width: 100%;
}
footer .fff_003 .commonInnerEx {
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
footer .fff_003 .commonInnerEx img {
	display: block;
	width: 120px;
	height: auto;
}
footer .fff_003 .commonInnerEx .in {
	display: block;
	margin-left: 0;
	margin-top: 1rem;
}
footer .fff_003 .commonInnerEx .in span {
	display: block;
	font-size: 1.2rem;
}
footer small {
	display: inline-block;
	font-size: 1.2rem;
	margin-bottom: 0.3rem;
}
@media screen and (max-width:840px) {
	body {
		font-size: 1.5rem;
	}
	section h2 {
		font-size: 2rem;
	}
	section p, section dt, section dd {
		text-align: left;
	}
	section dt::before {
		content: "▼ ";
		display: inline;
	}
	section p:last-child {
		text-align: right;
	}
}
@media screen and (max-width:600px) {
	footer .fff_003 .commonInnerEx {
		display: block;
		font-size: 1.1rem;
		margin-top: 1rem;
	}
}
