@charset "utf-8";

/*----------------------------------------------
	html
---------------------------------------------*/
html {
	font-size: 62.5%;
}

/*↑ 10pxが1remとなる様に調整*/

/*----------------------------------------------
	body
---------------------------------------------*/
body {
	position: relative;
	overflow-x: hidden;
	min-width: 100%;
	font-size: 18px;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	letter-spacing: 0.1rem;
	color: var(--bk);
	line-height: 1.3;
	transition: .3s;
}

@media (max-width: 1270px) {
	body {
		font-size: 1.4rem;
	}
}

/*----------------------------------------------
	a
---------------------------------------------*/
a {
	text-decoration: none;
}

/*----------------------------------------------
	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;
	display: block;
}

/*----------------------------------------------
	li
---------------------------------------------*/
li {
	list-style-type: none;
}

/*----------------------------------------------
	*
---------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/*----------------------------------------------
	root
---------------------------------------------*/
:root {
	--bk: #1D1D1D;
	--wh: #ffffff;
	--dbl: #092E60;
	--bl: #004198;
	--lbl: #DAE8FB;
	--gybl: #C8CFE9;
	--ye: #FFDC2E;
}