@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;
	font-weight: 500;
	letter-spacing: 0.1rem;
	color: var(--bk);
	line-height: 1.3;
	transition: .3s;
}

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

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

/*----------------------------------------------
	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;
	object-fit: contain;
}

/*----------------------------------------------
	li
---------------------------------------------*/
li {
	list-style-type: none;
}

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

/*----------------------------------------------
	root
---------------------------------------------*/
:root {
	--bk: #000000;
	--wh: #ffffff;
	--navy: #282566;
	--lpa: #BB7BD1;
	--dpa: #8B81C3;
}