.inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

section h2.title img {
	width: 40%;
}

@media only screen and (max-width: 768px) {
	section h2.title img {
		width: 80%;
	}
}

.banner {
	padding: 60px 0;
	margin: 60px 0;
}

.banner .content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2vw 4vw;
}

.banner .content a img {
	width: 100%;
	height: auto;
}

.contact .title {
	font-size: 37px;
	text-align: center;
	margin: 0 auto 52px;
}

.contact .lead {
	text-align: center;
}

.contact .content .btn {
	max-width: 380px;
	margin: 40px auto 0;
}

.contact .content .btn {
	border: solid 1px #fff;
	margin-top: 20px;
	color: #fff;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact .content .btn:hover {
	background: #000;
	color: #fff;
	transition: all 300ms ease;
	border: solid 1px #000;
}

.footer {
	padding: 60px 0 24px;
	background-color: #000;
	color: #fff;
}

.footer ul, .footer li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer a {
	color: #fff;
}

.footer .nav {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
	.footer .nav {
		flex-direction: column;
	}
}

.footer .nav .logo {
	margin-right: auto;
	width: 180px;
}

.footer .nav .logo img {
	width: 100%;
}

@media only screen and (max-width: 768px) {
	.footer .nav .logo {
		margin: 0 auto 40px;
		text-align: center;
		width: 200px;
	}
}

.footer .nav .menu {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 70%;
	gap: 16px;
}

@media only screen and (max-width: 768px) {
	.footer .nav .menu {
		flex-direction: column;
		width: 100%;
		align-items: center;
	}
	.footer .nav .menu .menu_inner {
		gap: 16px;
		width: 100%;
		display: flex;
		align-items: flex-start;
	}
}

.footer .nav .menu .title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 16px;
}

@media only screen and (max-width: 768px) {
	.footer .nav .menu .title {
		width: 50%;
		text-align: right;
	}
	.footer .nav .menu .list {
		width: 50%;
		text-align: left;
	}
}

.footer .nav .menu .list li {
	margin-bottom: 8px;
}

.footer .privacy_policy {
	display: flex;
	align-items: center;
}

.footer .privacy_policy a {
	font-size: 14px;
}

@media only screen and (max-width: 768px) {
	.footer .privacy_policy {
		flex-direction: column-reverse;
	}
}

.footer .privacy_policy .copyright {
	margin-right: auto;
}

@media only screen and (max-width: 768px) {
	.footer .privacy_policy .copyright {
		margin: auto;
	}
}

.footer .privacy_policy .menu {
	display: flex;
	align-items: center;
	gap: 16px;
}

@media only screen and (max-width: 768px) {
	.footer .privacy_policy .menu {
		gap: 4px 12px;
		margin-bottom: 16px;
		flex-wrap: wrap;
		justify-content: center;
	}
}