body {
  padding-top: 100px;
}
@media (max-width: 1280px) {
  body {
    padding-top: 70px;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.4);
  z-index: 600;
}
@media (max-width: 1280px) {
  .header {
    height: 70px;
  }
}
.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 {
  width: auto;
  height: 60%;
  display: inline-block;
}
.header .container .h-logo > img {
  width: auto;
  height: 100%;
}
.header .container .h-global-nav {
  height: 100%;
}
@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 {
  position: relative;
  height: 100%;
}
.header .container .h-global-nav .depth-1 > li > a {
  height: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
@media (max-width: 1440px) {
  .header .container .h-global-nav .depth-1 > li > a {
    padding: 0 24px;
    font-size: 20px;
  }
}
.header .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 160px;
  padding-top: 2px;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
}
.header .container .h-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  padding: 16px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #002851;
  background: white;
  transition: all 0.2s ease-in-out;
}
.header .container .h-global-nav .depth-1 > li .depth-2 > a:hover {
  color: white;
  background: #002851;
}
.header .container .h-global-nav .depth-1 > li:hover .depth-2 {
  display: flex;
}
.header .container .right-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.header .container .right-wrap .search-wrap {
  position: relative;
}
.header .container .right-wrap .search-wrap .search-btn {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .header .container .right-wrap .search-wrap .search-btn {
    width: 40px;
    height: 40px;
  }
}
.header .container .right-wrap .search-wrap .search-btn > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.header .container .right-wrap .search-wrap .search-box {
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(16px);
  width: 640px;
  height: auto;
  max-width: 640px;
  padding: 16px;
  background: #002851;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .header .container .right-wrap .search-wrap .search-box {
    transform: translateY(10px);
  }
}
@media (max-width: 768px) {
  .header .container .right-wrap .search-wrap .search-box {
    width: 480px;
  }
}
@media (max-width: 640px) {
  .header .container .right-wrap .search-wrap .search-box {
    position: fixed;
    width: 100%;
    right: 50%;
    top: 70px;
    transform: translateX(50%);
  }
}
.header .container .right-wrap .search-wrap .search-box::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  transform: translateY(-16px);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 16px solid #002851;
}
@media (max-width: 1280px) {
  .header .container .right-wrap .search-wrap .search-box::before {
    transform: translateY(-10px);
    border-left-width: 6px;
    border-right-width: 6px;
    border-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .header .container .right-wrap .search-wrap .search-box::before {
    display: none;
  }
}
.header .container .right-wrap .search-wrap .search-box.on {
  visibility: visible;
  opacity: 1;
}
.header .container .right-wrap .search-wrap .search-box .search-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.header .container .right-wrap .search-wrap .search-box .search-close > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.header .container .right-wrap .search-wrap .search-box .common-search-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.header .container .right-wrap .search-wrap .search-box .common-search-form .form-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
.header .container .right-wrap .search-wrap .search-box .common-search-form .input-field {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 480px) {
  .header .container .right-wrap .search-wrap .search-box .common-search-form .input-field {
    flex-direction: column;
    gap: 8px;
  }
}
.header .container .right-wrap .search-wrap .search-box .common-search-form .input-field > input {
  flex: 1 1 auto;
  height: 32px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #3D3D3D;
  border: none;
  border-radius: 3px;
  outline: none;
}
@media (max-width: 480px) {
  .header .container .right-wrap .search-wrap .search-box .common-search-form .input-field > input {
    flex: unset;
    width: 100%;
    font-size: 13px;
  }
}
.header .container .right-wrap .search-wrap .search-box .common-search-form .input-field > button {
  flex: 0 0 60px;
  height: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  border: none;
  border-radius: 3px;
  outline: none;
  background: #C43714;
}
@media (max-width: 480px) {
  .header .container .right-wrap .search-wrap .search-box .common-search-form .input-field > button {
    flex: unset;
    width: 100%;
    font-size: 13px;
  }
}
.header .container .right-wrap .m-menu-open {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .header .container .right-wrap .m-menu-open {
    width: 40px;
    height: 40px;
  }
}
.header .container .right-wrap .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: black;
}

.m-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 601;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.m-background.on {
  visibility: visible;
  opacity: 1;
}

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 602;
  transition: all 0.2s ease-in-out;
}
.m-menu.on {
  transform: translateX(0);
}
.m-menu .m-header {
  flex: 0 0 auto;
  width: 100%;
  height: 56px;
  border-bottom: 1px solid #ddd;
  padding: 0 5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.m-menu .m-header #m-head-logo {
  width: auto;
  height: 50%;
}
.m-menu .m-header #m-head-logo > img {
  width: auto;
  height: 100%;
}
.m-menu .m-header .m-menu-close {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.m-menu .m-header .m-menu-close > svg {
  width: 100%;
  height: auto;
  fill: black;
}
.m-menu .m-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  overflow: auto;
}
.m-menu .m-body .m-depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-depth-1 > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-depth-1 > li > span, .m-menu .m-body .m-depth-1 > li > a {
  width: 100%;
  height: auto;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-body .m-depth-1 > li .m-depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.m-menu .m-body .m-depth-1 > li .m-depth-2 > li {
  width: 100%;
  height: auto;
}
.m-menu .m-body .m-depth-1 > li .m-depth-2 > li > a {
  width: 100%;
  height: auto;
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #3D3D3D;
  word-break: keep-all;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-body .m-depth-1 > li .m-depth-2 > li > a:hover {
  background: #2A6CA6;
  color: white;
}
.m-menu .m-body .m-depth-1 > li.on > span, .m-menu .m-body .m-depth-1 > li.on > a {
  background: #002851;
  color: white;
}
.m-menu .m-body .m-depth-1 > li.on .m-depth-2 {
  max-height: 600px;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer .f-top {
  width: 100%;
  padding: 12px 0 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #002851;
}
@media (max-width: 1280px) {
  .footer .f-top {
    padding: 12px 0 24px;
  }
}
.footer .f-top .container {
  width: 95%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (max-width: 1280px) {
  .footer .f-top .container {
    gap: 24px;
  }
}
.footer .f-top .container .upper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #E6EBEF;
}
@media (max-width: 768px) {
  .footer .f-top .container .upper {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.footer .f-top .container .upper .f-global-nav {
  margin-bottom: 14px;
}
@media (max-width: 1280px) {
  .footer .f-top .container .upper .f-global-nav {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .footer .f-top .container .upper .f-global-nav {
    margin-bottom: 0;
  }
}
.footer .f-top .container .upper .f-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
@media (max-width: 1280px) {
  .footer .f-top .container .upper .f-global-nav .depth-1 {
    justify-content: center;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer .f-top .container .upper .f-global-nav .depth-1 {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .footer .f-top .container .upper .f-global-nav .depth-1 > li {
    flex: 0 0 auto;
  }
}
.footer .f-top .container .upper .f-global-nav .depth-1 > li > a {
  font-size: 17px;
  line-height: 1;
  color: white;
}
@media (max-width: 1280px) {
  .footer .f-top .container .upper .f-global-nav .depth-1 > li > a {
    font-size: 15px;
  }
}
.footer .f-top .container .upper .goto-up {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #C43714;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .footer .f-top .container .upper .goto-up {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  .footer .f-top .container .upper .goto-up {
    align-self: flex-end;
  }
}
.footer .f-top .container .upper .goto-up > svg {
  width: 80%;
  height: 80%;
  fill: white;
}
.footer .f-top .container .body {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer .f-top .container .body {
    flex-direction: column;
    gap: 16px;
  }
}
.footer .f-top .container .body .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.footer .f-top .container .body .left .f-logo {
  flex: 0 0 160px;
  height: auto;
}
@media (max-width: 1280px) {
  .footer .f-top .container .body .left .f-logo {
    flex: 0 0 120px;
  }
}
@media (max-width: 768px) {
  .footer .f-top .container .body .left .f-logo {
    flex: unset;
    width: auto;
    height: 48px;
  }
}
.footer .f-top .container .body .left .f-logo > img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .footer .f-top .container .body .left .f-logo > img {
    width: auto;
    height: 100%;
  }
}
.footer .f-top .container .body .left .f-social-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.footer .f-top .container .body .left .f-social-nav > a {
  display: inline-block;
}
.footer .f-top .container .body .left .f-social-nav > a > img {
  width: 40px;
  height: 40px;
}
.footer .f-top .container .body .right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1280px) {
  .footer .f-top .container .body .right {
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer .f-top .container .body .right {
    align-items: center;
    gap: 12px;
  }
}
.footer .f-top .container .body .right .f-addr {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.footer .f-top .container .body .right .f-addr .addr-label {
  margin-right: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.footer .f-top .container .body .right .f-addr .addr-label > img {
  flex: 0 0 auto;
  width: 18px;
  height: auto;
}
.footer .f-top .container .body .right .f-addr .addr-label .label {
  font-size: 16px;
  line-height: 20px;
  color: white;
}
.footer .f-top .container .body .right .f-addr .addr-text {
  font-size: 16px;
  line-height: 20px;
  color: white;
  word-break: keep-all;
}
.footer .f-top .container .body .right .f-etc-infos {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .f-top .container .body .right .f-etc-infos .info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.footer .f-top .container .body .right .f-etc-infos .info-item .info-label {
  margin-right: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.footer .f-top .container .body .right .f-etc-infos .info-item .info-label > img {
  flex: 0 0 auto;
  width: 18px;
  height: auto;
}
.footer .f-top .container .body .right .f-etc-infos .info-item .info-label .label {
  font-size: 16px;
  line-height: 20px;
  color: white;
}
.footer .f-top .container .body .right .f-etc-infos .info-item .info-text {
  font-size: 16px;
  line-height: 20px;
  color: white;
  word-break: keep-all;
}
.footer .f-bottom {
  width: 100%;
  height: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #C43714;
}
.footer .f-bottom .copyright {
  font-size: 14px;
  line-height: 1;
  color: white;
  text-align: center;
}/*# sourceMappingURL=common.css.map */