@charset "utf-8";
.site_footer {
	background: #2c571f;
	color: #dbdbdb;
	padding: 100px 56px 0px;
	font-size: 14px;
background-color: #2c571f;
    background-image: repeating-linear-gradient(to right, rgba(207, 182, 102, 0.18) 0px, rgba(207, 182, 102, 0.18) 6px, rgba(0, 0, 0, 0) 6px, rgba(0, 0, 0, 0) 40px, rgba(0, 0, 0, 0.25) 40px, rgba(0, 0, 0, 0.25) 46px, rgba(0, 0, 0, 0) 46px, rgba(0, 0, 0, 0) 80px);
}

/* レイアウト */
.footer_inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

/* ブロック */
.footer_block h3 {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 12px;
	color: #aa925a;
}

/* ロゴ */
.footer_logo img {
	max-width: 190px;
	opacity: 0.85;
}

/* テキスト */
.footer_block p {
	line-height: 1.8;
}

/* メニュー */
.footer_menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_menu li {
	margin-bottom: 8px;
}

.footer_menu a {
	color: #dbdbdb;
	text-decoration: none;
	position: relative;
}

/* dankan風：控えめホバー */
.footer_menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background: rgba(255,255,255,0.4);
	transition: width 0.3s ease;
}

.footer_menu a:hover::after {
	width: 100%;
}

/* アクセス */
.footer_access a {
	display: inline-block;
	margin-top: 6px;
	font-size: 14px;
	letter-spacing: 0.08em;
	color: #dbdbdb;
}

/* コピーライト */
.footer_bottom {
	max-width: 1100px;
	margin: 60px auto 0;
	padding: 16px 0;
	border-top: 1px solid rgb(223 212 173 / 32%);
	text-align: center;
}

.footer_bottom small {
	font-size: 10px;
	letter-spacing: 0.12em;
	color: #dbdbdb;
}

/* PC横並び */
@media screen and (min-width: 768px) {
	.footer_inner {
		flex-direction: row;
		justify-content: space-between;
		gap: 48px;
	}

	.footer_logo {
		flex: 0 0 238px;
	}

	.footer_access,
	.footer_hours,
	.footer_menu {
		flex: 1;
	}

	.footer_bottom {
		text-align: center;
	}
}
/* SNS */
.footer_sns {
	list-style: none;
	padding: 0;
	margin: 18px auto 0;
	display: flex;
	gap: 18px;
	width: 100px;
}

.footer_sns a {
	font-size: 24px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #b5b5b5;
	text-decoration: none;
	position: relative;
}
/* ③ SNS */
.footer-sns-col {
	flex: 0.8;
}

.footer-sns {
	display: flex;
	gap: 14px;
}

.footer-sns a {
	width: 32px;
	height: 32px;
	border: 1px solid #444;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #c0c0c0;
	border-radius: 50%;
	transition: .3s;
}

.footer-sns a:hover {
	background: #fff;
	color: #1a1a1a;
	border-color: #fff;
}
/* 控えめホバー */
.footer_sns a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0;
	height: 1px;
	background: rgba(255,255,255,0.35);
	transition: width 0.3s ease;
}

.footer_sns a:hover::after {
	width: 100%;
}

/* スマホは中央寄せ */
@media screen and (max-width: 767px) {
	.footer_logo {
		text-align: center;
		margin: 0 auto;
	}
	.footer_sns {
		justify-content: center;
	}
	.footer_bottom {
		padding: 20px 0;
	}
.site_footer {
        padding: 60px 56px 0px;
}
	#pagetop {
    position: fixed;
    bottom: 4px;
    right: 4px;
}
}

