/*--------------------------------------------------------------
# Footer Component (フッターコンポーネント)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	background-color: var(--color-beige);
}

/* フッター上部：アクセス・営業時間 */
.footer-top {
	width: 100%;
}

.footer-top-grid {
	min-height: var(--min-height-40);
	margin: 0 var(--spacing-xl);
	border-radius: var(--radius-lg);
	overflow: hidden;
	grid-template-columns: 30% 70%;
}

/* アクセス情報（左側） */
.footer-access {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.footer-access::after {
	content: "";
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	background-color: #282d27a3;
	z-index: 1;
}

.footer-access-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.footer-access-content {
	position: relative;
	z-index: 2;
	color: var(--color-white);
	width: 100%;
	max-width: var(--max-width-50);
}

.footer-access-title {
	font-size: var(--font-size-h3);
	color: var(--color-white);
	font-weight: 700;
}

.footer-access-address {
	font-size: var(--font-size-base);
	line-height: 1.8;
}

.footer-access-station {
	font-size: var(--font-size-base);
}

.footer-access-parking {
	font-size: var(--font-size-base);
}

.footer-google-maps {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-sm);
	padding: var(--spacing-sm) var(--spacing-md);
	background-color: var(--color-white);
	color: var(--color-text);
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: var(--transition-base);
	font-weight: 600;
}

.footer-google-maps:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-0.2rem); /* -2px */
	box-shadow: var(--shadow-md);
}

.google-maps-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem; /* 32px */
	height: 3.2rem; /* 32px */
	background-color: var(--color-primary);
	border-radius: 50%;
	color: var(--color-white);
}

.google-maps-icon i {
	font-size: 1.6rem; /* 16px */
}

.footer-google-maps:hover .google-maps-icon {
	background-color: var(--color-white);
	color: var(--color-primary);
}

/* 営業時間表（右側） */
.footer-hours {
	background-color: var(--color-primary);
}


/* フッター下部：メニュー・SNS */
.footer-bottom-grid {
	align-items: start;
}

.footer-menu-section {
	display: flex;
	flex-direction: column;
}

.footer-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-sm);
}

.footer-navigation ul li {
	margin: 0;
}

.footer-navigation ul li a {
	color: var(--color-text);
	text-decoration: none;
	transition: var(--transition-base);
	font-size: var(--font-size-base);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 0; /* 12px */
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	position: relative;
	font-weight: 600;
}

.footer-navigation ul li a::after {
	content: '\f061'; /* Font Awesome arrow-right icon */
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 1.2rem; /* 12px */
	color: var(--color-primary);
	transition: var(--transition-base);
	opacity: 1;
	transform: translateX(0);
}

.footer-navigation ul li a:hover::after {
	transform: translateX(0.4rem); /* 4px - 右に移動 */
}

.footer-navigation ul li a:hover {
	color: var(--color-primary);
	border-bottom-color: var(--color-primary);
	padding-left: 0.8rem; /* 8px */
}


.footer-social-link {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-sm);
	padding: 0; /* paddingを0に */
	background-color: var(--color-beige);
	border-radius: var(--radius-md);
	color: var(--color-text);
	text-decoration: none;
	transition: var(--transition-base);
	font-weight: 600;
	margin-left: auto; /* 右端に揃える */
}

/* 矢印を非表示 */
.footer-social-link::after {
	display: none !important;
}

.footer-social-link:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-0.2rem); /* -2px */
	box-shadow: var(--shadow-md);
	padding-right: 0; /* 矢印がないのでpadding-rightも0に */
}

.footer-social-link i {
	font-size: 2.4rem; /* 24px */
}

/* コピーライト */
.footer-copyright {
	background-color: var(--color-primary);
	padding: var(--spacing-md) 0;
	text-align: center;
}

.copyright {
	color: var(--color-white);
	font-size: var(--font-size-small);
	margin: 0;
}

/* Fixed Navigation (固定ナビゲーション) */
.fixed-nav {
	align-items: center;
	background-color: #fffdf6;
	border-radius: 6.0rem; /* 60px */
	bottom: 4.0rem; /* 40px */
	box-shadow: 0 0 4.0rem rgba(40, 45, 39, 0.08); /* 0 0 40px #282d2714 */
	display: flex;
	height: 6.0rem; /* 60px */
	justify-content: center;
	padding: 0 3.2rem; /* 32px */
	position: fixed;
	right: 4.0rem; /* 40px - ヘッダーナビゲーションと横揃え */
	z-index: 100;
}

@media (max-width: 768px) {
	.fixed-nav {
		bottom: 2.0rem; /* 20px */
		left: 0.4rem; /* 4px */
		padding: 0 0.1rem; /* 1px */
		right: 0.4rem; /* 4px */
	}
}

/* フルスクリーンメニューが開いているときは固定ナビゲーションを非表示 */
body.menu-open .fixed-nav {
	display: none;
}

.fixed-nav__list {
	align-items: center;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 768px) {
	.fixed-nav__list {
		width: 100%;
	}
}

.fixed-nav__list__item:nth-child(2) {
	border-left: 1px solid rgba(40, 45, 39, 0.4);
}

@media (min-width: 769px) {
	.fixed-nav__list__item:nth-child(2) {
		margin-left: 2.4rem; /* 24px */
		padding-left: 2.4rem; /* 24px */
	}
}

@media (max-width: 768px) {
	.fixed-nav__list__item {
		display: flex;
		justify-content: center;
	}

	.fixed-nav__list__item:first-child {
		flex: 198;
	}

	.fixed-nav__list__item:nth-child(2) {
		flex: 158;
	}
}

.fixed-nav__link {
	align-items: center;
	display: flex;
	gap: 0.8rem; /* 8px */
	height: 2.0rem; /* 20px */
	white-space: nowrap;
	text-decoration: none;
	color: var(--color-text);
	transition: all 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}

@media (hover: hover) and (pointer: fine) {
	.fixed-nav__link .fixed-nav__link__text:after {
		opacity: 0;
		transform: matrix(1, 0.15, -0.15, 0.25, 0, 20);
	}

	.fixed-nav__link:hover .fixed-nav__link__text:after,
	.fixed-nav__link:hover .fixed-nav__link__text__inner {
		transition: transform 0.3s cubic-bezier(0, 0.55, 0.45, 1), opacity 0.3s linear;
	}

	.fixed-nav__link:hover .fixed-nav__link__text__inner {
		opacity: 0;
		transform: matrix(1, 0.15, -0.15, 0.25, 0, -20);
	}

	.fixed-nav__link:hover .fixed-nav__link__text:after {
		opacity: 1;
		transform: scale(1);
	}
}

.fixed-nav__link__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5a9f4d;
	font-size: 1.6rem; /* 16px */
	width: 1.6rem; /* 16px */
	height: 1.6rem; /* 16px */
}

@media (max-width: 768px) {
	.fixed-nav__link__icon {
		font-size: 1.5rem; /* 15px */
		width: 1.5rem; /* 15px */
		height: 1.5rem; /* 15px */
	}
}

.fixed-nav__link__text {
	display: block;
	font-size: 1.3rem; /* 13px */
	line-height: 1.2;
	transform: translateY(0.1rem); /* 1px */
}

@media (max-width: 768px) {
	.fixed-nav__link__text {
		font-size: 1.2rem; /* 12px */
	}
}

.fixed-nav__link__text--tel {
	font-family: NeueHaasUnicaW1G-Medium, sans-serif;
	font-size: 1.5rem; /* 15px */
	transform: translateY(-0.1rem); /* -1px */
}

@media (max-width: 768px) {
	.fixed-nav__link__text--tel {
		font-size: 1.4rem; /* 14px */
	}
}

.fixed-nav__link__text--line {
	font-family: NewCezannePro-DB, FOT-ニューセザンヌ Pro DB, sans-serif;
	font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
	.fixed-nav__link__text {
		overflow: hidden;
		position: relative;
	}

	.fixed-nav__link__text:after {
		content: attr(data-text);
		display: block;
		left: 0;
		position: absolute;
		top: 0;
	}
}

.fixed-nav__link__text__inner {
	display: block;
}

/* Footer Responsive (フッター レスポンシブ) */
@media screen and (max-width: 1024px) {
	.footer-top-grid {
		grid-template-columns: 1fr;
		min-height: auto;
		margin: 0;
	}

	.footer-hours {
		padding: var(--spacing-xl);
	}

	.footer-bottom-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}


	.footer-navigation ul {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 768px) {
	.footer-access {
		padding: 4rem 2rem;
		min-height: 25.0rem;
	}

	.footer-access-title {
		font-size: var(--font-size-h3);
	}

	.footer-hours {
		padding: 4rem 2rem;
	}



}


/* Note: .page-header, .page-title, .page-subtitle は Tailwind CSS で定義済み */

