@charset "UTF-8";
/* CSS Document */

html{
	font-size: 2vw;
}
@media screen and (min-width: 768px){
	html{
		font-size: 62.5%;/*1rem = 10px*/
	}
}
body{
	width: 100%;
	font-size: 1.6rem;
	color: #c9404d;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8;
	background: #efefef;
}
@media screen and (min-width: 768px){
	body{
		font-size: 1.4rem;
	}
}
ul,ol{
	list-style: none;
	margin: 0;
	padding: 0;
}
a{
	color: #333;
	text-decoration: none;
}
h1,h2,h3,h4,h5,p{
	margin: 0;
	font-weight: normal;
}
input,select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: none;
	border-radius: 0;
	background: #FFF;
}
img{
	max-width: 100%;
	display: block;
}
::-moz-selection {
	color: #FFF;
	background:#c9404d; /* Firefox */
}
::selection {
	color: #FFF;
	background:#c9404d; /* Safari */
}