@charset "utf-8";
/*----------------------------------------------
	html
---------------------------------------------*/
html {
  font-size: 62.5%;
  background-color: #F5F5F5;
}
/* Storybook用設定 */
html[lang="en"] {
  background-color: inherit;
}

/*----------------------------------------------
	body
---------------------------------------------*/
body {
  min-width: calc(100% - 80px);
  color: #333;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  /* background-color: #fff; */
}
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, body {
		font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif; /* IE11 */
	}
}

/*----------------------------------------------
	a
---------------------------------------------*/
a {
	color: #4371d0;
	text-decoration: none;
}
a:hover,
a:active,
a:focus {
	color: #d00;
}

/*----------------------------------------------
	table
---------------------------------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*----------------------------------------------
	h1,h2,h3,h4,h5,h6
---------------------------------------------*/
h1,h2,h3,h4,h5,h6{
	margin: 0;
}
/*----------------------------------------------
	img
---------------------------------------------*/
img {
	max-width: 100%;
  vertical-align: middle;
}
@media screen and (max-width: 896px) {
  img {
		display: block;
    height: auto;
		margin: auto;
		text-align: center;
  }
}
/*----------------------------------------------
	li
---------------------------------------------*/
li {
  list-style-type: none;
}
/*----------------------------------------------
	em
---------------------------------------------*/
em {
  color: #D84242;
  font-style: normal;
}
/*----------------------------------------------
	strong
---------------------------------------------*/
strong {
  color: #D84242;
}
/*----------------------------------------------
	*
---------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
