@charset "utf-8";
/* box model を揃える */
*,
*::before,
*::after { box-sizing: border-box; }

/* 余白のズレを最低限だけ潰す */
body { margin: 0; }
h1,h2,h3,h4,h5,h6,p,figure,ol,
ul,
ol ol,
ul ul,
ol ul,
ul ol,
dl,
dt,
dd { margin: 0;font-weight: 400;padding: 0; }

/* 画像のはみ出し防止 */
img, svg, video { max-width: 100%; height: auto; display: block; }

/* フォームは崩れやすいので控えめに */
button, input, select, textarea { font: inherit; }

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