@charset "UTF-8";
:root {
	--bf-black: rgba(0, 0, 0, 1);
	--bf-white: rgba(255, 255, 255, 1);
}
.brand-footer ul, 
.brand-footer li, {
	margin: 0;
	padding: 0;
	list-style: none;
}
.brand-footer figure, 
.brand-footer figcaption {
	margin: 0;
	padding: 0;
	text-align: center;
}
.brand-footer img, 
.brand-footer svg {
	display: inline-block;
}
.brand-footer {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0;
	width: 100%;
	min-height: 96px;
	padding: 16px 32px;
	box-sizing: border-box;
	text-autospace: normal;
}
.brand-footer a {
	display: inline-block;
	text-decoration: none;
}

.brand-footer-content {
	display: flex;
	align-items: center;
	gap: 32px;
	max-width: calc(100% - (150px + 16px + 32px + 32px));
}
.brand-footer-access {
	display: flex;
	align-items: center;
	gap: 16px;
}
.brand-footer-logo {
	height: 40px;
}
.brand-footer-copyright {
	font-size: 0.75em;
	line-height: 1.25;
}
.brand-footer-products ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25em 0.75em;
}
.brand-footer-products .products-headline,
.brand-footer-copyright {
	display: block;
	opacity: 0.6;
	text-align:left;
}
.brand-footer-products .products-headline {
	font-size: 0.75em;
	line-height: 1.25;
	margin-bottom: 0.5em;
}
.brand-footer-products li {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.brand-footer-products li:before {
	content: none;
}
.brand-footer-products li::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 0.75em;
	vertical-align: -2px;
	margin-left: 12px;
	opacity: 0.4;
}
.brand-footer-products li:last-child::after {
	content: none;
}
.brand-footer-products a {
	position: relative;
	font-size: 0.75em;
	line-height: 1.25;
	opacity: 0.8;
}
.brand-footer-products a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: auto;
	height: 1px;
	width: 0;
	transition: .2s;
}
.brand-footer-products a:hover {
	opacity: 1;
}
.brand-footer-products a:hover::after {
	width: 100%;
}
.brand-footer-symbols {
	display: flex;
	gap: 8px;
	white-space: nowrap;
	padding-top: 8px;
}
.brand-footer-symbols img {
	height: 40px;
}
.brand-footer-symbols figcaption {
	font-size: 8px;
	text-align: center;
	line-height: 1.25;
	margin-top: 2px;
	opacity: 0.8;
}
/* light-theme color */
.light-theme .brand-footer,
.light-theme .brand-footer a,
.light-theme .brand-footer-symbols figcaption {
	color: var(--bf-black);
}
.light-theme .brand-footer {
	background-color: var(--bf-white);
}
.light-theme .brand-footer-products li::after,
.light-theme .brand-footer-products a::after {
	background-color: var(--bf-black);
}
.light-theme .brand-footer .brand-footer-logo {
	fill: #003b83;
}
.light-theme .brand-footer .logo-three-circle {
	fill: #99a9ce;
}
/* dark-theme color */
.dark-theme .brand-footer,
.dark-theme .brand-footer a,
.dark-theme .brand-footer-symbols figcaption {
	color: var(--bf-white);
}
.dark-theme .brand-footer {
	background-color: var(--bf-black);
}
.dark-theme .brand-footer-products li::after,
.dark-theme .brand-footer-products a::after {
	background-color: var(--bf-white);
}
.dark-theme .brand-footer .brand-footer-logo,
.dark-theme .brand-footer .logo-three-circle {
	fill: var(--bf-white);
}
/* break point */
@media screen and (max-width:960px) {
	.brand-footer {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 32px;
		height: auto;
	}
	.brand-footer-content {
		flex-flow: column wrap;
		align-items: center;
		gap: 16px;
		width: 100%;
		max-width: 100%;
	}
	.brand-footer-access {
		flex-direction: column;
		gap: 4px;
		margin-top: 16px;
	}
	.brand-footer-products ul {
		justify-content: center;
	}
	.brand-footer-products .products-headline {
		text-align: center;
	}
	.brand-footer-symbols {
		justify-content: center;
		width: 100%;
	}
}