/* Box-sizingの統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* マージン・パディングのリセット */
body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd,
ul, ol, li,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/* リストのデフォルトスタイルをリセット */
ul, ol {
  list-style: none;
}

/* リンクの装飾をリセット（SWELLの制御を避けて軽めに） */
a {
  text-decoration: none;
  color: inherit;
}

/* フォーム要素のリセット */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* 画像の挙動 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

/* HTML・Bodyの基本設定 */
html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  font-family: inherit;
  background: #fff;
}

/* テーブルの基本リセット */
table {
  border-collapse: collapse;
  width: 100%;
}
