@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* ルート要素の設定 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  min-height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* リスト */
ol,
ul {
  list-style: none;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* 画像・メディア系 */
img,
picture,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* フォーム要素の初期化 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button {
  cursor: pointer;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}/*# sourceMappingURL=style.css.map */