@charset "UTF-8";
/* ===== header ===== */
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#header::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00b8d9 0%, #1a7fb5 50%, #1b2f5e 100%);
}
#header > .container {
  width: 95%;
  max-width: 1720px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #header > .container {
    height: 70px;
  }
}

/* ===== logo ===== */
#h-logo {
  flex: 0 0 auto;
  line-height: 0;
}
#h-logo a {
  display: block;
}
#h-logo a:hover img {
  opacity: 0.85;
}
#h-logo img {
  width: auto;
  height: 66px;
  transition: opacity 0.2s;
}
@media (max-width: 1280px) {
  #h-logo img {
    height: 58px;
  }
}
@media (max-width: 768px) {
  #h-logo img {
    height: 46px;
  }
}
@media (max-width: 480px) {
  #h-logo img {
    height: 40px;
  }
}

/* ===== global nav ===== */
#h-global-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 1280px) {
  #h-global-nav {
    display: none;
  }
}
#h-global-nav .depth-1 {
  display: flex;
  align-items: center;
  gap: 56px;
}
#h-global-nav .depth-1 > li {
  position: relative;
}
#h-global-nav .depth-1 > li > a {
  /* 기존 그대로 */
}
#h-global-nav .depth-1 > li:hover > a, #h-global-nav .depth-1 > li.active > a {
  /* 기존 그대로 */
}
#h-global-nav .depth-1 > li .sub-wrap {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 10;
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
#h-global-nav .depth-1 > li .sub-wrap .depth-2 {
  min-width: 160px;
  padding: 10px 0;
  border: 1px solid #e5eaf0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(22, 41, 79, 0.12);
}
#h-global-nav .depth-1 > li .sub-wrap .depth-2 > li > a {
  display: block;
  padding: 11px 22px;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  color: #4b5468;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
}
#h-global-nav .depth-1 > li .sub-wrap .depth-2 > li > a:hover {
  background: #f5f8fb;
  color: #00b8d9;
}
#h-global-nav .depth-1 > li .sub-wrap .depth-2 > li.active > a {
  color: #00b8d9;
  font-weight: 700;
}
#h-global-nav .depth-1 > li:hover .sub-wrap {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ===== right ===== */
.h-right-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.h-right-wrap .call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 30px;
  border-radius: 100px;
  background: linear-gradient(135deg, #24406f 0%, #16294f 100%);
  box-shadow: 0 4px 12px rgba(22, 41, 79, 0.25);
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (max-width: 1280px) {
  .h-right-wrap .call {
    height: 44px;
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .h-right-wrap .call {
    height: 40px;
    padding: 0 18px;
  }
}
@media (max-width: 640px) {
  .h-right-wrap .call {
    width: 40px;
    padding: 0;
    background: none;
    box-shadow: none;
  }
}
.h-right-wrap .call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 41, 79, 0.35);
}
@media (max-width: 640px) {
  .h-right-wrap .call:hover {
    transform: none;
    box-shadow: none;
  }
}
.h-right-wrap .call i {
  font-size: 24px;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}
@media (max-width: 768px) {
  .h-right-wrap .call i {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .h-right-wrap .call i {
    font-size: 30px;
    color: #1b2f5e;
  }
}
.h-right-wrap .call .ismr {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media (max-width: 1280px) {
  .h-right-wrap .call .ismr {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .h-right-wrap .call .ismr {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .h-right-wrap .call .ismr {
    display: none;
  }
}
.h-right-wrap .m-menu-open {
  display: none;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .h-right-wrap .m-menu-open {
    display: block;
  }
}
.h-right-wrap .m-menu-open i {
  font-size: 34px;
  color: #1b2f5e;
}
@media (max-width: 480px) {
  .h-right-wrap .m-menu-open i {
    font-size: 30px;
  }
}

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

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(22, 41, 79, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (max-width: 480px) {
  .m-menu {
    width: 86%;
    max-width: 300px;
  }
}
.m-menu.on {
  transform: translateX(0);
}
.m-menu .m-menu-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 70px;
  padding: 0 20px;
  border-bottom: 1px solid #e5eaf0;
}
.m-menu .m-menu-head .m-menu-logo {
  display: block;
  line-height: 0;
}
.m-menu .m-menu-head .m-menu-logo img {
  width: auto;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .m-menu .m-menu-head .m-menu-logo img {
    height: 34px;
  }
}
.m-menu .m-menu-head .m-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close i {
  font-size: 30px;
  color: #1b2f5e;
}
.m-menu .m-menu-nav {
  flex: 1 1 auto;
  padding: 10px 0;
}
.m-menu .m-menu-nav .m-depth-1 > li {
  border-bottom: 1px solid #eef1f5;
}
.m-menu .m-menu-nav .m-depth-1 > li > a,
.m-menu .m-menu-nav .m-depth-1 > li > .m-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: none;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: left;
  color: #17284a;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  font-weight: 600;
}
@media (max-width: 480px) {
  .m-menu .m-menu-nav .m-depth-1 > li > a,
  .m-menu .m-menu-nav .m-depth-1 > li > .m-sub-toggle {
    padding: 16px 18px;
    font-size: 16px;
  }
}
.m-menu .m-menu-nav .m-depth-1 > li > a:hover,
.m-menu .m-menu-nav .m-depth-1 > li > .m-sub-toggle:hover {
  background: #f5f8fb;
  color: #00b8d9;
}
.m-menu .m-menu-nav .m-depth-1 > li > a i,
.m-menu .m-menu-nav .m-depth-1 > li > .m-sub-toggle i {
  flex: 0 0 auto;
  font-size: 24px;
  transition: transform 0.3s ease;
}
.m-menu .m-menu-nav .m-depth-1 > li.active > a, .m-menu .m-menu-nav .m-depth-1 > li.on > .m-sub-toggle {
  color: #00b8d9;
}
.m-menu .m-menu-nav .m-depth-1 > li.on > .m-sub-toggle i {
  transform: rotate(180deg);
}
.m-menu .m-menu-nav .m-depth-1 > li .m-sub-wrap {
  height: 0;
  background: #f7f9fc;
  overflow: hidden;
  transition: height 0.3s ease;
}
.m-menu .m-menu-nav .m-depth-1 > li .m-sub-wrap .m-depth-2 {
  padding: 8px 0;
}
.m-menu .m-menu-nav .m-depth-1 > li .m-sub-wrap .m-depth-2 > li > a {
  display: block;
  padding: 12px 20px 12px 34px;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #6b7488;
  transition: color 0.2s;
  font-weight: 400;
}
@media (max-width: 480px) {
  .m-menu .m-menu-nav .m-depth-1 > li .m-sub-wrap .m-depth-2 > li > a {
    padding: 11px 18px 11px 30px;
    font-size: 14px;
  }
}
.m-menu .m-menu-nav .m-depth-1 > li .m-sub-wrap .m-depth-2 > li > a:hover {
  color: #00b8d9;
}
.m-menu .m-menu-nav .m-depth-1 > li .m-sub-wrap .m-depth-2 > li.active > a {
  color: #00b8d9;
  font-weight: 700;
}
.m-menu .m-menu-foot {
  flex: 0 0 auto;
  padding: 22px 20px;
  border-top: 1px solid #e5eaf0;
  background: #f7f9fc;
}
.m-menu .m-menu-foot .m-menu-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1b2f5e;
  transition: color 0.2s;
}
.m-menu .m-menu-foot .m-menu-call i {
  font-size: 22px;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}
.m-menu .m-menu-foot .m-menu-call .ismr {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 700;
}
.m-menu .m-menu-foot .m-menu-call:hover {
  color: #00b8d9;
}
.m-menu .m-menu-foot .m-menu-mail {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #6b7488;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

.quickmenu {
  position: fixed;
  right: 16px;
  top: 120px;
  width: 80px;
  height: auto;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 8px;
  z-index: 102;
}
.quickmenu .qm-link {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.quickmenu .qm-link figure {
  width: 100%;
  height: auto;
  max-width: 54px;
  display: flex;
}
.quickmenu .qm-link figure > img {
  width: 100%;
  height: auto;
}
.quickmenu .qm-link span {
  font-size: 10px;
  line-height: 1.1;
  color: black;
  font-weight: 500;
  text-align: center;
  word-break: break-all;
  letter-spacing: 0.1px;
}
.quickmenu i.hor-bar {
  width: 80%;
  height: 1px;
  background: #aaa;
}

#footer {
  position: relative;
  background: #fff;
  border-top: 4px solid #2b3fa0;
}
#footer .container {
  width: 95%;
  max-width: 1720px;
  margin: 0 auto;
}
#footer {
  /* ===== f-top ===== */
}
#footer .f-top > .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 70px 0 55px;
}
@media (max-width: 1280px) {
  #footer .f-top > .container {
    gap: 30px;
    padding: 55px 0 45px;
  }
}
@media (max-width: 768px) {
  #footer .f-top > .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 45px 0 35px;
  }
}
@media (max-width: 480px) {
  #footer .f-top > .container {
    gap: 26px;
    padding: 38px 0 30px;
  }
}
#footer {
  /* ===== 좌측 : 로고 / 슬로건 ===== */
}
#footer .f-left {
  flex: 0 0 auto;
}
#footer .f-logo {
  line-height: 0;
}
#footer .f-logo img {
  width: auto;
  height: 66px;
  transition: opacity 0.2s;
}
@media (max-width: 1280px) {
  #footer .f-logo img {
    height: 140px;
  }
}
@media (max-width: 768px) {
  #footer .f-logo img {
    height: 120px;
  }
}
@media (max-width: 480px) {
  #footer .f-logo img {
    height: 100px;
  }
}
#footer .f-logo a:hover img {
  opacity: 0.85;
}
#footer .f-slogan {
  margin-top: 10px;
  font-size: 30px;
  letter-spacing: -0.03em;
  font-weight: 500;
  line-height: 1.2;
  color: #36A2BC;
}
@media (max-width: 1280px) {
  #footer .f-slogan {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #footer .f-slogan {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  #footer .f-slogan {
    margin-top: 8px;
    font-size: 18px;
  }
}
#footer {
  /* ===== 우측 : 메뉴 / Back To Top / 정보 ===== */
}
#footer .f-right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  #footer .f-right {
    align-items: flex-start;
    width: 100%;
  }
}
#footer .f-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #footer .f-nav ul {
    justify-content: flex-start;
  }
}
#footer .f-nav li {
  position: relative;
  padding: 0 30px;
}
@media (max-width: 1280px) {
  #footer .f-nav li {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  #footer .f-nav li {
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  #footer .f-nav li {
    padding: 0 12px;
  }
}
#footer .f-nav li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 12px;
  background: #c9cfdb;
  transform: translateY(-50%);
}
#footer .f-nav li:last-child {
  padding-right: 0;
}
#footer .f-nav li:last-child::after {
  display: none;
}
@media (max-width: 768px) {
  #footer .f-nav li:first-child {
    padding-left: 0;
  }
}
#footer .f-nav a {
  display: block;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #555f74;
  white-space: nowrap;
  transition: color 0.2s;
  font-weight: 500;
}
@media (max-width: 1280px) {
  #footer .f-nav a {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #footer .f-nav a {
    font-size: 14px;
  }
}
#footer .f-nav a:hover {
  color: #2b3fa0;
}
#footer .f-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 45px;
}
@media (max-width: 1280px) {
  #footer .f-top-btn {
    gap: 13px;
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  #footer .f-top-btn {
    margin-top: 26px;
  }
}
@media (max-width: 480px) {
  #footer .f-top-btn {
    gap: 10px;
    margin-top: 22px;
  }
}
#footer .f-top-btn .ismr {
  font-size: 30px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #3aa8e0;
  transition: color 0.2s;
  font-weight: 700;
}
@media (max-width: 1280px) {
  #footer .f-top-btn .ismr {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  #footer .f-top-btn .ismr {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  #footer .f-top-btn .ismr {
    font-size: 19px;
  }
}
#footer .f-top-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #2b3fa0;
  font-size: 26px;
  color: #fff;
  transition: background 0.2s, transform 0.25s ease;
}
@media (max-width: 1280px) {
  #footer .f-top-btn i {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  #footer .f-top-btn i {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}
#footer .f-top-btn:hover .ismr {
  color: #2b3fa0;
}
#footer .f-top-btn:hover i {
  background: #1d2c7a;
  transform: translateY(-4px);
}
#footer .f-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 60px;
  margin-top: 45px;
}
@media (max-width: 1280px) {
  #footer .f-info {
    gap: 10px 36px;
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  #footer .f-info {
    justify-content: flex-start;
    gap: 8px 26px;
    margin-top: 26px;
  }
}
@media (max-width: 480px) {
  #footer .f-info {
    gap: 6px 20px;
    margin-top: 22px;
  }
}
#footer .f-info li {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 1280px) {
  #footer .f-info li {
    gap: 11px;
  }
}
@media (max-width: 480px) {
  #footer .f-info li {
    gap: 8px;
  }
}
#footer .f-info .tit {
  position: relative;
  padding-right: 14px;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #17284a;
  white-space: nowrap;
  font-weight: 700;
}
@media (max-width: 1280px) {
  #footer .f-info .tit {
    padding-right: 11px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #footer .f-info .tit {
    padding-right: 8px;
    font-size: 14px;
  }
}
#footer .f-info .tit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 13px;
  background: #2b3fa0;
  transform: translateY(-50%);
}
#footer .f-info .txt {
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #555f74;
  white-space: nowrap;
  font-weight: 400;
}
@media (max-width: 1280px) {
  #footer .f-info .txt {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #footer .f-info .txt {
    font-size: 14px;
    white-space: normal;
  }
}
#footer {
  /* ===== f-bottom ===== */
}
#footer .f-bottom {
  background: #2b3fa0;
}
#footer .f-bottom > .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 0;
}
@media (max-width: 480px) {
  #footer .f-bottom > .container {
    min-height: 40px;
  }
}
#footer .f-copy {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 1280px) {
  #footer .f-copy {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  #footer .f-copy {
    font-size: 13px;
  }
}/*# sourceMappingURL=common.css.map */