.langChange {
  position: relative;
  display: inline-block;
}
.langChange__toggle {
  padding: 0 10px;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.langChange__toggle > span {
  padding-right: 16px;
  position: relative;
}
.langChange__toggle > span::after {
  content: "";
  width: 6px;
  height: 5px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #0078BA;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.langChange__toggle[aria-expanded=true] {
  color: #4cb5fc;
}
.langChange__list {
  width: 100%;
  height: 0;
  padding: 0;
  background: #fff;
  list-style: none;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
}
.langChange__list.is-open {
  height: auto;
  overflow: visible;
  opacity: 1;
}
.langChange__listItem {
  width: 100%;
}
.langChange__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #2f2f2f;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.langChange__link::before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/common/icon_lang.svg) center no-repeat;
          mask: url(../images/common/icon_lang.svg) center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
}
.langChange__link:hover, .langChange__link.is-current {
  color: #4cb5fc !important;
}
.langChange__link.is-current {
  pointer-events: none;
}

@media only screen and (max-width: 768px) {
  .langChange__toggle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .langChange__toggle > span::after {
    right: 7px;
  }
  .langChange__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4px 0;
  }
  .langChange__link > span {
    padding: 0 16px;
  }
}/*# sourceMappingURL=lang.css.map */