footer {
	background-color: #24a368;
	padding: 60px;
	color: #fff;
	transition: all 0.3s ease;
}

.footer_contents {
	max-width: 1000px;
	margin: 0 auto;
}

.footer_info {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #fff;
	padding-bottom: 30px;
}

.footer_links {
	text-align: right;
}

.footer_links .menu {
	letter-spacing: 0px;
}

.contact_btn {
	display: inline-block;
	width: 250px;
	color: #24a368;
	font-size: 1.3rem;
	border: 1px solid #fff;
	border-radius: 3px;
	padding: 20px 0;
	text-align: center;
	margin-top: 35px;
	position: relative;
	z-index: 0;
	transition: all 0.3s ease; 
}

.contact_btn_back {
	display: block;
	width: 100%;
	height: 54px;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0; 
	z-index: -1;
}

.contact_btn_back::before {
	content: "";
	width: 0;
	height: 54px;
	position: absolute;
	background-color: #24a368;
	top: 0;
	right: 0;
	border-radius: 3px;
	z-index: -1;
	transition: all 0.5s ease;
}

.contact_btn:hover {
	color: #fff;
	background-color: #24a368;
	border: 1px solid #fff;
}

.contact_btn:hover .contact_btn_back::before {
	width: 100%;
}

.contact_btn::after {
	content: "";
	position: absolute;
	display: inline-block;
	top: 43%;
	right: 20px;
	width: 18px;
	height: 5px;
	border-right: 1px solid #24a368;
	border-bottom: 1px solid #24a368;
	transform: skew(45deg);
}

.contact_btn:hover::after {
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.address img {
	width: 188px;
	height: auto;
}

.address h2 {
	font-size: 1.7rem;
	padding: 25px 0 0 0;
}

.address p {
	padding-top: 10px;
}

.address p, .copy {
	font-size: 1.3rem;
	line-height: 23px;
}

.copy {
	text-align: center;
	margin-top: 25px;
}

.sp_footer_menu {
	display: none;
}

.lg_only {
	display: none;
}

/* footer_lg */
@media (max-width:1080px) {
	footer {
		padding: 45px 30px;
	}

	.address img {
		width: 150px;
	}

	.address h2 {
		font-size: 1.6rem;
		padding: 20px 0 10px 0;
	}

	.address p {
		font-size: 1.2rem;
		line-height: 18px;
	}

	.lg_only {
		display: block;
	}
}

/* footer_sp */
@media (max-width:768px) {
	footer {
		padding: 45px 20px;
		text-align: center;
	}

	.footer_info {
		display: initial;
		border-bottom: none;
		padding-bottom: 30px;
	}

	.address img {
		width: 258px;
		height: auto;
	}

	.address h2 {
		font-size: 2rem;
		padding: 30px 0 10px 0;
	}

	.address p {
		font-size: 1.4rem;
		line-height: 25px;
	}

	.sp_footer_menu {
		display: block;
		text-align: left;
		font-size: 1.4rem;
		margin: 20px 0;
	}

	.sp_footer_menu li {
		padding: 20px 0;
		border-bottom: 2px dotted #fff;
	}

	.contact_btn {
		width: 100%;
		font-size: 1.4rem;
		padding: 20px 0;
		margin-top: 40px;
	}

	.contact_btn::after {
		width: 25px;
		height: 7px;
	}

	.contact_btn_back, .contact_btn_back::before {
		height: 56px;
	}

	.lg_only {
		display: none;
	}
}