@charset "utf-8";
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html, body {
	color: #333;
	font-size: 18px;
	width: 100%;
	height: 100%;
	background: #fdfdfd;
}
.sp_only { display: none;}
a {
	text-decoration: none;
}
a:visited {
	color: #000;
}
ul {
	list-style: none;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
table {
	border-collapse: collapse;
}
@media screen and (max-width: 768px) {
	html, body {
		font-size: 16px;
	}
	.pc_only { display: none;}
	.sp_only { display: block;}
}