/* footer ------------------------------------------------------------- */

footer {}

.footer__item {}

.footer__bg-blue {
	background: var(--bg-blue);
	color: var(--text-white) !important;
}

.footer__bg-blue a {}


.footer__inner {
	overflow: hidden;
	/*  */
	width: 100%;
	max-width: 1200px;
	/*  */
	margin: auto;
	padding: 2rem 1rem;

}

.footer__inner_flex {
	display: flex;
	gap: 5rem;
}

.footer__border-bottom {
	border-bottom: 1px solid var(--bg-gray);
}

.footer__inner_space-between {
	justify-content: space-between;
}

/*  */
.footer__navigation {}

.footer-nav {}

.footer-nav_mt_space {
	margin-top: 2rem;
}

.footer-nav__item {}

.footer_nav__title {
	color: var(--gray100);
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 1.8;
}

.footer_nav__link {
	line-height: 1.8;
	color: var(--text-white);
}

/*  */

.footer-inner__logo {
	height: 80px;
}

.footer-inner__logo-img {
	height: 100%;
}

/*  */

.banner-group {
	display: flex;
	gap: 1rem;
}

.banner-group__item {}

.banner-group__img {
	height: 100px;
}

/*  */

.footer__bottom-nav {
	width: fit-content;
	margin: 0 auto 1rem;
}

.bottom-nav {
	display: flex;
	gap: 1rem;
}

.bottom-nav__item {}

.bottom-nav__link {
	font-weight: bold;
	border-bottom: 1px solid;
}

/*  */

.copyright {
	display: block;
	width: fit-content;
	margin: auto;
}


/* 固定フッター */
.fix-nav {
	position: fixed;
	right: 0;
	top: 70%;
	transform: translateY(-50%);
	z-index: 99;
}

.fix-nav__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .2rem;
	/*  */
	color: var(--text-white);
	/*  */
	width: 80px;
	height: 80px;
}

.fix-nav__icon {}

.fix-nav__icon_rotate-top {
	transform: rotate(180deg);
}

.fix-nav__text {
	font-weight: bold;
}

.fix-nav__access {
	border-radius: 8px 0 0 0;
	background: var(--bg-blue);
}

.fix-nav__fee {
	background: var(--bg-orange);
}

.fix-nav__contact {
	background: var(--bg-yellow);
}

.fix-nav__to-top {
	height: 40px;
	/*  */
	background: var(--bg-gray);
}


.fix-nav__item:first-child {
	border-radius: 8px 0 0 0;
}

.fix-nav__item:last-child {
	border-radius: 0 0 0 8px;
}