/***************************** webフォントcss */
/*Noto Sans*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese');


/***************************** インポート*/


/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body{
 min-width: 100%;
 height: 100%;
 position: relative;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: 'Sawarabi Gothic', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  color: #595757;
  background-color: #ffffff;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}

@media all and (-ms-high-contrast:none){/* IE11 */
body {
	overflow-x: hidden;
}
  *::-ms-backdrop, 
  html {
	overflow: hidden;
	} 
}

a {
color: #595757;
  text-decoration: none;
}

.links a:hover {
  color: #1672A7;
  text-decoration: underline;
}
	
img {
  max-width: 100%;
}



