#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background: white;
  z-index: 50;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
#header .container #h-logo {
  flex: 0 0 auto;
  height: 80%;
  display: flex;
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-right {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#header .container .h-right .top {
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .container .h-right .top > a {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #464646;
}
#header .container .h-right .top .bar {
  display: inline-block;
  width: 1px;
  height: 15px;
  margin: 0 12px;
  background: #aaa;
}
#header .container .h-right .top .call {
  margin-left: 20px;
  padding: 8px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-radius: 0 0 0 14px;
  background: #053866;
}
#header .container .h-right .top .call i {
  font-size: 24px;
  color: white;
  font-variation-settings: "FILL" 1;
}
#header .container .h-right .top .call span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}
#header .container .h-right .bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1280px) {
  #header .container .h-right .bottom {
    display: none;
  }
}
#header .container .h-right .bottom .h-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 90px;
}
#header .container .h-right .bottom .h-global-nav .depth-1 li {
  flex: 0 0 auto;
}
#header .container .h-right .bottom .h-global-nav .depth-1 li > a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  color: black;
  word-break: keep-all;
  text-align: center;
}
#header .container .h-right .bottom .header-search {
  flex: 0 0 auto;
  width: 340px;
  height: auto;
}
#header .container .h-right .bottom .header-search #headerSearch {
  width: 100%;
  height: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #f0f0f0;
}
#header .container .h-right .bottom .header-search #headerSearch input {
  flex: 1 1 auto;
  height: 100%;
  padding: 0 12px;
  font-size: 15px;
  line-height: 1.2;
  color: black;
  background: transparent;
  border: none;
  outline: none;
}
#header .container .h-right .bottom .header-search #headerSearch input::-moz-placeholder {
  color: #707070;
}
#header .container .h-right .bottom .header-search #headerSearch input::placeholder {
  color: #707070;
}
#header .container .h-right .bottom .header-search #headerSearch button {
  width: 44px;
  height: 44px;
  background: transparent;
  outline: none;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  color: #053866;
}
#header .container .h-right .bottom .h-phone {
  padding: 8px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #053866;
}
#header .container .h-right .bottom .h-phone i {
  font-size: 24px;
  color: white;
  font-variation-settings: "FILL" 1;
}
#header .container .h-right .bottom .h-phone span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}
#header .container .h-right .m-menu-open {
  display: none;
}
@media (max-width: 1280px) {
  #header .container .h-right .m-menu-open {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 8px;
    cursor: pointer;
  }
  #header .container .h-right .m-menu-open i {
    font-size: 28px;
    line-height: 1;
    color: #464646;
    text-align: center;
  }
}

#footer {
  width: 100%;
  height: auto;
  padding: 80px 0 40px;
  background: black;
}
@media (max-width: 1280px) {
  #footer {
    padding: 60px 0 32px;
  }
}
@media (max-width: 768px) {
  #footer {
    padding: 40px 0 24px;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 1280px) {
  #footer .container {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  #footer .container {
    gap: 32px;
  }
}
#footer .container .top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#footer .container .top .policy-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1280px) {
  #footer .container .top .policy-nav {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #footer .container .top .policy-nav {
    gap: 12px;
  }
}
#footer .container .top .policy-nav a {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 500;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .top .policy-nav a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .container .top .policy-nav a {
    font-size: 14px;
  }
}
#footer .container .top .policy-nav .col-bar {
  width: 1px;
  height: 18px;
  display: inline-block;
  background: white;
}
#footer .container .top #f-global-nav {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap;
}
@media (max-width: 1280px) {
  #footer .container .top #f-global-nav {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container .top #f-global-nav {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
}
#footer .container .top #f-global-nav > a {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .top #f-global-nav > a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .container .top #f-global-nav > a {
    font-size: 14px;
  }
}
#footer .container .bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #footer .container .bottom {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
#footer .container .bottom .left {
  flex: 0 0 auto;
  display: flex;
}
#footer .container .bottom .left #f-logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
@media (max-width: 768px) {
  #footer .container .bottom .left #f-logo {
    align-items: center;
  }
}
#footer .container .bottom .left #f-logo span {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .bottom .left #f-logo span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #footer .container .bottom .left #f-logo span {
    font-size: 16px;
  }
}
#footer .container .bottom .left #f-logo img {
  width: auto;
  height: 120px;
}
@media (max-width: 1280px) {
  #footer .container .bottom .left #f-logo img {
    height: 100px;
  }
}
@media (max-width: 768px) {
  #footer .container .bottom .left #f-logo img {
    height: 60px;
  }
}
#footer .container .bottom .right {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  #footer .container .bottom .right {
    align-items: center;
  }
}
#footer .container .bottom .right > b {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .bottom .right > b {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
#footer .container .bottom .right > span {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.2;
  color: white;
}
#footer .container .bottom .right .f-infos {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
@media (max-width: 1280px) {
  #footer .container .bottom .right .f-infos {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  #footer .container .bottom .right .f-infos {
    align-items: center;
    margin-bottom: 16px;
  }
}
#footer .container .bottom .right .f-infos .row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #footer .container .bottom .right .f-infos .row {
    justify-content: center;
  }
}
#footer .container .bottom .right .f-infos .row p {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#footer .container .bottom .right .f-infos .row p em {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}
#footer .container .bottom .right .f-infos .row p span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #aaa;
}
#footer .container .bottom .right .copy {
  font-size: 16px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: right;
}

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

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 101;
  transform: translateX(100%);
  transition: all 0.2s ease-in-out;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-head {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #f0f0f0;
}
.m-menu .m-head .inner {
  width: 95%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.m-menu .m-head .inner > a, .m-menu .m-head .inner .m-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.m-menu .m-head .inner > a i, .m-menu .m-head .inner .m-menu-close i {
  font-size: 28px;
  line-height: 1;
  color: #464646;
}
.m-menu .m-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-phone {
  width: 100%;
  margin: 12px 0;
}
.m-menu .m-body .m-phone > a {
  width: 95%;
  height: 40px;
  padding: 0 12px;
  margin: 0 auto;
  background: #053866;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
}
.m-menu .m-body .m-phone > a i {
  font-size: 18px;
  line-height: 1;
  color: white;
  font-variation-settings: "FILL" 1;
}
.m-menu .m-body .m-phone > a span {
  font-size: 16px;
  line-height: 1;
  color: white;
  font-weight: 500;
}
.m-menu .m-body .m-global-nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-global-nav > a {
  width: 100%;
  height: auto;
  padding: 12px 2.5%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #053866;
  word-break: keep-all;
}/*# sourceMappingURL=common.css.map */