@charset "utf-8";
/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
医療法人美郷会　こころはすサイト共通
	ver.2025.08
	ページフッターのスタイルシート。
────────────────────────────────────────
FileName:		/resources.kokorohasu/css/kokorohasu-style-footer.css
Editor:			TRUSTEC
Description:	こころはすサイト共通のページフッターのスタイルシート。
────────────────────────────────────────
2025/10/27:		公開。
2025/08/01:		開発開始。
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/





/* ::::: [CUSTOM PROPERTIES] ::::: */
:root {

	/* Footer
	--------- --------- --------- ------- */
}




/* ::::: [SECTION: HEADER] ::::: */

/* Footer
--------- --------- --------- ------- */
#footer {
	background-color: #606060;
	color: #ffffff;
	font-size: 0.75em;
	line-height: 1.5em;
	width: 100%;
	border-top: solid 1px rgba(0, 0, 0, 0.2);
	position: relative;

/*	background: rgba(0, 255, 0, 0.1);*/
}

#footer a {
	color: #f0f0f0;
}

/* Caption
--------- --------- --------- ------- */
#footer-caption {
	font-family: var(--title-font-family);
	font-size: small;
	font-weight: bold;
	margin-bottom: 0.5em;
}

/* Address
--------- --------- --------- ------- */
.footer-address {
/*	margin-bottom: 0.5em;*/
}

/* Navigation
--------- --------- --------- ------- */
.return-top {
	text-decoration: none;
	position: fixed;
	z-index: 4;
	bottom: 1rem;
	right: 0.75rem;
	opacity: 0.8;
}
.return-top::before {
	/*content: "\f062";*/
	content: url("../images/arrow_upward_100dp_FFF_FILL0_wght400_GRAD0_opsz48.svg");
	background-color: rgba(0, 0, 0, 0.3);
	color: #ffffff;
	font-size: 2rem;
	line-height: 1rem;
	padding: 0.5rem 0.3rem 0 0.3rem;
	border-radius: 5px;
}
.return-top:hover,
.return-top:active,
.return-top:focus {
	opacity: 1;
}

.scroll-slide {
	opacity: 0;
	transform: translateY(-100px);
}

/*　上に上がる動き　*/
.scroll-slide.UpMove{
	animation: UpAnime 0.6s forwards;
}
@keyframes UpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 0.8;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/
.scroll-slide.DownMove{
	animation: DownAnime 0.6s forwards;
}
@keyframes DownAnime{
	from {
		opacity: 0.8;
		transform: translateY(0);
	}
	to {
		opacity: 0.8;
		transform: translateY(100px);
	}
}





/* Telephone Number
--------- --------- --------- ------- */
.footer-telephone {
	font-family: var(--title-font-family);
	font-size: 1.8em;
	line-height: var(--common-line-height);
	margin-bottom: 0;
	padding-top: 0.5em;
	border-top: solid 1px rgba(255, 255, 255, 0.2);
}
/*.footer-telephone::before {
	content: "\f098";
	color: #ffffff;
	font-size: 1.8rem;
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	line-height: 1.5em;
	vertical-align: baseline;
	margin-right: 0.2em;
	display: inline-block;
}*/

/* X-Small < 576px */
@media screen and (max-width: 575px) {
	.footer-telephone {
		text-align: center;
		width: 100%;
	}
}