@charset "UTF-8";
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background: #E3E6F0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 600;
}
@media (max-width: 1280px) {
  #header {
    height: 70px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 768px) {
  #header .container {
    justify-content: space-between;
  }
}
#header .container #h-logo {
  flex: 0 0 auto;
  height: 70%;
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-global-nav {
  height: 100%;
  margin-left: auto;
  margin-right: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@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 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #001976;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li > a:hover {
  color: #008A32;
}
#header .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 220px;
  height: auto;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 li {
  width: 100%;
  height: auto;
}
#header .container .h-global-nav .depth-1 > li .depth-2 li > a {
  width: 100%;
  height: auto;
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #001976;
  word-break: keep-all;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 li > a:hover {
  color: #008A32;
}
#header .container .h-global-nav .depth-1 > li:hover .depth-2 {
  visibility: visible;
  opacity: 1;
}
#header .container .h-contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  #header .container .h-contacts {
    margin-left: auto;
    margin-right: 20px;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  #header .container .h-contacts {
    display: none;
    gap: 4px;
  }
}
@media (max-width: 480px) {
  #header .container .h-contacts {
    margin-right: 12px;
  }
}
#header .container .h-contacts > li {
  flex: 0 0 170px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 100000rem;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  word-break: keep-all;
  background: #008A32;
}
@media (max-width: 1280px) {
  #header .container .h-contacts > li {
    flex: 0 0 auto;
    padding: 0 16px;
    height: 32px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  #header .container .h-contacts > li {
    flex: unset;
    width: 120px;
    height: 28px;
    padding: 0 10px;
    font-size: 13px;
  }
}
#header .container .h-contacts > li > a {
  color: white;
}
#header .container .h-contacts > li:nth-of-type(2) {
  background: #001976;
}
#header .container .m-menu-open {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: none;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .m-menu-open {
    display: block;
  }
}
@media (max-width: 480px) {
  #header .container .m-menu-open {
    width: 36px;
    height: 36px;
  }
}
#header .container .m-menu-open > svg {
  width: 100%;
  height: auto;
  fill: #001976;
}

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

.m-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100%;
  background: white;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease-in-out;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
}
.m-menu.active {
  right: 0;
}
.m-menu .m-menu-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.m-menu .m-menu-header .m-logo img {
  height: 32px;
}
.m-menu .m-menu-header .btn-m-close {
  font-size: 32px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  line-height: 1;
}
.m-menu .m-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.m-menu .m-menu-body .m-gnb {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-menu .m-menu-body .m-gnb .m-gnb-item {
  width: 100%;
}
.m-menu .m-menu-body .m-gnb .m-gnb-item .depth1-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #001976;
  color: white;
  font-size: 17px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
}
.m-menu .m-menu-body .m-gnb .m-gnb-item .depth1-title.has-sub::after {
  content: "＋";
  font-size: 16px;
}
.m-menu .m-menu-body .m-gnb .m-gnb-item.active .depth1-title.has-sub::after {
  content: "－";
}
.m-menu .m-menu-body .m-gnb .m-gnb-item.active .depth2-list {
  display: flex;
}
.m-menu .m-menu-body .m-gnb .m-gnb-item .depth2-list {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0 6px;
}
.m-menu .m-menu-body .m-gnb .m-gnb-item .depth2-list li a {
  display: block;
  padding: 12px 16px;
  background: #008A32;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}
.m-menu .m-menu-body .m-util-btns {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-menu .m-menu-body .m-util-btns a {
  display: block;
  width: 100%;
  padding: 14px 0;
  text-align: center;
  border-radius: 500px;
  font-size: 16px;
  font-weight: 700;
}
.m-menu .m-menu-body .m-util-btns .m-btn-contact {
  background: #008A32;
  color: white;
}
.m-menu .m-menu-body .m-util-btns .m-btn-tel {
  background: #00227B;
  color: white;
}

#footer {
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1280px) {
  #footer {
    height: 480px;
  }
}
@media (max-width: 768px) {
  #footer {
    height: auto;
    flex-direction: column;
  }
}
#footer .left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  background: #24346E;
}
@media (max-width: 768px) {
  #footer .left {
    flex: unset;
    width: 100%;
    height: auto;
  }
}
#footer .left .inner {
  width: 100%;
  height: 100%;
  padding: 0 5%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #footer .left .inner {
    height: auto;
    padding: 28px 4%;
  }
}
#footer .left .inner > img {
  width: 200px;
  height: auto;
  margin-bottom: 36px;
}
@media (max-width: 1280px) {
  #footer .left .inner > img {
    width: 120px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  #footer .left .inner > img {
    width: 80px;
    margin-bottom: 16px;
  }
}
#footer .left .inner > h1 {
  margin-bottom: 40px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: white;
}
@media (max-width: 1280px) {
  #footer .left .inner > h1 {
    margin-bottom: 28px;
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #footer .left .inner > h1 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
#footer .left .inner .copyright {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  color: white;
  text-align: center;
  opacity: 0.4;
}
@media (max-width: 768px) {
  #footer .left .inner .copyright {
    font-size: 14px;
  }
}
#footer .right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background: #05134A;
}
@media (max-width: 768px) {
  #footer .right {
    height: auto;
  }
}
#footer .right .inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 960px;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  #footer .right .inner {
    height: auto;
    padding: 28px 4%;
  }
}
#footer .right .inner > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 85%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.15;
}
#footer .right .inner .f-infos {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  #footer .right .inner .f-infos {
    gap: 6px;
  }
}
#footer .right .inner .f-infos > span {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 768px) {
  #footer .right .inner .f-infos > span {
    font-size: 14px;
  }
}/*# sourceMappingURL=common.css.map */