@charset "utf-8";
/*----------------------------------------------
	root
---------------------------------------------*/
:root {
	/* 色 */
	--main-color: #377AB9;
	--pk-color: #FF9092;
	--hover-pk: rgba(255, 144, 146, 0.6);
	--wh-color: #ffffff;
	--bk-color: #222;

	/* color with opacity */
	--rgb-pk-color: 255, 144, 146, 0.6;
}
/*----------------------------------------------
	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: var(--bk-color);
	line-height: 1.4;
}

@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;
	}
}


/*----------------------------------------------
	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;
}
