/*------------------------------------------------------------
	Global
------------------------------------------------------------*/
*,
*:before,
*:after {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	line-height: 2;
	background: #fff;
	color: #222;
	font-size: 1.4rem;
	letter-spacing: 1.5px;
	font-weight: bold;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
li {
	list-style: none;
}
button,
input,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	appearance: none;
	background: none;
	padding: 0;
	outline: none;
	border: none;
	font-size: 1.6rem;
	font-family: inherit;
}
textarea:focus,
input:focus {
	outline: none;
}
button {
	cursor: pointer;
}
i {
	font-style: normal;
}

@media screen and (min-width: 992px) {
	body {
		font-size: 2.1rem;
	}
}