@charset "UTF-8";
/*-------------------------------------------------------------------
    파일정의 : 공통
-------------------------------------------------------------------*/
:root {
  --color-gradient: linear-gradient(103deg, #0E457B 9.89%, #075D5D 90.9%);
  /* Primary Colors */
  --color-primary-blue: #0E457B;
  --color-primary-green: #075D5D;
  --color-bg-blue: #F6F8FC;
  --color-bg-green: #F3FAFA;
  /* Grayscale */
  --color-black: #000;
  --color-white: #fff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-800: #323232;
  /* Text */
  --text-main: #111;
  --text-sub: #666;
  --text-placeholder: #aaa;
  /* Alert */
  --color-error: #ff4d4f;
  --color-success: #52c41a;
}

:focus-visible {
  outline: 2px solid #4CAF50;
  outline-offset: -2px;
}

body::-webkit-scrollbar,
.select-options::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-button,
.select-options::-webkit-scrollbar-button {
  display: none;
}
body::-webkit-scrollbar-track,
.select-options::-webkit-scrollbar-track {
  background: #f8f8f8;
}
body::-webkit-scrollbar-thumb,
.select-options::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: rgba(136, 136, 136, 0.4);
}

html, body {
  /*font-family: 'Pretendard', '돋움', dotum, sans-serif;
  line-height: 1.5;*/
  color: #141516;
  font-size: 100%;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#container {
  padding-top: 14.6rem;
  min-width: 32rem;
}
@media (max-width: 767px) {
  #container {
    padding-top: 10.6rem;
  }
}

#skipNav {
  position: relative;
  z-index: 99999;
}
#skipNav a {
  position: absolute;
  top: -200px;
  left: 0;
  color: #333;
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  border: 1px solid var(--border-color);
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
  font-size: 1.6rem;
}
#skipNav a:focus, #skipNav a:active {
  top: 0;
}

/* -------------------------------------------------------------- */
/* 공통 레이아웃 */
/* -------------------------------------------------------------- */
.inner {
  width: calc(100% - 4rem);
  max-width: 160rem;
  margin: 0 auto;
}

/* -------------------------------------------------------------- */
/* header */
/* -------------------------------------------------------------- */
.header.header__v2 {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 55px;
  padding: 0 20px;
  background: linear-gradient(90deg, var(--color-primary-blue) 0%, var(--color-primary-green) 100%);
}
.header.header__v2 .header__h1 {
  padding-left: 48px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.header.header__v2 .header__h1 .h1-txt--mo {
  display: none;
}
.header.header__v2 .gnb-wrap {
  position: absolute;
  top: 16px;
  left: 20px;
}
.header.header__v2 .gnb-wrap .gnb-open-btn {
  display: block;
  position: relative;
  width: 28px;
  height: 23px;
  border: none;
  background-color: transparent;
}
.header.header__v2 .gnb-wrap .gnb-open-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
}
.header.header__v2 .gnb-wrap .gnb-open-btn span:nth-child(1), .header.header__v2 .gnb-wrap .gnb-open-btn span:nth-child(2), .header.header__v2 .gnb-wrap .gnb-open-btn span:nth-child(3) {
  width: 100%;
  border-radius: 3px;
}
.header.header__v2 .gnb-wrap .gnb-open-btn span:nth-child(1) {
  top: 0;
}
.header.header__v2 .gnb-wrap .gnb-open-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header.header__v2 .gnb-wrap .gnb-open-btn span:nth-child(3) {
  bottom: 0;
}
.header.header__v2 .gnb-wrap .gnb-open-btn.active span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.header.header__v2 .gnb-wrap .gnb-open-btn.active span:nth-child(1) {
  top: 50%;
  margin-left: -3px;
  transform: translateY(-50%) rotate(45deg);
}
.header.header__v2 .gnb-wrap .gnb-open-btn.active span:nth-child(2) {
  width: 0;
}
.header.header__v2 .gnb-wrap .gnb-open-btn.active span:nth-child(3) {
  bottom: 50%;
  margin-left: -3px;
  transform: translateY(50%) rotate(-45deg);
}
.header.header__v2 .gnb-wrap .gnb {
  display: none;
  position: absolute;
  top: 33px;
  left: 0;
  padding: 20px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth1 {
  display: flex;
  align-items: flex-start;
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth1 .gnb-depth1__li {
  overflow: hidden;
  position: relative;
  min-width: 160px;
  border: 1px solid #eaeaea;
  border-radius: 6px;
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth1 .gnb-depth1__li + .gnb-depth1__li {
  margin-left: 10px;
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth1 .gnb-depth1__li .gnb-depth1__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  border-bottom: 1px solid #eaeaea;
  background-color: var(--color-primary-blue);
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.04375em;
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth1 .gnb-depth1__li:hover .gnb-depth1__link {
  color: #fff;
  background-color: var(--color-primary-blue);
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth2 .gnb-depth2__li .gnb-depth2__link {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  padding: 8px 10px;
  min-height: 36px;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.53;
  background: var(--color-bg-blue);
  letter-spacing: -0.05em;
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth2 .gnb-depth2__li:hover .gnb-depth2__link, .header.header__v2 .gnb-wrap .gnb .gnb-depth2 .gnb-depth2__li:focus .gnb-depth2__link {
  color: var(--color-primary-blue);
  background-color: var(--color-bg-blue);
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth3 .gnb-depth3__li .gnb-depth3__link {
  display: flex;
  position: relative;
  align-items: center;
  padding: 6px;
  padding-left: 16px;
  font-size: 13px;
  background-color: #ffffff;
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth3 .gnb-depth3__li .gnb-depth3__link::before {
  content: "-";
  position: initial;
  margin-right: 5px;
  width: auto;
  height: auto;
  background: transparent;
}
.header.header__v2 .gnb-wrap .gnb .gnb-depth3 .gnb-depth3__li:hover .gnb-depth3__link {
  color: var(--color-primary-blue);
  font-weight: 500;
}
.header.header__v2 .gnb-wrap .mo-gnb {
  display: none;
  overflow-y: auto;
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  height: calc(100vh - 55px);
  padding: 40px 22px 70px 12px;
  background-color: #fff;
}
.header.header__v2 .gnb-wrap .mo-gnb:before {
  content: "";
  position: absolute;
  top: 39px;
  left: 12px;
  width: 40px;
  height: 1px;
  background-color: #141516;
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth1 .mo-gnb-depth1__li .mo-gnb-depth1__link {
  display: flex;
  position: relative;
  align-items: center;
  height: 50px;
  font-weight: 500;
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth1 .mo-gnb-depth1__li.be-depth .mo-gnb-depth1__link::before, .header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth1 .mo-gnb-depth1__li.be-depth .mo-gnb-depth1__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 198px;
  width: 12px;
  height: 2px;
  background-color: #141516;
  transition: all 0.2s;
  transform: translateY(-50%);
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth1 .mo-gnb-depth1__li.be-depth .mo-gnb-depth1__link::after {
  transform: translateY(-50%) rotate(90deg);
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth1 .mo-gnb-depth1__li.active .mo-gnb-depth1__link {
  color: var(--color-primary-blue);
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth1 .mo-gnb-depth1__li.active .mo-gnb-depth1__link::before, .header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth1 .mo-gnb-depth1__li.active .mo-gnb-depth1__link::after {
  background-color: var(--color-primary-blue);
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth1 .mo-gnb-depth1__li.active .mo-gnb-depth1__link::after {
  transform: translateY(-50%);
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth1 .mo-gnb-depth1__li.active .mo-gnb-depth2 {
  display: block;
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth2 {
  display: none;
  padding-left: 5px;
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth2 .mo-gnb-depth2__li .mo-gnb-depth2__link {
  display: flex;
  align-items: center;
  height: 39px;
  color: #222;
  font-size: 15px;
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth3 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth3 .mo-gnb-depth3__li {
  margin-left: 20px;
}
.header.header__v2 .gnb-wrap .mo-gnb .mo-gnb-depth3 .mo-gnb-depth3__li .mo-gnb-depth3__link {
  display: flex;
  align-items: center;
  height: 39px;
  color: #888;
  font-size: 14px;
}
.header.header__v2 .header__user {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header.header__v2 .header__user .time-extension {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .header.header__v2 .header__user .time-extension {
    display: none;
  }
}
.header.header__v2 .header__user .time-extension::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}
.header.header__v2 .header__user .time-extension .btn-refresh {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-block;
  margin-left: 5px;
}
.header.header__v2 .header__user .user-name {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.02em;
}
.header.header__v2 .header__user .user-desc {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.02em;
}
.header.header__v2 .header__user .user-desc::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}
.header.header__v2 .header__user .user-profile {
  position: relative;
  margin-left: 15px;
}
.header.header__v2 .header__user .user-profile .user-profile__open-btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 5px;
  background-color: #fff;
  background-image: url("../img/common/user-profile-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.header.header__v2 .header__user .user-profile .ico--notice {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: url("../img/common/ico_exclamation.png") no-repeat center;
  background-size: contain;
}
.header.header__v2 .header__user .user-profile .ico--notice:before, .header.header__v2 .header__user .user-profile .ico--notice:after {
  display: none;
}
.header.header__v2 .header__user .user-profile .user-profile__con {
  display: none;
  position: absolute;
  top: 33px;
  right: 0;
  width: 300px;
  padding: 20px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__head {
  display: flex;
  align-items: center;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__head i {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background-image: url("../img/common/user-profile-icon2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__head div {
  margin-left: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.02em;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__head div b {
  display: block;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__head br {
  display: none;
}
.header.header__v2 .header__user .user-profile .user-profile__con .my-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px;
  margin-top: 10px;
  border-radius: 6px;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: -0.05em;
  background-color: var(--color-primary-blue);
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__desc {
  margin-top: 10px;
  font-size: 12px;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__desc li {
  display: flex;
  line-height: 22px;
  margin-top: 5px;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__desc li:nth-of-type(1) {
  margin-top: 0;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__desc li b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  min-height: 26px;
  padding: 0 5px;
  border-radius: 4px;
  background: #F8F8F8;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.05em;
  flex: none;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__desc li b::after {
  content: "";
  width: 1px;
  height: 12px;
  margin-left: auto;
  background-color: #141516;
  display: none;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__desc li span {
  margin-left: 8px;
  min-height: 26px;
  display: flex;
  align-items: center;
  word-break: break-all;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.05em;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__etc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-left: -10px;
}
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__etc a,
.header.header__v2 .header__user .user-profile .user-profile__con .user-profile__etc button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 10px);
  height: 35px;
  margin-left: 10px;
  border: initial;
  border-radius: 5px;
  font-size: 12px;
  background-color: initial;
}
.header.header__v2 .header__user .user-profile .user-profile__con .number-of-cases {
  display: flex;
  margin-top: 10px;
  margin-left: -10px;
  padding-top: 10px;
  border-top: 1px solid #eaeaea;
}
.header.header__v2 .header__user .user-profile .user-profile__con .number-of-cases a {
  position: relative;
  width: calc(100% - 10px);
  margin-left: 10px;
  padding: 35px 10px 10px;
  border: 1px solid #dedede;
  border-radius: 5px;
}
.header.header__v2 .header__user .user-profile .user-profile__con .number-of-cases a strong {
  display: flex;
  position: absolute;
  top: -1px;
  left: -1px;
  align-items: center;
  justify-content: center;
  width: calc(100% + 2px);
  height: 25px;
  border: 1px solid #dedede;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  background-color: #f7f9fd;
}
.header.header__v2 .header__user .user-profile .user-profile__con .number-of-cases a div {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.header.header__v2 .header__user .user-profile .user-profile__con .number-of-cases a div span {
  margin-left: auto;
  color: #5e83d3;
}

@media (max-width: 1023px) {
  .header.header__v2 {
    padding: 0 12px;
  }
  .header.header__v2 .header__h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    padding-left: 0;
    transform: translate(-50%, -50%);
  }
  .header.header__v2 .header__h1 .h1-txt--pc {
    display: none;
  }
  .header.header__v2 .header__h1 .h1-txt--mo {
    display: block;
  }
  .header.header__v2 .gnb-wrap {
    left: 12px;
  }
  .header.header__v2 .header__user .user-name {
    display: none;
  }
  .header.header__v2 .header__user .user-desc {
    display: none;
  }
}
/* -------------------------------------------------------------- */
/* footer */
/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */
/* lnb */
/* -------------------------------------------------------------- */
.aside.aside__v2 {
  position: fixed;
  top: 55px;
  bottom: 0;
  left: -240px;
  z-index: 98;
  width: 240px;
  border-right: 1px solid #eaeaea;
  background-color: #fff;
  transition: left 0.2s;
  padding: 10px;
}
.aside.aside__v2 .aside__inner {
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.aside.aside__v2 .aside__inner .short-cut {
  border-radius: 6px;
  overflow: hidden;
}
.aside.aside__v2 .aside__inner .short-cut .short-cut__btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 54px;
  padding: 0 35px 0 20px;
  border: none;
  border-bottom: 1px solid #EAEAEA;
  background: #DFF2F2;
  color: var(--color-primary-green);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.05em;
}
.aside.aside__v2 .aside__inner .short-cut .short-cut__btn::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  background: url("../img/common/ico_shortcut.png") no-repeat center;
  background-size: 20px auto;
  animation: none;
  will-change: transform;
}
.aside.aside__v2 .aside__inner .short-cut .short-cut__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 5px;
  background: url("../img/common/lnb-toggle-icon.png") no-repeat center;
  background-size: cover;
  transform: translateY(-50%);
}
.aside.aside__v2 .aside__inner .short-cut .short-cut__btn.kick:before {
  animation: diagMove 0.35s ease-in-out 2 alternate;
}
@keyframes diagMove {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-3.5px, 3.5px);
  }
}
.aside.aside__v2 .aside__inner .short-cut ul {
  background: var(--color-bg-green);
}
.aside.aside__v2 .aside__inner .short-cut ul li {
  position: relative;
}
.aside.aside__v2 .aside__inner .short-cut ul li a {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 30px;
  border-bottom: 1px solid transparent;
  font-size: 14px;
  font-weight: 400;
}
.aside.aside__v2 .aside__inner .short-cut ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 48px;
  background-color: var(--color-primary-green);
}
.aside.aside__v2 .aside__inner .short-cut ul li a:hover, .aside.aside__v2 .aside__inner .short-cut ul li a:focus {
  color: var(--color-primary-green);
  font-weight: 500;
}
.aside.aside__v2 .aside__inner .short-cut ul li a:hover::before, .aside.aside__v2 .aside__inner .short-cut ul li a:focus::before {
  width: 3px;
  transition: width 0.2s ease;
}
.aside.aside__v2 .aside__inner .short-cut ul li a:hover + .short-cut__del-btn, .aside.aside__v2 .aside__inner .short-cut ul li a:focus + .short-cut__del-btn {
  display: block;
}
.aside.aside__v2 .aside__inner .short-cut ul li .short-cut__del-btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  border: none;
  background-color: transparent;
  background-image: url("../img/common/ico_close_bk.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(-50%);
}
.aside.aside__v2 .aside__inner .short-cut ul li .short-cut__del-btn:hover, .aside.aside__v2 .aside__inner .short-cut ul li .short-cut__del-btn:focus {
  display: block;
}
.aside.aside__v2 .aside__inner .short-cut ul li.no-data .txt {
  padding: 0 30px;
  height: 48px;
  display: flex;
  align-items: center;
  color: #707070;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.05em;
}
.aside.aside__v2 .aside__inner .short-cut.active .short-cut__btn::after {
  transform: translateY(-50%) rotate(180deg);
}
.aside.aside__v2 .aside__inner .lnb {
  margin-top: 10px;
  border-radius: 6px;
  overflow: hidden;
}
.aside.aside__v2 .aside__inner .lnb:hover .lnb-depth1::before {
  animation: spin 4s linear infinite;
  will-change: transform;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  height: 54px;
  border-bottom: 1px solid transparent;
  color: var(--color-primary-blue);
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid #EAEAEA;
  background: #E9EFF9;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth1::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 19px;
  height: 19px;
  background: url("../img/common/ico_setting.png") no-repeat center;
  background-size: auto 19px;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li .lnb-depth2__link {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 55px;
  padding: 0 35px 0 30px;
  border-bottom: 1px solid transparent;
  font-size: 14px;
  background-color: var(--color-bg-blue);
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li .lnb-depth2__link:hover, .aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li .lnb-depth2__link:focus {
  color: var(--color-primary-blue);
  font-weight: 500;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li .lnb-depth2__link:hover::before, .aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li .lnb-depth2__link:focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #1e52c2;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li.be-depth .lnb-depth2__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-primary-blue);
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li.be-depth .lnb-depth2__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 5px;
  background: url("../img/common/lnb-toggle-icon.png") no-repeat center;
  background-size: cover;
  transform: translateY(-50%);
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li.active .lnb-depth2__link {
  color: var(--color-primary-blue);
  font-weight: 500;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li.active .lnb-depth2__link::before {
  width: 3px;
  transition: width 0.2s ease;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth2 .lnb-depth2__li.active .lnb-depth2__link::after {
  transform: translateY(-50%) rotate(180deg);
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth3 {
  display: none;
  border-bottom: 1px solid transparent;
  background: #FBFDFF;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth3 .lnb-depth3__li .lnb-depth3__link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 43px;
  padding: 0 20px 0 35px;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.05em;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth3 .lnb-depth3__li .lnb-depth3__link::before {
  content: "-";
  margin-right: 3px;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth3 .lnb-depth3__li .lnb-depth3__link:hover, .aside.aside__v2 .aside__inner .lnb .lnb-depth3 .lnb-depth3__li .lnb-depth3__link:focus {
  color: var(--color-primary-blue);
  background-color: transparent;
}
.aside.aside__v2 .aside__inner .lnb .lnb-depth3 .lnb-depth3__li.current .lnb-depth3__link {
  color: var(--color-primary-blue);
  background-color: transparent;
  font-weight: 500;
}
.aside.aside__v2 .aside__inner .info-etc-link {
  margin-top: auto;
  padding-top: 48px;
}
.aside.aside__v2 .aside__inner .info-etc-link .info-etc-link__inner {
  padding: 15px 30px 20px;
  border-top: 1px solid #eaeaea;
}
.aside.aside__v2 .aside__inner .info-etc-link .info-etc-link__inner .info-etc-link__tit {
  font-size: 14px;
  font-weight: 500;
}
.aside.aside__v2 .aside__inner .info-etc-link .info-etc-link__inner .info-etc-link__ul {
  font-size: 13px;
}
.aside.aside__v2 .aside__inner .info-etc-link .info-etc-link__inner .info-etc-link__ul > li {
  margin-top: 10px;
}
.aside.aside__v2 .aside__inner .info-etc-link .info-etc-link__inner .info-etc-link__ul > li a {
  display: flex;
  align-items: center;
}
.aside.aside__v2 .aside__inner .info-etc-link .info-etc-link__inner .info-etc-link__ul > li a > * + * {
  margin-left: 5px;
}
.aside.aside__v2 .aside__inner .info-etc-link .info-etc-link__inner .info-etc-link__ul > li a:hover span, .aside.aside__v2 .aside__inner .info-etc-link .info-etc-link__inner .info-etc-link__ul > li a:focus span {
  text-decoration: underline;
}
.aside.aside__v2 .aside-toggle-btn {
  position: absolute;
  top: 0;
  right: -28px;
  width: 27px;
  height: 27px;
  border: none;
  border-right: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  border-bottom-right-radius: 4px;
  background-color: #fff;
  background: url("../img/common/aside-toggle-icon.png") no-repeat center;
  background-size: 12px 10px;
}

@media (max-width: 1170px) {
  .aside {
    display: none;
  }
}
.contents.contents__v2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  padding: 95px 80px 0;
  transition: padding 0.2s;
}
.contents.contents__v2 .main {
  position: relative;
  flex: none;
  width: 100%;
  max-width: 1520px;
}
.contents.contents__v2 .footer {
  flex: none;
  width: 100%;
  margin-top: auto;
}
.contents.contents__v2 .footer .footer__inner {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 65px;
  min-height: 65px;
  padding: 15px 0;
  padding-left: 270px;
}
.contents.contents__v2 .footer .site-short-cut {
  display: flex;
  position: absolute;
  bottom: 15px;
  left: 0;
  flex-direction: column-reverse;
  border: 1px solid #dedede;
  border-radius: 5px;
  font-size: 14px;
  background-color: #fff;
}
.contents.contents__v2 .footer .site-short-cut .site-short-cut__toggle-btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  width: 270px;
  height: 35px;
  padding: 0 15px;
  border: none;
  background-color: transparent;
}
.contents.contents__v2 .footer .site-short-cut .site-short-cut__toggle-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 4px;
  background-image: url(../img/common/arrow-icon--up.png);
  transform: translateY(-50%);
}
.contents.contents__v2 .footer .site-short-cut .site-short-cut__ul {
  display: none;
  bottom: 35px;
  flex-direction: column-reverse;
}
.contents.contents__v2 .footer .site-short-cut .site-short-cut__ul > li a {
  display: flex;
  align-items: center;
  height: 35px;
  padding: 0 15px;
  border-radius: 5px;
}
.contents.contents__v2 .footer .site-short-cut .site-short-cut__ul > li a:hover, .contents.contents__v2 .footer .site-short-cut .site-short-cut__ul > li a:focus {
  color: #5e83d3;
  background-color: #f8f8f8;
}
.contents.contents__v2 .footer .site-short-cut.active {
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.contents.contents__v2 .footer .site-short-cut.active .site-short-cut__toggle-btn::after {
  transform: translateY(-50%) rotate(180deg);
}
.contents.contents__v2 .footer .site-short-cut.active .site-short-cut__ul {
  display: flex;
}
.contents.contents__v2 .footer .footer_etc-link {
  display: flex;
  align-items: center;
  margin-left: 10px;
  color: #3f3f3f;
  font-size: 12px;
}
.contents.contents__v2 .footer .footer_etc-link > li + li::before {
  content: "|";
  margin: 0 5px;
}
.contents.contents__v2 .footer .footer_etc-link > li a:hover, .contents.contents__v2 .footer .footer_etc-link > li a:focus {
  font-weight: 500;
}
.contents.contents__v2 .footer .copy {
  margin-left: auto;
  color: #3f3f3f;
  font-size: 12px;
}

.container {
  height: 100%;
}
.container.active .aside {
  left: 0;
}
.container.active .aside .aside-toggle-btn {
  border: none;
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  transform: rotate(180deg);
  border-top-left-radius: 4px;
}
.container.active .contents__v2 {
  padding: 95px 80px 0 320px;
}
@media (max-width: 1439px) {
  .container.active .contents.contents__v2 {
    padding: 95px 40px 0;
  }
}

.sub-con.sub-con__v2 {
  padding-top: 10px;
  padding-bottom: 30px;
}
