@charset "utf-8";

/*-------------------------
CSS変数
---------------------------*/
/* color */
:root {
	--color-point: #41ad6e;
}
/* font */
:root {
	--font-default: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	--font-point: 'M PLUS 1p', sans-serif;
	--font-n: 14px;
	--font-s: calc(var(--font-n) * .875);
	--font-m: calc(var(--font-n) * 1.3);
	--font-l: calc(var(--font-n) * 1.5);
}
@media screen and (max-width: 640px) {
	:root {
		--font-m: calc(var(--font-n) * 1.1);
		--font-l: calc(var(--font-n) * 1.2);
	}
}

/*-------------------------
reset
---------------------------*/
* {
	box-sizing: border-box;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
html {
	-webkit-text-size-adjust: 100%;
}
body {
	width: 100vw;
	font-family: var(--font-default);
	color: #646464;
	font-size: var(--font-n);
	line-height: 1.75;
	margin: 0;
	position: relative;
	overflow-x: hidden;
}
img,a,ul,li,iframe,fieldset {
	border: none;
	outline: none;
}
img {
	line-height: 0;
}
a {
	color: #666;
	text-decoration: none;
}
a,
a img {
	-webkit-transition: .2s;
	transition: .2s;
}
h1,h2,h3,h4,ol,ul,li,dl,dt,dd,p,from,iframe,fieldset,legend,figure {
	margin: 0;
	padding: 0;
}
ol,ul {
	list-style: none;
}
h1,h2,h3,h4 {
	font-size: 100%;
	font-weight: normal;
}
em {
	font-style: normal;
}
article,aside,footer,header,main,nav,section {
	display: block;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
pre {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	margin: 0;
}