/* 헤더 */
header{
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  --default_color: #fff;
  --on_color : #000;
  color: var(--default_color);
  font-family: 'GmarketSans';
  transition: 0.3s;
  --point_color01 : #063164;
  --point_color02 : #87c7f7;
  --point_color03 : #1c66bd;
  z-index: 99;
}
header :where(a, button){
  color: var(--default_color);
  transition: color 0.3s;
}
header,
header.m_menu{
  --default_color: #000;
  --on_color : #fff;
  background-color: var(--on_color);
}
header .hd_top,
header.m_menu .hd_top{
  border-bottom: 1px solid #000;
}
header .hd_bot,
header.m_menu .hd_bot{
  box-shadow: 0px 5px 5px 5px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 5px 5px 5px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 5px 5px 5px rgba(0,0,0,0.2);
}
header .on,
header.m_menu .on{
  opacity: 1;
}
header .basic,
header.m_menu .basic{
  opacity: 0;
}
header .lang_btn,
header.m_menu .lang_btn{
  background-color: var(--point_color01);
}
.hd_top{
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 30px 0;
}
.hd_inner{
  width: 100%;
  max-width: 1560px;
  padding: 0 20px;
  margin: 0 auto;
}
header .on{
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
header .basic{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}
header :where(a, button):has(.on){
  position: relative;
}
header .logo_box{
  display: flex;
  align-items: center;
  gap: 50px;
}
header .logo_box .logo_item{
  display: flex;
  align-items: center;
}
header .logo_box img{
  max-width: 140px;
  max-height: 50px;
  object-fit: cover;
}
.hd_top .hd_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .util_box{
  display: flex;
  align-items: center;
  gap: 15px;
}
header .login_btn{
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
header .login_btn > i{
  font-size: 21px;
}
header .login_btn:hover{
  color: var(--point_color02);
}
header .srh_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  display:none;
}
header .srh_btn > i{
  font-size: 21px;
}
header .srh_btn:hover{
  color: var(--point_color02);
}
header .lang_btn{
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--on_color);
  background-color: var( --point_color01);
  height: 26px;
  padding: 0 13px;
  border-radius: 13px;
  font-size: 14px;
  margin-left: 10px;
  min-width: 62px;
}
header .lang_btn > i{
  font-size: 11px;
  padding-bottom: 2px;
}
.lang_wrap{
  position: relative;
}
.lang_list{
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.hd_bot .hd_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
header .depth01_wrap{
  display: flex;
  align-items: center;
  gap: 25px;
}
header .depth01_wrap > li{
  position: relative;
}
header .depth01_title{
  transition: color 0.3s;
  padding: 30px 0px;
  white-space: nowrap;
  display: block;
  position: relative;
}

header .depth01_wrap > li::before{
  position: absolute;
  content: '';
  display: block;
  width: 0px;
  height: 0px;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%) scale(0);
  background-color: transparent;
  transition: 0.3s;
  transform-origin: bottom;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 0px solid transparent;
  border-bottom: 10px solid var(--point_color03);
  z-index: 4;
}
header.default .depth01_wrap > li:hover::before{
  transform: translateX(-50%) scale(1);
}
header .depth02_wrap::after{
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--point_color03);
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
  position: absolute;
  transform-origin: center;
  transition: 0.2s;
  transition-delay: 0.1s;
}
header.default .depth01_wrap > li:hover .depth02_wrap::after{
  width: 100%;
}
header .depth01_title:hover{
  color: var(--point_color03);
}
header .depth02_title:hover{
  color: var(--point_color03);
}
header .depth02_wrap{
  position: absolute;
  padding: 20px 20px 15px;
  border: 1px solid var(--point_color03);
  background-color: #fff;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  border-top: none;
  box-shadow: 0px 5px 5px 5px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 5px 5px 5px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 5px 5px 5px rgba(0,0,0,0.2);
  display: none;
}
header .depth02_wrap > li + li{
  margin-top: 15px;
}
header .depth02_title{
  color: #000;
  font-size: 16px;
}
header .depth03_title{
  color: #000;
  font-size: 14px;
  position: relative;
  margin-left: 10px;
}
header .depth03_title::before{
  width: 5px;
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  left: -10px;
  top: 8px;
  background-color: #000;
  transition: 0.3s;
}
header .depth03_wrap{
  margin-top: 4px;
}
header .depth03_wrap{
  margin-top: 8px;
}
header .depth03_wrap > li + li{
  margin-top: 5px;
}
header .depth02_title.link{
  display: flex;
  gap: 6px;
  position: relative;
  align-items: flex-start;
}
header .depth02_title.link::after{
  content: '';
  display: block;
  min-width: 16px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/common/ico_new_tab.png);
  background-repeat: no-repeat;
  background-position: center;
}
header .depth02_title.link:hover::after{
  background-image: url(../img/common/ico_new_tab_on.png);
}
header .depth03_title::after{
  width: 0%;
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0px;
  height: 1px;
  background-color: var(--point_color03);
  transition: 0.3s;
  transform-origin: left;
}
header .depth03_title:hover::before{
  background-color: var(--point_color03);
}
header.default .depth03_title:hover::after{
  width: 100%;
}
header .depth03_title:hover{
  color: var(--point_color03);
}
header .ham_btn span{
  height: 2px;
  width: 100%;
  background-color: var(--default_color);
  position: absolute;
  display: block;
  transition: 0.3s;
}
header nav{
  display: flex;
  align-items: center;
  gap: 20px;
}
header .ham_btn{
  position: relative;
  width: 26px;
  aspect-ratio: 26 / 23;
}
header .ham_btn span:nth-of-type(1){
  top: 0;
}
header .ham_btn span:nth-of-type(2){
  top: calc(50% - 1px);
  width: 70%;
}
header .ham_btn span:nth-of-type(3){
  top: calc(100% - 2px);
}
header .main_logo{
  max-height: 35px;
}
.hd_srh_wrap{
  position: fixed;
  left: 0;
  right: 0;
  top: 172px;
  background-color: var(--point_color01);
  display: none;
  box-shadow: 0px 5px 5px 5px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 5px 5px 5px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 5px 5px 5px rgba(0,0,0,0.2);
}
.hd_srh_wrap .inner{
  padding: 28px;
}
.hd_srh_wrap .hd_srh_box{
  max-width: 775px;
  height: 55px;
  background-color: #fff;
  width: 100%;
  border-radius: 27px;
  padding:  0 10px 0 28px;
  position: relative;
  display: flex;
  gap: 10px;
  margin: 0 auto;
  z-index: 20;
}
.hd_srh_wrap .hd_srh_box input{
  flex: 1;
  min-width: 0;
  line-height: 55px;
  font-size: 18px;
  padding: 0 15px;
}
.hd_srh_wrap .hd_srh_btn{
  width: 55px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hd_srh_btn .fa-solid{
  font-size: 21px;
  color: #000;
}
header.sitemap nav{
  position: fixed;
  inset: 0;
  background-color: var(--point_color01);
  z-index: 8;
  padding: 70px 0;
}
header.sitemap .ham_btn{
  display: none;
}
header.sitemap .depth01_wrap{
  max-width: 1660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  width: 100%;
  padding: 0px 20px;
}
header.sitemap .depth02_wrap{
  display: block;
  position: static;
  transform: none;
  width: 100%;
  border: none;
  background: none;
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 5px 5px 5px rgba(0,0,0,0);
  display: block !important;
  padding: 0;
}
header.sitemap .depth01_title{
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  padding: 20px 0 40px;
  white-space: normal;
}
header.sitemap .depth02_title{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
header.sitemap .depth01_wrap > li{
  padding: 0 20px;
  min-height: 500px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
header.sitemap .depth01_wrap > li:first-of-type{
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
header.sitemap .depth02_wrap > li + li{
  margin-top: 25px;
}
header.sitemap .depth03_title{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-left: 15px;
}
header.sitemap .depth03_wrap{
  margin-top: 15px;
}
header.sitemap .depth03_wrap > li + li{
  margin-top: 10px;
}
header.sitemap .depth03_title::before{
  width: 8px;
  height: 2px;
  background-color: #fff;
  left: -15px;
  top: 7px;
}
header.sitemap .depth02_title.link::after{
  background-image: url(../img/common/ico_new_tab_site.png);
}
header.sitemap .depth01_wrap > li:hover .depth01_title,
header.sitemap .depth02_title:hover,
header.sitemap .depth03_title:hover{
  color: var(--point_color02);
}
header.sitemap .depth03_title:hover::before{
  background-color: var(--point_color02);
}
header.sitemap .depth02_title.link:hover::after{
  background-image: url(../img/common/ico_new_tab_site_on.png);
}
header .sitemap_btn{
  display: none;
}
header .sitemap_logo{
  display: none;
}
header.sitemap .sitemap_logo{
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  max-height: 50px;
}
header.sitemap .sitemap_logo > img{
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
header.sitemap .sitemap_btn{
  position: absolute;
  top: 60px;
  right: calc(20px + calc(calc(100% - 1660px) / 2));
  width: 66px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
header .sitemap_btn i{
  font-size: 26px;
}
header .util_box.view_tab{
  display: none;
}
@media screen and (max-width: 1660px){
  header.sitemap .depth01_title{
    font-size: 18px;
  }
  header.sitemap .depth02_title{
    font-size: 16px;
  }
  header.sitemap .depth03_title{
    font-size: 14px;
  }
  header.sitemap .depth01_wrap > li{
    padding: 0 15px;
  }
  header.sitemap .sitemap_btn{
    right: 20px;
  }
  header .depth01_title{
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1300px){
  header .depth01_wrap{
    display: none;
  }
  header .ham_btn{
    display: block;
  }
  .hd_bot{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
  }
  header.m_menu .depth01_wrap{
    position: fixed;
    inset: 187px 0 0;
    height: 100%;
    overflow-y: auto;
    max-height: calc(100vh - 187px);
    background-color: #fff;
    border-top: 1px solid var(--point_color01);
    flex-direction: column;
    gap: 0;
    display: flex;
  }
  header.m_menu .depth01_wrap > li{
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #d3d3d3;
  }
  header.m_menu .depth01_title{
    padding: 20px;
    line-height: 30px;
    background-image: url(../img/common/ico_m_depth01.png);
    background-size: 15px auto;
    background-position: right 20px center;
    background-repeat: no-repeat;
    font-size: 20px;
  }
  header.m_menu .depth01_title.on{
    background-image: url(../img/common/ico_m_depth01_on.png);
    color: var(--point_color01);
  }
  header.m_menu .depth02_wrap{
    position: static;
    transform: none;
    border: none;
    background: none;
    box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 5px 5px 5px rgba(0,0,0,0);
    width: 100%;
    border-top: 1px solid #d3d3d3;
    background-color: #f4f4f4;
    padding: 35px 20px !important;
    height: auto !important;
  }
  header.m_menu .depth02_title,
  header.m_menu .depth03_title{
    font-size: 18px;
  }
  header.m_menu .depth02_wrap > li + li{
    margin-top: 25px;
  }
  header.m_menu .depth03_wrap{
    margin-top: 20px;
    padding-bottom: 15px;
  }
  header.m_menu .depth03_wrap > li + li{
    margin-top: 20px;
  }
  .hd_srh_wrap{
    top: 186px;
  }
  header.m_menu .depth01_wrap{
    top: 186px;
    max-height: calc(100vh - 186px);
  }
}
@media screen and (max-width: 1024px){
  header .util_box.view_tab{
    border-top: 1px solid var(--point_color01);
  }
  header.m_menu .depth01_wrap{
    border-top: 1px solid #c4c4c4;
    top: 173px;
    max-height: calc(100vh - 173px);
  }
  .hd_top{
    padding: 8px 0;
  }
  .hd_bot{
    padding: 20px 0;
  }
  header .logo_box{
    gap: 15px;
  }
  header .util_box:not(.view_tab) .lang_wrap,
  header .util_box:not(.view_tab) .login_btn{
    display: none;
  }
  .hd_srh_wrap {
    top: 123px;
  }
  header.m_menu .util_box.view_tab{
    display: flex;
  }
  header .util_box.view_tab{
    position: fixed;
    height: 50px;
    width: 100%;
    left: 0;
    top: 123px;
    background: #fff;
    z-index: 10;
  }
  header .util_box.view_tab .item{
    display: flex;
    justify-content: center;
    flex: 1;
  }
  header .util_box.view_tab .lang_btn{
    background-color: var(--point_color01);
    color: #fff;
    margin: 0;
  }
  header .util_box.view_tab .login_btn{
    display: flex;
    justify-content: center;
    color: #000;
    flex: 1;
  }
  header .util_box.view_tab .item{
    position: relative;
  }
  header .util_box.view_tab .item:not(:first-of-type)::before{
    content:'';
    display: block;
    width: 1px;
    height: 28px;
    background-color: #d3d3d3;
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 768px){
  .hd_srh_wrap .hd_srh_box input{
    line-height: 30px;
    font-size: 12px;
  }
  .hd_srh_wrap .hd_srh_box{
    height: 30px;
  }
  .hd_srh_wrap .inner{
    padding: 17px 14px;
  }
  .hd_srh_btn .fa-solid{
    font-size: 14px;
  }
  .hd_srh_wrap .hd_srh_btn {
    width: 30px;
  }
  .hd_srh_wrap .hd_srh_box{
    padding: 0 10px;
  }
  header .logo_box img{
    max-height: 14px;
  }
  header.m_menu .depth01_wrap{
    top: 164px;
    max-height: calc(100vh - 164px);
  }
  header .util_box.view_tab{
    top: 114px;
  }
  .hd_srh_wrap {
    top: 114px;
  }
  header.m_menu .depth01_title{
    font-size: 18px;
  }
}

/* 푸터 - 슬라이드  */
#footer .sc_inner{
  width: 100%;
  max-width: 1560px;
  padding: 0 20px;
  margin: 0 auto;
}
.ft_top{
  border-top: 1px solid #d3d3d3;
  padding: 40px 0;
  border-bottom: 1px solid #d3d3d3;
}
.ft_top .sc_inner{
  display: flex;
  gap: 20px;
  margin-right: 0;
  max-width: calc(1560px + calc(calc(100% - 1560px) / 2));
  overflow: hidden;
}
.ft_slide{
  display: flex;
  gap: 30px;
}
.ft_slide .slide_item{
  width: 100%;
  height: 50px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.ft_slide .slide_item > img{
  max-height: 40px;
  max-width: 100%;
  object-fit: cover;
  margin: 0 auto;
}
.ft_slide.family{
  width: calc(100% - 470px);
}
.ft_slide.award{
  width: 450px;
}
.ft_slide .ft_title_box{
  width: 190px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft_slide .ft_title_box .title{
  font-size: 16px;
}
.ft_slide .slide_box{
  width: calc(100% - 220px);
}
.ft_slide .util_box{
  display: flex;
  align-items: center;
}
.ft_slide .util_box > li{
  border: 1px solid #c8c8c8;
  width: 36px;
  aspect-ratio: 1 / 1;
  transition: 0.3s;
}
.ft_slide .util_box > li:hover{
  border: 1px solid #063164;
  z-index: 2;
}
.ft_slide .util_box :is(a, button){
  display: flex;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.ft_slide .util_box .prev{
  background-image: url(../img/main/ico_prev01.png);
}
.ft_slide .util_box .prev:hover{
  background-image: url(../img/main/ico_prev01_on.png);
}
.ft_slide .util_box .pause{
  background-image: url(../img/main/ico_pause01.png);
}
.ft_slide .util_box .pause:hover{
  background-image: url(../img/main/ico_pause01_on.png);
}
.ft_slide .util_box .play{
  background-image: url(../img/main/ico_play01.png);
  display: none;
}
.ft_slide .util_box .play:hover{
  background-image: url(../img/main/ico_play01_on.png);
}
.ft_slide .util_box > li.stop .play{
  display: flex;
}
.ft_slide .util_box > li.stop .pause{
  display: none;
}
.ft_slide .util_box .next{
  background-image: url(../img/main/ico_next01.png);
}
.ft_slide .util_box .next:hover{
  background-image: url(../img/main/ico_next01_on.png);
}

.ft_slide .util_box.type02 > li + li{
  transform: translateX(-1px);
}
.ft_slide .util_box.type02  > li + li + li{
  transform: translateX(-2px);
}
.ft_sns{
  gap: 6px;
  display: flex;
}
.ft_sns .ft_sns_link{
  font-size: 0;
  width: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  display: block;
}
.ft_sns .ft_sns_link.facebook{
  background-image: url(../img/main/ico_facebook.png);
}
.ft_sns .ft_sns_link.facebook:hover{
  background-image: url(../img/main/ico_facebook_on.png);
}
.ft_sns .ft_sns_link.instagram{
  background-image: url(../img/main/ico_insta.png);
}
.ft_sns .ft_sns_link.instagram:hover{
  background-image: url(../img/main/ico_insta_on.png);
}
.ft_sns .ft_sns_link.linkedin{
  background-image: url(../img/main/ico_linkedin.png);
}
.ft_sns .ft_sns_link.linkedin:hover{
  background-image: url(../img/main/ico_linkedin_on.png);
}
.ft_sns .ft_sns_link.cafe{
  background-image: url(../img/main/ico_cafe.png);
}
.ft_sns .ft_sns_link.cafe:hover{
  background-image: url(../img/main/ico_cafe_on.png);
}
@media screen and (max-width : 1024px){
  .ft_top .sc_inner{
    flex-direction: column;
  }
  .ft_slide.family,
  .ft_slide.award{
    width: 100%;
  }
  .ft_top {
    padding: 25px 0;
  }
}
@media screen and (max-width : 768px){
  .ft_slide{
    flex-direction: column;
    gap: 7px;
    padding: 0 20px;
  }
  .ft_slide:not(:last-of-type){
    border-bottom: 1px solid #d3d3d3;
  }
  .ft_top .sc_inner{
    padding: 0;
  }
  .ft_slide .ft_title_box{
    width: auto;
    justify-content: flex-start;
    gap: 15px;
    height: 25px;
  }
  .ft_slide .ft_title_box .title > br{
    display: none;
  }
  .ft_slide .util_box > li{
    width: 23px;
  }
  .ft_slide .util_box :is(a, button){
    background-size: auto 10px;
  }
  .ft_slide .slide_box{
    width : 100%;
  }
  .ft_top{
    padding: 25px 0 0px;
  }
}

/* 푸터 - 정보*/
.ft_bot{
  padding: 35px 0 50px;
}
.ft_info{
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  align-items: flex-end;
}
.ft_info .left{
  display: flex;
  gap: 25px;
  align-items: flex-end;
}
.ft_nav_list{
  display: flex;
  gap: 40px;
  align-items: center;
}
.ft_nav_link{
  color: #3d3d3d;
  font-size: 15px;
  transition: 0.3s;
}
.ft_nav_link:hover{
  color: #87c7f7;
}
.ft_info .copyright{
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 1024px){
  .ft_info,
  .ft_info .left{
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .ft_nav_list{
    justify-content: center;
  }
  .ft_bot{
    padding: 30px 0 100px;
  }
}