@charset "utf-8";
/* 言語スイッチ全体のスタイル */
.lang-switch-container {
  height: 38px; /* Contactボタンの高さに合わせる */
  background: #f8f9fa;
  border-radius: 20px;
  padding: 0 15px;
  border: 1px solid #dee2e6;
}

/* 各ボタンのスタイル */
.lang-switch-btn {
  font-size: 13px;
  font-weight: bold;
  color: #666;
  padding: 2px 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.lang-switch-btn:hover {
  color: #f16822; /* サイトのメインカラーに合わせる */
}

/* アクティブ（現在選択中）な言語のスタイル */
.lang-switch-btn.active {
  color: #fff !important;
  background-color: #f16822; /* アクティブ時の背景色（メインカラー） */
  border-radius: 4px;
  pointer-events: none; /* 現在の言語はクリック不可に */
}

/* 区切り線のスタイル */
.lang-separator {
  color: #ccc;
  margin: 0 5px;
  font-size: 12px;
}

/* SP（スマホ）時の調整 */
@media (max-width: 991.98px) {
  .lang-switch-container {
      display: inline-flex !important;
      margin-top: 10px;
      margin-bottom: 10px;
  }
}