@charset "utf-8";

/* 공통 */
*{box-sizing: border-box;}
.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%;
  padding: 0 120px;
  position: relative;
  z-index: 2;
}

.about-tp{
  width: 100%;
  min-height: 100vh;
  padding: 100px 0 50px;
  display: flex;
  align-items: center;
}
.at-img{
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 45px;
}
.at-img img{
  width: 100%;
}
.at-caption{
  width: 100%;
  text-align: center;
}
.at-caption > h5{
  font-size: 25px;
  color: #0a0a0a;
  font-weight: 100;
  line-height: 1.6;
}
.at-caption > h5 > b{
  font-weight: 700;
}

.about-bg{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about-bg::after{
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.90) 0%, #000 18.86%, rgba(59, 59, 59, 0.38) 54.81%, rgba(255, 255, 255, 0.00) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.ab-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 65px;
}
.ab-box{
  width: calc((100% - 60px) / 4);
  padding: 40px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(2px);
  text-align: center;
  color: #fff;
}
.ab-box > h5{
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 10px;
}
.ab-box > p{
  font-size: 16px;
  font-weight: 300;
}

.ps-con{
  width: 100%;
  padding: 50px 50px 100px;
}
.ps-tit{
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
.ps-tit > h3{
  font-size: 48px;
  color: #1e1e1e;
  font-weight: 100;
}
.ps-tit > h3 > span{
  display: inline-block;
  position: relative;
  font-weight: 800;
}
.ps-tit > h3 > span::after{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ea002c;
  position: absolute;
  top: 0;
  right: -15px;
}
.ps-img{
  width: 100%;
  display: flex;
  border-radius: 32px;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin-bottom: 70px;
}
.ps-img img{
  width: 100%;
}
.ps-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.ps-box{
  width: calc((100% - 75px) / 4);
}
.ps-card{
  width: 100%;
  border-radius: 16px;
  border: 2px solid #EAEAEA;
  background: #FAFAFA;
  transition: .3s;
  position: relative;
  overflow: hidden;
  padding: 25px;
}
.psc-tp{
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.psc-tp > span{
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #f2f2f2;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-align: center;
  transition: .3s;
  margin-right: 15px;
}
.psc-tit > span{
  display: inline-block;
  font-size: 11px;
  color: #fff;
  font-weight: 800;
  padding: 5px 10px 3px;
  border-radius: 30px;
  background-color: #ea002c;
  margin-bottom: 5px;
}
.psc-tit > h5{
  font-size: 23px;
  color: #1a1a1a;
  font-weight: 700;
}
.ps-card > ul > li{
  font-size: 16px;
  color: #444;
  font-weight: 400;
  margin-bottom: 15px;
}
.ps-card > ul > li:last-child{
  margin-bottom: 0;
}
.ps-card > ul > li > span{
  display: inline-block;
  color: #EE7623;
  margin-right: 8px;
}
.ps-card > ul > li > b{
  color: #EE7623;
}
.psc-bt{
  width: 100%;
  padding-top: 40px;
  text-align: right;
}
.psc-bt > h3{
  font-size: 90px;
  font-weight: 900;
  color: #EE7623;
  opacity: 0.1;
  line-height: 1;
}

.ps-card::after{
  content: "";
  width: 0%;
  height: 3px;
  background-color: #EE7623;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}
.ps-card:hover{
  box-shadow: 0 12px 30px rgba(238, 118, 35, 0.15);
  border-color: #EE7623;
  background: #fff;
}
.ps-card:hover::after{
  width: 100%;
}
.ps-card:hover .psc-tp > span{
  border-radius: 50%;
  background-color: #EE7623;
}

.pm-bg{
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}
.pm-tp{
  width: 400px;
  padding: 50px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(2.5px);
  margin: 0 auto;
  text-align: center;
}
.pm-bg::after{
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.pm-bg.right::after{
  background: linear-gradient(257deg, rgba(0, 0, 0, 0.70) 34.96%, rgba(255, 255, 255, 0.00) 100%);
}
.pm-bg.left::after{
  background: linear-gradient(74deg, rgba(0, 0, 0, 0.70) 27.96%, rgba(255, 255, 255, 0.00) 93.28%);
}
.pm-tp > h3{
  font-size: 60px;
  font-weight: 100;
  color: #ea002c;
  line-height: 1.3;
  letter-spacing: 5px;
}
.pm-tp > h3 > b{
  font-weight: 900;
}
.pm-tit{
  width: 100%;
  color: #fff;
}
.pm-tit > h3{
  font-size: 60px;
  font-weight: 100;
  margin-bottom: 1rem;
}
.pm-tit > h3 > b{
  font-weight: 800;
}
.pm-tit > p{
  font-size: 25px;
  font-weight: 100;
  line-height: 1.4;
}
.pm-tit > p > b{
  font-weight: 800;
}
.pm-bg.right .pm-tit{
  text-align: right;
}

.tab_tit{
  width: 100%;
  margin-bottom: 50px;
}
.tab_tit > ul{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.tab_tit > ul > li{
  flex: 1 1 auto;
  padding: 20px 5px;
  background-color: #eee;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 500;
  text-align: center;
  transition: .3s;
  cursor: pointer;
  margin-right: 2px;
}
.tab_tit > ul > li:last-child{
  margin-right: 0;
}
.tab_tit > ul > li.on{
  background-color: #ea002c;
  color: #fff;
}
.tab{
  display: none;
}
.tab:first-child{
  display: block;
}
.floor-img{
  display: flex;
  width: 100%;
  margin-bottom: 100px;
}
.floor-img img{
  width: 100%;
}
.floor-img:last-child{
  margin-bottom: 0;
}

.sp-bg{
  position: relative; 
}
.sp-vimeo::after{
  content: ""; 
  width: 100%; 
  height: 100%; 
  position: absolute; 
  top: 0; 
  left: 0; 
  z-index: 1;
}
.sp-vimeo{
  width: 100%;
  padding-top: 56.25%;
  position: fixed;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.sp-vimeo iframe {
  position: absolute; 
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

.sp-tp{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.sp-tp .ps-tit{
  margin-bottom: 0;
}
.sp-tp .ps-tit > h3{
  color: #fff;
}
.sp-tp .ps-tit > p{
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 1rem;
  font-weight: 100;
}
.sp-tp .ps-tit > p > b{
  font-weight: 700;
}

.sp-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}
.sp-box{
  width: 45%;
}
.sp-box.pt{
  padding-top: 300px;
}
.sp-cont{
  width: 100%;
  margin-bottom: 100px;
}
.sp-cont:last-child{
  margin-bottom: 0;
}
.sp-img{
  width: 100%;
  display: flex;
}
.sp-img img{
  width: 100%;
}
.sp-caption{
  color: #fff;
  width: 100%;
  padding-top: 1rem;
}
.sp-caption > h5{
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sp-caption > p{
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
.sp-con{
  width: 100%;
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* media-query */

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

  .ani.up.delay{
      transition: 1s opacity 0.2s, 1s transform 0.2s;
  }
  .ani.up.delay2{
      transition: 1s opacity 0.5s, 1s transform 0.5s;
  }
  .ani.up.delay3{
      transition: 1s opacity 0.8s, 1s transform 0.8s;
  }
  .ani.up.delay4{
      transition: 1s opacity 1.1s, 1s transform 1.1s;
  }

  .about-bg{
    background-attachment: fixed;
  }
  .pm-bg{
    background-attachment: fixed;
  }

}

@media(max-width:1600px){
  .page-con{
    padding: 0 60px;
  }
  
  .ps-con{
    padding: 50px 30px 100px;
  }

  .ab-wrap{
    gap: 15px;
  }
  .ab-box{
    width: calc((100% - 45px) / 4);
    padding: 30px;
  }
  .ab-box > h5{
    font-size: 20px;
  }

  .pm-tp{
    width: 350px;
    padding: 40px 15px;
  }
  .pm-tp > h3{
    font-size: 50px;
  }
  .pm-tit > h3{
    font-size: 50px;
  }
  .pm-tit > p{
    font-size: 22px;
  }

  .sp-con{
    max-width: 1230px;
  }
}

@media(max-width:1400px){
  .page-con{
    padding: 0 40px;
  }

  .ps-con{
    padding: 50px 20px 100px;
  }

  .ab-wrap{
    gap: 10px;
  }
  .ab-box{
    width: calc((100% - 30px) / 4);
    padding: 20px 5px;
  }

  .ps-tit > h3 > span::after{
    width: 8px;
    height: 8px;
    right: -10px;
  }
  .ps-tit > h3{
    font-size: 40px;
  }
  .ps-wrap{
    gap: 10px;
  }
  .ps-box{
    width: calc((100% - 30px) / 4);
  }
  .psc-tit > h5{
    font-size: 20px;
  }
  .ps-card > ul > li{
    font-size: 15px;
  }
  .ps-card > ul > li > span{
    margin-right: 5px;
  }
  .psc-bt > h3{
    font-size: 70px;
  }

  .pm-tp{
    width: 300px;
    padding: 30px 15px;
  }
  .pm-tp > h3{
    font-size: 40px;
    letter-spacing: 3px;
  }
  .pm-tit > h3{
    font-size: 40px;
  }
  .pm-tit > p{
    font-size: 20px;
  }

  .sp-con{
    max-width: 1030px;
  }
  .sp-box{
    width: 47%;
  }
}

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

  .page-con{
    padding: 0 15px;
  }

  .ps-con{
    padding: 50px 15px;
  }

  .at-img{
    margin: 0 auto 20px;
  }
  .at-caption > h5{
    font-size: 20px;
  }
  .about-bg{
    min-height: 100vh;
    padding: 50px 0;
  }
  .ab-wrap{
    padding-bottom: 0;
  }
  .ab-box{
    width: calc((100% - 10px) / 2);
    border-radius: 12px;
  }
  .ab-box > h5{
    font-size: 18px;
  }
  .ab-box > p{
    font-size: 14px;
  }

  .ps-tit > h3 > span::after{
    width: 6px;
    height: 6px;
    right: -8px;
  }
  .ps-tit{
    margin-bottom: 1.5rem;
  }
  .ps-tit > h3{
    font-size: 30px;
  }
  .ps-img{
    margin-bottom: 30px;
    border-radius: 16px;
  }
  .ps-box{
    width: calc((100% - 10px) / 2);
  }

  .pm-tp{
    width: 250px;
    padding: 30px 15px;
  }
  .pm-tp > h3{
    font-size: 36px;
    letter-spacing: 3px;
  }
  .pm-tit > h3{
    font-size: 34px;
  }
  .pm-tit > p{
    font-size: 18px;
  }

  .tab_tit > ul{
    flex-wrap: wrap;
    gap: 2px;
  }
  .tab_tit > ul > li{
    width: calc((100% - 2px) / 2);
    margin-right: 0;
    padding: 1rem 5px;
    font-size: 14px;
  }
  .tab_tit{
    margin-bottom: 30px;
  }

  .sp-vimeo{
    width: 100vw; 
    padding-top: 0; 
    height: 100vh;
    border-radius: 0;
  }
  .sp-vimeo iframe{
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%); 
    width: 177.777vh; 
    height: calc(100vh + 3px);
  }

  .floor-img{
    margin-bottom: 70px;
  }
}
@media(max-width:599px){
  .at-caption > h5{
    font-size: 18px;
  }
  .ab-box > h5{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .ab-box > p{
    font-size: 13px;
  }

  .ps-tit > h3{
    font-size: 22px;
  }
  .ps-img{
    border-radius: 12px;
  }
  .ps-box{
    width: 100%;
  }
  .psc-tit > h5{
    font-size: 18px;
  }
  .psc-bt{
    padding-top: 20px;
  }
  .psc-bt > h3{
    font-size: 50px;
  }
  .ps-tit > h3 > span::after{
    width: 5px;
    height: 5px;
  }

  .pm-tp{
    width: 220px;
    padding: 20px 15px;
  }
  .pm-tp > h3{
    font-size: 28px;
    letter-spacing: 2px;
  }
  .pm-tit > h3{
    font-size: 26px;
  }
  .pm-tit > p{
    font-size: 15px;
  }

  .sp-wrap{
    display: none;
  }
  .sp-wrap-mo{
    display: block;
  }
  .sp-cont{
    margin-bottom: 50px;
  }
  .sp-cont:last-child{
    margin-bottom: 100px;
  }
  .sp-caption > h5{
    font-size: 20px;
  }
  .sp-caption > p{
    font-size: 14px;
  }
  .sp-tp .ps-tit > p{
    font-size: 16px;
    line-height: 1.4;
  }

  .floor-img{
    margin-bottom: 50px;
  }
}

@media(min-width:600px){
  .sp-wrap-mo{
    display: none;
  }
}

/* animation */

.ani.up{
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

.ani.up.act{
    transform: translateY(0);
    opacity: 1;
}