@charset "utf-8";
/*----------------------------------------------
	root
---------------------------------------------*/
:root {
	/* 色 */
	--primary-color: #2badd7;
	--secondary-color: #7fcdec;
	--base-color: #ecf4f5;
	--key-color: #fff478;
	--bk-color: #333;

	--line-color: #06c755;
	--hsuh-color: #1f2c5c;
	--kango-color: #e673bc;
	--shigaku-color: #8159b8;
	--fukushi-color: #dd8b39;
	--rinsho-color: #435d93;
	--science-color: #5e5e5e;
	--yakugaku-color: #4bba5c;
	--shinri-color: #2cb4a9;
	--rigaku-color: #e87278;
	--sagyo-color: #aa965f;
	--gengo-color: #00a5c2;
	--dental-color: #f5618b;

	/* フォントサイズ */
	--size-60: 3.33em;
	--size-50: 2.778em;
	--size-40: 2.22em;
	--size-30: 1.667em;
	--size-24: 1.33em;
	--size-20: 1.11em;
	--size-16: 0.88em;
	--size-14: 0.77em;

	/* フォントファミリー */
	--font-zen: "Zen Kaku Gothic New", sans-serif;
	--font-alex: "Alexandria", sans-serif;
}
/*----------------------------------------------
	html
---------------------------------------------*/
html {
	font-size: 62.5%;
}
/*↑ 10pxが1remとなる様に調整*/

/*----------------------------------------------
	body
---------------------------------------------*/
body {
	position: relative;
	overflow-x: hidden;
	min-width: 100%;
	font-size: 18px;
	font-size: 1.8rem;
	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(14px + 2 * (100vw - 768px) / 512);
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}

/*----------------------------------------------
	a
---------------------------------------------*/
a {
	color: #1788d6;
	text-decoration: none;
}
a:hover {
	color: #c00;
}

/*----------------------------------------------
	table
---------------------------------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*----------------------------------------------
	h1,h2,h3,h4,h5,h6
---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 900;
}
/*----------------------------------------------
	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;
}
