@charset "utf-8";
/* --------------------------------
 * Reset style 
 * -------------------------------- */
* {
	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: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-family: 'Noto Sans JP', sans-serif;
	font-family: "Bellefair",serif;
	line-height: 1;
	color: #000;
	background: #fff;
	-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, ol {
	line-height: 1.875;
}
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

td, th {
	padding: 0;
}

img, a img {
	border: none;
    vertical-align: bottom;
}

a:link, a:visited {
	/* color: #039; */
	text-decoration: underline;
}

a:hover, a:active {
	/* color: #999; */
	text-decoration: none;
}

.clearfix::after {
	content: '';
	display: block;
	clear: both;
}

/* .flexbox {
　　display: -webkit-box;
　　display: -webkit-flex;
　　display: -ms-flexbox;
　　display: flex;
　　-webkit-flex-wrap: wrap;
　　-ms-flex-wrap: wrap;
　　flex-wrap: wrap;
} */
