.footer-section {
	background: #fff;
	text-align: center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
	padding-top: 60px;
}

.footer-inner {
	margin: 0 auto;
	width: 100%;
}

.footer-logo {
	font-size: 6.5rem;
	letter-spacing: 2px;
	margin-bottom: 40px;
}

.footer-top-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-bottom: 60px;
}

.footer-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.footer-tags a {
	border: 1px solid #000;
	padding: 15px 22px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 1.5rem;
	background: #f5f5f5;
	color: #000;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-tags a:hover {
	background: #000;
	color: #fff;
}

.footer-contact-button {
	display: inline-block;
	padding: 0.7em 1.2em;
	font-size: 1.8rem;
	border: 2px solid #000;
	border-radius: 50px;
	font-weight: 700;
	transform: rotate(-10deg);
	transition: all 0.3s ease;
	background: transparent;
	color: #000;
	text-decoration: none;
}

.footer-contact-button:hover {
	background: #000;
	color: #fff;
}

.scroll-infinity {
	overflow: hidden;
	width: 100%;
	margin: 30px 0;
}

.scroll-infinity__wrap {
	display: flex;
	width: fit-content;
}

.scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.scroll-infinity__list--left {
	animation: infinity-scroll-left 20s linear infinite;
}

.scroll-infinity__item {
	width: calc(100vw / 6);
	flex-shrink: 0;
	padding: 0 20px;
}

.scroll-infinity__item>img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.scroll-infinity__item>img:hover {
	transform: scale(1.1);
}

@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

/*=====フッター下部（黒背景）=====*/
.footer-bottom-area {
	background: #000;
	color: #fff;
	border-top: 1px solid #333;
	display: flex;
	justify-content: space-between;
	padding: 17px 25px;
}

.footer-nav {
	display: flex;
	justify-content: center;
	gap: 20px;
	font-size: 1.2rem;
	font-weight: 600;
}

.footer-nav a {
	color: #fff;
	text-decoration: none;
	position: relative;
}

.footer-nav a::after {
	content: '';
	display: block;
	width: 0%;
	height: 2px;
	background: #fff;
	transition: width 0.3s;
	position: absolute;
	bottom: -4px;
	left: 0;
}

.footer-nav a:hover::after {
	width: 100%;
}

.footer-bottom {
	font-size: 1rem;
	color: #999;
}

button {
	color: inherit;
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	text-align: inherit;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

button:focus,
button:active {
	outline: none;
	color: inherit;
}



@media (max-width: 1024px) {
	.footer-bottom-area {
		flex-direction: column;
		gap: 7px;
	}

	
	.footer-section {
		padding-top: 0;
	}

	.footer-logo {
		font-size: 3.5rem;
		margin-bottom: 24px;
		margin-top: 24px;
	}

	.footer-top-row {
		flex-direction: column;
		gap: 30px;
		margin-bottom: 40px;
	}

	.footer-tags {
		flex-direction: row;
		gap: 8px;
	}

	.footer-tags a {
		font-size: 1.1rem;
		padding: 6px 6px;
		border-radius: 6px;
	}

	.footer-contact-button {
		font-size: 1.1rem;
		padding: 0.6em 0.6em;
		border-radius: 40px;
		transform: rotate(0deg);
	}

	.scroll-infinity {
		margin: 40px 0;
	}

	.scroll-infinity__item {
		width: calc(100vw / 2.5);
		/* 少し大きく見せる */
		padding: 0 12px;
	}

	.footer-nav {
		flex-direction: row;
		font-size: 0.85rem;
		gap: 10px;
	}

	.footer-address {
		font-size: 0.75rem;
		padding: 0 1rem;
		text-align: center;
	}

	.footer-bottom {
		font-size: 0.7rem;
	}
}