@charset "utf-8";

/* 全体ベース */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* テキスト系 */
h1, h2, h3, h4, h5, h6, p, span{
  font-size: inherit;
  font-weight: inherit;
}

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

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

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


button {
  cursor: pointer;
}


a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: inherit;
  text-decoration: none;

}


