@charset "UTF-8";
/* CSS Document */
/* Fonts Settings
@font-face {
	font-family: 'shingo';
	src: url('../fonts/shingo_db.woff') format('woff');
}
*/
:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-gray: #dfecf1;
	--color-blue: #0080ad;
}
html {
	height:100%;
	font-size: 100%;
	/*ベース10px*/
	line-height: 1.7;
}
body {
	width: 100%;
	height:100%;
	font-size: 16px;
	line-height: 1.7;
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	color: var(--color-black);
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}
h1 {
	font-size: 21px;
}
h2 {
	font-size: 18px;
}
h3 {
	font-size: 16px;
}
h4 {
	font-size: 14px;
}
a {
	text-decoration: none;
	color: var(--color-black);
}
.sp_only {
	display: none;
	visibility: hidden;
}
@media screen and (max-width: 800px) {
	.sp_only {
		display: block;
		visibility: visible;
	}
}
/* flex */
.flex {
	display: -webkit-flex;
	display: flex;
	width: 100%;
}
@media only screen and (max-width: 800px) {}