/*======================================*/
/*リセット*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
ul,
ol,
li,
h1,
h2,
h3,
p,
div {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active,
a:focus {
  color: #ffffff;
  outline: none;
  box-shadow: none;
}

button{
  margin: 0;
  padding: 0;
  border: 0px;
  background-color: #ffffff;
}

button:focus {
  outline: 0;
}
/*======================================*/