#header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  margin: 0 auto;
}
#header + *{
  margin-top: 144px;
}
#header .hd_inner{
  display: flex;
  justify-content: space-between;
  max-width: 1360px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
#header .hd_bot .hd_inner{
  max-width: 1540px;
}
#header .hd_bot .hd_inner .hd_logo{
  display: none;
}
#header .hd_top{
  padding: 22px 0 10px;
}
#header .right{
  display: flex;
  align-items: center;
  gap: 30px;
}
#header .sns_list{
  display: flex;
  align-items: center;
  gap: 8px;
}
#header .sns_list > li{
  width: 42px;
  aspect-ratio: 1 / 1;
}
#header .sns_link{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#header .sns_link.naver{
  background: url(../img/common/hd_blog.png);
  background-size: contain;
}
#header .sns_link.facebook{
  background: url(../img/common/hd_facebook.png);
  background-size: contain;
}
#header .sns_link.youtube{
  background: url(../img/common/hd_youtube.png);
  background-size: contain;
}
#header .sns_link.kakao{
  background: url(../img/common/hd_kakao.png);
  background-size: contain;
}
#header .sns_link.insta{
  background: url(../img/common/hd_insta.png);
  background-size: contain;
}
#header .util_list{
  display: flex;
  align-items: center;
  gap: 30px;
}
#header .util_link{
  font-size: 18px;
  transition: 0.3s;
}
#header nav{
  width: 100%;
}
#header nav .m_btn_wrap{
  display: none;
}
#header .nav_depth01_wrap{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#header .nav_depth01_wrap > li{
  position: relative;
  flex: 1;
  text-align: center;
  width: 100%;
}
#header .nav_depth01_wrap > li:last-of-type{
  display: none;
}
#header .nav_depth01{
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  display: block;
  position: relative;
  padding: 20px 0px 22px;
}
#header .nav_depth01::before{
  content: '';
  display: block;
  width: 0%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  transform-origin: left;
  background-color: #008cab;
}
#header .nav_depth01_wrap .hd_bot{
  transition: 0.3s;
  position: relative;
}
#header .nav_depth02_wrap{
  display: none;
}
#header .hd_bot{
  position: relative;
  transition: 0.3s;
}
#header .back{
  content: '';
  display: none;
  width: 100%;
  height: 300px;
  box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.1);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 2;
  background-color: #fff;
}
#header .hd_bot nav::before{
  content:'';
  display: block;
  position: absolute;
  top: 69px;
  left: 0;
  width: 0%;
  height: 1px;
  background: rgb(0,140,171);
  background: linear-gradient(90deg, rgba(0,140,171,1) 0%, rgba(0,161,97,1) 100%);
  transition: 0.3s;
  transform-origin: left;
  pointer-events: none;
}
#header .nav_depth02_wrap{
  padding: 30px 0 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 3;
  min-height: 266px;
  text-align: left;
}
#header .nav_depth02{
  font-size: 18px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}
#header .nav_depth02[target=_blank]::after{
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/common/ico_blank.png) no-repeat;
  margin: 0 0 -1px 5px;
}
#header .nav_depth02[target=_blank]:hover:after{
  background-image: url(../img/common/ico_blank_on.png);
}
#header .nav_depth02:hover,
#header .nav_depth02:focus{
  color: #008cab;
}
.nav_depth03_wrap{
  display: none;
}
.nav_depth04_wrap{
  display: none;
}

@media screen and (min-width: 1200px) {
  #header .nav_depth02::before{
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 8px;
    left: 0;
    transition: 0.3s;
    transform-origin: left;
    background-color: #008cab;
  }
  #header .hd_bot:hover nav::before,
  #header .hd_bot:has(a:focus) nav::before{
    width: 100%;
  }
  #header .nav_depth02:hover::before,
  #header .nav_depth02:focus::before{
    width: 100%;
  }
  #header .nav_depth01_wrap > li:hover .nav_depth01,
  #header .nav_depth01_wrap > li:has(a:focus) .nav_depth01{
    color: #008cab;
  }
  #header .nav_depth01_wrap > li:hover .nav_depth01::before,
  #header .nav_depth01_wrap > li:has(a:focus) .nav_depth01::before{
    width: 100%;
  }
  #header .util_link:hover,
  #header .util_link:focus{
    color: #008cab;
  }
  #header .ham_btn{
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  body.fixed{
    overflow: hidden;
  }
  #header + * {
    margin-top: 89px;
  }
  #header{
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 15px;
  }
  #header .hd_top {
    padding: 12px 0 10px;
  }
  #header nav{
    display: none;
  }
  #header nav.on{
    display: block;
    position: absolute;
    height: calc(100svh - 89px);
    top: 43px;
    background: #f6f6f6;
    left: 0;
    overflow: auto;
  }
  #header .hd_top .hd_inner .hd_logo{
    display: none;
  }
  #header .hd_bot .hd_inner .hd_logo{
    width: 155px;
    display: block;
  }
  #header .sns_list > li{
    width: 24px;
  }
  .m_util_wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #header .util_list{
    gap: 10px;
  }
  #header .sns_list {
    gap: 6px;
  }
  #header .right{
    gap: 15px;
  }
  #header .util_list li:first-of-type,
  #header .util_list li:nth-of-type(2),
  #header .util_list li:nth-of-type(3){
    display: none;
  }
  #header .util_link {
    font-size: 12px;
  }
  #header .ham_btn{
    display: block;
    width: 22px;
    height: 19px;
    position: relative;
    z-index: 100;
  }
  #header .ham_btn .line{
    right:0;
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: 0.3s;
    border-radius: 1px;
  }
  #header .ham_btn:hover .line{
    background-color: #008cab;
  }
  #header .srh_btn:hover{
    color: #008cab;
  }
  #header .ham_btn .line:nth-of-type(1){
    position: absolute;
    top: 2px;
  }
  #header .ham_btn .line:nth-of-type(2){
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: auto;
  }
  #header .ham_btn .line:nth-of-type(3){
    position: absolute;
    bottom: 0;
  }
  #header .ham_btn:not(.active):hover .line:nth-of-type(2){
    width: 60%;
  }
  #header .ham_btn.active .line:nth-of-type(1){
    transform: rotate(45deg);
    top: 9px;
    right: 0px;
  }
  #header .ham_btn.active .line:nth-of-type(2){
    transform: scale(0);
  }
  #header .ham_btn.active .line:nth-of-type(3){
    transform: rotate(-45deg);
    bottom: 7px;
    right: 0px;
  }
  #header nav .m_btn_wrap{
    display: block;
    border-bottom: 1px solid #d6d6d6;
    padding: 12px;
    background: #fff;
  }
  #header nav .m_btn_wrap .inner{
    display: flex;
    justify-content: center;
  }
  #header nav .m_btn_wrap a{
    display: block;
    line-height: 34px;
    text-align: center;
    min-width: 90px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #6d6d6d;
    transition: 0.3s;
  }
  #header nav .m_btn_wrap a:hover{
    background: #6d6d6d;
    color: #fff;
  }
  #header nav .m_btn_wrap a:nth-of-type(2){
    border-left: none;
  }
  #header .nav_depth01_wrap {
    flex-direction: column;
    align-items: baseline;
    position: relative;
    z-index: 6;
  }
  #header .nav_depth01_wrap > li{
    position: static;
  }
  #header .nav_depth01_wrap > li:last-of-type{
    display: block;
  }
  #header .nav_depth01_wrap > li:last-of-type .nav_depth01 {
    background: #0080cc;
    color: #fff;
  }
  #header .nav_depth01_wrap > li:last-of-type .nav_depth01::after{
    background: #fff;
  }
  #header .nav_depth01 {
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
    border-bottom: 1px solid #e2e2e2;
    position: relative;
    transition: 0.3s;
  }
  #header .nav_depth01::after{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #008aa9;
    transform: scale(0);
    transition: 0.3s;
    margin-left: 6px;
  }
  #header .nav_depth01.on {
    max-width: 140px;
    color: #008aa9;
  }
  #header .nav_depth01.on::after{
    transform: scale(1);
  }
  #header .nav_depth02_wrap {
    top: 150px;
    position: absolute;
    padding: 0 20px;
    left: auto;
    top: 0;
    transform: translateY(0);
    width: calc(100% - 140px);
    background: #fff;
    right: 0;
    min-height: calc(100svh - 150px);
    height: max-content;
  }
  #header .nav_depth02{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #e2e2e2;
  }
  #header .nav_depth02[target=_blank]::after{
    margin: 0 0 2px 5px;
  }
  #header .nav_depth02.has_depth::after{
    content: '+';
    position: absolute;
    font-size: 25px;
    font-weight: 300;
    right: 0;
    top: calc(50% - 3px);
    transform: translateY(-50%);
  }
  #header .nav_depth02.has_depth.active::after{
    content: '-';
    font-size: 35px;
  }
  #header .nav_depth02.has_depth.active{
    color: #008aa9;
  }
  #header .nav_depth02.has_depth.active + .nav_depth03_wrap{
    display: block;
    border-bottom: 1px solid #e2e2e2;
  }
  .nav_depth03_wrap{
    padding: 14px 0 14px 5px;
  }
  .nav_depth03_wrap .nav_depth03{
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #626262;
    position: relative;
    padding-right: 30px;
    padding-left: 10px;
  }
  .nav_depth03_wrap .nav_depth03::before{
    content: '';
    position: absolute;
    top: 6px;
    width: 4px;
    height: 4px;
    background-color: #626262;
    border-radius: 50%;
    left: 0;
  }
  .nav_depth03_wrap .nav_depth03:hover:before{
    background-color: #008aa9;
  }
  .nav_depth03_wrap > li + li{
    margin-top: 5px;
  }
  #header .nav_depth03[target=_blank]::after{
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../img/common/ico_blank.png) no-repeat;
    background-size: contain;
    margin: 0 0 -1px 5px;
  }
  #header .nav_depth03[target=_blank]:hover:after{
    background-image: url(../img/common/ico_blank_on.png);
  }
  #header .nav_depth03:hover,
  #header .nav_depth03:focus{
    color: #008cab;
  }
  #header .nav_depth03.has_depth::after{
    content: '+';
    position: absolute;
    font-size: 20px;
    font-weight: 300;
    right: 20px;
    top: calc(50% - 3px);
    transform: translateY(-50%);
  }
  #header .nav_depth03.has_depth.active::after{
    content: '-';
    font-size: 30px;
  }
  #header .nav_depth03.has_depth.active{
    color: #008aa9;
  }
  #header .nav_depth03.has_depth.active::before{
    background-color: #008aa9;
  }
  #header .nav_depth03.has_depth.active + .nav_depth04_wrap{
    display: block;
  }
  .nav_depth04_wrap{
    padding: 5px 8px;
  }
  .nav_depth04_wrap .nav_depth04{
    font-size: 14px;
    color: #626262;
  }
  .nav_depth04_wrap .nav_depth04:hover{
    color: #008aa9;
  }
  .nav_depth04_wrap .nav_depth04::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 2px;
    background-color: #626262;
    margin: 0 3px 3px 0;
  }
  .nav_depth04_wrap .nav_depth04:hover:before{
    background-color: #008aa9;
  }
}

/* 푸터 */
footer{
  padding-bottom: 45px;
}
.ft_inner{
  display: flex;
  justify-content: space-between;
  max-width: 1360px;
  width: calc(100% - 40px);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}
.ft_slide{
  padding: 20px 0;
  border-top: 1px solid #c6c6c6;
}
.ft_slide .slide_box{
  flex: 1;
  min-width: 0;
}
.ft_slide .slide_box .slick-slide > div{
  text-align: center;
}
.ft_slide .ft_inner{
  align-items: center;
  gap: 20px;
}
.ft_slide .slide_item{
  padding: 0 20px;
  height: 80px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-left: -30px;
  align-items: center;
  justify-content: center;
}
.ft_slide .slide_item:focus{
  outline-offset: -3px;
}
.ft_slide .slide_item > img{
  vertical-align: middle;
}
.ft_slide .slide_util{
  display: flex;
  border-top: 1px solid #d2d2d2;
  border-left: 1px solid #d2d2d2;
}
.ft_slide .slide_util > li{
  border-right: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  width: 32px;
  aspect-ratio: 1 / 1;
}
.ft_slide .slide_util button{
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.ft_slide .slide_util .on .play{
  display: none;
}
.ft_slide .slide_util .play{
  display: flex;
}
.ft_slide .slide_util .pause{
  display: none;
}
.ft_slide .slide_util .on .pause{
  display: flex;
}
.ft_slide .toggle svg{
  width: 11px;
}
.ft_top{
  border-top:1px solid #c6c6c6;
  padding-top: 30px;
}
.ft_top .ft_inner{
  margin-bottom: 30px;
}
.ft_nav{
  display: flex;
  gap: 50px;
  align-items: center;
  line-height: 24px;
}
.ft_bot .left{
  display: flex;
  gap: 20px;
  align-items: center;
}
.ft_bot address{
  font-weight: 300;
}
.ft_bot address p + p{
  margin-top: 4px;
}
.ft_bot .bz_logo_list{
  display: flex;
  gap: 25px;
  align-items: center;
}
.ft_link{
  transition: 0.3s;
}
.ft_link:hover{
  color: #008cab;
}

@media screen and (max-width: 1024px) {
  footer{
    padding-bottom: 0;
  }
  .ft_top{
    width: 100%;
    padding-top: 0;
  }
  .ft_nav{
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
  }
  .ft_top .ft_inner{
    width: 100%;
    margin-bottom: 0;
  }
  .ft_nav li{
    width: 50%;
    text-align: center;
    border-bottom: 1px solid #c6c6c6;
  }
  .ft_nav li:nth-child(odd){
    border-right: 1px solid #c6c6c6;
  }
  .ft_nav li a{
    display: block;
    width: 100%;
    line-height: 34px;
  }
  .ft_bot{
    padding: 35px 0 45px;
  }
  .ft_bot .left{
    flex-direction: column;
    gap: 15px;
  }
  .ft_bot .ft_inner{
    flex-direction: column;
  }
  .ft_bot .bz_logo_list{
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .ft_slide .slide_util{
    display: none;
  }
  .ft_slide .slide_item{
    padding: 0;
    height: 50px;
    margin-left: 0;
  }
  .ft_bot address br.mobile{
    display: block;
  }
  .ft_bot address{
    text-align: center;
  }
}