
header {
	padding: 0.5em 1em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	.logo {
		margin: 0;
	}
	.header_menu {
		margin: 0;
		padding-left: 0;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 1em;
		list-style-type: none;
		a {
			text-decoration: none;
		}
	}
	.menu-item.contact {
		font-size: calc( 14 / var(--root-font-size) * 1rem );
		a {
			color: #fff;
			background-color: #c34444;
			text-decoration: none;
			padding: 0.5em 2em;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0.5em;
			&:before {
				content: '';
				background-image: url("../images/header/contact.svg");
				width: 1.5em;
				height: 1.5em;
				background-repeat: no-repeat;
				background-size: contain;
				background-position: center;
			}
		}
	}
	.sp_menu {
		display: none;
	}
}

footer {
	padding-top: 5em;
	background-image: url("../images/footer/bg.webp");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	position: relative;
	padding-left: 1em;
	padding-right: 1em;
	&:after {
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		content: '';
		width: 100%;
		height: 3em;
		background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
	}
	.container {
		position: relative;
		z-index: 2;
		max-width: var(--content-width);
		margin-left: auto;
		margin-right: auto;
		display: flex;
		justify-content: space-between;
	}
	address {
		font-style: normal;
		line-height: 1.8em;
		p {
			margin: 0;
		}
	}
	.footer_menu {
		list-style-type: none;
		padding-left: 0;
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: repeat(3, 1fr);
		gap: 1em 3em;
	}
	.copyright {
		text-align: center;
		margin-top: 3em;
		margin-bottom: 0;
		padding: 1em;
		position: relative;
		z-index: 2;
		line-height: 1.4em;
	}
}