html {
	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	word-spacing: 1px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}

@media screen and (min-width: 1000px) {
	html {
		font-size: 12px;
	}
}

@media screen and (min-width: 1200px) {
	html {
		font-size: 13px;
	}
}

@media screen and (min-width: 1400px) {
	html {
		font-size: 14px;
	}
}


@media screen and (min-width: 1600px) {
	html {
		font-size: 16px;
	}
}


@media screen and (min-width: 1820px) {
	html {
		font-size: 18px;
	}
}

*,
*:before,
*:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

img {
	border: none;
	vertical-align: middle;
}

a {
	text-decoration: none;
	color: #232323;
}

table {
	border-collapse: collapse;
	table-layout: fixed;
}

input,
textarea {
	outline: none;
	border: none;
}

textarea {
	resize: none;
	overflow: auto;
}

.button--green {
	display: inline-block;
	border-radius: 4px;
	border: 1px solid #3b8070;
	color: #3b8070;
	text-decoration: none;
	padding: 10px 30px;
}

.button--green:hover {
	color: #fff;
	background-color: #3b8070;
}

.button--grey {
	display: inline-block;
	border-radius: 4px;
	border: 1px solid #35495e;
	color: #35495e;
	text-decoration: none;
	padding: 10px 30px;
	margin-left: 15px;
}

.button--grey:hover {
	color: #fff;
	background-color: #35495e;
}

.pc-width {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

@media screen and (min-width:1000px) {
	.pc-width {
		width: 1000px;
		margin: 0 auto;
	}
}

@media screen and (min-width:1200px) {
	.pc-width {
		width: 1200px;
		margin: 0 auto;
	}
}

@media screen and (min-width:1600px) {
	.pc-width {
		width: 1320px;
		margin: 0 auto;
	}
}