/* Footer */
.site-footer {
	background-color: var(--bg-gray);
	padding: 60px 0 40px;
	font-size: 13px;
	color: var(--text-gray);
}

.footer-navigation {
	width: var(--content-width);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--border-gray);
}

.footer-col {
	width: 19%;
	border-right: 1px solid var(--border-gray);
	padding-right: 10px;
}

.footer-col:last-child {
	border-right: none;
}

.footer-col h3 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 15px;
}

.footer-list,
.footer-col ul {
	list-style: none;
}

.footer-list li {
	list-style-type: none !important;
}

.footer-list li a {
	display: block;
	padding: 2px 0 2px 12px;
	position: relative;
	color: var(--text-gray);
}

.footer-list li a::before {
	content: "・";
	position: absolute;
	left: 0;
	color: #999;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: var(--content-width);
	margin: 0 auto;
}

.copyright {
	font-size: 11px;
	margin-bottom: 15px;
}

.office-item {
	display: flex;
	margin-bottom: 5px;
	line-height: 1.4;
}

.office-name {
	width: 80px;
	font-weight: bold;
}

.office-address {
	width: 400px;
}

.footer-logo img {
	width: 400px;
	height: auto;
}


/* -------------------------------------------
   Fixed CTA & Page Top
------------------------------------------- */

/* CTA全体のコンテナ */
.fixed-cta {
	position: fixed;
	bottom: 20px;
	left: 40%;
	z-index: 1000;
	/* 初期状態：透明 ＋ 10px下に配置 ＋ クリック不可 */
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	background: rgba(230, 230, 230, 0.9);
	/* 外枠のグレー */
	padding: 8px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	display: flex;
	gap: 10px;
}

.fixed-cta.is-show {
	opacity: 1;
	transform: translateY(0);
	/* 元の位置に戻る */
	pointer-events: auto;
}

.cta-container {
	display: flex;
	gap: 8px;
}

/* ボタン共通 */
.cta-btn {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	transition: transform 0.2s;
}

.cta-btn:hover {
	transform: translateY(-2px);
}

/* 電話ボタン（オレンジ） */
.cta-tel {
	background-color: #f7931e;
}

/* メールボタン（赤系ピンク） */
.cta-mail {
	background-color: #ff6f6f;
	font-size: 18px;
	/* 文字数に合わせて少し調整 */
}

.cta-icon {
	width: 24px;
	margin-right: 10px;
	display: flex;
	align-items: center;
}

/* TOPへ戻るボタン（黒） */
.page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	text-decoration: none;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-top.is-show {
	opacity: 1;
	transform: translateY(0);
}

.page-top .arrow {
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
	margin-top: 5px;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.fixed-cta {
		left: 10px;
		right: 10px;
		/* スマホでは横いっぱいに */
		bottom: 10px;
	}

	.cta-btn {
		flex: 1;
		font-size: 16px;
		padding: 12px 5px;
		justify-content: center;
	}
}