/* Desktop Navigation */
header nav#mainnavigation {
  display: none;
}
@media screen and (min-width: 1200px) {
  header nav#mainnavigation {
    display: block;
    width: 60%;
    margin-right: 130px;
  }
  header nav#mainnavigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: right;
    margin: 0 50px 0 0;
  }
  header nav#mainnavigation ul li {
    line-height: 60px;
  }
  header nav#mainnavigation ul li a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: normal;
    transition: 0.3s all ease;
    letter-spacing: 0.2em;
    font-size: 0.9em;
  }
  header nav#mainnavigation ul li a:hover {
    color: #666;
  }
}
header .menu-toggle {
  width: 30px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  z-index: 1001;
  margin: 15px 10px 15px 0;
  transition: opacity 0.2s ease;
}
header .menu-toggle img {
  width: 100%;
}

/* Mobile Nav Icons */
.menu-icon,
.close-icon {
  position: fixed;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2000;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .menu-icon,
  .close-icon {
    display: none;
  }
}

.close-icon {
  display: none;
}

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #fff;
  transition: right 0.4s ease;
  z-index: 1500;
  padding: 0;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav ul li {
  height: 60px;
  line-height: 60px;
  margin: 0;
  border-bottom: 1px solid #ccc;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  padding-left: 10px;
}
.mobile-nav ul li.logo_mobnav img {
  width: 42px;
  height: 42px;
  vertical-align: middle;
}
.mobile-nav a {
  color: #333;
  text-decoration: none;
}
.mobile-nav.open {
  right: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1400;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Page Top Button */
.page-top {
  width: 50px;
  height: 50px;
  padding: 0;
  position: fixed;
  right: 10px;
  bottom: 10px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1000;
  font-weight: bold;
  text-transform: uppercase;
  border: 0;
  transition: all ease 0.3s;
  background-image: url(../images/totop_ov.webp);
  background-size: 100%;
  background-repeat: no-repeat;
}
.page-top img {
  width: 100%;
  transition: 0.3s all ease;
}
.page-top img:hover {
  opacity: 0;
}
.page-top.show {
  opacity: 1;
}

.lang_btns {
  position: absolute;
  top: 18px;
  right: 58px;
  height: 24px;
  padding: 0;
}
.lang_btns button {
  height: 24px;
  vertical-align: top;
  cursor: pointer;
  background: none;
  font-size: 0.8em;
  transition: 0.3s color ease;
  margin: 0;
  padding: 0 5px;
  border: 1px solid #ccc;
}
.lang_btns button.active {
  color: #fff !important;
  font-weight: bold;
  background: #000;
  border: 1px solid #000;
}
@media screen and (min-width: 1200px) {
  .lang_btns {
    right: 50px;
  }
  .lang_btns button {
    padding: 0 14px;
  }
}
.lang-ja {
  display: none;
}/*# sourceMappingURL=nav.css.map */