@charset "utf-8";
/* --------------------------------
 * Reset style 2020.01.31 Update
 * -------------------------------- */
* {
	margin: 0;
	padding: 0;
}
*, *:before, *:after { /* widthとheightに、paddingとborderを含めて処理 */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 62.5%; /* 16px×62.5%＝10px */
}
body {
	margin: 0 auto;
	font-size: 1.6rem; /* 1.6rem＝10px×1.6＝16px */
	/*font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "メイリオ", Meiryo, "HGS明朝B", "HG明朝B", "ＭＳ 明朝", serif;*/
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	line-height: 1;
	color: #000;
	background: #fcfcfc;
	-webkit-text-size-adjust: 100%; /* スマホフォント対策 */
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	line-height: 1.5;
}
p, dt, dd, ul {
	line-height: 1.875;
}
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td, th {
	padding: 0;
}
img, a img {
	border: none;
}
a:link, a:visited {
	color: #000;
	text-decoration: none;
}
a:hover, a:active {
	color: #555;
	text-decoration: none;
}
.clearfix::after {
	content: '';
	display: block;
	clear: both;
}
