/**
 * 06_footer.css (Monochrome Refresh)
 *
 * フッター
 * (配色は 01_base.css の変数を参照)
 */

.site-footer {
	/* --color-bg-dark (チャコール) に変更 */
	background-color: var(--color-bg-dark);
	padding: 80px 0 40px;
	/* 暗い背景用の罫線に変更 */
	border-top: 1px solid var(--color-border-dark-bg);
	color: var(--color-text-reverse); /* フッター全体の基本文字色を白に */
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 40px;
	padding-bottom: 60px;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}

.footer-column-main { }
.footer-column-nav { }

.footer-title {
	font-size: 2.4rem;
	font-weight: 700;
	margin: 0 0 20px;
	color: #fff;
	font-family: var(--font-family-heading);
}
.footer-title span {
	/* ゴールドからグレー（明るめ）に変更 */
	color: #999; 
}
.footer-address {
	font-size: 1.4rem;
	color: rgba(224, 224, 224, 0.7);
	line-height: 1.8;
	font-style: normal;
}
.footer-license {
	font-size: 1.2rem;
	color: rgba(224, 224, 224, 0.5);
	margin-top: 15px;
}

.footer-nav-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.footer-menu {
	list-style: none;
	padding: 0; margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-menu a {
	font-size: 1.4rem;
	color: rgba(224, 224, 224, 0.8);
	text-decoration: none;
}
.footer-menu a:hover {
	color: #fff; /* ゴールドから白に変更 */
	text-decoration: underline;
}
.footer-bottom {
	padding-top: 40px;
	border-top: 1px solid var(--color-border-dark-bg); /* 暗い背景用の罫線 */
	text-align: center;
	font-size: 1.3rem;
	color: rgba(224, 224, 224, 0.6);
}

