@charset "utf-8";

*{box-sizing: border-box;}
.page-section{box-sizing: border-box; background-color: #0E0E0E;}
.page-section.title{overflow: visible;}
.border-b{border-bottom: 1px solid #ddd; padding-bottom: 4rem;}
.mb-0{margin-bottom: 0 !important;}
.pb-0{padding-bottom: 0 !important;}
.page-con{width: 100%; height: 100%; max-width: 1240px; margin: 0 auto; padding: 0 15px;}

.ver-line{width: 1px; height: 100px; background-color: #000; margin: 0 auto;}

.font-nm{font-family: "Nanum Myeongjo", serif !important;}

/* 브랜드소개 */

.page-wrap{
  width: 100%;
  height: calc(100vh + 400px);
  background-color: #0E0E0E;
  position: relative;
}
.page-bg{
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
}
.about-tit{
  text-align: center;
  color: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 25%;
}
.about-tit > h2{
  font-size: 28px;
  line-height: 1.5;
}

.pg-line{
	width: 2px;
	height: 600px;
	background-color: rgba(255, 255, 255, .2);
	overflow-y: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.pg-line::after{
	content: "";
	width: 2px;
	height: 100%;
	position: absolute;
	top: -100%;
	left: 0;
	background-color: rgba(255, 255, 255, .5);
	animation: pgline 10s infinite ease-in-out;
}

@keyframes pgline{
	0%{top: -100%;}
	100%{top: 100%;}
}

.about-cont{
  width: 100%;
  padding: 2rem 0;
  color: #fff;
}
.about-cont > h3{
  font-size: 25px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.5rem;
  transform: translateY(100px);
  opacity: 0;
  transition: 1s;
}
.about-cont > p{
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 2rem;
  transform: translateY(100px);
  opacity: 0;
  transition: 1s;
}
.ac-img img{
  width: 100%;
  opacity: 0;
  transition: 1.5s;
}

.about-cont > h3.ani.act{
  transform: translateY(0);
  opacity: 1;
}
.about-cont > p.ani.act{
  transform: translateY(0);
  opacity: 1;
}
.ac-img img.ani.act{
  opacity: 1;
}

.about-mq{
  width: 9000px;
  display: flex;
  transform: translate(0,0);
  animation: 50s marquee infinite linear;
  -webkit-animation:50s marquee infinite linear;
  -moz-animation:50s marquee infinite linear;
  -o-animation:50s marquee infinite linear;
}
.about-mq > li{
  width: 25%;
  padding: 0 10px;
}
.about-mq > li > img{
  width: 100%;
  height: auto;
  display: block;
}

@keyframes marquee{
	from{ transform:translate(0, 0); }
	to{ transform:translate(-4000px, 0); }
}

.about-logo{
  width: 100%;
  padding: 200px 0;
  text-align: center;
}
.about-logo img{
  width: 100%;
  max-width: 90px;
  opacity: 0;
  transition: 2s;
}
.about-logo img.ani.act{
  opacity: 1;
}
.about-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.about-box{
  width: 48%;
  color: #fff;
}
.about-box > h2{
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.about-box > p{
  font-size: 17px;
  line-height: 1.8;
}
.about-box > img{
  width: 100%;
}
.about-box:first-child{
  transform: translate(100px);
  opacity: 0;
  transition: 1s;
}
.about-box:last-child{
  transform: translate(-100px);
  opacity: 0;
  transition: 1s;
}
.about-box.ani.act{
  transform: translateX(0);
  opacity: 1;
}


/* 대표메뉴 */

.op-bg{
  width: 100%;
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.menu-caption{
  width: 100%;
  max-width: 1240px;
  padding: 0 15px;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.menu-caption > .mc-box{
  width: 80%;
  color: #fff;
  transform: translateY(200px);
  transition: 1s;
  opacity: 0;
}
.menu-caption > .mc-box.ani.act{
  transform: translateY(0);
  opacity: 1;
}
.menu-caption > .mc-box > h2{
  font-size: 55px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.menu-caption > .mc-box > h2::after{
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 1.5;
}
.menu-caption > .mc-box > p{
  font-size: 35px;
  line-height: 1.8;
}
.op-bg:nth-child(odd) .menu-caption{
  justify-content: flex-end;
  text-align: right;
}
.op-bg:nth-child(odd) .menu-caption > .mc-box > h2::after{
  right: 0;
  left: auto;
}
.op-bg:nth-child(even) .menu-caption{
  justify-content: flex-start;
  text-align: left;
}
.op-bg:nth-child(even) .menu-caption > .mc-box > h2::after{
  left: 0;
}

/* 브랜드경쟁력 */
.brand-bg{
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: #333;
}
.brand-tit{
  width: 100%;
  color: #fff;
  padding: 0 3rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.brand-tit > img{
  width: 100%;
  max-width: 110px;
  margin-bottom: 1.5rem;
}
.brand-tit > h2{
  font-size: 28px;
  line-height: 1.5;
}
.brand-con{
  width: 100%;
  padding: 0 3rem;
}
.brand-cont{
  padding: 200px 0;
}
.bc-tit{
  color: #fff;
  margin-bottom: 2rem;
  text-align: right;
  transform: translateY(100px);
  opacity: 0;
  transition: 1s;
}
.bc-tit > h2{
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.bc-tit > p{
  font-size: 17px;
  line-height: 1.8;
}
.bc-tit.ani.act{
  transform: translateY(0);
  opacity: 1;
}
.bc-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.bc-box:first-child{
  width: 39%;
}
.bc-box:last-child{
  width: 60%;
}
.bc-box.up{
  transform: translateY(100px);
  opacity: 0;
  transition: 1s;
}
.bc-box.up.ani.act{
  transform: translateY(0);
  opacity: 1;
}
.bc-box img{
  width: 100%;
}
.bc-box > h2{
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #fff;
}
.bc-box > p{
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
}

.bc-box.left{
  transform: translateX(100px);
  opacity: 0;
  transition: 1s;
}
.bc-box.left.ani.act{
  transform: translateX(0);
  opacity: 1;
}
.bc-box.right{
  transform: translateX(-100px);
  opacity: 0;
  transition: 1s;
}
.bc-box.right.ani.act{
  transform: translateX(0);
  opacity: 1;
}

.b-line-wrap{
  width: 100%;
  text-align: center;
  padding: 100px 0;
}
.b-line{
  width: 2px;
  height: 500px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .2);
}
.b-line::after{
  content: "";
  width: 2px;
  height: 100%;
	position: absolute;
	top: -100%;
	left: 0;
	background-color: rgba(255, 255, 255, .5);
	animation: pgline 10s infinite ease-in-out;
}

.ct-con{
  width: 100%;
  padding: 0 0 100px 3rem;
  overflow: hidden;
}
.ct-tit{
  width: 100%;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
  padding: 0 15px;
}
.ct-tit > h2{
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.ct-tit > p{
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
}
.ct-img{
  margin-bottom: 1rem;
}
.ct-img img{
  width: 100%;
}
.ct-txt{
  color: #fff;
  font-size: 16px;
}


/* 성공포인트 */
.page-section-full{width: 100%; height: 100vh; background-repeat: no-repeat; background-position: center; background-size: cover; position: relative;}
.psf-tit{width: 100%; position: absolute; left: 0;  top: 50%; transform: translateY(-50%); text-align: center; padding: 0 15px;}
.psf-tit > h2{font-size: 40px; color: #fff; margin-bottom: 1rem; opacity: 0; transform: translateY(50px); transition: 1s;}
.psf-tit > h5{font-size: 18px; color: #fff; opacity: 0; transform: translateY(50px); transition: 1.5s; line-height: 1.8;}
.psf-tit > h2.ani.act{opacity: 1; transform: translateY(0);}
.psf-tit > h5.ani.act{opacity: 1; transform: translateY(0);}

.page-tit{text-align: center; font-size: 50px; font-weight: 400;}

/* mouse-s */
.mouse-s{position: absolute; bottom: 2rem; left: 0; width: 100%; text-align: center; z-index: 8; color: #fff;}
.mouse-s > p{font-size: 16px;}
.mouse-s > span{display: block; font-size: 18px; transition: all 1s ease-in-out; animation: mousey 1.5s infinite;}

@keyframes mousey{
	0%{opacity: 0; transform: translateY(0);}
	100%{opacity: 1; transform: translateY(10px);}
}

/* 프랜차이즈 */

.fr-cont{
  padding: 2rem 0;
}
.fr-cont:last-child{
  padding: 2rem 0 4rem;
}
.fr-tit{
  text-align: center;
  color: #fff;
  margin-bottom: 1.5rem;
}
.fr-tit > h3{
  font-size: 28px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 1s;
}
.fr-tit > h3.ani.act{
  transform: translateY(0);
  opacity: 1;
}
.fr-tit > h3::after{
  content: "";
  width: 100px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.fr-tit > p{
  font-size: 18px;
  line-height: 1.8;
  transform: translateY(50px);
  opacity: 0;
  transition: 1s;
}
.fr-tit > p.ani.act{
  transform: translateY(0);
  opacity: 1;
}
.step-wrap{width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap;}
.step-box{
  width: 32%;
  margin-bottom: 1.5rem;
  padding: 2rem;
  background-color: #dbaf88;
  position: relative;
  min-height: 240px;
  transition: all .5s;
	border-radius: 0 40px 0 40px;
  transform: translateY(50px);
  opacity: 0;
}
.step-box.ani.act{
  transform: translateY(0);
  opacity: 1;
}
.step-box:nth-child(1){
  transition: .8s opacity .3s, .8s transfrom .3s;
}
.step-box:nth-child(2){
  transition: .8s opacity .5s, .8s transfrom .5s;
}
.step-box:nth-child(3){
  transition: .8s opacity .7s, .8s transfrom .7s;
}
.step-box:nth-child(4){
  transition: .8s opacity .9s, .8s transfrom .9s;
}
.step-box:nth-child(5){
  transition: .8s opacity 1.1s, .8s transfrom 1.1s;
}
.step-box:nth-child(6){
  transition: .8s opacity 1.3s, .8s transfrom 1.3s;
}
.step-box > h5{
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
  transition: color .5s;
  font-family: "Nanum Myeongjo", serif !important;
}
.step-box > h3{
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all .5s;
  font-family: "Nanum Myeongjo", serif !important;
}
.step-box > p{
  font-size: 16px;
  margin-bottom: 0;
  transition: all .5s;
	color: #fff;
  font-family: "Nanum Myeongjo", serif !important;
}

.step-icon{
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  background-color: #bf926d;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all .5s;
  font-size: 20px;
}

.fr-table{width: 100%; transform: translateY(100px); opacity: 0; transition: 1s;}
.fr-table > table{width: 100%; border-spacing: 0;}
.fr-table > table > thead > tr > th{padding: 1rem; text-align: center; font-size: 18px; color: #fff; font-weight: 700; background-color: #bf926d; font-family: "Nanum Myeongjo", serif !important; border-bottom: 1px solid #ddd;}
.fr-table > table > thead > tr > th > span{font-size: 12px;}
.fr-table > table > thead > tr:first-child > th{border-radius: 15px 15px 0 0;}
.fr-table > table > tbody > tr > th{padding: 10px; text-align: center; font-weight: 600; color: #fff; background-color: #bf926d; font-size: 14px; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; font-family: "Nanum Myeongjo", serif !important;}
.fr-table > table > tbody > tr > td{padding: 10px; text-align: center; font-weight: 600; color: #666; background-color: #fff; font-size: 14px; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; font-family: "Nanum Myeongjo", serif !important;}
.fr-table > table > tbody > tr:last-child > td:first-child{border-radius: 0 0 0 15px;}
.fr-table > table > tbody > tr:last-child > td:last-child{border-radius: 0 0 15px 0;}

.fr-table > table > tbody > tr > td > span{display: inline-block; position: relative; color: #959595;}
.fr-table > table > tbody > tr > td > span::before{content: ""; width: 100%; height: 1px; background-color: #959595; position: absolute; top: 8px; left: 0;}

.fr-table > table > tbody > tr:last-child > td{font-size: 18px; padding: 1rem;}
.fr-table > table > tbody > tr:last-child > td > span::before{top: 10px;}

.fr-table.ani.act{transform: translateY(0); opacity: 1;}

.fr-bg{
  width: 100%;
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #333;
}

.fr-etc{padding-top: 1rem; transform: translateY(100px); opacity: 0; transition: 1s;}
.fr-etc > ul > li{font-size: 14px; color: #fff; margin-bottom: 5px; font-family: "Nanum Myeongjo", serif !important;}
.fr-etc > ul > li:last-child{margin-bottom: 0;}

.fr-etc.ani.act{transform: translateY(0); opacity: 1;}

.fr-con{width: 100%; padding: 0 20px; position: absolute; left: 0; top: 50%; transform: translateY(-50%); text-align: center; color: #fff;}
.fr-con > h2{font-size: 35px; margin-bottom: 1rem; font-family: "Nanum Myeongjo", serif !important;}
.fr-con > p{font-size: 18px; font-weight: 400; margin-bottom: 1.5rem; font-family: "Nanum Myeongjo", serif !important;}
.fr-con > a{display: inline-block; padding: 1rem 2rem; border-radius: 5px; background-color: #dbaf88; font-size: 16px; color: #fff; font-weight: 500; transition: .5s; font-family: "Nanum Myeongjo", serif !important;}
.fr-con > a:hover{border-radius: 0; background-color: #bf926d;}

/* media-query */

@media(min-width:992px){
  .pt-3{padding-top: 3rem;}
  .pt-5{padding-top: 5rem;}
  .d-lg-block{display: block;}
  .d-lg-none{display: none;}

  .page-section-full{background-attachment: fixed;}
  .op-bg{background-attachment: fixed;}
}

@media(max-width:991px){
  .d-block{display: block;}
  .d-none{display: none;}
  .page-tit{font-size: 30px;}
  .ver-line{height: 50px;}

  .about-tit{padding: 0 15px;}
  .about-tit > h2{font-size: 22px;}

  .page-wrap{height: calc(100vh + 100px);}
  .pg-line{height: 300px; bottom: -10px;}
  .about-cont > h3{font-size: 18px;}
  .about-cont > p{font-size: 14px;}
  .about-mq{
    width: 4500px;
    animation: 70s marquee infinite linear;
    -webkit-animation:70s marquee infinite linear;
    -moz-animation:70s marquee infinite linear;
    -o-animation:70s marquee infinite linear;
  }
  .about-logo{padding: 150px 0;}
  .about-logo img{max-width: 50px;}
  .about-wrap{flex-direction: column;}
  .about-box{width: 100%; margin-bottom: 1.5rem;}
  .about-box > h2{font-size: 18px;}
  .about-box > p{font-size: 14px;}

  .menu-caption > .mc-box{width: 100%;}
  .menu-caption > .mc-box > h2{font-size: 24px;}
  .menu-caption > .mc-box > p{font-size: 16px;}

  .brand-tit{padding: 0 15px;}
  .brand-tit > img{max-width: 90px;}
  .brand-tit > h2{font-size: 22px;}
  .brand-con{padding: 0 15px;}
  .brand-cont{padding: 100px 0;}
  .bc-tit > h2{font-size: 18px;}
  .bc-tit > p{font-size: 14px;}
  .bc-wrap{flex-direction: column;}
  .bc-box:first-child{width: 100%; margin-bottom: 1rem;}
  .bc-box:last-child{width: 100%;}
  .bc-box > h2{font-size: 18px;}
  .bc-box > p{font-size: 14px;}
  .b-line-wrap{padding: 50px 0;}
  .b-line{height: 300px;}
  .ct-tit > h2{font-size: 18px; margin-bottom: 1rem;}
  .ct-tit > p{font-size: 14px;}
  .ct-tit{margin-bottom: 1.5rem;}
  .ct-con{padding: 0 15px 100px 15px;}
  .ct-imt{margin-bottom: 10px;}
  .ct-txt{font-size: 14px;}

  .psf-tit > h2{font-size: 24px;}
  .psf-tit > h5{font-size: 14px; line-height: 1.6;}

  .fr-tit > h3{font-size: 18px;}
  .fr-tit > p{font-size: 14px;}
  .fr-tit > h3::after{width: 50px;}
  .step-box{width: 100%; padding: 1.5rem; margin-bottom: 1rem; min-height: auto; border-radius: 0 20px 0 20px;}
  .step-icon{width: 45px; height: 45px; font-size: 16px; line-height: 45px; right: 24px; top: 16px;}
  .step-box > h5{font-size: 14px; margin-bottom: 15px;}
  .step-box > h3{font-size: 18px; margin-bottom: 10px;}
  .step-box > p{font-size: 14px;}
  .fr-con > h2{font-size: 22px;}
  .fr-con > p{font-size: 16px;}
  .fr-con > a{font-size: 14px;}

}
@media(max-width:600px){
  .fr-table > table > thead > tr > th{font-size: 14px;}
  .fr-table > table > tbody > tr > td{font-size: 12px;}
}