@charset "utf-8";
/*----------------------------------------------
	root
---------------------------------------------*/
:root {
	/* 色 */
	--main-color: #3ff1a9;
	--base-color: #e9eae4;
	--key-color: #9784fc;
	--bk-color: #000;
}
/*----------------------------------------------
	html
---------------------------------------------*/
html {
	font-size: 62.5%;
}
/*↑ 10pxが1remとなる様に調整*/

/*----------------------------------------------
	body
---------------------------------------------*/
body {
	position: relative;
	overflow-x: hidden;
	min-width: 100%;
	font-size: 20px;
	font-size: 2rem;
	font-family: "Noto Sans JP", sans-serif;
	color: #222;
	line-height: 1.4;
	transition: all 1s 0.2s ease;
}
@media (max-width: 1280px) {
	body {
		font-size: calc(14px + 6 * (100vw - 768px) / 512);
	}
}
@media (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}

/*----------------------------------------------
	a
---------------------------------------------*/
a {
	color: #1788d6;
}
a:hover {
	color: #c00;
}

/*----------------------------------------------
	table
---------------------------------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*----------------------------------------------
	h1,h2,h3,h4,h5,h6
---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}
/*----------------------------------------------
	img
---------------------------------------------*/
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
/*----------------------------------------------
	li
---------------------------------------------*/
li {
	list-style-type: none;
}
/*----------------------------------------------
	*
---------------------------------------------*/
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
