/* フッター全体 */
.site-footer {
	background-color: #F2EEE7;
	padding: 25px 0;
}

.site-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-navigation {
	margin-bottom: 12px;
}

.site-footer small {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.footer-left {
	flex: 0 0 auto;
}

.footer-logo {
	display: block;
	width: 180px;
	height: auto;
}

.footer-right {
	flex: 1 1 auto;
	text-align: right;
	font-weight: 700;
}

.footer-menu {
	display: inline-flex;
	gap: 24px;
	list-style: none;
}

.footer-menu li a {
	text-decoration: none;
	color: #413B32;
}

.footer-spacer {
	height: 16px; /* ロゴ高さとの差分に応じて調整可 */
}

.footer-legal {
	display: inline-flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-end;
}

.footer-privacy {
	color: #413B32;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.footer-copyright {
	color: #413B32;
}

/* お問い合わせセクション */
.contact-section {
	background-color: #e6ded1;
	padding: 60px 0;
	border-radius: 0 150px 0 0;
	margin-top: -150px;
	position: relative;
	z-index: 2;
}

.contact-section__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	gap: 7%;
	align-items: center;
	justify-content: space-between;
}

.contact-left {
	flex: 1 1 60%;
}

.contact-title-jp {
	font-size: 28px;
	margin: 0 0 6px 0;
	color: #413B32;
}

.contact-title-en {
	font-size: 14px;
	color: #D58822;
	margin: 0 0 16px 0;
}

.contact-lead {
	font-size: 14px;
	line-height: 1.8;
	margin: 0 0 12px 0;
}

.contact-list {
	margin: 0;
	padding-left: 18px;
	line-height: 1.9;
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(3, auto);
	gap: 8px 24px;
}

@media screen and (max-width: 1100px) {
	.contact-list {
		grid-template-rows: repeat(5, auto);
	}
}

.contact-list li::marker {
	color: #D58822;
}

.contact-right {
	flex: 1 1 40%;
	text-align: right;
}

.contact-cta-button {
	display: inline-block;
	background-color: #D58822;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	padding: 16px 28px;
	font-size: 18px;
	box-shadow: 0px 3px 6px #00000029;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
}

.contact-cta-button:hover,
.contact-cta-button:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* PR/キャッチコピー セクション */
.promo-section {
	position: relative;
	background-image: url('../images/footer/promo-bg-gradina-exterior.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 0 230px 0;
	z-index: 0;
}

.promo-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(152,190,166,0.0) 0%,
		rgba(152,190,166,0.5) 35%,
		rgba(152,190,166,0.85) 50%,
		rgba(152,190,166,0.85) 100%
	);
}

@media screen and (max-width: 1200px) {
	.promo-section::before {
		background: rgba(152,190,166,0.85);
	}
}

.promo-section__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

.promo-copy {
	max-width: 600px;
	margin-left: auto;
	color: #fff;
}

.promo-head {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 20px;
}

.promo-logo {
	width: 240px;
	height: auto;
}

.promo-title-jp {
	color: #fff;
	font-size: 28px;
	margin: 0 0 8px 0;
}

.promo-lead {
	color: #fff;
	font-size: 16px;
	line-height: 1.9;
}

@media screen and (max-width: 1300px) {
	.contact-section__inner {
		padding: 0 80px;
		gap: 0%;
	}
	.site-footer__inner {
		padding: 0 80px;
	}
}

@media screen and (max-width: 767px) {
	.promo-section__inner {
		text-align: center;
	}
	.promo-copy {
		margin: 0 auto;
	}
	.promo-head {
		display: block;
	}
	.promo-logo {
		display: block;
		margin: 0 auto 16px;
	}
}

@media screen and (max-width: 830px) {
	.contact-section__inner {
		display: block;
	}
	.contact-right {
		text-align: left;
		margin-top: 24px;
	}
}

@media screen and (max-width: 767px) {
	.contact-section__inner {
		padding: 0 40px;
	}
	.site-footer__inner {
		padding: 0 40px;
	}
}

@media screen and (max-width: 1200px) {
	.site-footer__inner {
		display: block;
		text-align: center;
	}
	.footer-left {
		text-align: center;
	}
	.footer-logo {
		margin: 0 auto;
	}
	.footer-right {
		text-align: center;
	}
}

@media screen and (max-width: 1000px) {
	.footer-menu {
		display: block;
		text-align: center;
	}
	.footer-menu li {
		margin: 8px 0;
	}
	.footer-legal {
		display: block;
		text-align: center;
		margin-top: 8px;
	}
	.footer-privacy {
		display: inline-block;
		margin: 8px 0;
	}
}
