@import url('https://fonts.googleapis.com/css?family=Comfortaa:wght@300..700&display=swap|Nunito|Kosugi+Maru|Noto+Serif+JP|Sarabun|Noto+Sans+JP');

:root {
	--dark_1: #4C4C4C;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--dark_1);
	font-family: 'Comfortaa';
}

.privacy-content {
	position: relative;
	display: block;
	width: 600px;
	margin-top: 100px;
}

.privacy-title {
	margin-bottom: 30px;
}

.privacy-section {
	margin-bottom: 50px;
}

.privacy-section-title {
	font-size: 24px;
	margin-bottom: 10px;
}

.privacy-text {
	font-size: 18px;
	line-height: 30px;
}

footer {
	padding: 30px 0px;
	width: 100%;
}

.logo-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 20px;
	background: black;
	border-radius: 50%;
	width: 90px;
	height: 90px;
}

.footer-logo {
  width: 50px;
}

@media (max-width: 800px) and (min-width: 0px) {
	.privacy-content {
		width: 90%;
	}
}