@charset "utf-8";

/*공통 css*/
#wrap{
  min-width: 320px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.inner{
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 5%;
}

#fp-nav ul li:last-child{
  display: none;
}

/*#fp-nav*/
#fp-nav ul li a span{
  background-color: #fff;
}

#fp-nav ul li.fix .fp-tooltip.right{
  color: #3e3e3e;
}

#fp-nav ul li.fix a span{
  background-color: #3e3e3e;
}

@media screen and (max-width : 1200px) {
  #fp-nav{
    display: none;
  }
}

/*****************************sitemap******************************/
.sitemap{
  width: 100%;
  height: 100%;
  z-index: 999;
  position: fixed;
  background-color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.sitemap img.top{
  margin: 145px 0;
  width: 300px;
}

.sitemap .all-gnb{
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.sitemap .all-gnb > li{
  width: calc(100% / 4);
  padding: 0 5%;
  border-right: 1px solid #3e3e3e;
}

.sitemap .all-gnb > li:first-child{
  padding-left: 0;
}

.sitemap .all-gnb > li:last-child{
  padding-right: 0;
  border-right: 0;
}

.sitemap .all-gnb > li > a{
  display: block;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 90px;
  transition: color 0.5s;
}

.sitemap .all-gnb > li:hover > a{
  color: #d8bb82;
}

.sitemap .all-gnb > li .all-depth2 li a{
  display: block;
  font-size: 3.2rem;
  margin-bottom: 40px;
  transition: color 0.5s;
}

.sitemap .all-gnb > li .all-depth2 li:hover a{
  color: #d8bb82;
}

.sitemap .all-gnb > li .all-depth2 li:last-child a{
  margin-bottom: 0;
}

.sitemap .all-close{
  position: absolute;
  top: 50px;
  right: 5%;
  font-size: 4rem;
  cursor: pointer;
  transition: color 0.5s;
}

.sitemap .all-close:hover{
  color: #d8bb82;
}

.sitemap img.bottom{
  display: block;
  width: 214px;
  position: absolute;
  bottom: 50px;
  right: 5%;
  opacity: 0.4;
}

/*****************************header******************************/
header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

header .inner{
  display: flex;
  justify-content: space-between;
  padding: 15px 5%;
  align-items: center;
  border-bottom: 1px solid #fff;
}

header h1 a{
  display: block;
  width: 80px;
  height: 80px;
  background: url(../img/common/logo_white.png) no-repeat center / contain;
  font-size: 0;
  color: transparent;
}

header .gnb{
  display: flex;
  gap: 50px;
  text-align: center;
  align-items: center;
  text-transform: uppercase;
}

header .gnb > li{
  position: relative;
}

header .gnb > li > a{
  color: #fff;
  font-size: 2.4rem;
  transition: color 0.5s;
}

header .gnb > li:hover > a{
  color: #d8bb82;
}

header .mgnb-wrap{
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  top: 0;
  right: -100%;
  padding: 30px 5%;
  z-index: 9999;
}

header .mgnb-wrap > img.top{
  margin: 45px 0 80px;
}

header .mgnb-wrap .mgnb{
  text-align: left;
  margin-bottom: 60px;
}

header .mgnb-wrap .mgnb > li{
  margin-bottom: 10px;
}

header .mgnb-wrap .mgnb > li:last-child{
  margin-bottom: 0;
}

header .mgnb-wrap .mgnb > li > a{
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 10px;
  transition: color 0.5s;
}

header .mgnb-wrap .mgnb > li .mdepth2 li a{
  display: block;
  font-size: 2rem;
  padding: 5px 0 5px 10px;
  font-weight: 500;
}

header .mgnb-wrap .mgnb > li .mdepth2 li:last-child{
  border-bottom: 1px solid #3e3e3e;
  padding-bottom: 10px;
}

header .mgnb-wrap .sns li a{
  display: flex;
  gap: 7px;
  font-size: 2rem;
  align-items: center;
  font-weight: 500;
  margin-bottom: 5px;
}

header .mgnb-wrap .sns img{
  width: 20px;
  height: 20px;
}

header .mgnb-wrap .mclose{
  color: #3e3e3e;
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  cursor: pointer;
}

header .mgnb-wrap > img.bottom{
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 100px;
  opacity: 0.4;
}

header .utill{
  display: flex;
  gap: 15px;
  font-size: 2rem;
  align-items: center;
  position: relative;
}

header .utill > li{
  position: relative;
  cursor: pointer;
}

header .utill > li i{
  color: #fff;
  transition: color 0.5s;
}

header .utill > li:hover i{
  color: #d8bb82;
}

header .utill .ham{
  display: none;
}

header .utill > li .depth2{
  background-color: #fff;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 30px;
}

header .utill > li .depth2 li a{
  display: block;
  color: #3e3e3e;
  margin-bottom: 5px;
  transition: color 0.5s;
  cursor: pointer;
}

header .utill > li .depth2 li:hover a{
  color: #d8bb82;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  header .utill .ham{
    display: block;
  }

  header .utill .menu,
  header .gnb > li{
    display: none;
  }
}

/*모바일*/
@media screen and (max-width : 768px) {
  header .inner{
    padding: 10px 5%;
  }

  header h1 a{
    width: 60px;
    height: 60px;
  }

  header .mgnb-wrap > img.top{
    width: 214px;
  }
}

/******************************섹션4 header***************************************/
header.fix .inner{
  border-bottom: 1px solid #3e3e3e;
}

header.fix h1 a{
  display: block;
  width: 80px;
  height: 80px;
  background: url(../img/common/logo_color.png) no-repeat center / contain;
  font-size: 0;
  color: transparent;
}

header.fix .gnb > li > a{
  color: #3e3e3e;
  transition: color 0.5s;
}

header.fix .gnb > li:hover > a{
  color: #d8bb82;
}

header.fix .utill > li i{
  color: #3e3e3e;
  transition: color 0.5s;
}

header.fix .utill > li:hover i{
  color: #d8bb82;
}

header.fix .utill > li .depth2{
  background-color: #3e3e3e;
}

header.fix .utill > li .depth2 li a{
  color: #fff;
  transition: color 0.5s;
}

header.fix .utill > li .depth2 li:hover a{
  color: #d8bb82;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  header.fix .utill .ham{
    display: block;
  }

  header.fix .utill .menu,
  header.fix .gnb > li{
    display: none;
  }
}

/*모바일*/
@media screen and (max-width : 768px) {
  header.fix .inner{
    padding: 10px 5%;
  }

  header.fix h1 a{
    width: 60px;
    height: 60px;
  }

  header.fix .mgnb-wrap > img.top{
    width: 214px;
  }
}

/******************************footer header***************************************/
header.fix2{
  background-color: #fff;
}

header.fix2 .inner{
  border-bottom: 1px solid #3e3e3e;
}

header.fix2 h1 a{
  display: block;
  width: 80px;
  height: 80px;
  background: url(../img/common/logo_color.png) no-repeat center / contain;
  font-size: 0;
  color: transparent;
}

header.fix2 .gnb > li > a{
  color: #3e3e3e;
  transition: color 0.5s;
}

header.fix2 .gnb > li:hover > a{
  color: #d8bb82;
}

header.fix2 .utill > li i{
  color: #3e3e3e;
  transition: color 0.5s;
}

header.fix2 .utill > li:hover i{
  color: #d8bb82;
}

header.fix2 .utill > li .depth2{
  background-color: #3e3e3e;
}

header.fix2 .utill > li .depth2 li a{
  color: #fff;
  transition: color 0.5s;
}

header.fix2 .utill > li .depth2 li:hover a{
  color: #d8bb82;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  header.fix2 .utill .ham{
    display: block;
  }

  header.fix2 .utill .menu,
  header.fix2 .gnb > li{
    display: none;
  }
}

/*모바일*/
@media screen and (max-width : 768px) {
  header.fix2 .inner{
    padding: 10px 5%;
  }

  header.fix2 h1 a{
    width: 60px;
    height: 60px;
  }

  header.fix2 .mgnb-wrap > img.top{
    width: 214px;
  }
}

/*모바일*/

header.fix3{
  background-color: #fff;
}

header.fix3 .inner{
  border-bottom: 1px solid #3e3e3e;
}

header.fix3 h1 a{
  display: block;
  width: 80px;
  height: 80px;
  background: url(../img/common/logo_color.png) no-repeat center / contain;
  font-size: 0;
  color: transparent;
}

header.fix3 .gnb > li > a{
  color: #3e3e3e;
  transition: color 0.5s;
}

header.fix3 .gnb > li:hover > a{
  color: #d8bb82;
}

header.fix3 .utill > li i{
  color: #3e3e3e;
  transition: color 0.5s;
}

header.fix3 .utill > li:hover i{
  color: #d8bb82;
}

header.fix3 .utill > li .depth2{
  background-color: #3e3e3e;
}

header.fix3 .utill > li .depth2 li a{
  color: #fff;
  transition: color 0.5s;
}

header.fix3 .utill > li .depth2 li:hover a{
  color: #d8bb82;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  header.fix3 .utill .ham{
    display: block;
  }

  header.fix3 .utill .menu,
  header.fix3 .gnb > li{
    display: none;
  }
}

/*모바일*/
@media screen and (max-width : 768px) {
  header.fix3 .inner{
    padding: 10px 5%;
  }

  header.fix3 h1 a{
    width: 60px;
    height: 60px;
  }

  header.fix3 .mgnb-wrap > img.top{
    width: 214px;
  }
}

/**********************************footer********************************************/
footer{
  padding: 30px 0;
  background-color: #000;
}

footer .footer-top{
  display: flex;
  justify-content: space-between;
  color: #d8bb82;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8bb82;
}

footer .footer-top .top-txt p{
  margin-top: 5px;
  font-size: 1.5rem;
  font-family: "Pretendard";
  font-weight: 100;
}

footer .footer-top .top-txt p br{
  display: none;
}

footer .footer-top a img{
  width: 100px;
}

footer .footer-bottom{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  color: #d8bb82;
  font-size: 1.5rem;
}

footer .footer-bottom .sns{
  display: flex;
  gap: 20px;
  align-items: center;
}

footer .footer-bottom .sns li a{
  color: #d8bb82;
  text-transform: uppercase;
  transition: opacity 0.5s;
  opacity: 0.7;
}

footer .footer-bottom .sns li:hover a{
  opacity: 1;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  footer .footer-top{
    position: relative;
  }

  footer .footer-top .top-txt p{
    font-size: 1.2rem;
  }

  footer .footer-top a img{
    width: 70px;
    position: absolute;
    right: 0;
    bottom: 30px;
  }

  footer .footer-bottom{
    font-size: 1.2rem;
  }

  footer .footer-bottom .sns img{
    width: 15px;
  }

  footer .footer-bottom .sns li a{
    opacity: 1;
  }
}

/*모바일*/
@media screen and (max-width : 768px) {
  footer{
    padding: 30px 0;
  }

  footer .footer-top{
    padding-bottom: 20px;
  }

  footer .footer-top .top-txt p{
    margin-top: 2px;
    font-weight: 100;
  }

  footer .footer-top .top-txt p br{
    display: block;
  }

  footer .footer-bottom{
    font-size: 1rem;
    flex-direction: column-reverse;
    padding-top: 20px;
  }

  footer .footer-bottom .sns{
    margin-bottom: 20px;
  }

  footer .footer-bottom .sns li a{
    font-size: 1.2rem;
  }
}