.whole-menu-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 550;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.whole-menu-bg.active {
  visibility: visible;
  opacity: 1;
}

.whole-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: #FBF7EF;
  z-index: 551;
  transition: all 0.2s ease-in-out;
}
.whole-menu.active {
  transform: translateX(0);
}
.whole-menu .whole-menu-head {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #CEC7BB;
}
.whole-menu .whole-menu-head .m-menu-close {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.whole-menu .whole-menu-head .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: #553A20;
}
.whole-menu .whole-menu-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
}
.whole-menu .whole-menu-body .m-global-nav {
  width: 100%;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li {
  width: 100%;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li > a, .whole-menu .whole-menu-body .m-global-nav .depth-1 > li > span {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #553A20;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li > a:hover, .whole-menu .whole-menu-body .m-global-nav .depth-1 > li > span:hover {
  background: #553A20;
  color: #FFF1DB;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li .depth-2-wrap {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #FBF7EF;
  transition: all 0.2s ease-in-out;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li .depth-2-wrap .d-2-head {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #CEC7BB;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li .depth-2-wrap .d-2-head .goto-prev {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li .depth-2-wrap .d-2-head .goto-prev > svg {
  width: 100%;
  height: 100%;
  fill: #553A20;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li .depth-2-wrap .d-2-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li .depth-2-wrap .d-2-body .depth-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li .depth-2-wrap .d-2-body .depth-2 > a {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #553A20;
  transition: all 0.2s ease-in-out;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li .depth-2-wrap .d-2-body .depth-2 > a:hover {
  background: #553A20;
  color: #FFF1DB;
}
.whole-menu .whole-menu-body .m-global-nav .depth-1 > li.active .depth-2-wrap {
  transform: translateX(0);
}

.header {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  z-index: 500;
}
.header .h-top {
  width: 100%;
  height: 38px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #553A20;
}
.header .h-top .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1280px) {
  .header .h-top .container {
    gap: 32px;
  }
}
.header .h-top .container .login-list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .h-top .container .login-list .item:not(:last-of-type) {
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.header .h-top .container .login-list .item > a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: white;
  opacity: 0.5;
}
.header .h-top .container .login-list .item > a:hover {
  opacity: 1;
}
.header .h-top .container .locale-choice {
  position: relative;
  height: 100%;
}
.header .h-top .container .locale-choice .current {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .h-top .container .locale-choice .current > img {
  width: auto;
  height: 50%;
  margin-right: 8px;
}
.header .h-top .container .locale-choice .current > span {
  margin-right: 16px;
  font-size: 14px;
  font-weight: 300;
  color: white;
}
.header .h-top .container .locale-choice .current > svg {
  width: auto;
  height: 50%;
  fill: rgba(255, 255, 255, 0.8);
}
.header .h-top .container .locale-choice .locale-list {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  display: none;
  flex-direction: column;
  background: #553A20;
  overflow: hidden;
}
.header .h-top .container .locale-choice .locale-list > a {
  width: 100%;
  height: 36px;
  padding: 0 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .h-top .container .locale-choice .locale-list > a > img {
  width: auto;
  height: 50%;
}
.header .h-top .container .locale-choice .locale-list > a > span {
  font-size: 14px;
  font-weight: 300;
  color: white;
}
.header .h-top .container .locale-choice:hover .locale-list {
  display: flex;
}
.header .h-bottom {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  box-shadow: 0 0 16px -6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1280px) {
  .header .h-bottom {
    height: 70px;
  }
}
.header .h-bottom .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .h-bottom .container .h-logo {
  width: auto;
  height: 70%;
}
.header .h-bottom .container .h-logo > img {
  width: auto;
  height: 100%;
}
.header .h-bottom .container .h-global-nav {
  width: auto;
  height: 100%;
}
@media (max-width: 1280px) {
  .header .h-bottom .container .h-global-nav {
    display: none;
  }
}
.header .h-bottom .container .h-global-nav .depth-1 {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
}
.header .h-bottom .container .h-global-nav .depth-1 > li {
  position: relative;
  height: 100%;
}
.header .h-bottom .container .h-global-nav .depth-1 > li > a {
  height: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: #553A20;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.header .h-bottom .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.header .h-bottom .container .h-global-nav .depth-1 > li .depth-2 > li {
  width: 100%;
  height: auto;
  background: #cfb9a5;
}
.header .h-bottom .container .h-global-nav .depth-1 > li .depth-2 > li > a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 16px;
  font-size: 16px;
  line-height: 1;
  color: #553A20;
  transition: all 0.2s ease-in-out;
}
.header .h-bottom .container .h-global-nav .depth-1 > li .depth-2 > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #553A20;
  transition: all 0.2s ease-in-out;
}
.header .h-bottom .container .h-global-nav .depth-1 > li .depth-2 > li > a:hover::before {
  width: 4px;
}
.header .h-bottom .container .h-global-nav .depth-1 > li:hover > a {
  background: #cfb9a5;
}
.header .h-bottom .container .h-global-nav .depth-1 > li:hover .depth-2 {
  max-height: 300px;
}
.header .h-bottom .container .m-menu-open {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .header .h-bottom .container .m-menu-open {
    width: 32px;
    height: 32px;
  }
}
.header .h-bottom .container .m-menu-open > img {
  width: 100%;
  height: auto;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer .f-top {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #E6D7BC;
}
@media (max-width: 1280px) {
  .footer .f-top {
    height: 160px;
  }
}
@media (max-width: 768px) {
  .footer .f-top {
    padding: 20px 0;
    height: auto;
  }
}
.footer .f-top .container {
  width: 95%;
  height: 85%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer .f-top .container {
    flex-direction: column;
    gap: 20px;
  }
}
.footer .f-top .container > p {
  font-size: 20px;
  line-height: 1.4;
  color: #BAA687;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .footer .f-top .container > p {
    font-size: 16px;
  }
}
.footer .f-top .container .f-logo {
  width: auto;
  height: 50%;
}
.footer .f-top .container .f-logo > img {
  width: auto;
  height: 100%;
  opacity: 0.5;
}
.footer .f-top .container .f-top-etc {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
@media (max-width: 1280px) {
  .footer .f-top .container .f-top-etc {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer .f-top .container .f-top-etc {
    align-self: center;
    align-items: center;
    gap: 12px;
  }
}
.footer .f-top .container .f-top-etc .f-social-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.footer .f-top .container .f-top-etc .f-social-nav > a {
  width: 36px;
  height: auto;
  display: block;
}
.footer .f-top .container .f-top-etc .f-social-nav > a > img {
  width: 100%;
  height: auto;
}
.footer .f-top .container .f-top-etc .copyright {
  font-size: 12px;
  line-height: 1;
  color: #BAA687;
}
.footer .f-bottom {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #AE9B7D;
}
@media (max-width: 1280px) {
  .footer .f-bottom {
    height: auto;
    padding: 16px 0;
  }
}
.footer .f-bottom .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer .f-bottom .container .f-informations {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
}
.footer .f-bottom .container .f-informations .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
@media (max-width: 1280px) {
  .footer .f-bottom .container .f-informations .item {
    gap: 20px;
  }
}
.footer .f-bottom .container .f-informations .item:not(:last-of-type) {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 1280px) {
  .footer .f-bottom .container .f-informations .item:not(:last-of-type) {
    padding-right: 20px;
    margin-right: 20px;
  }
}
.footer .f-bottom .container .f-informations .item .name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #FFF1DB;
}
.footer .f-bottom .container .f-informations .item .content {
  font-size: 13px;
  line-height: 1;
  color: #FFF1DB;
  opacity: 0.7;
}/*# sourceMappingURL=common.css.map */