@charset "UTF-8";

.footer {
	width: 100%;
	height: 300px;
	padding-top: 60px;
	padding-bottom: 20px;
	background-image: url(../img/common/footer.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
}

.footer .txt .font01 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
}

.footer .txt .font02 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	margin-top: 5px;
}

.footer .txt .font03 {
	font-size: 14px;
	margin-top: 15px;
}

.footer .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

.footer .col01 {
	display: flex;
	gap: 40px;
}

.footer .logo {
	width: 140px;
}

.footer .logo img {
	width: 100%;
}

.footer .nav {
	display: flex;
	align-items: center;
	font-size: 14px;
	gap: 25px;
}

.footer .buttons a {
	width: 300px;
}

.footer .buttons a img {
	width: 100%;
}

.footer .sns {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer .sns a {
	display: flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.footer .copy {
	font-size: 12px;
	text-align: center;
	color: #777777;
	margin-top: 12px;
}

@media screen and (max-width: 1024px) {
	.footer {
		position: static;
		background-size: cover;
	}
}

@media screen and (max-width: 560px) {
	.footer {
		background-image: url(../img/common/footerSP.png);
		padding-top: 0;
		height: auto;
	}

	.footer .inner {
		padding: 0 10px;
	}

	.footer .txt {
		padding: 0 10px;
	}

	.footer .txt .font01 {
		font-size: 6.5vw;
	}

	.footer .txt .font02 {
		font-size: 12vw;
		margin-top: 0;
	}

	.footer .txt .font03 {
		font-size: 4vw;
		margin-top: 2.5vw;
	}

	.footer .buttons {
		flex-direction: column;
		margin-top: 90px;
	}

	.footer .buttons a {
		width: 100%;
	}

	.footer .row {
		flex-direction: column;
		gap: 20px;
	}

	.footer .col01 {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.footer .logo {
		width: 240px;
	}

	.footer .nav {
		width: 270px;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 25px;
	}

	.footer .sns {
		gap: 24px;
	}

	.footer .sns a {
		width: 30px;
		height: auto;
	}

	.footer .copy {
		margin-top: 20px;
	}

}