.footer {
	background-color: #2F3631;
	padding-top: 100px;
	padding-bottom: 40px;
	overflow: hidden;
}
.footer .container {
	position: relative;
	z-index: 2;
}
.footer_circle {
	position: absolute;
    top: -10%;
    left: -12%;
    width: 64%;
    transform: rotate(246deg);
    filter: blur(20px);
	z-index: -1;
}
.footer_box {
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
}
.footer_left {
	width: 400px;
}
.footer_logo {
	width: 360px;
}
.footer_text {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	letter-spacing: 0.05em;
	margin: 20px 0 40px;
}
.footer .contact_box {
	background-color: rgb(255 255 255 / .1);
	border: 1px solid rgb(241 243 245 / .3);
	backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
	padding: 35px 24px;
	color: #fff;
}
.footer_right {
	display: flex;
	column-gap: 50px;
	padding-top: 20px;
	position: relative;
}
.footer_list_item_link {
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	line-height: calc(25/18);
	height: 65px;
	display: block;
}
.footer_list_item_link2 {
	font-size: 14px;
	font-weight: 400;
	color: #D9D9D9;
}
.footer_list_item_link_small {
	font-weight: 400;
	color: #D9D9D9;
	line-height: calc(22/16);
	height: 65px;
	display: block;
}
.footer_list_item_link_small2 {
	font-weight: 600;
	font-size: 18px;
}
.footer_sns {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	column-gap: 30px;
}
.footer_sns_title {
	font-family: "pragmatica-extended",sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #fff;
}
.footer_sns_box {
	display: flex;
	column-gap: 15px;
}
.footer_sns_box_item {
	width: 35px;
}
.copyright {
	text-align: center;
	margin-top: 40px;
}
.copyright_text {
	font-family: "pragmatica-extended",sans-serif;
	font-weight: 400;
	font-size: 12px;
	color: #fff;
}
@media (max-width: 1250px) {
	.footer_box {
		justify-content: center;
	}
	.footer_logo {
		margin: auto;
	}
	.footer_text {
		text-align: center;
	}
    .footer_right {
		display: none;
	}
}
@media (max-width: 767px) {
	.footer {
		padding-top: 65px;
		padding-bottom: 30px;
	}
	.footer_circle {
		top: -4%;
		left: -37%;
		width: 130%;
		transform: rotate(149deg);
	}
	.footer_logo {
		width: 230px;
	}
	.footer_text {
		font-size: 12px;
		margin-top: 10px;
	}
	.copyright {
		margin-top: 60px;
	}
	.copyright_text {
		font-size: 10px;
	}
}