/* バイリンガルボタン */
#builingual {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  border-radius: 5px 0 0 0;
  padding: 8px !important;
  background: rgba(240, 240, 240, 0.8) !important;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between !important;
}
.translate {
  margin-top: 0 !important;
}
.language {
  color: #333 !important;
  float: none !important;
  padding: 0 !important;
}
.switch {
  float: none !important;
  width: 40px;
  margin-left: 5px !important;
  display: block !important;
}
.switch input[type="checkbox"] {
  display: none;
}
.switch label {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(240, 240, 240, 0.4);
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.switch label span {
  display: flex;
  align-items: center;
  justify-content: center;
}
div#builingual div.language select {
  margin: 0 !important;
  margin-left: 5px !important;
}
/* ON */
.switch label span:after {
  content: "OFF";
  font-size: 10px;
  font-weight: 500;
  color: #aaa;
}
.switch #cmn-toggle-1:checked + label {
  background-color: #000;
  box-shadow: none;
}
.switch #cmn-toggle-1:checked + label span:after {
  content: "ON";
  color: #fff;
}
@media screen and (max-width: 834px) {
  #builingual select {
    padding: 4px 2px !important;
  }
}
@media screen and (max-width: 640px) {
  #builingual {
    top: auto;
    bottom: 0;
    right: 0;
    padding: 5px !important;
    border-radius: 0 !important;
    width: 100%;
    justify-content: center !important;
  }
}
@media screen and (min-width: 641px) and (max-width: 834px) {
}
