 /* =========================
       PC
    ========================= */
    @media (min-width:769px){

    .menu-trigger { display: none; }
  .nav-wrapper { 
    position: static !important;
    transform: none !important;
    flex-direction: row;
    height: auto;
  }
  .nav-wrapper ul { flex-direction: row; gap: 40px; }
}

/* 言語はそのまま */
.language-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.language-wrapper ul {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.language-wrapper li.separator {
  padding: 0 5px;
    }

    /* =========================
       モバイル
    ========================= */
    @media (max-width:768px){

/* ハンバーガー */
.menu-trigger {
  display: block;
  position: relative;
  width: 40px;
  height: 30px;
  z-index: 10001 !important; /* 言語メニューより上 */
  background: none;
  border: none;
  cursor: pointer;
}

.menu-trigger span {
  display: block;
  width: 100%;
  height: 4px;
  margin: 5px 0;
  background: #000;
  border-radius: 2px;
}

/* ナビ */
.nav-wrapper {
  position: fixed !important;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255,255,255,0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 10000 !important;
}

.nav-wrapper.is-active {
  transform: translateX(0);
}

.nav-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
}