.spNone {
	display: block;
}
.pcNone {
	display: none;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	display: flex;
	flex-direction: column;
	align-items: center; 
	text-align: center;
	min-height: 100vh;
}
main {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}
main img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.main-menu {
	background: #e6cde3;
	padding: 50px 0;
	margin-top: 20px;
}
.main-menu img {
	max-width: 80%;
	margin-bottom: 1.6rem;
	    box-shadow: 1px 1px 14px #999;
}
footer {
	background: #fff;
	padding: 1.5rem 0;
	width: 100%;
	margin-bottom:2rem;
}
.footer-images {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}
.footer-left img {
	max-width: 360px;
	height: auto;
	display: block;
}
.footer-right {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-right img {
	max-width: 360px;
	height: auto;
	display: block;
}
.footer-links {
	text-align: left;
	max-width: 800px;
	margin: 0 auto 1.5rem auto;
}
.footer-links p {
	margin-bottom: 1rem;
	font-size: 0.95rem;
}
.footer-links a {
	color: #000;
	text-decoration: none;
	transition: opacity 0.2s;
}
.footer-links a:hover {
	opacity: 0.7;
}
footer ul {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin: 0 auto;
	padding: 0;
}
footer li {
	font-size: 1rem;
}
footer a {
	color: #000;
	text-decoration: none;
	transition: opacity 0.2s;
}
footer a:hover {
	opacity: 0.7;
}
@media screen and (min-width: 1200px) {
	main img {
		max-width: 1200px;
	}
}
@media screen and (max-width: 560px) {
	.spNone {
		display: none;
	}
	.pcNone {
		display: block;
	}
	.footer-images {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
	.footer-links {
		text-align: center;
		padding: 0 1rem;
	}
	footer ul {
		flex-direction: column;
		gap: 12px;
	}
}
