.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.m-menu-background.active {
  opacity: 1;
  visibility: visible;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: #eee;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.5);
  z-index: 201;
  transition: all 0.2s ease-in-out;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-menu-head {
  width: 100%;
  height: 60px;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.m-menu .m-menu-head .m-menu-close {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close > svg {
  width: 100%;
  height: auto;
  fill: black;
}
.m-menu .m-menu-body {
  width: 100%;
  height: auto;
  padding: 20px 0;
  flex: 1 1 auto;
}
.m-menu .m-menu-body .m-global-nav {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.m-menu .m-menu-body .m-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li > p {
  position: relative;
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: black;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li > p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 100%;
  background: #D70C19;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: 36px;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #3D3D3D;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 > a:hover {
  color: #D70C19;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li.active > p {
  color: #D70C19;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li.active > p::before {
  width: 4px;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li.active .depth-2 {
  max-height: 300px;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 100;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
@media (max-width: 480px) {
  #header {
    height: 48px;
  }
}
#header .container {
  width: 100%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container .h-logo {
  width: auto;
  height: 50%;
}
#header .container .h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-global-nav {
  position: relative;
  height: 70%;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    display: none;
  }
}
#header .container .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .container .h-global-nav .depth-1 > li {
  flex: 0 0 140px;
  height: 100%;
}
#header .container .h-global-nav .depth-1 > li > a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: black;
  word-break: keep-all;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background: #D70C19;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li > a:hover {
  font-weight: 700;
  color: #D70C19;
}
#header .container .h-global-nav .depth-1 > li > a:hover::after {
  height: 4px;
}
#header .container .h-global-nav .whole-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0;
  padding-top: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: #fff;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .whole-menu .depth-2 {
  flex: 1 1 10%;
  display: flex;
  flex-direction: column;
}
#header .container .h-global-nav .whole-menu .depth-2 > a {
  position: relative;
  width: 100%;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 1.2;
  color: #3D3D3D;
  text-align: center;
  word-break: keep-all;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .whole-menu .depth-2 > a:hover {
  font-weight: 600;
  color: #D70C19;
}
#header .container .h-global-nav:hover .whole-menu {
  padding-top: 32px;
  max-height: 300px;
}
#header .container .h-right-wrap {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap {
    display: flex;
  }
}
@media (max-width: 480px) {
  #header .container .h-right-wrap {
    gap: 12px;
  }
}
#header .container .h-right-wrap .lang-box {
  position: relative;
  width: 100px;
  height: 40px;
  display: flex;
  flex-direction: column;
}
#header .container .h-right-wrap .lang-box .current-lang {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: white;
}
#header .container .h-right-wrap .lang-box .current-lang::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 0;
  background: #D70C19;
  transition: all 0.2s ease-in-out;
}
#header .container .h-right-wrap .lang-box .current-lang > svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: black;
}
#header .container .h-right-wrap .lang-box .current-lang > span {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 500;
  color: black;
  word-break: keep-all;
}
#header .container .h-right-wrap .lang-box .lang-nav {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: white;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
#header .container .h-right-wrap .lang-box .lang-nav > a {
  width: 100%;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: black;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
#header .container .h-right-wrap .lang-box .lang-nav > a:hover {
  color: #D70C19;
  font-weight: 600;
}
#header .container .h-right-wrap .lang-box:hover .current-lang::after {
  height: 3px;
}
#header .container .h-right-wrap .lang-box:hover .lang-nav {
  max-height: 200px;
}
#header .container .h-right-wrap .search-toggle {
  flex: 0 0 auto;
  width: auto;
  height: 24px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .search-toggle {
    height: 18px;
  }
}
#header .container .h-right-wrap .search-toggle > img {
  width: auto;
  height: 100%;
}
#header .container .h-right-wrap .m-menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: auto;
  height: 32px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-toggle {
    display: block;
  }
}
#header .container .h-right-wrap .m-menu-toggle > svg {
  width: auto;
  height: 100%;
  fill: #3D3D3D;
}

.eco-friendly {
  width: 100%;
  height: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.eco-friendly .container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1720/777;
  max-width: 1720px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .eco-friendly .container {
    height: 600px;
    aspect-ratio: auto;
  }
}
@media (max-width: 768px) {
  .eco-friendly .container {
    height: 480px;
  }
}
@media (max-width: 640px) {
  .eco-friendly .container {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .eco-friendly .container {
    height: 280px;
  }
}
.eco-friendly .container > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eco-friendly .container > p {
  position: absolute;
  width: 100%;
  height: auto;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .eco-friendly .container > p {
    bottom: 24px;
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .eco-friendly .container > p {
    bottom: 20px;
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .eco-friendly .container > p {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .eco-friendly .container > p {
    bottom: 1rem;
    font-size: 20px;
  }
}

#footer {
  width: 100%;
  height: auto;
  padding: 90px 0 48px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  background: black;
}
@media (max-width: 1280px) {
  #footer {
    padding: 40px 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1280px) {
  #footer .container {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  #footer .container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  #footer .container {
    align-items: center;
  }
}
#footer .container .f-left {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1280px) {
  #footer .container .f-left {
    flex: 0 1 400px;
    gap: 20px;
  }
}
@media (max-width: 1280px) {
  #footer .container .f-left {
    flex: unset;
  }
}
#footer .container .f-left > a {
  width: 100%;
  height: 70px;
  max-width: 540px;
  padding: 0 28px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid white;
}
@media (max-width: 1280px) {
  #footer .container .f-left > a {
    height: 52px;
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  #footer .container .f-left > a {
    height: 48px;
  }
}
#footer .container .f-left > a > span {
  font-size: 20px;
  line-height: 1;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .f-left > a > span {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #footer .container .f-left > a > span {
    font-size: 14px;
  }
}
#footer .container .f-left > a > svg {
  width: auto;
  height: 24px;
  fill: white;
}
@media (max-width: 1280px) {
  #footer .container .f-left > a > svg {
    height: 20px;
  }
}
#footer .container .f-left .f-addr {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
@media (max-width: 1280px) {
  #footer .container .f-left .f-addr {
    gap: 8px;
  }
}
#footer .container .f-left .f-addr > svg {
  flex: 0 0 auto;
  width: auto;
  height: 24px;
  fill: #aaa;
}
@media (max-width: 1280px) {
  #footer .container .f-left .f-addr > svg {
    margin-top: 2px;
    height: 20px;
  }
}
#footer .container .f-left .f-addr > p {
  flex: 1 1 auto;
  font-size: 18px;
  font-weight: 300;
  color: #aaa;
  word-break: keep-all;
  line-height: 1.6;
}
@media (max-width: 1280px) {
  #footer .container .f-left .f-addr > p {
    font-size: 14px;
  }
}
#footer .container .f-right {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 48px;
}
@media (max-width: 1280px) {
  #footer .container .f-right {
    gap: 32px;
  }
}
@media (max-width: 480px) {
  #footer .container .f-right {
    align-items: center;
  }
}
#footer .container .f-right .f-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  gap: 48px;
}
@media (max-width: 1280px) {
  #footer .container .f-right .f-global-nav .depth-1 {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  #footer .container .f-right .f-global-nav .depth-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 1rem;
  }
}
#footer .container .f-right .f-global-nav .depth-1 > li {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 1280px) {
  #footer .container .f-right .f-global-nav .depth-1 > li {
    gap: 1rem;
  }
}
#footer .container .f-right .f-global-nav .depth-1 > li > a {
  font-size: 18px;
  line-height: 1;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .f-right .f-global-nav .depth-1 > li > a {
    font-size: 1rem;
  }
}
#footer .container .f-right .f-global-nav .depth-1 > li .depth-2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1280px) {
  #footer .container .f-right .f-global-nav .depth-1 > li .depth-2 {
    gap: 8px;
  }
}
#footer .container .f-right .f-global-nav .depth-1 > li .depth-2 > a {
  font-size: 1rem;
  font-weight: 300;
  color: #aaa;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .f-right .f-global-nav .depth-1 > li .depth-2 > a {
    font-size: 14px;
  }
}
#footer .container .f-right .copyright {
  font-size: 14px;
  font-weight: 300;
  color: #ddd;
}
@media (max-width: 1280px) {
  #footer .container .f-right .copyright {
    font-size: 12px;
  }
}/*# sourceMappingURL=common.css.map */