@charset "UTF-8";
/* CSS Document */

/*************************************************************************************************************************
* reset
*************************************************************************************************************************/
/* ボックスサイズの指定 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* デフォルトのマージンを削除 */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  font-size: inherit;
  font-weight: unset;
  line-height: inherit;
}

/* ul, ol要素のリストスタイルを削除 */
ul, ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* body要素の基本設定 */
body {
  min-height: 100vh;
  text-justify: inter-ideograph;
  text-rendering: optimizeSpeed;
}
/* a要素の基本設定 */
a,
a:hover,
a:focus {
  font: inherit;
  color: inherit;              /* 親要素の文字色を継承 */
  text-decoration: none;       /* 下線を消す */
  background: none;            /* バックグラウンドを消す */
  cursor: pointer;             /* カーソルをポインターに */
  outline: none;
}
/* クラスを持たないa要素にデフォルトスタイルを設定 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* 画像を扱いやすくする */
img, picture {
  max-width: 100%;
  display: block;
}
img {
  border: 0;
  vertical-align: bottom;
}
svg {
  vertical-align: bottom;
}

/* inputやbuttonのフォントを継承する */
input, button, textarea, select {
  font: inherit;
}
/* tableの基本設定 */
table {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
/* formの基本設定 */
form {
  margin: 0;
}

