ul.lang-switch-list {
  display: block !important;
  position: absolute;
  z-index: 100;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 146px;
  max-height: 600px;
  overflow: hidden;
  overflow-y: auto;
  background: #fff;
  border: none;
  border-radius: 5px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s linear;
}

ul.lang-switch-list.is-open {
  opacity: 1;
  pointer-events: auto;
}

ul.lang-switch-list li {
  margin: 0;
  display: block !important;
  width: 100%;
}

ul.lang-switch-list button {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 16px 16px 28px;
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #27313b;
  font-family: inherit;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s linear;
}

ul.lang-switch-list button:hover {
  background-color: #dee5ec;
  color: #27313b;
}

ul.lang-switch-list .is-current button {
  background-color: #dee5ec;
  color: #27313b;
}

ul.lang-switch-list .is-current button::before {
  content: "";
  position: absolute;
  left: 12px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #40b87c;
}

.block-footer-language {
  position: relative;
}

.block-footer-language .lang-switch-anchor {
  display: inline-block;
  position: static;
}

.block-footer-language .lang-switch-anchor>button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border: none;
  background: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #000;
  font-family: inherit;
  cursor: pointer;
}

.block-footer-language .lang-switch-anchor>button .divider {
  color: #ccc;
  font-weight: 300;
}

.block-footer-language .lang-switch-anchor>button .lang-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: -4px;
  background: url("/img/usr/common/icon_lang.png") no-repeat 50% 50%/contain;
}

.block-footer-language .lang-switch-anchor>button .caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: transform 0.2s;
}

.block-footer-language.is-active .lang-switch-anchor>button .caret {
  margin-top: -3px;
  transform: rotate(135deg);
}

.block-footer-language .lang-switch-list {
  bottom: calc(100% + 4px);
  white-space: nowrap;
}

.block-footer-menu:has(.block-footer-language.block-footer-language--pc) {
  padding-bottom: 20px;
}

.block-footer-language--pc {
  box-sizing: border-box;
  max-width: 1920px;
  margin: 14px auto 0;
  padding: 0 100px;
  text-align: right;
}

.block-footer-language--pc .lang-switch-anchor>button {
  gap: 10px;
}

.block-footer-language--pc .lang-switch-list {
  right: 100px;
}

.block-footer-language--pc .lang-switch-anchor>button{
  font-size: 15px;
  font-weight:500;
}

.block-footer-language--sp {
  margin: 20px auto 0;
  text-align: center;
}

.block-footer-language--sp .lang-switch-anchor>button{
  font-size: 13px !important;
  font-weight:500 !important;
}

.block-footer-language--sp .lang-switch-list {
  left: 50%;
  transform: translateX(-50%);
}

.block-footer-language--menu {
  padding: 6px 15px 24px;
  text-align: left;
}

.block-footer-language--menu .lang-switch-anchor>button {
  gap: 10px;
}

.block-footer-language--menu .lang-switch-list {
  left: 15px;
}

@media (min-width: 768px) {
  .block-footer-language--menu .lang-switch-anchor {
    position: relative;
  }

  .block-footer-language--menu .lang-switch-list {
    left: calc(100% + 10px);
    right: auto;
    bottom: 0;
  }
}
