/* ------------------------------
   Reset CSS
   ------------------------------ */

/* すべての要素の余白をリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ベースのフォントサイズとスクロールの滑らかさ */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* 画像の初期化 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* list の初期化 */
ul,
ol {
  list-style: none;
}

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

/* ボタンの初期化（ブラウザ差をなくす） */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* フォーム要素のフォント継承 */
input,
button,
textarea,
select {
  font: inherit;
}

/* テーブルの初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* レスポンシブ専用デザイン */
.sp {
  display: none;
}
.pc {
  display: block;
}