/* bogo言語切り替えスイッチのスタイル */
.bogo-language-switcher {
	display: flex;align-items: center;flex-direction: column;gap: 8px;
	position: absolute;top: 80px;right: 50px;
}
ul.bogo-language-switcher li {
	width: 30px;height: 30px;
	font-size: 12px;font-family: "MFW-PA1GothicStd-Regular",'A P-OTF A1ゴシック Std R';
	background: #e9e9e9;border-radius: 50%;
	overflow: visible;cursor: pointer;
	transition: background .3s;
}

ul.bogo-language-switcher li.current {
	background: #08F7FE;
	font-family: "MFW-PA1GothicStd-Bold",'A P-OTF A1ゴシック Std B';
}
ul.bogo-language-switcher li:hover {background: #dadada}
ul.bogo-language-switcher li.current:hover {background: #08F7FE}

ul.bogo-language-switcher li span.bogo-language-name {
	position: relative;
	display: block;box-sizing: border-box;padding: 9px 0;
	text-align: center;line-height: 1;
	color: #111;
}
ul.bogo-language-switcher li span.bogoflags {display: none}
ul.bogo-language-switcher li span::before {display: none;content: ;}
ul.bogo-language-switcher li a {display: block;color: #111}

@media all and (max-width:769px) {
	/* スマホ */
	.bogo-language-switcher {
		top: auto;bottom: -70px;right: 20px;
	}
}
