#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  z-index: 100;
}
#header:hover, #header.active {
  background: white;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container #h-logo {
  flex: 0 0 auto;
  width: auto;
  height: 70%;
  display: flex;
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-right-wrap {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}
#header .container .h-right-wrap .h-global-nav {
  height: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .h-global-nav {
    display: none;
  }
}
#header .container .h-right-wrap .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li {
  position: relative;
  flex: 0 0 160px;
  height: 100%;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li > a {
  width: 100%;
  height: 100%;
  padding: 0 8px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: black;
  word-break: keep-all;
  text-align: center;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: auto;
  padding: 12px;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  color: black;
  word-break: keep-all;
  text-align: center;
  background: white;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li:hover .depth-2 {
  max-height: 300px;
}
#header .container .h-right-wrap .h-btn-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .h-btn-wrap {
    display: none;
  }
}
#header .container .h-right-wrap .h-btn-wrap > a {
  padding: 16px 14px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  color: white;
  text-align: center;
  background: #EE5233;
}
#header .container .h-right-wrap .h-btn-wrap > a:nth-of-type(2) {
  background: #39B545;
}
#header .container .h-right-wrap .m-menu-btn {
  width: 48px;
  height: auto;
  display: none;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-btn {
    display: flex;
    width: 40px;
  }
}
#header .container .h-right-wrap .m-menu-btn > svg {
  width: 100%;
  height: auto;
  fill: black;
}

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

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: white;
  border-left: 1px solid black;
  overflow: hidden;
  z-index: 201;
  transition: all 0.2s ease-in-out;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-head {
  flex: 0 0 auto;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  background: white;
  border-bottom: 1px solid #aaa;
}
.m-menu .m-head .m-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  cursor: pointer;
}
.m-menu .m-head .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.m-menu .m-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-global-nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-global-nav .m-nav-row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #fafafa;
  overflow: hidden;
}
.m-menu .m-body .m-global-nav .m-nav-row .depth-1 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 8px 12px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: black;
  word-break: keep-all;
  cursor: pointer;
  background: white;
  z-index: 2;
  box-shadow: 0 0 4px -1px rgba(0, 0, 0, 0.3);
}
.m-menu .m-body .m-global-nav .m-nav-row .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-body .m-global-nav .m-nav-row .depth-2 > a {
  width: 100%;
  height: auto;
  padding: 12px;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  color: black;
  word-break: keep-all;
}
.m-menu .m-body .m-global-nav .m-nav-row.active .depth-2 {
  max-height: 300px;
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: column;
}
#footer .container .f-top {
  width: 100%;
  height: auto;
  padding: 72px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #707070;
}
@media (max-width: 1280px) {
  #footer .container .f-top {
    padding: 48px 0;
  }
}
@media (max-width: 1024px) {
  #footer .container .f-top {
    flex-direction: column;
    gap: 24px;
  }
}
#footer .container .f-top .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1280px) {
  #footer .container .f-top .left {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  #footer .container .f-top .left {
    gap: 1rem;
  }
}
#footer .container .f-top .left .f-logo {
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .f-top .left .f-logo {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  #footer .container .f-top .left .f-logo {
    font-size: 20px;
    line-height: 1.1;
  }
}
#footer .container .f-top .left .policy-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#footer .container .f-top .left .policy-wrap > a {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .f-top .left .policy-wrap > a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #footer .container .f-top .left .policy-wrap > a {
    font-size: 14px;
  }
}
#footer .container .f-top .left .policy-wrap .devide {
  display: inline-block;
  width: 2px;
  height: 20px;
  margin: 0 12px;
  background: white;
}
@media (max-width: 1280px) {
  #footer .container .f-top .left .policy-wrap .devide {
    height: 16px;
    margin: 0 8px;
  }
}
@media (max-width: 480px) {
  #footer .container .f-top .left .policy-wrap .devide {
    height: 14px;
  }
}
#footer .container .f-top .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
@media (max-width: 1280px) {
  #footer .container .f-top .right {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  #footer .container .f-top .right {
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  #footer .container .f-top .right {
    gap: 1rem;
  }
}
#footer .container .f-top .right > a {
  width: 200px;
  height: 56px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 10000rem;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  #footer .container .f-top .right > a {
    width: 160px;
    height: 48px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #footer .container .f-top .right > a {
    width: 120px;
    height: 40px;
    font-size: 14px;
  }
}
#footer .container .f-top .right .info-list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 480px) {
  #footer .container .f-top .right .info-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
#footer .container .f-top .right .info-list > li {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .f-top .right .info-list > li {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #footer .container .f-top .right .info-list > li {
    font-size: 14px;
  }
}
#footer .container .f-top .right .info-list .devide {
  display: inline-block;
  width: 2px;
  height: 20px;
  margin: 0 16px;
  background: white;
}
@media (max-width: 1280px) {
  #footer .container .f-top .right .info-list .devide {
    height: 1rem;
    margin: 0 8px;
  }
}
@media (max-width: 480px) {
  #footer .container .f-top .right .info-list .devide {
    width: 20px;
    height: 2px;
    margin: 8px 0;
  }
}
#footer .container .copyright {
  padding: 24px 1rem;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  #footer .container .copyright {
    padding: 1rem;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  #footer .container .copyright {
    font-size: 12px;
  }
}

.policy-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff6fb;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 301;
}
@media (max-width: 1280px) {
  .policy-modal {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .policy-modal {
    gap: 1rem;
  }
}
.policy-modal.active {
  opacity: 1;
  visibility: visible;
}
.policy-modal .modal-close-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  border-radius: 10000rem;
  background: white;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
@media (max-width: 1280px) {
  .policy-modal .modal-close-btn {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 768px) {
  .policy-modal .modal-close-btn {
    width: 32px;
    height: 32px;
  }
}
.policy-modal .modal-close-btn > svg {
  width: 70%;
  height: 70%;
  fill: black;
}
.policy-modal .modal-content-wrap {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: white;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.3);
  overflow: auto;
}
@media (max-width: 1280px) {
  .policy-modal .modal-content-wrap {
    padding: 32px 40px;
  }
}
@media (max-width: 768px) {
  .policy-modal .modal-content-wrap {
    padding: 20px 1rem;
  }
}
.policy-modal .modal-content-wrap > div {
  display: none;
  width: 100%;
  height: auto;
  font-size: 1rem;
  line-height: 1.8;
  word-break: keep-all;
  color: #333;
}
@media (max-width: 1280px) {
  .policy-modal .modal-content-wrap > div {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .policy-modal .modal-content-wrap > div {
    font-size: 13px;
  }
}
.policy-modal .modal-content-wrap > div.active {
  display: flex;
}/*# sourceMappingURL=common.css.map */