@charset "UTF-8";
/*------------------------*/

/*フッター*/

/*-----------------------*/
/* =============================
基礎 */
#footer {
	padding-top: var(--section-inner-gutter);
	padding-bottom: var(--gutter-md);

	background-color: var(--color-main-thin);
}
body:not(#index) #footer {
	margin-top: var(--section-gutter);
}
.footer__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 2em var(--gutter-var-10x);
}
/* =============================
ロゴ */
#footer-logo {
	width: 100%;
}
#footer-logo a {
	display: inline-block;
	width: 200px;
	max-width: 100%;
}
#footer-logo img {
	width: 100%;
	height: auto;
}
/* =============================
住所 */
.footer__addr-container {
	width: calc(330rem / 16);
	max-width: 100%;
	color: var(--color-main-soft);
}
.footer__addr {
	font-size: var(--txt-xs);
	line-height: 1.35;
}
.footer__tel {
	font-family: var(--number);
	font-size: var(--txt-xs);
	line-height: 1.25;
	margin-top: 1em;
}
/* =============================
サイトマップ */
#sitemap {
	width: calc(440rem / 16);
	max-width: 100%;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 0.5em var(--gutter-var-10x);

	height: calc(calc(1.7em * 3) + 1em);
}
.sitemap__item a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.7em;

	font-size: var(--txt-xs);
	line-height: 1.25;
	color: var(--color-main-soft);

	position: relative;
}
.sitemap__item a svg {
	width: 1em;
	height: 1em;
}
.sitemap__item a::before {
	content: "";
	display: inline-block;

	width: calc(100% - calc(1em + 0.7em));
	height: 1px;

	background-color: transparent;

	position: absolute;
	bottom: calc(0px - 0.1em);
	left: calc(1em + 0.7em);
}
@media(any-hover: hover) {
	.sitemap__item a::before {
		-webkit-transition: background-color .2s var(--easeInOutCirc);
		transition: background-color .2s var(--easeInOutCirc);
	}
	.sitemap__item a:hover::before {
		background-color: var(--color-main-soft);
	}
}
@media (max-width: 959px) {
	#sitemap {
		height: auto;
		row-gap: 0.65em;
		margin-top: 0.5em;
	}
}
/* =============================
コピーライト */
#copyright {
	width: 100%;

	font-family: var(--alphabet);
	font-size: var(--txt-xs);
	color: var(--color-main-soft);

	margin-top: 6.7em;
}
@media (max-width: 959px) {
	#copyright {
		margin-top: 4em;
	}
}