@import url(/css/default.css);
@import url(/css/common.css);
@import url(/css/mobile.css);
@import url(/css/sub.css);

#wrap{
  width: 100%;
}
#container{
  padding-top: 60px;
  padding-bottom: 120px;
  min-height: 60vh;
  min-height: calc(100vh - 380px);
}
#container #contents{}
#container #contents .content{}
.inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* header */
#header{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 80px;
  /* border-bottom: 1px solid var(--line); */
  
  color: #fff;
}

#header .gnb-wrap{
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
}
.logo a {
  display: block;
  font-size: 28px;
  font-family: 'Nanum Myeongjo', serif;
  /* height: 40px; */
}
.logo a img{
  width: 100%;
  height: 100%;
  display: none;
}
#header .gnb-wrap  .util-wrap{
  display: flex;
  align-items: center;
  gap: 20px;
}
#header .gnb-wrap  .util-wrap a{
  display: flex;
  width: 40px;
  height: 40px;
}

#header.scrolled{
  color: var(--title);
  background: #fff;
  border-bottom: 1px solid var(--bg01);
}
#header.scrolled .gnb-wrap  .util-wrap .line-white{
  background-color: var(--main);
  border-color: var(--main);
}



#nav{
  position: relative;
}
#nav #gnb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
  height: 80px;
}
#nav #gnb > li > a{
  display: block;
  font-size: 18px;
  transition: all .2s ease;
}
#nav #gnb > li:hover > a{
  color: var(--main);
}
#nav #gnb > li .gnb-depth{
  display: none;
  justify-content: center;
  position: fixed;
  background: #fff;
  padding: 20px 0 28px;
  left: 0;
  right: 0;
  top: 80px;
  gap: 0 60px;
  border-bottom: 2px solid var(--line);
  transition: all .2s ease;
}
.gnb-on #nav #gnb > li.on .gnb-depth{
  display: flex;
  align-items: center;
}
#nav #gnb > li .gnb-depth li a{
  font-weight: 600;
}
#nav #gnb > li .gnb-depth li a:hover{
  color: #3568D4;
  font-weight: bold;
}

#mob-nav,
#mob-nav-btn{
  display: none;
}
/* mobile 메뉴 */


#footer{
  padding: 40px 0;
  color: #fff;
  font-size: 14px;
  background: var(--main-darkest);
}
#footer > section{
  padding: 0 4%;
}
.ft-top{
  margin-bottom: 20px;
}
.ft-top .ft-logo{
  font-family: 'NanumMyeongjo';
  font-size: 28px;
  opacity: 0.8;
}
.ft-logo img{
  height: 52px;
  opacity: 0.4;
}
#footer address{
  font-style: normal;
  display: flex;
  gap: 100px;
}
#footer address dl{
  padding: 8px 0;
  display: flex;
  opacity: 0.8;
}
#footer address dl dt{
  width: 100px;
  opacity: 0.7;
  font-weight: 500;
}
#footer address dl dd{}
#footer .footer-btm{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
#footer .copyright{
  opacity: 0.6;
}
.ft-nav{
  display: flex;
  align-items: center;
  gap: 20px;
}
.ft-nav b{
  color: var(--main);
}



@media (max-width: 850px) {
  /* 모바일메뉴 */
  #nav{
    display: none
  }
  #header {
    height: 60px;
  }
  #header .gnb-wrap {
    height: 60px;
  }
  #mob-nav-xbtn,
  #mob-nav-btn{
    border: 0;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    background: url(/images/hamberger-w.svg) no-repeat center;
  }
  #header.scrolled #mob-nav-btn {
    background-image: url(/images/hamberger.svg);
  }
  .logo a{
    font-size: 20px;
    font-weight: 500;
    /* height: 32px; */
  }
  #header .gnb-wrap .util-wrap {
    gap: 12px;
  }
  #header .gnb-wrap .util-wrap .line-white {
    width: 32px;
    height: 32px;
  }
  .mob-nav-top{
    padding: 0 4%;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .header_btm {
    height: auto;
  }
  #mob-nav{
    display: block;
    z-index: 10;
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #fff;
    transition: all .3s ease;
  }
  #mob-nav.active{
    display: block;
    top: 0;
    transition: all .3s ease;
  }
  /* .mob-nav-overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    background: #010819;
    opacity: 0;
    z-index: 5;
    transition: all .5s ease;
  }
  .mob-nav-overlay.active{
    opacity: 60%;
  } */
  #mob-nav #mob-gnb{
    background: #fff;
  }
  #mob-nav #mob-gnb {
    margin-top: 8%;
  }
  #mob-nav #mob-gnb > li > a{
    font-family: 'NanumMyeongjo';
    font-size: 20px;
    padding: 20px;
    display: block;
    text-align: center;
    font-weight: 500;
    color: var(--title);
  }
  #mob-nav #mob-gnb > li > a:hover,
  #mob-nav #mob-gnb > li.active > a{
    color: var(--main);
  }
  
  /* #mob-nav #mob-gnb li .depth-menu{
    padding: 12px 24px;
    background: #F0F4FF;
    display: none;
  }
  #mob-nav #mob-gnb li .depth-menu li{}
  #mob-nav #mob-gnb li .depth-menu > li{
    position: relative;
  }
  #mob-nav #mob-gnb li .depth-menu > li:before {
    content: "";
    display: block;
    background: #AAAAC4;
    width: 4px;
    height: 4px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    border-radius: 50%;
    top: calc(50% - 2px);
}
  #mob-nav #mob-gnb li .depth-menu li a{
    padding: 12px 12px 12px 16px;
    display: block;
  } */

  /* footer */
  .ft-logo img {
    height: 32px;
  }
  #footer address {
    flex-wrap: wrap;
    gap: 0;
  }
  #footer .footer-btm {
    align-items: flex-start;
    flex-direction: column-reverse;
    margin-top: 12px;
    gap: 20px;
  }

}


/* main */
.main-visual{
  position: relative;
  padding: 0;
  height: 100vh !important;
  overflow: hidden;
}
.main-visual article{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.main-visual .main-vis-bg{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s ease-in-out;

  background-image: url(/images/main_vis.jpg);
}
.main-visual .main-vis-txt{
  color: #fff;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
}
.main-visual .main-vis-txt strong{
  font-family: 'Nanum Myeongjo', serif;
  display: block;
  font-weight: 500;
  font-size: 62px;
  margin-bottom: 40px;
}
.main-visual .main-vis-txt p{
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.8;
}

.main-content > article{
  padding: 80px 0;
}
.main-title{
  text-align: center;
  margin-bottom: 40px;
  margin-bottom: 52px;
}
.main-title p{
  font-family: 'NanumMyeongjo';
  color: var(--main-lighter);
  margin-bottom: 8px;
}
.main-title h2{
  font-family: 'NanumMyeongjo';
  color: var(--title);
  font-weight: 600;
  font-size: 32px;
}
.main-title strong{
  display: block;
  font-family: 'NanumMyeongjo';
  color: var(--title);
  font-size: 40px;
}
.main-title span{
  display: block;
  color: var(--txt-sub);
  line-height: 1.7;
}
.main-title span + span{
  margin-top: 12px;
}

.branch-list {
  display: flex;
  align-items: center;
  gap: 32px;

}
.branch-list li{
  position: relative;
  width: calc((100% - 64px) / 3);
  cursor: pointer;
}
.branch-list li .img-box:before{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  transition: all .4s ease;
}
.branch-list li .txt-box{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  color: #fff;
  padding: 24px 40px;
  font-family: 'NanumMyeongjo';
  transition: all .4s ease;
}
.branch-list li .txt-box strong{
  font-size: 24px;
}
.branch-list li .txt-box p{}
.branch-list li:hover .img-box:before{
  opacity: 0;
}
.branch-list li:hover .txt-box{
  background: rgba(0, 0, 0, 0.5);
}
.main-about{}
.main-about .photo-box{
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 28px;
}
.main-about .main-title{
  text-align: left;
}
.main-about .main-title strong{
  color: var(--title);
  margin-bottom: 40px;
}
.main-about.v2{
  display: flex;
  align-items: center;
  background: var(--main-bg);
  padding: 0;
}
.main-about.v2 .img-box{
  display: block;
  width: 50%;
  background: url(/images/about03.jpg) no-repeat center;
  background-size: cover;
  height: stretch;
}
.main-about.v2 .main-title{
  padding: 120px 0;
  padding-left: 100px;
  padding-left: 5%;
}
.main-about.v2 .main-title strong{
  font-size: 48px;
}
.main-program{
  width: 100%;
  overflow: hidden;
  padding: 120px 0 !important;
}
.main-program ul li{
  display: flex;
  align-items: center;
  background: var(--bg01);
}
.main-program ul li .txt-box{
  text-align: center;
  font-family: 'NanumMyeongjo';
  white-space: nowrap;
  flex:0 0 240px;
}
.main-program ul li .txt-box strong{
  display: block;
  font-size: 26px;
  color: var(--title);
  margin-bottom: 4px;
}
.main-program ul li .txt-box span{
  color: var(--txt-sub);
}
.program-list {
  overflow: visible;
  padding-bottom: 40px;
}
.main-program2{
  background: url(/images/programbg.jpg) no-repeat;
  color: #fff;
}
.main-program2 .main-title h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 8px;
}
.main-program2 .main-title span {
  color: #fff;
  opacity: 0.8;
  font-weight: 300;
}
.program2-list{
  background: rgba(255, 255, 255, 0.2);
  padding: 60px;
}
.program2-list ul {
  display: flex;
  justify-content: space-between;
}
.program2-list ul li{
  flex: 1;
  text-align: center;
}
.program2-list ul li .img-box{
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
.program2-list ul li strong{
  display: block;
  font-family: 'NanumMyeongjo';
  font-size: 22px;
  margin-bottom: 12px;
}
.program2-list ul li p{
  font-size: 14px;
  font-weight: 300;
  padding: 0 8px;
}
.main-sns .main-title{
  text-align: left;
}
.sns-list{
  /* overflow: visible; */
  padding-bottom: 40px;
}
.sns-list ul{
  display: flex;
}
.sns-list li{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  cursor: pointer;

  width: calc(100% / 5);
}
.sns-list li .btn{
  margin-bottom: 40px;
}
.sns-list li strong{
  display: block;
  color: var(--title);
  font-size: 18px;
  margin-bottom: 12px;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6em;
  max-height: calc(1em * 1.6em * 2);
}
.sns-list li .ico-txt{
  color: var(--gray-dark);
  font-size: 14px;
}
.sns-list li .ico-txt img{
  width: 16px;
  height: 16px;
}
.main-banner{
  background: url(/images/banner.jpg) no-repeat center /cover;
  color: #fff;
}
.main-banner .main-title strong{
  color: #fff;
  margin-bottom: 40px;
}
.main-banner .main-title p{
  color: #fff;
}
.main-banner .main-title {
  margin-bottom: 0;
}
.main-banner .btn{
  gap: 12px;
  padding: 0 32px;
}


.memb-list{
  display: flex;
  justify-content: center;
  gap: 48px;
}
.memb-list > li{
  width: 26%;
  overflow: hidden;
  padding: 60px 40px;
  background: url(/images/membership-bg.jpg) no-repeat center/cover;
}
.memb-list em{
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 12px;
}
.memb-list strong{
  display: block;
  font-family: 'NanumMyeongjo';
  font-size: 44px;
  color: var(--main-darkest);
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.memb-list p{
  display: flex;
  align-items: flex-end;
  font-size: 20px;
  margin-bottom: 24px;
  gap: 4px;
}
.memb-list p b{
  font-size: 32px;
  color: var(--title);
  line-height: 38px;
}
.memb-list .tit{
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--txt-sub);
  margin-bottom: 8px;
}
.memb-list .ico-list{
}
.memb-list .ico-list > li{
  display: flex;
  align-items: center;
  gap: 8px;
}
.memb-list .ico-list > li + li{
  margin-top: 8px;
}


.title-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.title-box strong{
  font-size: 40px;
  color: var(--title);
}
.title-box strong span{
  color: var(--main);
}
.title-box p{
  font-size: 17px;
  color: var(--txt-sub);
}
.title-box .btn{
  gap: 12px;
  border: 1px solid var(--tit);
  color: var(--tit);
  font-weight: 500;
  padding: 0 28px;
}
.binfo-box{
  display: flex;
  align-items: center;
  gap: 40px;
}
.binfo-box .img-box{
  overflow: hidden;
  border-radius: 12px;
  flex: 0 0 50%;
}
.binfo-box .txt-box{
  flex: 1;
}
.binfo-box .txt-box dl{
  overflow: hidden;
  background: var(--main-bg-light);
  border-radius: 12px;
  display: flex;
  font-size: 18px;
  padding: 32px 36px;
}
.binfo-box .txt-box dl + dl{
  margin-top: 24px;
}
.binfo-box .txt-box dl dt{
  display: flex;
  align-items: center;
  color: var(--main);
  font-weight: 700;
  gap: 8px;
  flex:0 0  100px;
}
.binfo-box .txt-box dl dd{
  color: var(--tit);
  flex: 1;
}




/* etc */
/* 이용약관 */
.terms-box{
  color: var(--txt);
  line-height: 1.6em;
}
.terms-box h4{
  color: var(--title);
  font-size: 1.25em;
  margin-bottom: 16px;
  font-weight: normal;
  font-family: 'GmarketSansMedium';
}
.terms-box .h4-list{
  margin-bottom: 60px;
}
.terms-box .h4-list > li{
  margin-bottom: 24px;
}
.terms-box h5{
  color: var(--main);
  font-size: 1.125em;
  font-weight: 600;
  margin-bottom: 12px;
}
.terms-box .txt-list > li{
  text-indent: -20px;
  padding-left: 20px;
  margin: 8px 0;
}
.terms-box .inner-list{
  padding-left: 20px;
}
.terms-box .inner-list li{
  margin: 4px 0;
}

/* 개인정보처리방침 */
.privacy-box{
  color: var(--txt);
  line-height: 1.6;
}
.privacy-box .notice-box{
  margin-bottom: 32px;
  color: var(--title);
}
.privacy-box h5{
  color: var(--main-dark);
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.privacy-box .h5-list{
  margin-bottom: 60px;
}
.privacy-box .h5-list > p{
  color: var(--title);
  margin-bottom: 8px;
  font-weight: 500;
}
.privacy-box .num-list > li {
  padding-left: 28px;
  margin: 8px 0;
}
.privacy-box .num-list > li:before {
  top: 0px;
}
.privacy-box .num-list > li p{
  color: var(--tit);
}
.privacy-box .num-list > li > .bu-list {
  margin-top: 12px;
}
.privacy-box .h5-list .dl-card-box{
  margin: 12px 0 20px;
}

.privacy-box h6{
  color: var(--title);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

/* // etc */





/* 서브 */
.sub-wrap{}
.sub-head-wrap{
  color: #fff;
  background: url(/images/sub_banner.jpg) no-repeat center;
  background-size: cover;
  background-image: url(/images/sub_banner1.jpg);
}
.sub-head-wrap .inner{
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 440px;
  padding-top: 80px;
}
.sub-head-wrap h2{
  font-family: 'NanumMyeongjo';
  font-size: 60px;
  font-weight: 500;
}
.sub-head-wrap p{
  font-size: 20px;
  font-weight: 300;
}

.sub-contents{
  padding: 80px 0 120px;
}

.sub-title{
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  text-align: center;
  gap: 16px;
}
.sub-title strong{
  font-family: 'NanumMyeongjo';
  color: var(--title);
  font-size: 60px;
  font-weight: 400;
}
.sub-title p{
  color: var(--txt-sub);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.5px;
}
.sub-about{
  display: flex;
  background: #F0EDE6;
}
.sub-about .img-box{
  background: url(/images/sub-about.jpg) no-repeat center /cover;
  width: 50%;
}
.sub-about .txt-box{
  width: 50%;
  padding: 40px 80px 80px;
}
.sub-about .txt-box ul{}
.sub-about .txt-box ul li {
  position: relative;
  padding-top: 80px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--main-bg-dark);
}
.sub-about .txt-box ul li + li{
}
.sub-about .txt-box em{
  font-style: normal;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-lighter);
  font-family: 'NanumMyeongjo';
  font-size: 90px;
  opacity: 0.1;
  font-weight: 700;
}
.sub-about .txt-box strong{
  position: relative;
  display: block;
  color: var(--title);
  font-family: 'NanumMyeongjo';
  font-size: 22px;
  margin-bottom: 12px;
  z-index: 1;
}
.sub-about .txt-box p{
  color: var(--txt-sub);
  font-size: 18px;
  line-height: 1.7;
}


.sub02 {}
.sub02 .title-box {
  text-align: center;
  margin-bottom: 40px;
}
.sub02 .title-box b{
  display: block;
  color: var(--main-lighter);
  margin-bottom: 12px;
}
.sub02 .title-box p{
  font-size: 40px;
  color: var(--title);
  font-weight: 700;
}
.sub02 .tab-menu-wrap{
  margin-bottom: 60px;
}
.total-box{
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}
.total-box img{
  width: 20px;
  height: 20px;
}
.total-box b{
  color: var(--main);
}

/* 갤러리 */
.gallery-list > ul{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
}
.gallery-list > ul > li{
  width: calc((100% - 80px) / 3);
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.gallery-list > ul > li .img-box{
  height: 240px;
}
.gallery-list > ul > li .txt-box{
  color: var(--txt-sub);
  padding: 20px 24px;
}
.gallery-list > ul > li .txt-box .tag{
  margin-bottom: 8px;
  font-weight: 600;
}
.gallery-list > ul > li .txt-box strong{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: calc(1em * 1.4 * 2);
  
  font-size: 20px;
  color: var(--title);
  margin-bottom: 8px;
}
.gallery-list > ul > li .txt-box p{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6;
  max-height: calc(1em * 1.6 * 2);
}
.gallery-list > ul > li .txt-box .date{
  display: block;
  color: var(--gray-dark);
  padding-top: 12px;
  font-size: 14px;
}
.paging{
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 60px;
}
.paging .paging-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  opacity: 0.8;
  transition: all .2s ease;
}
.paging .paging-btn:hover{
  opacity: 1;
}
.paging .paging-num{
  display: flex;
  align-items: center;
  margin: 0 20px;
  color: var(--title);
}
.paging .paging-num li{
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
}
.paging ul li a{
  display: block;
}
.paging .paging-num li a{
  opacity: 0.6;
  font-weight: 600;
  transition: all .2s ease;
}
.paging .paging-num li:hover a{
  opacity: 1;
}
.paging .paging-num li.chk a,
.paging .paging-num li.chk:hover a{
  opacity: 1;
  font-weight: 700;
  color: var(--main);
  border-bottom: 3px solid var(--main);
}

.gallery-list > ul > li .txt-box .divider-list{
  margin-bottom: 12px;
  color: var(--txt-sub);
  font-size: 14px;
}
.gallery-list > ul > li .txt-box .divider-list li:first-child{
  color: #03C75B;
}




.detail-wrap .txt-box .tag{
  font-weight: 700;
}
.detail-wrap .txt-box strong{
  display: block;
  color: var(--title);
  font-size: 40px;
  margin: 8px 0 32px;
}
.detail-wrap .txt-box .dl-list{
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 24px;

  font-size: 18px;
}
.detail-wrap .txt-box p{
  color: var(--txt);
  line-height: 1.7;
}
.detail-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
}
.detail-wrap .img-box{
  width: 50%;
  border-radius: 8px;
}


.sub-title h3{
  font-family: 'NanumMyeongjo';
  color: var(--title);
  font-size: 44px;
  font-weight: 700;
}

/* sub03 */
.pd-wrap{
  padding: 80px 0 120px;
}
.pd-box{
  display: flex;
  gap: 60px;
}
.pd-box .img-box{
  background: url(/images/pickdrop.jpg) no-repeat center/cover;
  flex: 0 0 50%;
  border-radius: 4px;
}
.pd-box .txt-box{
  flex: 1;
}
.pd-box .txt-box strong{
  display: block;
  font-family: 'NanumMyeongjo';
  color: var(--title);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
.pd-box .txt-box dl + dl {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--line)
}
.pd-box .txt-box dl dt{
  display: block;
  font-family: 'NanumMyeongjo';
  color: var(--main-light);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pd-box .txt-box dl dd{
  color: var(--txt-sub);
  font-size: 15px;
}
.qna-box{
  background: var(--bg02);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
  border-radius: 4px;
}
.qna-box .sub-title {
  margin-bottom: 20px;
  gap: 4px;
}
.qna-box .sub-title p{
  font-family: 'NanumMyeongjo';
  color: #B7A99A;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.qna-box .sub-title strong{
  font-size: 22px;
  font-weight: 700;
}
.qna-box dl + dl{
  margin-top: 28px;
}
.qna-box dt{
  font-family: 'NanumMyeongjoBold';
  color: #C28422;
  margin-bottom: 8px;
}
.qna-box dd{
  font-size: 14px;
  color: var(--txt);
}
.benefit-wrap{
  padding: 80px 0 120px;
  background: var(--main-bg);
}
.benefit-wrap .sub-title{
  margin-bottom: 40px;
  gap: 4px;
}
.benefit-wrap .sub-title p{
  font-family: 'NanumMyeongjo';
  color: #B7A99A;
  font-size: 14px;
  font-weight: 700;
}
.benefit-wrap .sub-title strong{
  font-size: 36px;
  font-weight: 700;
}
.benefit-list{
  font-size: 18px;
}
.benefit-list li{
  display: flex;
  background: #fff;
  padding: 20px 32px;
  border-radius: 4px;
  overflow: hidden;
}
.benefit-list li + li{
  margin-top: 20px;
}
.benefit-list li strong{
  color: var(--title);
  flex: 0 0 200px;
}
.benefit-list li > div{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.benefit-list li b{
  color: var(--title);
}
.benefit-list li div span{
  font-size: 15px;
  color: var(--gray-dark);
}

.reservation .sub-contents{
  display: flex;
  gap: 80px;
}
.reservation .sub-contents .left-box{
  width: 40%;
}
.reservation .sub-contents .left-box strong{
  display: block;
  font-size: 36px;
  color: var(--title);
  margin-bottom: 20px;
}
.reservation .sub-contents .left-box strong span{
  font-weight: 400;
  color: var(--txt-sub);
}
.branch-choice{}
.branch-choice dl{
  padding: 28px 32px;
  color: var(--txt-sub);
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg03);
  cursor: pointer;
}
.branch-choice dl + dl{
  margin-top: 28px;
}
.branch-choice dl dt{
  font-weight: 600;
  color: var(--title);
  font-size: 20px;
  margin-bottom: 12px;
}
.branch-choice dl dd{
  font-size: 14px;
  padding-left: 24px;
  background: url(/images/location.svg) no-repeat left top 2px;
  background-size: 16px;
}
.branch-choice dl dd:first-child{
}
.branch-choice dl dd:last-child{
  background-image: url(/images/call.svg);
}
.branch-choice dl dd + dd{
  margin-top: 8px;
}
.branch-choice dl.on-tab{
  background: var(--main);
  color: #fff
}
.branch-choice dl.on-tab dt{
  color: #fff;
}
.branch-choice dl.on-tab dd{
  background-image: url(/images/location-w.svg);
}
.branch-choice dl.on-tab dd:last-child{
  background-image: url(/images/call-w.svg);
}

.reservation .sub-contents .right-box{
  width: 60%;
  
  padding: 48px;
  border-radius: 12px;
  background: #fff;
  border: 6px solid var(--bg01);
}
.reservation .tab-menu {
  margin-bottom: 20px;
}
.reservation .tab-menu li{
  height: 40px;
  line-height: 40px;
}
.reservation .tab-menu li.on-tab {
  background: var(--main);
}
.reservation h4{
  font-size: 20px;
  color: var(--title);
  margin-bottom: 16px;
}
.reservation .btn{
  width: 100%;
  /* margin-top: 60px; */
}
.reservation .scroll-area-outer{
  margin-bottom: 8px;
}
.reservation .scroll-area{
  color: var(--txt-sub);
  font-size: 14px;
  line-height: 1.6;
}
.reservation .terms > ul > li > strong{
  font-size: 16px;
}
.reservation .form-list{
  margin-bottom: 40px;
}
.reservation .form-list{}
.reservation .form-list > li + li{
  margin-top: 12px;
}
.reservation .form-list > li{
  flex-direction: row;
  align-items: center;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 4px;
  padding: 12px 24px;
}
.reservation .form-list > li.v2 {
  align-items: flex-start;
  height: 160px;
}
.reservation .form-list input,
.reservation .form-list textarea{
  padding: 0;
  border: 0;
  height: auto;
  background: transparent;
}
.reservation .form-list textarea{
  height: 100%;
}
.reservation .form-list input:focus,
.reservation .form-list textarea:focus{
  border: 0;
  background:transparent;
  outline: 0;
}
.reservation .form-list label{
  border: 0;
  height: auto;
  background: transparent;
  flex: 0 0 80px;
}
.reservation .form-list .flex{}
.reservation .form-list .flex .inp-time{
  display: flex;
  align-items: center;
  flex: 0 0 120px;
  gap: 12px;
}
.reservation .form-list label {
  color: var(--tit);
  font-weight: 400;
}


.cont-list li{
  display: flex;
  gap: 24px;
}
.cont-list li + li{
  margin-top: 32px;
}
.cont-list li .ico-box{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: var(--main-bg);
  flex: 0 0 auto;
}
.cont-list li .ico-box img{
  width: 24px;
  height: 24px;
}
.cont-list li > dl{
  padding-top: 4px;
}
.cont-list li > dl > dt{
  font-size: 20px;
  margin-bottom: 8px;
}
.cont-list li > dl > dd{
  color: var(--txt-sub)
}

.quick{
  position: fixed;
  z-index: 101;
  transform: translateY(56px);
  transition: .3s ease-out;
  right: 4%;
  bottom: 80px;
}
.quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quick li a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
}