#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
#header .container #h-logo {
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}
#header .container #h-logo > a {
  height: 60%;
  display: flex;
}
#header .container #h-logo > a > img {
  height: 100%;
}
@media (max-width: 768px) {
  #header .container #h-logo > a {
    height: 55%;
  }
}
#header .container .h-global-nav {
  flex: 1 1 auto;
  height: 100%;
}
#header .container .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 70px;
}
#header .container .h-global-nav .depth-1 > li {
  position: relative;
  height: 100%;
}
#header .container .h-global-nav .depth-1 > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-weight: 500;
  transition: opacity 0.3s;
}
#header .container .h-global-nav .depth-1 > li > a:hover {
  opacity: 0.7;
}
#header .container .h-global-nav .depth-1 > li.has-depth-2:hover .depth-2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
#header .container .h-global-nav .depth-1 > li.has-depth-2 .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  padding: 8px 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
#header .container .h-global-nav .depth-1 > li.has-depth-2 .depth-2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 12px;
}
#header .container .h-global-nav .depth-1 > li.has-depth-2 .depth-2 > li {
  width: 100%;
}
#header .container .h-global-nav .depth-1 > li.has-depth-2 .depth-2 > li > a {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-weight: 500;
  transition: background 0.2s;
}
#header .container .h-global-nav .depth-1 > li.has-depth-2 .depth-2 > li > a:hover {
  background: rgba(255, 255, 255, 0.14);
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    display: none;
  }
}
#header .container .h-right-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
#header .container .h-right-wrap .member-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
#header .container .h-right-wrap .member-wrap > a {
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
#header .container .h-right-wrap .member-wrap > a:hover {
  background: #fff;
  border-color: #fff;
  color: #222;
}
@media (max-width: 768px) {
  #header .container .h-right-wrap .member-wrap {
    display: none;
  }
}
#header .container .h-right-wrap .m-menu-open {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}
#header .container .h-right-wrap .m-menu-open > i {
  font-size: 32px;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-open {
    display: flex;
  }
}
@media (max-width: 768px) {
  #header .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #header {
    height: 70px;
  }
}

body.menu-open {
  overflow: hidden;
}

.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.m-menu-background.on {
  opacity: 1;
  visibility: visible;
}

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 210;
  width: 320px;
  height: 100%;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.m-menu.on {
  transform: translateX(0);
}
@media (max-width: 480px) {
  .m-menu {
    width: 280px;
  }
}
.m-menu .m-menu-head {
  flex: 0 0 auto;
  height: 70px;
  padding: 0 16px 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #142B77;
}
.m-menu .m-menu-head .m-logo {
  height: 50%;
  display: flex;
}
.m-menu .m-menu-head .m-logo > img {
  height: 100%;
}
.m-menu .m-menu-head .m-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close > i {
  font-size: 30px;
}
.m-menu .m-member-wrap {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #ddd;
}
.m-menu .m-member-wrap > a {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  background: #F5F7FB;
}
.m-menu .m-member-wrap > a:first-child {
  border-right: 1px solid #ddd;
}
.m-menu .m-depth-1 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-depth-1 > li {
  border-bottom: 1px solid #ddd;
}
.m-menu .m-depth-1 > li .m-depth-1-btn,
.m-menu .m-depth-1 > li .m-depth-1-link {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #222;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.m-menu .m-depth-1 > li .m-depth-1-btn > i,
.m-menu .m-depth-1 > li .m-depth-1-link > i {
  font-size: 24px;
  color: #818181;
  transition: transform 0.3s;
}
.m-menu .m-depth-1 > li.on .m-depth-1-btn {
  color: #142B77;
}
.m-menu .m-depth-1 > li.on .m-depth-1-btn > i {
  transform: rotate(180deg);
  color: #142B77;
}
.m-menu .m-depth-1 > li .m-depth-2 {
  height: 0;
  overflow: hidden;
  background: #F5F7FB;
  transition: height 0.3s ease;
}
.m-menu .m-depth-1 > li .m-depth-2 > li > a {
  display: block;
  padding: 13px 20px 13px 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #555;
  transition: color 0.2s;
}
.m-menu .m-depth-1 > li .m-depth-2 > li > a:hover {
  color: #142B77;
}

#footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#footer > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#footer .cover {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 170px 0 160px;
  background: rgba(31, 31, 31, 0.9);
}
#footer .cover .container {
  width: 95%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 130px;
}
#footer .cover .container .ft-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .cover .container .ft-top .ft-logo {
  display: flex;
}
#footer .cover .container .ft-top .ft-logo > img {
  height: 160px;
}
#footer .cover .container .ft-top .ft-slogan {
  margin-top: 40px;
  color: #fff;
  font-size: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  font-weight: 700;
}
#footer .cover .container .ft-top .ft-nav {
  margin-top: 30px;
  padding: 0 45px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#footer .cover .container .ft-top .ft-nav > li > a {
  height: 46px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-weight: 700;
  transition: opacity 0.3s;
}
#footer .cover .container .ft-top .ft-nav > li > a:hover {
  opacity: 0.7;
}
#footer .cover .container .ft-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
#footer .cover .container .ft-bottom .ft-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
#footer .cover .container .ft-bottom .ft-info > li {
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
#footer .cover .container .ft-bottom .ft-info > li > span {
  color: #ccc;
}
#footer .cover .container .ft-bottom .ft-copy {
  color: #818181;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 1280px) {
  #footer .cover .container {
    gap: 90px;
  }
}
@media (max-width: 768px) {
  #footer .cover .container {
    gap: 60px;
  }
  #footer .cover .container .ft-top .ft-logo > img {
    height: 120px;
  }
  #footer .cover .container .ft-top .ft-slogan {
    margin-top: 30px;
    font-size: 20px;
  }
  #footer .cover .container .ft-top .ft-nav {
    padding: 0 20px;
    gap: 0 24px;
  }
  #footer .cover .container .ft-top .ft-nav > li > a {
    height: 40px;
    font-size: 14px;
  }
  #footer .cover .container .ft-bottom .ft-info {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  #footer .cover .container .ft-bottom .ft-info > li {
    font-size: 14px;
    text-align: center;
  }
  #footer .cover .container .ft-bottom .ft-copy {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  #footer .cover {
    padding: 120px 0 110px;
  }
}
@media (max-width: 768px) {
  #footer .cover {
    padding: 80px 0 70px;
  }
}/*# sourceMappingURL=common.css.map */