/*reset.css*/

html.lenis {
  height: auto;
}

.lenis {
  overflow-x: hidden;
}

.lenis-smooth {
  scroll-behavior: auto;
}

body, html{ 
  margin:0; 
  padding:0; 
  width:100%; 
  scroll-behavior: smooth;
  overflow: visible !important;
  height: auto !important;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}
body, html, input, textarea, select, button, table{ 
	font-family: "Noto Serif", serif;
	-webkit-font-smoothing:antialiased;
 }
form, fieldset, h1, h2, h3, h4, h5, h6, p{ 
  margin:0; 
  padding:0; 
  word-break: keep-all;
}
form, fieldset, button{ 
  border:none;
}
ol, ul, li{ 
  list-style:none; 
  padding:0; 
  margin:0; 
  word-break: keep-all;
}
img{ 
  max-width:100%; 
}
a{ 
  color:inherit; 
}
a, a:hover{ 
  text-decoration:none; 
}

.d-lg-none{ 
  display:none; 
}
.d-lg-block{ 
  display:block; 
}

#nc_container{
  z-index: 9999999999 !important;
}

/*header*/

header{ 
  position:fixed; 
  z-index:-1; 
  top:0; 
  left:0; 
  width:100%; 
  transition:all .4s; 
  transition-delay: .4s;
  padding-top: 50px;
  opacity: 0;
}
header, header *{ 
  box-sizing:border-box; 
}
.hd_con{ 
  width:100%; 
  margin:0 auto; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:0 120px;
  position: relative;
}

.lg > a{ 
  display:block; 
  font-size:20px; 
  line-height:1em; 
  white-space:nowrap;
}
.lg > a > img{ 
  display:block; 
  width:150px; 
  transition: .4s;
}
.mn{ 
  display:flex; 
  align-items:center; 
  padding: 6px 66px 6px 36px;
  border-radius: 50px;
  background-color: #fff;
  position: relative;
}

.hd-btn{
  position: absolute;
  z-index: 99;
  width: 43px;
  height: 43px;
  right: 9px;
  left: auto;
  border-radius: 50%;
  background-color: #FCF6E6; 
  border: 1px solid #FCF6E6;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: .3s;
}
.hd-btn::before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 2px;
  background-color: #5A7A6A;
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%,0);
  margin-top: -6px;
  transition:0.3s transform, 0.3s margin-top 0.3s;
}
.hd-btn::after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 2px;
  background-color: #5A7A6A;
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%,0);
  margin-top: 5px;
  transition:0.3s transform, 0.3s margin-top 0.3s;
}
.hd-btn.act{
  border-color: #5A7A6A;
}
.hd-btn.act::before{
  transform:translate(-50%, 0) rotate(45deg);
  margin-top:0;
  background-color: #5A7A6A;
  transition:0.3s transform 0.3s, 0.3s margin-top;
}
.hd-btn.act::after{
  transform:translate(-50%, 0) rotate(-45deg);
  margin-top:0;
  background-color: #5A7A6A;
  transition:0.3s transform 0.3s, 0.3s margin-top;
}
header.scr .hd-btn::before, header.scr .hd-btn::after{
  background-color: #5A7A6A;
}
.mt-menu{
  width: 100%; 
  height: 100vh; 
  position: fixed; 
  top: 100%; 
  left: 0; 
  background-color: #F5F1E8; 
  z-index: 98; 
  transition: .6s ease-in-out; 
  padding: 0; 
  display: flex; 
  align-items: center;
}
.mt-menu.mt-open{
  top: 0;
  box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
}

/*gnb*/

.hd_bt{ 
  position:relative; 
  z-index:5; 
}
#gnb{ 
  position:relative; 
  z-index:5;
}
#gnb > ul{ 
  display:flex; 
  flex-flow:row wrap; 
  padding-left: 0; 
  margin-bottom: 0;
}
#gnb > ul > li{ 
  position:relative; 
  z-index:1; 
}
#gnb > ul > li > a{ 
  display:block; 
  font-size:14px; 
  font-weight:400; 
  padding: 10px 20px; 
  transition: all .4s; 
  color: #15202E; 
  position: relative;
  border-radius: 30px;
}
#gnb > ul > li > a::after{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #5A7A6A;
  position: absolute;
  top: 8px;
  right: 12px;
  transition: .4s;
  opacity: 0;
}
#gnb > ul > li:hover > a{
  background-color: rgba(90, 122, 106, 0.08);
}
#gnb > ul > li:hover > a::after{
  opacity: 1;
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:2; 
  top:calc(100% + 15px); 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  min-width: 160px; 
  box-sizing: border-box; 
  background-color: rgba(255, 255, 255, 0.98); 
  padding:12px 8px; 
  text-align: center;  
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
#gnb > ul > li > ul::before{
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 3px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.03);
  z-index: 1;
}
#gnb > ul > li > ul::after{
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  top: -25px;
  left: 0;
}
#gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:1; 
  text-align: center;
}
#gnb > ul > li > ul > li > a{ 
  display:block; 
  padding: 8px 18px;
  font-size:14px; 
  font-weight: 300;
  white-space:nowrap; 
  color: #4a4a4a;
  transition: .3s;
  border-radius: 12px;
}
#gnb > ul > li > ul > li > a:hover{
  background-color: rgba(90, 122, 106, 0.08);
}
#gnb > ul > li > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:-10px; 
  left: calc(100% + 15px); 
  padding: 10px 0; 
  display:none; 
  min-width:150px; 
  box-shadow:0 12px 30px -2px rgba(0,0,0,.1); 
  background-color: #fafafa;
}
#gnb > ul > li > ul > li > ul > li > a{ 
  display:block; 
  padding:10px 15px; 
  font-size:14px; 
}

/* .scr */
header.scr{
  z-index: 99;
  opacity: 1;
}


/*wrapper*/
.article_mover{ 
  position:absolute; 
  z-index:-1; 
  bottom:100%; 
}

.fixed-menu{
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 99;
}
.fixed-menu > ul{
  display: flex;
  gap: 1rem;
}
.fixed-menu > ul > li > a{
  display: inline-flex;
  padding: 14px;
  width: 250px;
  border-radius: 30px;
  background-color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: .4s;
}
.fixed-menu > ul > li > a > h3{
  display: inline-block;
  font-size: 16px;
  margin-right: 10px;
  color: #5A7A6A;
}
.fixed-menu > ul > li > a > h5{
  font-size: 16px;
  color: #000;
  font-weight: 400;
  transition: .4s;
}
.fixed-menu > ul > li > a:hover{
  background-color: #e9f7ee;
}
.fixed-menu > ul > li > a:hover > h5{
  color: #5A7A6A;
}

.menupc-con{
  display: block;
  width: 100%;
  padding: 100px 20px;
  max-width: 1320px;
  margin: 0 auto;
}
.menupc-wrap{
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.menupc-wrap::before{
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(216, 208, 192, 0.00) 0%, #D8D0C0 50%, rgba(216, 208, 192, 0.00) 100%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.menupc-tit{
  width: 50%;
  text-align: center;
}
.menupc-tit > h2{
  font-size: 67px;
  color: #1a1a1a;
  font-weight: 400;
  margin-bottom: 40px;
}
.menupc-tit > h5{
  font-size: 22px;
  color: #4a4a4a;
  font-weight: 300;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.menupc-tit > h5::after{
  content: "";
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 122, 106, 0.00) 0%, #5A7A6A 50%, rgba(90, 122, 106, 0.00) 100%);
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.menupc-tit > p{
  font-size: 16px;
  color: #7a7a7a;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 3px;
}
.menupc-cont{
  width: 50%;
  padding-left: 10%;
}
.menupc{
  width: 100%;
  margin-bottom: 40px;
}
.menupc > li > a{
  font-size: 24px;
  color: #4a4a4a;
  font-weight: 400;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
  border-bottom: 1px solid rgba(216, 208, 192, 0.40);
  position: relative;
  letter-spacing: 2px;
}
.menupc > li > a::after{
  content: "";
  width: 0%;
  height: 2px;
  background-color: #5A7A6A;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: .4s ease;
}
.menupc > li > a > p{
  transition: .3s;
}
.menupc > li > a > span{
  display: inline-block;
  font-size: 20px;
  transition: .3s;
  color: #7a7a7a;
}
.menupc > li > a:hover{
  color: #5A7A6A;
}
.menupc > li > a:hover > p{
  padding-left: 15px;
}
.menupc > li > a:hover > span{
  color: #5A7A6A;
}
.menupc > li > a:hover::after{
  width: 100%;
}
.menupc-etc{
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.menupc-phone > h5{
  font-size: 16px;
  color: #7a7a7a;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.menupc-phone > p{
  font-size: 22px;
  color: #1a1a1a;
  font-weight: 400;
  letter-spacing: 2px;
}
.menupc-fnb > ul{
  display: flex;
}
.menupc-fnb > ul > li{
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}
.menupc-fnb > ul > li::before{
  content: "";
  width: 1px;
  height: 12px;
  background-color: #d8d0c0;
  position: absolute;
  top: 4px;
  left: 0;
}
.menupc-fnb > ul > li:first-child::before{
  display: none;
}
.menupc-fnb > ul > li > a{
  font-size: 13px;
  color: #7a7a7a;
  font-weight: 400;
  transition: .3s;
}
.menupc-fnb > ul > li > a:hover{
  color: #5A7A6A;
}

/*footer*/
footer{ 
  width: 100%;
  background-color: #2A2A28;
  position: relative;
}
footer::before{
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 122, 106, 0.00) 0%, #5A7A6A 50%, rgba(90, 122, 106, 0.00) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.ft_con{
  width: 100%;
  padding: 0 15px;
  max-width: 1470px;
  margin: 0 auto;
}
.ft-plus{
  width: 100%;
  padding: 55px 0;
  position: relative;
}
.ft-plus::before{
  content: "";
  width: 1px;
  height: 30px;
  background-color: #5A7A6A;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.ft-plus::after{
  content: "";
  width: 30px;
  height: 1px;
  background-color: #5A7A6A;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.ft-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}
.ft-tit{
  width: 25%;
}
.ft-tit > h2{
  font-size: 22px;
  color: #f5f1e8;
  font-weight: 400;
  letter-spacing: 10px;
  margin-bottom: 1rem;
}
.ft-tit > h5{
  font-size: 17px;
  color: #d8d0c0;
  font-weight: 300;
  letter-spacing: 8px;
  margin-bottom: 1.5rem;
}
.ft-tit > p{
  font-size: 13px;
  color: #7a7a7a;
  font-weight: 300;
  line-height: 1.8;
}
.ft-menu{
  width: 45%;
}
.ft-menu > #fnb > ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ft-menu > #fnb > ul > li{
  width: calc((100% - 2rem) / 3);
}
.ft-menu > #fnb > ul > li > a{
  font-size: 14px;
  color: #d8d0c0;
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
  transition: .3s;
}
.ft-menu > #fnb > ul > li > a::before{
  content: "";
  width: 4px;
  height: 1px;
  background-color: #7a7a7a;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: .2s;
}
.ft-menu > #fnb > ul > li > a:hover{
  color: #5A7A6A;
}
.ft-menu > #fnb > ul > li > a:hover::before{
  background-color: #5A7A6A;
  width: 8px;
}
.ft-cont{
  width: 25%;
}
.ft-cont > ul > li{
  margin-bottom: 1rem;
  padding-left: 30px;
  position: relative;
}
.ft-cont > ul > li > span{
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
}
.ft-cont > ul > li > h5{
  font-size: 12px;
  color: #7a7a7a;
  font-weight: 400;
  margin-bottom: 5px;
}
.ft-cont > ul > li > p{
  font-size: 14px;
  color: #d8d0c0;
  font-weight: 300;
}
.ft-ct{
  width: 100%;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #3A3A38;
}
.ft-ct > h5{
  font-size: 12px;
  color: #7a9a8a;
  font-weight: 400;
  letter-spacing: 10px;
}
.ft-bt{
  width: 100%;
  padding: 25px 0;
  border-top: 1px solid #3A3A38;
  background: rgba(0, 0, 0, 0.15);
}
.ft-bt .ft_con{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft_cp{
  font-size: 12px;
  color: #7a7a7a;
  font-weight: 300;
}
.ft-bt ul{
  display: flex;
  align-items: center;
}
.ft-bt ul li{
  margin-left: 1rem;
  padding-left: 1rem;
  position: relative;
}
.ft-bt ul li::before{
  content: "";
  width: 1px;
  height: 10px;
  background-color: #3a3a38;
  position: absolute;
  top: 4px;
  left: 0;
}
.ft-bt ul li:first-child::before{
  display: none;
}
.ft-bt ul li a{
  font-size: 12px;
  color: #7a7a7a;
  font-weight: 300;
  transition: .3s;
}
.ft-bt ul li a:hover{
  color: #5A7A6A;
}

/* mediaquery */

@media(min-width:1200px){ 
  .d-lg-none{ 
    display:none; 
  }
  .d-lg-block{ 
    display:block; 
  }

  .lg{
    margin-right: 30px;
  }
  .mo-fixed{
    display: none;
  }

  .mo_mn_mn{
    display: none;
  }
  
}
@media(max-width:1600px){
  .hd_con{
    padding: 0 15px;
    max-width: 1470px;
  }


}
@media(max-width:1440px){
  .hd_con{
    padding: 0 20px;
  }
  .ft_con{
    padding: 0 20px;
  }

  .fixed-menu > ul > li > a{
    width: 220px;
  }
  .fixed-menu > ul > li > a > h5{
    font-size: 14px;
  }
  .fixed-menu > ul > li > a > h3{
    font-size: 14px;
  }

  .menupc-con{
    max-width: 1100px;
    padding: 80px 20px 120px;
  }
  .menupc-cont{
    padding-left: 5%;
  }
  .menupc > li > a{
    font-size: 20px;
    padding: 20px 0;
  }
  .menupc > li > a > span{
    font-size: 16px;
  }
  .menupc-tit > h2{
    font-size: 62px;
  }
  .menupc-tit > h5{
    font-size: 20px;
  }
  .menupc-tit > p{
    font-size: 14px;
  }
  .menupc{
    margin-bottom: 30px;
  }
  .menupc-phone > h5{
    font-size: 14px;
    margin-bottom: 8px;
  }
  .menupc-phone > p{
    font-size: 20px;
  }
}

@media(max-width:1199px){ 
  .d-none{ 
    display:none;
  }
  .d-block{ 
    display:block; 
  }

  .lg > a{ 
    padding:0; 
  }
  .lg > a > img{ 
    max-width:120px; 
  }

  header{
    top: 0px !important;
    padding: 15px 0;
    opacity: 1;
    z-index: 99;
  }
  header.scr{
    background-color: #fff;
  }
  .hd_con{
    padding: 0 15px;
  }
  .ft_con{
    padding: 0 20px;
  }

  .menupc{
    display: none;
  }

  #gnb{
    display: none;
  }
  .mn{
    padding: 0;
    width: 43px;
    height: 43px;
    background-color: transparent;
  }
  .hd-btn{
    right: 0;
  }

  .mt-menu{
    align-items: flex-start;
    overflow-y: scroll;
  }
  .menupc-con{
    padding: 80px 35px;
    overflow-y: scroll;
  }
  .menupc-wrap{
    flex-direction: column;
  }
  .menupc-wrap::before{
    display: none;
  }
  .menupc-tit{
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(216, 208, 192, 0.4);
  }
  .menupc-cont{
    width: 100%;
    padding-left: 0;
  }
  .menupc-tit > h2{
    font-size: 26px;
    margin-bottom: 1rem;
  }
  .menupc-tit > h5{
    font-size: 14px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .menupc-tit > p{
    display: none;
  }
  .menupc-tit > h5::after{
    display: none;
  }
  .menupc-etc{
    flex-direction: column;
    align-items: center;
  }
  .menupc-phone{
    text-align: center;
    margin-bottom: 1rem;
  }
  .menupc-fnb > ul > li{
    padding-left: 1rem;
    margin-left: 1rem;
  }
  .menupc-fnb > ul > li:first-child{
    margin-left: 0;
    padding-left: 0;
  }


  .mo_mn_mn{
    display: block;
    margin-bottom: 30px;
    width: 100%;
  }
  .mo_mn_mn > li > a{ 
    display:block; 
    padding:20px 25px; 
    font-size:16px; 
    font-weight:500; 
    color: #333;
    border-bottom: 1px solid rgba(216, 208, 192, 0.4); 
    transition: .2s;
  }
  .mo_mn_mn > li > ul{ 
    display:none; 
    background-color:#f8f9fa; 
  }
  .mo_mn_mn > li > ul > li > a{ 
    display:block; 
    padding:15px 40px 15px; 
    font-size:14px; 
    font-weight:400; 
    color: #666;
    border-bottom: 1px solid #E9ECEF; 
  }
  
  .mo_mn_mn > li > a.more{
    position: relative;
  }
  .mo_mn_mn > li > a.more::after{
    content: ""; 
    width: 10px; 
    height: 2px; 
    background-color: #ea002c; 
    position: absolute; 
    top: 50%; 
    right: 25px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    background-color: #ea002c; 
    position: absolute; 
    top: 50%; 
    right: 29px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  .mo_mn_mn > li > a.more.act{
    background-color: #f0f8ff;
    color: #ea002c;
  }
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }

  .fixed-menu{
    display: none;
  }
  .mo-fixed{
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 88;
    width: 100%;
    background-color: #fff;
  }
  .mo-fixed > ul{
    width: 100%;
    display: flex;
  }
  .mo-fixed > ul > li{
    width: 33.3333333%;
    text-align: center;
    padding: 15px 0;
    position: relative;
  }
  .mo-fixed > ul > li::after{
    content: "";
    width: 1px;
    height: 70%;
    background-color: rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .mo-fixed > ul > li:last-child::after{
    display: none;
  }
  .mo-fixed > ul > li > a{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mo-fixed > ul > li > a > h3{
    font-size: 14px;
    color: #5A7A6A;
    margin-right: 8px;
  }
  .mo-fixed > ul > li > a > h5{
    font-size: 16px;
    font-weight: 400;
  }

  .ft-plus{
    padding: 45px 0;
  }
  .ft-wrap{
    padding-bottom: 30px;
    flex-direction: column;
  }
  .ft-menu{
    display: none;
  }
  .ft-tit{
    width: 100%;
    margin-bottom: 30px;
  }
  .ft-cont{
    width: 100%;
  }
  .ft-bt{
    padding: 20px 0 73px;
  }

  .ft-tit > h2{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .ft-tit > h5{
    font-size: 15px;
    margin-bottom: 20px;
  }
}

@media(max-width:768px){
  
}

@media(max-width:576px){
  header{
    padding: 8px 0;
  }
  .lg > a > img{
    max-width: 100px;
  }
  .menupc-con{
    padding: 80px 20px 50px;
  }
  .menupc-tit > h2{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .menupc-tit{
    margin-bottom: 10px;
  }
  .mo_mn_mn > li > a{
    padding: 20px 15px;
  }
  .menupc-phone > h5{
    font-size: 12px;
    margin-bottom: 5px;
  }
  .menupc-phone > h3{
    font-size: 18px;
  }
  .mo-fixed > ul > li > a{
    flex-direction: column;
  }
  .mo-fixed > ul > li > a > h3{
    font-size: 12px;
    margin-right: 0;
    margin-bottom: 1px;
  }
  .mo-fixed > ul > li > a > h5{
    font-size: 12px;
  }
  .mo-fixed > ul > li{
    padding: 10px 0;
  }
  .ft-bt{
    padding: 15px 0 71px;
  }
  .ft-bt .ft_con{
    flex-direction: column-reverse;
  }
  .ft-bt ul li:first-child{
    margin-left: 0;
    padding-left: 0;
  }
  .ft_cp{
    margin-top: 5px;
  }
}

@keyframes blink{
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}