* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	color: #111;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.61;
	overflow-x: hidden;
}

.contents {
	margin: 0 auto;
	width: 800px;
}

@media screen and (max-width: 559px){
	.contents {
		width: 80%;
	}
}

.contents p {
	margin-bottom: 100px;
	font-size: 2rem;
}

.contents .image {
	margin: 0 calc(50% - 50vw) 100px;
}

@media screen and (max-width: 559px){
	.contents p {
		margin-bottom: 50px;
		font-size: 1.7rem;
	}

	.contents .image {
		margin: 0 calc(50% - 50vw) 50px;
	}
}

.contents .image img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 559px){
	.contents .image img {
		height: 200px;
		object-fit: cover;
	}
}

.wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 calc(50% - 50vw);
	padding: 100px 50px;
	max-width: 100%;
	background-color: #f4f4f4;
}

.wrap img {
	display: block;
	width: 50%;
	height: auto;
}

.wrap p {
	display: block;
	margin-bottom: 0;
	width: 45%;
}

@media screen and (max-width: 559px){
	.wrap {
		flex-direction: column;
		padding: 50px 20px;
	}

	.wrap img {
		margin-bottom: 30px;
		width: 100%;
		object-fit: cover;
	}

	.wrap p {
		width: 100%;
	}
}

.copyright {
	padding: 50px 0;
	font-size: 1.4rem;
	text-align: center;
}

