@charset "utf-8";

.main {
}
.main-inner {
}
h4 {
  display: block;
  /* margin-block-start: 1.33em;
  margin-block-end: 1.33em; */
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
a {
  color: #7d7d7d;
  text-decoration: none;
  cursor: pointer;
}

/* .section1 
==================================================================================================*/
.section1 {
  padding: 300px 0 0;
}
.section1 h3 {
  position: relative;
  text-align: center;
  perspective: 1000px;
  /* display: flex; */
}
h3.main-title {
  font-size: 7vw;
  color: #000;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.035em;
  /* font-family: "Cormorant Garamond", "돋움", dotum, sans-serif; */
}
h3.main-title div {
  display: inline-block;
}
.section1 h3::after {
  content: "";
  position: absolute;
  /* h3 기준 */
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  display: block;
  transform: translateY(0);
  /* 애니메이션 시작점 */
  background: #fff;
}
.section1 h3::after {
  display: none;
}
.section1 h3 div {
  opacity: 1;
  transform: scale(1), translate(0, 0);
  white-space: nowrap;
}
.section1 h3 div span {
  display: inline-block;
  opacity: 0;
  filter: blur();
  will-change: transform, opacity;
}
.main-title .txt1 {
  transition: all 1.4s ease-in-out;
  transform-origin: center;
  display: inline-block;
}
.main-title .txt1 .show {
  transform: translateY(0px) scale(1);
  filter: blur();
  opacity: 1;
  animation: smokeEffect 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  display: inline-block;
}
.br {
  display: block;
}
.main-title .txt2 {
  transition: all 1.4s 0.7s ease-in-out;
}
.main-title .txt2 span {
  animation: smokeEffect 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
}
.main-title .txt3 {
  transition: all 1.4s 1s ease-in-out;
}
.main-title .txt3 span {
  animation: smokeEffect 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

.visual {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 100px 0 0;
}

.visual .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/main/sec1_bg.jpg") no-repeat center;
  background-size: cover;
  transition: all 0.2s;
  overflow: hidden;
  /* transform: scale(0.9, 0.9) !important;
  clip-path: inset(0px 37.5%) !important; */
}

.visual h4 {
  position: absolute;
  left: 2%;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  font-size: 64px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.visual h4 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.4s;
}

.visual h4.on span {
  opacity: 1;
  transform: translateY(0);
}

.visual h4.on span:nth-child(1) {
  transition-delay: 0.1s;
}

.visual h4.on span:nth-child(2) {
  transition-delay: 0.3s;
}

.visual h4.on span:nth-child(3) {
  transition-delay: 0.5s;
}

.visual h4 .txt1 {
  transition: all 1.4s;
}

.visual h4 .txt2 {
  transition: all 1.4s 0.3s;
}

.visual h4 .txt3 {
  transition: all 1.4s 0.6s;
}
@keyframes smokeEffect {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media screen and (width: 812px) {
  h3.main-title {
    font-size: 10vw;
    color: #000;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: -0.035em;
  }
  .section1 h3 div span {
    filter: blur(10px);
  }
  .br {
    display: none;
  }
  .visual h4 {
    font-size: 34px;
  }
}

/* .section1 end */

/* .section2 
==================================================================================================*/
.section2 {
  position: relative;
  padding: 150px 0 0;
}
.section2 .con-wrap {
  position: relative;
  padding: 150px 2%;
  z-index: 1;
}
.section2 .con-wrap .bg {
  /* gsap */
  position: absolute;
  right: 2%;
  top: 50px;
  width: 50%;
  padding: 20% 0;
  background: url(../../img/main/sec2_bg.jpg) no-repeat center;
  background-size: cover;
  border-radius: 15px;
  overflow: hidden;
  z-index: -1;
  border-radius: 15px;
}
.section2 .con-wrap .main-title {
  width: 70%;
  font-size: 6.5vw;
  line-height: 1em;
  /* z-index: 10; */
}
.section2 .con-wrap .main-title > div {
  display: inline-block;
}
.section2 .con-wrap .main-title p {
  letter-spacing: 0;
}
.section2 .con-wrap .main-title .txt1 {
}
.section2 .con-wrap .main-title .txt1 span {
}
.section2 .con-wrap .main-title .txt2 {
}
.section2 .con-wrap .main-title .txt3 {
}
.section2 .con-wrap p {
  margin: 70px 0 0 6%;
  font-family: "Pretendard";
  font-size: 20px;
  color: #333;
  line-height: 1.5em;
}

@media screen and (width: 812px) {
  .section2 {
    position: relative;
    padding: 60px 0 0;
  }
  .section2 .con-wrap .bg {
    position: relative;
    width: 100%;
    padding: 35% 0;
    margin-top: 40px;
  }
  .section2 .con-wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 150px 2% 0px;
  }
  .section2 .con-wrap .main-title {
    width: 100%;
    font-size: 10vw;
    order: 2;
  }
  .section2 .con-wrap p {
    font-family: "Pretendard";
    font-size: 18px;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
  }
  .section2 .con-wrap .main-title div {
    display: inline;
  }
}
/* .section2 end */

/* .section3 
=========================================================================================*/
.section3 {
  overflow: hidden;
  padding: 200px 0;
}
.section3 .inner-wrap {
  max-width: 1600px;
  width: 94%;
  margin: 0 auto;
}
.section3 .inner-wrap h4 {
  font-size: 64px;
  color: #000;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
}
.section3 .inner-wrap h4 span {
  display: inline-block;
}
.section3 .inner-wrap .main-gallery {
  position: relative;
  margin: 45px 0 0;
}

/* swiper 설정 */

.swiper {
  position: relative;
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: content-box;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex-shrink: 0;
}
.swiper-slide .title {
  padding: 35px 0 0;
  font-size: 30px;
  color: #000;
  text-align: center;
  font-weight: 700;
}
.slide-inner {
}
.slide-inner .bg {
  overflow: hidden;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  border-radius: 15px;
}
.slide-inner .bg img {
  max-width: 100%;
  /* filter: grayscale(); */
}
.slide-inner .bg:hover {
  filter: none;
  transition: all 0.4s ease;
}
.section3 .sec3-prev {
  position: absolute;
  width: 20px;
  height: 35px;
  background: url(../../img/main/sec3_prev.png) no-repeat;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
.section3 .sec3-next {
  position: absolute;
  width: 20px;
  height: 35px;
  background: url(../../img/main/sec3_next.png) no-repeat;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}

@media screen and (width: 812px) {
  .section3 {
    padding: 60px 0;
  }

  .section3 .inner-wrap {
    max-width: 1600px;
    width: 94%;
    margin: 0 auto;
  }
  .section3 .inner-wrap h4 {
    font-size: 34px;
    color: #000;
    display: block;
  }
  .section3 .inner-wrap h4 span {
    display: inline-block;
  }
  .section3 .inner-wrap .main-gallery {
    position: relative;
    margin-top: 20px;
  }
  .swiper-gallery {
    width: 100%;
  }
  .swiper-wrapper {
    display: flex;
  }
  .swiper-slide {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .swiper-slide .title {
    padding: 20px 0 0;
    font-size: 18px;
    color: #000;
    text-align: center;
    font-weight: 600;
  }
  .slide-inner .bg {
    overflow: hidden;
    filter: grayscale(100%);
    transform: all 0.4s ease;
    border-radius: 15px;
    height: 300px;
  }
  .slide-inner .bg div {
    width: 100%;
    height: 100%;
  }
  .slide-inner .bg div a {
    width: 100%;
    height: 100%;
    display: block;
  }
  .slide-inner .bg div a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section3 .sec3-prev {
    position: absolute;
    width: 16px;
    height: 29px;
    background: url(../../img/main/sec3_prev_wh.png) no-repeat;
    background-size: contain;
    left: 4%;
    top: 130px;
    cursor: pointer;
    z-index: 10;
  }
  .section3 .sec3-next {
    position: absolute;
    width: 16px;
    height: 29px;
    background: url(../../img/main/sec3_next_wh.png) no-repeat;
    background-size: contain;
    right: 4%;
    top: 130px;
    cursor: pointer;
    z-index: 10;
  }
}
/* .section3 end */

/* .section4
======================================================================================= */
.section4 {
  position: relative;
  height: 100vh;
}

.section4 .con-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* background-color: red; */
}
.section4 .con-wrap .txt-wrap {
  width: calc(100% - 61.98% - 10px);
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  padding: 0 50px 60px;
  background: #eee9e5;
  border-radius: 0 15px 15px 0;
}
.section4 .con-wrap .txt-wrap div {
}
.section4 .con-wrap .txt-wrap div h4 {
  margin-bottom: 35px;
  font-size: 64px;
  color: #000;
  font-weight: 600;
}
.section4 .con-wrap .txt-wrap div dl {
  padding: 50px 0;
  border-top: 1px solid #bebab7;
  border-bottom: 1px solid #bebab7;
}
.section4 .con-wrap .txt-wrap div dl dt {
  font-size: 30px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 600;
}
.section4 .con-wrap .txt-wrap div dl dd {
  margin-top: 25px;
  font-family: "Pretendard";
  font-size: 16px;
  color: #333;
  line-height: 1.75em;
}
.section4 .con-wrap .bg {
  position: relative;
  width: 61.98%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.section4 .con-wrap .bg .img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/main/sec4_bg.jpg") no-repeat;
  background-size: cover;
  z-index: 10;
}
.section4 .con-wrap .bg .img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/main/sec4_bg2.jpg") no-repeat;
  background-size: cover;
  z-index: 20;
}

@media screen and (max-width: 1161px) {
  .section4 {
    height: 100%;
  }
  .section4 .con-wrap {
    display: block;
    width: 100%;
    height: 100%;
  }
  .section4 .con-wrap .bg div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.15);
    transition: all 0.8s;
  }
  .section4 .con-wrap .txt-wrap {
    width: 100%;
    padding: 150px 50px 75px;
    margin-bottom: 30px;
  }
  .section4 .con-wrap .txt-wrap div dl {
    transition: all 0.8s;
  }
  .section4 .con-wrap .bg {
    width: 100%;
    height: 50vh;
  }
  .section4 .con-wrap .bg .img1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../../img/main/sec4_bg.jpg") no-repeat;
    background-size: cover;
    z-index: 10;
  }
  .section4 .con-wrap .bg .img2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../../img/main/sec4_bg2.jpg") no-repeat;
    background-size: cover;
    z-index: 20;
  }
}

@media screen and (max-width: 812px) {
  .section4 .con-wrap .txt-wrap {
    width: 100%;
    padding: 75px 2% 45px;
    margin-bottom: 30px;
  }
  .section4 .con-wrap .txt-wrap div h4 {
    transition: aoo 0.8s;
    margin-bottom: 35px;
    font-size: 34px;
    color: #000;
    font-weight: 600;
  }
  .section4 .con-wrap .txt-wrap div dl dt {
    font-size: 24px;
  }

  .section4 .con-wrap .bg div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .section4 .con-wrap .bg div:nth-of-type(2) {
    z-index: 20;
  }
  .section4 .con-wrap .bg .img1 {
    background: url("/img/main/sec4_bg_m.jpg") no-repeat;
    background-size: cover;
  }
  .section4 .con-wrap .bg .img2 {
    background: url("/img/main/sec4_bg2_m.jpg") no-repeat;
    background-size: cover;
  }
  .br {
    display: none;
  }
}
/* .section4 end */

/* .section5 
================================================================================================================*/
.section5 {
  padding: 100px 0;
}
.section5 .txt-bg {
  position: relative;
  padding-bottom: 8.5%;
  overflow: hidden;
}
.carousel-wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  font-size: 100px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  gap: 80px;
  animation: textScroll 77198ms linear 0 infinite normal forwards running;
  white-space: nowrap;
}
.carousel {
}

/* @keyframes textScroll {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, 0);
  } */

/* 반응형 */
@media screen and (max-width: 1399px) {
  .section5 {
    padding: 100px 0;
  }

  .carousel-wrap {
    font-size: 100px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 812px) {
  .carousel-wrap {
    font-size: 32px;
  }
}

/* .section5 end */

/* .section6 
================================================================================================================*/
.section6 {
  position: relative;
  height: 492px;
  padding: 0 2%;
  box-sizing: border-box;
  display: block;
  unicode-bidi: isolate;
}
.section6 .bg {
  position: absolute;
  top: 0;
  left: 2%;
  width: 96%;
  height: 100%;
  background: url(../../img/main/sec6_bg.jpg) no-repeat center;
  background-size: cover;
  border-radius: 15px;
  transform: scale(1);
  transition: all 1.2s;
}
.section6 .con-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  z-index: 10;
}
.section6 .con-wrap div {
}
.section6 .con-wrap div h4 {
  margin-top: 97px;
  font-size: 64px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  opacity: 0;
}
.section6 .con-wrap div h4 span {
  animation: smokeEffect 1s cubic-bezier(0.25 0.46 0.45 0.94) 0.4s forwards;
  display: inline-flex;
  align-items: center;
  margin: 105px 0 0;
}
.section6 .con-wrap div a {
  opacity: 0;
}
.section6 .con-wrap div a .arr {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: inline-block;
  box-sizing: border-box;
  background: url(../../img/main/more_arr.png) no-repeat center;
  border-radius: 50%;
}
.section6 .con-wrap div a .txt {
  margin-left: 15px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.section6.in-view .bg {
  transform: scale(1) ease forwards;
}
.section6.in-view .con-wrap div h4 {
  animation: smokeEffect 1s ease forwards;
}
.section6.in-view .con-wrap div a {
  animation: smokeEffect 1s ease 0.4s forwards;
}

@media screen and (max-width: 812px) {
  .section6 {
    height: 350px;
  }
  .section6 .bg {
    background: url("/img/main/sec6_bg_m.jpg") no-repeat center;
    background-size: cover;
  }
  .section6 .con-wrap div h4 {
    margin-top: 60px;
    font-size: 34px;
  }
  .section6 .con-wrap div h4 .br-mb {
    display: block;
  }
  .section6 .con-wrap div h4 span {
    margin-top: 0;
  }
  .section6 .con-wrap div a {
    display: inline-flex;
    align-items: center;
    margin: 60px 0 0;
  }
}
/* .section6 end */
