/**
 * @author sara
 * Copyright (c) 2020 sara Co., Ltd.
 * All rights reserved.
 */
 
/* リセット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body , html {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
}
body{
	margin:0;
	padding:0;
	font-family: "Noto Sans JP", sans-serif;
}

h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li{margin:0;padding:0;}
ul{list-style: none}
.clearfix:after	{
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

img{
	max-width: 100%;
	height: auto;
	display:block;
}
img[src$=".svg"] {
	width: 100%;
}

a { color: #707070;}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none;}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .45);
	overflow: hidden;
	overflow-y: auto; /* scrollにはしないことでスクロールの必要がないときはスクロールバーを表示させない */
	-webkit-overflow-scrolling: touch;
}


/* common
–––––––––––––––––––––––––––––––––––––––––––––––––– */