/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 19 2025 | 02:13:56 */
/* =========================
   共通
========================= */
.footer-sns {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}

.footer-divider {
	width: 100%;
	height: 1px;
	background: #fff;
	margin: 24px 0;
}

.footer-group-1,
.footer-group-2 {
	display: flex;
	justify-content: center;
	gap: 24px;
}

/* =========================
   スマホ用
========================= */
@media (max-width: 1119px) {
	/* SNS */
	.footer-sns {
		margin-bottom: 16px;
	}

	/* ===== グループ1 ===== */
	.footer-group-1 {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: 0;
	}

	.footer-group-1 li {
		width: 100%;
	}

	.footer-group-1 a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 14px 0;
		font-size: 12px;
		font-weight: 700;
	}

	.footer-group-1 a::after {
		content: "\f054";
		font-family: "Font Awesome 6 Free";
		font-weight: 700;
		color: #fff;
		font-size: 1.3em;
	}

	/* ===== グループ2 ===== */
	.footer-group-2 {
		display: flex;
		justify-content: center;
		gap: 2.3rem;
		padding: 12px 0;
		font-weight: 700;
	}
	
	.footer-group-2 a {
		font-size: 10px;
	}

	.footer-group-2 a::after {
		content: "";
	}

	/* ===== 区切り線 ===== */
	.footer-divider {
		width: 100%;
		height: 1px;
		background: #ccc;
		margin: 0;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
	}
}

/* PC group1 内の区切り線を無効化 */
@media (min-width: 1120px) {
	.footer-group-1 .footer-divider {
		display: none;
	}
}

