@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,
a:visited,
a:hover,
a:active {
	color: inherit;
	text-decoration: none;
}

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


button {
	cursor: pointer;
	background: none;
	border: none;
	appearance: none;
}

