@charset "UTF-8";
/** Common */
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/* btn-plus */
/* @mixin btn($right, $top) {
    position: absolute;
    width: 15px;
    height: 15px;
    top: $top;
    right: $right;
    transition-duration: 0.5s;
}

@mixin icon($height, $width) {
    transition-duration: 0.5s;
    position: absolute;
    height: $height;
    width: $width;
}

@mixin icon-before($height, $width, $top) {
    transition-duration: 0.5s;
    position: absolute;
    width: $width;
    height: $height;
    background-color: var(--dlsp-fontDg-color);
    content: '';
    top: $top;
    right: 0;
}

@mixin icon-after($height, $width, $top) {
    transition-duration: 0.5s;
    position: absolute;
    width: $width;
    height: $height;
    background-color: var(--dlsp-fontDg-color);
    content: '';
    top: $top;
    right: 0;
} */
header .btn-plus {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 17px;
  right: 20px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  display: none;
}
header .btn-plus .btn-plus-icon:before {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: var(--dlsp-fontDg-color);
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: rotateZ(-90deg);
          transform: rotateZ(-90deg);
}
header .btn-plus .btn-plus-icon:after {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: var(--dlsp-fontDg-color);
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: rotateZ(-180deg);
          transform: rotateZ(-180deg);
}
header .btn-plus.open .btn-plus-icon {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition: opacity 0.15s 0.4s ease;
  transition: opacity 0.15s 0.4s ease;
}
header .btn-plus.open .btn-plus-icon:before {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: var(--dlsp-fontDg-color);
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: rotateZ(-180deg);
          transform: rotateZ(-180deg);
  background-color: var(--cc-mainB-color);
}
header .btn-plus.open .btn-plus-icon:after {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: var(--dlsp-fontDg-color);
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
  background-color: var(--cc-mainB-color);
}

/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/*! * Hamburgers * @description Tasty CSS-animated hamburgers * @author Jonathan Suh @jonsuh * @site https://jonsuh.com/hamburgers * @link https://github.com/jonsuh/hamburgers */
.hamburger {
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  overflow: visible;
  margin: 0;
  padding: 15px;
}

.hamburger.is-active {
  opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::after,
.hamburger-inner::before {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--elastic .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
          transform: translate3d(0, 10px, 0) rotate(135deg);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
          transform: translate3d(0, -20px, 0) rotate(-270deg);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.hambuger.is-active {
  position: fixed;
}

/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/* hamburger custom */
.hamburger {
  display: block;
  position: absolute;
  top: 22px;
  right: 15px;
  z-index: 9999;
  padding: 15px;
  outline: none;
  padding: 0;
  color: var(--dlsp-fontDe-color);
  cursor: pointer;
}

/* .navbar-m button { position: absolute; top: 50%; right: 3%; cursor: pointer; transform: translateY(-40%); z-index: 999;} */
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 18px;
}

.hamburger-inner,
.hamburger-inner:after {
  position: absolute;
  width: 22px;
  height: 2px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border-radius: 1px;
  background-color: #555;
}

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
  -webkit-transform: translate3d(0, 7px, 0) rotate(135deg);
          transform: translate3d(0, 7px, 0) rotate(135deg);
}

.hamburger--elastic .hamburger-inner:after {
  top: 14px;
}

.hamburger--elastic.is-active .hamburger-inner:after {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
  -webkit-transform: translate3d(0, -14px, 0) rotate(-270deg);
          transform: translate3d(0, -14px, 0) rotate(-270deg);
}

.hamburger-inner:before {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #555;
}

.hamburger--elastic .hamburger-inner::before {
  top: 7px;
  -webkit-transition: opacity 0.15s 0.3s ease;
  transition: opacity 0.15s 0.3s ease;
}

.hamburger--elastic .hamburger-inner::before {
  top: 7px;
  -webkit-transition: opacity 0.15s 0.3s ease;
  transition: opacity 0.15s 0.3s ease;
}

.hamburger--elastic .hamburger-inner::before {
  top: 7px;
  -webkit-transition: opacity 0.15s 0.3s ease;
  transition: opacity 0.15s 0.3s ease;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.nav-bar-wrap .hamburger.is-active {
  position: fixed;
}

/* hamburger custom end */
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/** header Common */
header * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.nav-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.nav-mask.on {
  display: block;
}

.logo-s {
  display: none;
}

/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/** header Common end */
/* header .nav 공통사항 */
header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  text-align: center;
  /* 본문 바로가기 */
  /* 본문 바로가기 end */
  /* 모바일 상단 로고 */
  /* 모바일 우측 버튼 */
}
header a {
  display: block;
  width: 100%;
  height: 100%;
}
header::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 4;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--dlsp-tblHthC-border);
}
header .skip {
  list-style: none;
  width: 100%;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  position: absolute;
  top: -60px;
  left: 0;
  background-color: #333;
  z-index: 18;
  text-align: center;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
header .skip a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
header .nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 95%;
  max-width: 1420px;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;
}
header .area-logo .logo-l {
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .area-logo .logo-l img {
  width: 100%;
  height: auto;
}
header .area-logo-mob {
  display: none;
}
header .area-logo-mob > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .area-mob-button {
  display: none;
}
header .area-user-state {
  -ms-flex-item-align: center;
      align-self: center;
}
header .area-user-state ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 50px;
  line-height: 50px;
  gap: 15px;
  z-index: 3;
  margin: auto;
}
header .area-user-state ul .btn-type {
  min-width: 60px;
  padding: 0 10px;
}
header .area-user-state ul .btn-type.black {
  color: #fff;
  border: 1px solid #fff;
}
header .area-user-state ul .btn-type.outlined {
  color: var(--cc-mainB-color);
  border-color: var(--cc-mainB-color);
}
header .area-user-state .after-login .btn-type {
  color: #fff;
}
header .area-user-state .after-login span {
  position: relative;
}
header .area-user-state .after-login span::before {
  content: "\e7ff";
  display: inline-block;
  position: absolute;
  font-family: "Material Icons", sans-serif;
  top: -15px;
  left: -24px;
  font-size: 21px;
  color: inherit;
}
header .area-user-state .after-login span b {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: bottom;
  color: var(--cc-mainB-color);
}
header .area-user-state .no-login {
  display: block;
  min-width: 140px;
  height: auto;
}
header .area-menu > ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
header .area-menu > ul li.depth01 {
  position: relative;
  max-width: 25%;
  min-width: 183px;
  font-size: 18px;
  background-color: #f1f4fb;
  border-bottom: 1px solid var(--dlsp-tblHthC-border);
}
header .area-menu > ul li.depth01::after {
  content: "";
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  width: 1px;
  height: calc(100% - 80px);
  background-color: var(--dlsp-tblHthC-border);
}
header .area-menu > ul li.depth01:nth-last-of-type(1)::before {
  content: "";
  display: block;
  position: absolute;
  top: 80px;
  right: 0;
  width: 1px;
  height: calc(100% - 80px);
  background-color: var(--dlsp-tblHthC-border);
}
header .area-menu > ul li.depth01 > a {
  height: 80px;
  line-height: 80px;
  background-color: #fff;
}
header .area-menu > ul li.depth01 > a > i {
  display: none;
}
header .area-menu > ul li.depth01 > a > h3 {
  font-size: 18px;
  text-align: center;
  color: var(--cc-mainB-color);
  font-weight: normal;
}
header .area-menu > ul li.depth01 > a > h3::before {
  content: "";
  position: absolute;
  top: 76px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 0;
  height: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: var(--cc-mainA-color);
}
header .area-menu > ul li.depth01 > a.on {
  background-color: var(--cc-mainA-color);
  border-left: none;
  border-right: none;
}
header .area-menu > ul li.depth01 > a.on > a {
  color: #fff;
}
header .area-menu > ul li.depth01 ul.depth02 {
  display: none;
  padding: 10px 0;
  width: 100%;
}
header .area-menu > ul li.depth01 ul.depth02 > li > h4 {
  height: 100%;
  font-size: 16px;
}
header .area-menu > ul li.depth01 ul.depth02 > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  font-size: 14px;
}
header .area-menu > ul li.depth01 ul.depth02 li.depth03 {
  position: relative;
}
header .area-menu > ul li.depth01 ul.depth02 li.depth03:nth-last-of-type(1) {
  margin-top: 10px;
  margin-bottom: 10px;
}
header .area-menu > ul li.depth01 ul.depth02 li.depth03 h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 30px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background-color: var(--cc-color-16);
  padding: 0 8px;
  border-radius: 4px;
  font-weight: normal;
}
header .area-menu > ul li.depth01 ul.depth02 li.depth03 h4 .material-icons {
  line-height: inherit;
}
header .area-menu > ul li.depth01 ul.depth02 li.depth03 .depth03-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .area-menu > ul li.depth01 ul.depth02 li.depth03 .depth03-sub > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  font-size: 14px;
}

/* header .nav 공통사항 END*/
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/* PC 만 적용 hover event / .nav.gnb-st (768 이상)  */
.nav.gnb-st .area-menu > ul li.depth01 ul.depth02 {
  display: none;
}
.nav.gnb-st .area-menu > ul li.depth01.on > a > h3::before {
  width: 25%;
  height: 4px;
}
.nav.gnb-st.on .area-menu > ul li.depth01 > ul.depth02 {
  display: block;
  overflow: unset;
}

@media (hover: hover) {
  .nav.gnb-st .area-menu > ul li.depth01:hover {
    background-color: #fff;
  }
  .nav.gnb-st .area-menu > ul li.depth01:hover > a > h3::before {
    width: 25%;
    height: 4px;
  }
  .nav.gnb-st .area-menu:hover > ul li.depth01 > ul.depth02 {
    display: block;
    overflow: unset;
  }
  .nav.gnb-st .area-menu > ul li.depth01 ul.depth02 {
    display: none;
  }
  .nav.gnb-st .area-menu > ul li.depth01 ul.depth02 > li > a:hover {
    color: #fff;
    background-color: var(--cc-mainB-color);
  }
  .nav.gnb-st .area-menu > ul li.depth01 ul.depth02 li.depth03 .depth03-sub > a:hover {
    color: #fff;
    background-color: var(--cc-mainB-color);
  }
  .nav.gnb-st .area-menu > ul li.depth01.on > a > h3::before {
    width: 25%;
    height: 4px;
  }
  .nav.gnb-st .area-menu:hover > ul li.depth01 > ul.depth02 {
    display: block;
    overflow: unset;
  }
}
/* PC 만 적용 hover event / .nav.gnb-st (768 이상) end */
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/*  hover 제외 event */
/* @media (hover: none) {
        //  
    } */
/*  hover 제외 event end*/
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/* 패드 만 적용 event */
/*  header.js - script 처리   
        // ipad 터치 메뉴 open ( nav.gnb-st )
  $(".nav.gnb-st .area-menu > ul li.depth01").on("touchstart", function (e) {
    $(".nav.gnb-st").toggleClass("on");
    e.stopPropagation();
  });
  //  ipad 터치 submenu 외 영역 터치 시 메뉴 닫기
  $("html").on("touchstart", function (e) {
    if ($(".nav.gnb-st").hasClass("on")) {
      if (
        !$(e.target).is(".nav.gnb-st .area-menu > ul li.depth01") &&
        !$(e.target).is(".nav.gnb-st .area-menu ul.depth02")
      ) {
        // console.log("submenu 외");
        $(".nav.gnb-st").removeClass("on");
      }
    }
  });
  */
/* 패드 만 적용 event end */
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/** 1025px ~ 1441px 까지 */
@media screen and (max-width: 1441px) {
  header .nav {
    width: 96%;
    max-width: 96%;
  }
  header .area-menu {
    width: 65%;
  }
  header .area-menu > ul {
    width: 100%;
  }
  header .area-menu > ul li.depth01 {
    min-width: 20%;
    max-width: 25%;
  }
}
/** 1025px ~ 1441px 까지 end*/
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/** 769px ~ 1025px 까지 */
@media screen and (max-width: 1025px) {
  header .nav {
    width: 96%;
    max-width: 96%;
  }
  header .area-menu > ul li.depth01 {
    min-width: 22%;
  }
  header .area-logo .logo-l {
    width: 140px;
  }
  header .area-user-state .before-login span {
    font-size: 12px;
  }
  header .area-user-state ul {
    z-index: 10;
  }
  header .area-user-state ul .btn-type {
    min-width: 40px;
  }
  header .area-user-state ul .btn-type.outlined {
    line-height: 23px;
  }
  header .nav.on .area-menu > ul li.depth01.on > a > h3::before {
    content: "";
    position: absolute;
    top: 76px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--cc-mainA-color);
    width: 25%;
    height: 4px;
  }
}
/** 769px ~ 1025px 까지 end*/
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/** 482px ~ 769px 까지 end */
@media screen and (max-width: 769px) {
  /* .nav.lnb-st */
  header:before {
    top: 60px;
  }
  header .area-logo-mob {
    height: 60px;
    line-height: 60px;
    margin-left: 3%;
    max-width: 140px;
    display: block;
  }
  header .area-logo-mob .logo-l {
    display: block;
    height: 60px;
    line-height: 60px;
    margin-left: 3%;
    width: 100%;
  }
  header .area-logo-mob .logo-s {
    display: block;
  }
  header .nav {
    max-width: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 999 !important;
    position: relative;
    position: absolute;
    top: 0;
    right: -1000px;
    width: 80%;
    min-height: 100vh;
    height: 100%;
    -webkit-box-shadow: 0 26px 42px rgba(0, 0, 0, 0.3);
            box-shadow: 0 26px 42px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  header .nav.on {
    width: 60%;
    right: 0;
  }
  header .nav.on .area-logo-mob > .logo-s {
    display: none;
  }
  header .area-logo {
    width: 100%;
    height: 60px;
  }
  header .area-logo .logo-l {
    display: none;
  }
  header .area-logo .logo-s {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50px;
    height: 60px;
    margin: auto;
  }
  header .area-logo .logo-s img {
    width: 35px;
    height: 35px;
  }
  header .area-mob-button {
    display: block;
  }
  header .area-user-state {
    position: absolute;
    right: 0;
    top: 60px;
    bottom: 0;
    width: 100%;
    height: 50px;
    color: #fff;
    background-color: var(--cc-mainB-color);
  }
  header .area-user-state ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 50px;
    line-height: 50px;
    margin: auto;
  }
  header .area-user-state .after-login .btn-type {
    color: #fff;
    border: 1px solid #fff;
    border-color: #fff;
  }
  header .area-user-state .after-login span {
    color: #fff;
  }
  header .area-user-state .after-login span::before {
    left: 0;
  }
  header .area-user-state .after-login span b {
    color: #fff;
    margin-left: 24px;
  }
  header .area-user-state .before-login .btn-type {
    color: #fff;
    border-color: #fff;
  }
  header .area-menu {
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 50px;
  }
  header .area-menu > ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    max-width: unset;
    min-width: unset;
    width: 100%;
    border-bottom: none;
    background-color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    margin: 0;
  }
  header .area-menu > ul li.depth01 {
    position: relative;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    border-bottom: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  header .area-menu > ul li.depth01::after {
    display: none;
  }
  header .area-menu > ul li.depth01:active > a > h3::before {
    display: none;
  }
  header .area-menu > ul li.depth01.active > a > h3::before {
    display: none;
  }
  header .area-menu > ul li.depth01 .btn-plus {
    display: block;
  }
  header .area-menu > ul li.depth01 > a {
    position: relative;
    height: 50px;
    line-height: inherit;
    font-size: 16px;
    border-bottom: 1px solid var(--dlsp-tblHthC-border);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--cc-mainB-color);
    opacity: 0.85;
    padding-left: 20px;
  }
  header .area-menu > ul li.depth01 > a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 8px;
    height: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--cc-mainA-color);
    opacity: 0.5;
  }
  header .area-menu > ul li.depth01 > a::after {
    display: none;
  }
  header .area-menu > ul li.depth01 > a > h3 {
    font-size: 16px;
  }
  header .area-menu > ul li.depth01 > a > h3::before {
    display: none;
  }
  header .area-menu > ul li.depth01 > a > i {
    display: block;
    width: 20px;
    margin-right: 8px;
    font-size: 18px;
    color: var(--dlsp-fontGy-color);
  }
  header .area-menu > ul li.depth01.on {
    height: unset;
  }
  header .area-menu > ul li.depth01.on:after {
    display: none;
  }
  header .area-menu > ul li.depth01.on > a {
    font-size: 16px;
    opacity: 1;
  }
  header .area-menu > ul li.depth01.on > a::before {
    opacity: 1;
    height: 100%;
    width: 4px;
  }
  header .area-menu > ul li.depth01.on > a::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    display: inline-block;
    position: absolute;
    padding: 0 20px;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    color: var(--cc-mainB-color);
    font-size: 20px;
  }
  header .area-menu > ul li.depth01.on .depth02 {
    display: block;
    height: 100%;
    background-color: #f1f4fb;
  }
  header .area-menu > ul li.depth01 ul.depth02 {
    display: none;
    height: 0;
    margin-top: unset;
    border-bottom: 1px solid var(--dlsp-tblHthC-border);
  }
  header .area-menu > ul li.depth01 ul.depth02::after {
    display: none;
  }
  header .area-menu > ul li.depth01 ul.depth02 > li > a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: var(--cc-mainB-color);
    text-align: center;
    text-indent: unset;
  }
  header .area-menu > ul li.depth01 ul.depth02 > li h4 {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: var(--cc-mainB-color);
  }
  header .area-menu > ul li.depth01 ul.depth02 li.depth03 {
    overflow: hidden;
  }
  header .area-menu > ul li.depth01 ul.depth02 li.depth03 .btn {
    display: block;
    position: relative;
    font-size: 14px;
  }
  header .area-menu > ul li.depth01 ul.depth02 li.depth03 .btn::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 5px solid #fff;
    bottom: 0;
    left: 0;
    padding: 0 20px;
    margin-top: 15px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    z-index: 10;
  }
  header .area-menu > ul li.depth01 ul.depth02 li.depth03 .btn i {
    margin-right: 10px;
  }
  header .area-menu > ul li.depth01 ul.depth02 li.depth03:nth-last-of-type(1) {
    margin: unset;
    margin-top: unset;
    margin-bottom: unset;
  }
  header .area-menu > ul li.depth01 ul.depth02 li.depth03 .depth03-sub {
    overflow: unset;
  }
  header .area-menu > ul li.depth01 ul.depth02 li.depth03 .depth03-sub > a {
    display: block;
    color: var(--cc-mainB-color);
    height: 40px;
    line-height: 40px;
    position: relative;
  }
  header .area-menu > ul li.depth01 ul.depth02 li.depth03 .depth03-sub > a::before {
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  header .area-menu > ul li.depth01 ul.depth02 li.depth03 .depth03-sub > a::after {
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
/** 482px ~ 769px 까지 end */
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/** 340px ~ 481px 까지 */
@media screen and (max-width: 481px) {
  header .nav.on {
    width: 80%;
  }
}
/** 320px ~ 481px 까지 end */
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */
/** 0 ~ 340px  까지 추가 */
@media all and (min-width: 0) and (max-width: 340px) {
  header .area-logo-mob {
    max-width: 100px;
  }
  header .nav.on {
    width: 90%;
  }
}
/** 0 ~ 340px  까지 추가end */
/* ////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////// */