/* ==================================================
   reset.css
   ブラウザ差異を整えるためのCSS
================================================== */

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

html{
  -webkit-text-size-adjust:100%;
}

body,
h1,h2,h3,h4,h5,h6,
p,
ul,ol,
dl,dt,dd,
figure,
blockquote{
  margin:0;
  padding:0;
}

ul,
ol{
  list-style:none;
}

img,
picture,
svg,
video{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
  color:inherit;
}

button{
  cursor:pointer;
}

table{
  border-collapse:collapse;
  border-spacing:0;
}

textarea{
  resize:vertical;
}

iframe{
  border:0;
}
