/* =Footer
-------------------------------------------------------------- */
#footer-cta {
	padding-block: 80px 70px;
	background: var(--color-bg-lightgreen);
}

#footer {
	padding-top: 60px;
	background: var(--color-main-green);
	color: #fff;
}
#footer .footer-inner {
	display: flex;
	justify-content: space-between;
	padding-bottom: 50px;
	border-bottom: 1px solid #31643D;
	gap: 30px;
}

#footer-title {
	margin-block: 0 30px;
}
#footer-title .txt {
	line-height: 1;
	font-size: 2.6rem;
}

#footer_nav {
	display: flex;
	gap: 60px;
	justify-content: flex-end;
}
#footer_nav .item {
	font-weight: var(--weight-bold);
}
#footer_nav .item + .item {
	margin-top: 15px;
}
#footer_nav .sub-item {
	margin-top: 10px;
	font-size: 1.4rem;
	display: flex;
	gap: 5px;
	align-items: center;
}
#footer_nav .sub-item::before {
	content: '';
	display: block;
	width: 10px;
	aspect-ratio: 1/1;
	border-radius: 100%;
	background: var(--color-bg-orange);
}

@media screen and (max-width: 736px) {
	#footer .footer-inner {
		flex-direction: column;
	}
	#footer-title,
	#footer-title + p {
		text-align: center;
	}
	#footer_nav {
		justify-content: center;
	}
	#footer_nav .item + .item {
		margin-top: 15px;
	}
	#footer_nav .sub-item {
		margin-top: 10px;
		font-size: 1.4rem;
		display: flex;
		gap: 5px;
		align-items: center;
	}
	#footer_nav .sub-item::before {
		content: '';
		display: block;
		width: 10px;
		aspect-ratio: 1/1;
		border-radius: 100%;
		background: var(--color-bg-orange);
	}
}

/* = copyrights
-------------------------------------------------------------- */
#copyrights {
	padding-block: 30px 50px;
}