header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background-color: #fff;
}
@media (max-width: 1280px) {
  header {
    height: 60px;
  }
}
header > .navbar_main {
  width: 95%;
  max-width: 1720px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  animation: navbarBottom 1s forwards;
}
@media (max-width: 1280px) {
  header > .navbar_main {
    height: 60px;
  }
}
header > .navbar_main .navbar_burger {
  display: none;
  cursor: pointer;
  color: #7DDB8C !important;
  background-color: rgba(255, 255, 255, 0.521);
  border-radius: 5px;
}
@media (max-width: 1280px) {
  header > .navbar_main .navbar_burger {
    display: flex;
  }
}
header.subpage {
  background-color: #fff;
}
header.subpage > .navbar_main {
  height: auto;
  margin-top: 0;
}
@media (max-width: 1280px) {
  header.subpage > .navbar_main {
    height: 60px;
  }
}

.navbar_links {
  width: 100%;
  max-width: 880px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
}
@media (max-width: 1280px) {
  .navbar_links {
    display: none;
  }
}
.navbar_links .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #064B37;
  font-size: 25px;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-toggle > img {
  width: 30%;
}
.navbar_links .dropdown .dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #52330F;
  vertical-align: middle;
}
.navbar_links .dropdown .dropdown-toggle::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 3px;
  transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}
.navbar_links .dropdown .dropdown-toggle:hover::before {
  width: 100%;
  left: 0;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-menu {
  position: absolute;
  top: 120%;
  left: -10%;
  background-color: white;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.navbar_links .dropdown .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #000;
  font-size: 16px;
  transition: background-color 0.2s;
}
.navbar_links .dropdown .dropdown-menu a:hover {
  background-color: #f5f5f5;
}
.navbar_links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  padding-top: 40px;
  transform: translateY(0px);
}
.navbar_links .dropdown:hover {
  transition: 0.3s;
  transform: translateY(0px);
}
.navbar_links > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links > a:last-child {
  margin-right: 0;
}
.navbar_links > a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 3px;
  transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}
.navbar_links > a:hover::before {
  width: 100%;
  left: 0;
  transition: 0.3s;
}
.navbar_links > a:hover {
  transition: 0.3s;
}

.navbar_links_en {
  max-width: 1070px;
  gap: 20px;
  justify-content: flex-start;
}
.navbar_links_en .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links_en .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links_en > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.navbar_links_jp {
  max-width: 1070px;
  gap: 20px;
}
.navbar_links_jp .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links_jp .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links_jp > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.navbar_links_cn {
  max-width: 1070px;
  gap: 20px;
}
.navbar_links_cn .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links_cn .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links_cn > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.navbar_logo {
  height: 100%;
  display: flex;
}

.navbar_scroll {
  background-color: #fff;
  z-index: 5;
  border-bottom: 1px solid gray;
}
.navbar_scroll div a,
.navbar_scroll a {
  color: black;
}

@keyframes navbarBottom {
  0% {
    transform: translateY(-70%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.navbar_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
}
.navbar_overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.navbar_burger_back {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  color: #fff;
}
.navbar_burger_back > svg {
  color: white;
}
.navbar_burger_back > svg > path {
  color: white;
}

.navbar_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #064B37;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  z-index: 99999;
  overflow-y: auto;
  transition: transform 0.3s ease;
}
.navbar_menu .navbar_logo {
  width: 100%;
  height: auto;
}
.navbar_menu .mobile-dropdown {
  width: 100%;
  margin-bottom: 1rem;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-toggle {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-toggle .dropdown-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: white;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-toggle.active .dropdown-icon {
  transform: rotate(45deg);
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu.active {
  max-height: 500px;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 8px 0;
  display: block;
  word-break: keep-all;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu a:hover {
  color: white;
}
.navbar_menu > a {
  color: #ffffff;
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 1rem;
  text-decoration: none;
}
.navbar_menu > a > img {
  width: 100%;
}
.navbar_menu .mobile-language {
  display: flex;
  margin-top: 2rem;
}
.navbar_menu .mobile-language a {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 1rem;
  padding: 5px 10px;
  border-radius: 4px;
  transition: 0.2s;
}
.navbar_menu .mobile-language a.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.navbar_menu .mobile-language a:hover {
  color: white;
}
.navbar_menu.active {
  transform: translateX(0);
}

.navbar_menu_en {
  width: 100%;
  justify-content: flex-start;
}

@media (min-width: 1281px) {
  .navbar_overlay {
    display: none;
  }
  .navbar_menu {
    display: none;
  }
}
#footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #EFEFEF;
}
@media (max-width: 1024px) {
  #footer {
    height: auto;
  }
}
#footer > .top_nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7DDB8C;
  height: 50px;
  gap: 60px;
}
@media (max-width: 1024px) {
  #footer > .top_nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: auto;
    place-items: center;
    padding: 20px 0;
  }
}
#footer > .top_nav > a {
  font-size: 18px;
  font-weight: 500;
  color: #064B37;
}
@media (max-width: 1024) {
  #footer > .top_nav > a {
    font-size: 14px;
  }
}
#footer > .bot {
  width: 100%;
  max-width: 1720px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  #footer > .bot {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  #footer > .bot > .left > img {
    width: 100%;
  }
}
#footer > .bot > .cen {
  margin: 0 auto;
}
#footer > .bot > .cen > h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #footer > .bot > .cen > h2 {
    font-size: 14px;
    padding: 0 20px;
  }
}
#footer > .bot > .right > .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 10px 30px;
  text-align: center;
}
#footer > .bot > .right > .txt > h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 1024px) {
  #footer > .bot > .right > .txt > h2 {
    font-size: 20px;
  }
}
#footer > .bot > .right > .txt > h2 > span {
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 1024px) {
  #footer > .bot > .right > .txt > h2 > span {
    font-size: 14px;
  }
}/*# sourceMappingURL=common.css.map */