/* common.css - 共通スタイル */

/* ベースのリセット */
/* reset.css - リセットスタイル */

/* すべての要素のデフォルトスタイルをリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
}
html {
  scroll-behavior: smooth;
}

/* リンクの装飾をなくす */
a {
  text-decoration: none;
  color: inherit;
}

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

/* 画像の余白をリセット */
img {
  max-width: 100%;
  height: auto;
  image-rendering: crisp-edges;
}

/* テーブルのスタイルをリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム要素のスタイルを統一 */
input,
button,
textarea,
select {
  font: inherit;
}

/* HTML5要素のブロック化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 2;
  color: #111;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  vertical-align: bottom;
}
