/* -------------------------------------
Reset.css
-------------------------------------- */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	line-height: 1.7;
	font-family: "Noto Sans JP", sans-serif;
	color: #333;
	background: #fff;
}

img {
	max-width: 100%;
	display: block;
	vertical-align: bottom;
}

/* ↓ これで ul の・が完全に消える */
ul,
ol {
	list-style: none;
}

/* a の下線デフォルトを消す */
a {
	color: inherit;
	text-decoration: none;
}

/* button 初期化 */
button {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

/* table */
table {
	border-collapse: collapse;
}

/* input, textarea */
input,
textarea,
select {
	font: inherit;
	border-radius: 0;
}