@charset "UTF-8";

/*----------------------------------------------
	html
---------------------------------------------*/
html {
	font-size: 62.5%;
}

/*↑ 10pxが1remとなる様に調整*/

/*----------------------------------------------
	body
---------------------------------------------*/
body {
	position: relative;
	overflow-x: hidden;
	min-width: 100%;
	font-size: 16px;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	color: #000;
	line-height: 1.3;
	transition: .3s;
	font-weight: 500;
	letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}


/*----------------------------------------------
	a
---------------------------------------------*/
a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: var(--lime);
}

/*----------------------------------------------
	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;
}

/*----------------------------------------------
	*
---------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/*----------------------------------------------
	root
---------------------------------------------*/
:root {
	--bk: #000000;
	--lbk: #707070;
	--wh: #fff;
	--gy: #E5E5E5;
	--bl: #023894;
	--sora: #A8C0E9;
	--lime: #12A79D;
	--llime: #D6F5F3;
	--bg: #F7F2E7;
	--lbl: #E0F4FC;
	--ye: #FFFA64;
}