@charset "UTF-8";
/* CSS Document */


/*-----------------------------------
reset.css
-----------------------------------*/
* {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, header, footer, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*-----------------------------------
base
-----------------------------------*/
html {
	font-size: 10px;
}
body {
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	font-size: 1.6rem;
	color: #333;
	-webkit-text-size-adjust: 100%;
}
/* font-size
10px = 1.0rem
11px = 1.1rem
12px = 1.2rem
...*/
a {
	color: #333;
	text-decoration: none;
}
a:focus {
	outline: none;
}
a:hover,
a:active,
a:focus {
	color: #d74812;
	text-decoration: none;
}
a.linkcolor {
	color: #d74812;
	text-decoration: underline;
}
a.linkcolor:hover {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6, strong {
	font-weight: bold;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}
/*-----------------------------------
clear
-----------------------------------*/
.clear {
	clear: both;
}
.clearfix::after {
	content: " ";
	display: block;
	clear: both;
}
