@charset "utf-8";
/*----------------------------------------------
	root
---------------------------------------------*/
:root {
	/* 色 */
	--main-color: #518eff;
	--nv-color: #01399c;
	--bl-color: #2164f3;
	--yl-color: #ffe100;
	--bk-color: #222;

	--rgb-main-color: 81, 142, 255;
	--rgb-nv-color: 1, 57, 156;
	--rgb-bl-color: 33, 100, 243;
	--rgb-yl-color: 255, 225, 0;
}
/*----------------------------------------------
	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: "Figtree", "Noto Sans JP", sans-serif;
	color: var(--bk-color);
	line-height: 1.4;
}
body::before,
body::after {
	position: fixed;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
}
body::before {
	z-index: -999;
	background: #fbfbfb;
}
body::after {
	z-index: -99;
	background:
		url(../images/mv_bg.png) repeat-y left top -40px / 104% auto,
		url(../images/mv_bg_blur.png) repeat-y right top 60px / 85% auto;
}
@media screen and (max-width: 1280px) {
	body {
		font-size: calc(12px + 8 * (100vw - 768px) / 512);
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 640px) {
	body::after {
		background:
			url(../images/mv_bg_sp.png) repeat-y left top -20px / 95% auto,
			url(../images/mv_bg_blur_sp.png) repeat-y right top 60px / 95% auto;
	}
}

/*----------------------------------------------
	a
---------------------------------------------*/
a {
	color: #1788d6;
	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;
	vertical-align: middle;
}
/*----------------------------------------------
	li
---------------------------------------------*/
li {
	list-style-type: none;
	list-style-position: inside;
}
/*----------------------------------------------
	*
---------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
