.footer {
	padding: 6rem 6rem 3rem;
	background-image: url(../img/bg-noise.png);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.scroll_top {
	position: absolute;
	top: 6.2rem;
	right: 6.5rem;
	cursor: pointer;
	text-align: center;
}
.scroll_top_circle {
	width: 6.5rem;
	height: 6.5rem;
	border: 1px solid #FBFDFD;
	border-radius: 50%;
	display: grid;
	place-items: center;
}
.scroll_top_circle:before {
	content: "";
	display: block;
	width: 1rem;
	height: .9rem;
	transform: rotate(-90deg);
	background-image: url(../img/arrow-gray.svg);
	background-size: cover;
	background-repeat: no-repeat;
}
.scroll_top:hover .scroll_top_circle:before {
	animation-name: transformpagetop;
	animation-fill-mode: forwards;
	animation-duration: .7s;
	transition-timing-function: ease-out;
}
.scroll_top_text {
	font-family: "Manrope", sans-serif;
	font-size: 1.1rem;
	color: #FBFDFD;
	margin-top: 1rem;
	display: inline-block;
}
.scroll_top_text span {
	display: block;
	text-align: center;
}
.footer_box {
	display: flex;
	align-items: flex-start;
	gap: 18.6rem;
}
.footer_logo {
	width: 18rem;
	height: 100%;
	fill: #fff;
}
.footer_info {
	margin-top: 7rem;
}
.footer_info_text {
	font-family: ryo-gothic-plusn, sans-serif;
	font-weight: 300;
	font-size: 8px;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.04em;
}
.footer_info_logo {
	width: 90px;
	margin: 8px 0;
}
.footer_info_address {
	margin-top: 13px;
	line-height: 1.3;
}
.footer_menu {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 4rem 12rem;
}
.footer_list_item:not(:first-child) {
	margin-top: 3rem;
}
.footer_list_item_link {
	font-family: "Manrope", sans-serif;
	font-size: 1.3rem;
	color: #FBFDFD;
	line-height: 1;
}
.footer_list_item_link_blank {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.footer_list_item_link_blank:after {
	content: "";
	display: block;
	width: 1rem;
	height: 1.1rem;
	background-image: url(../img/blank.svg);
	background-size: cover;
	background-repeat: no-repeat;
}
.footer_list_item_link_web {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}
.footer_list_item_link_web:before {
	content: "";
	display: block;
	width: 1.8rem;
	height: 1.4rem;
	background-image: url(../img/web-icon.svg);
	background-size: cover;
	background-repeat: no-repeat;
}
.footer_list_item_link_instagram {
	display: flex;
	align-items: center;
	gap: 2.7rem;
}
.footer_list_item_link_instagram:before {
	content: "";
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url(../img/instagram-icon.svg);
	background-size: cover;
	background-repeat: no-repeat;
	margin-left: .1rem;
}
.footer_list_item_child {
	padding-left: .7rem;
	margin-top: 2rem;
}
.footer_list_item_child_item:not(:first-child) {
	margin-top: 1.5rem;
}
.footer_list_item_child_item_link {
	font-family: "Manrope", sans-serif;
	font-size: 1.3rem;
	color: rgb(251 253 253 / .6);
	line-height: 1;
}
.copyright {
	text-align: center;
	margin-top: 7rem;
}
.copyright_text {
	font-family: "Manrope", sans-serif;
	font-size: 1rem;
	color: #fff;
	line-height: 1;
}
@media (max-width:767px) {
	.footer {
		padding: 4rem 2rem 2rem;
	}
	.scroll_top {
		top: 4.5rem;
		right: 3rem;
	}
	.scroll_top_circle {
		width: 5rem;
		height: 5rem;
	}
	.footer_box {
		flex-direction: column;
		gap: 5rem;
	}
	.footer_info {
		margin-top: 5rem;
	}
	.footer_info_text {
		font-size: 1.1rem;
	}
	.footer_info_logo {
		width: 12rem;
		margin: 1rem 0;
	}
	.footer_info_address {
		margin-top: 1.5rem;
	}
	.footer_list_item_link {
		font-size: 1.5rem;
	}
	.footer_menu {
		column-gap: 8rem;
	}
}