@charset "utf-8";
/*============================================================================================================
    공통
============================================================================================================*/
.main {
  position: relative;
  z-index: 1;
}
.main section {
  overflow: hidden;
  position: relative;
}
.main section .titBox {
}
.main section .titBox figure {
}

/* parallax__cont */
#parallax__cont {
}
.parallax__item {
  position: relative;
  width: 100%;
  text-align: center;
}

.main section .swiper_arr {
  display: flex;
}
.main section .swiper_arr > div i {
  padding: 16px;
  font-size: 22px;
  color: #fff;
}
.main section .swiper_arr .swiper-button-prev,
.main section .swiper_arr .swiper-button-next {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 11;
}
.main section .swiper_arr .swiper-button-prev {
  left: 30px;
}
.main section .swiper_arr .swiper-button-next {
  right: 30px;
}
.main section .swiper-button-prev:after,
.main section .swiper-button-next:after {
  display: none;
}
.main section .swiper_arr .swiper-button-prev:hover,
.main section .swiper_arr .swiper-button-next:hover {
  background: rgba(214, 179, 106, 0.18);
  border-color: rgba(214, 179, 106, 0.45);
}

@media all and (max-width: 1400px) {
}
@media all and (max-width: 1200px) {
  .main section .titBox figure {
    width: 80%;
    max-width: 600px;
    margin: auto;
  }
  .main section .titBox2 figure {
    width: 80%;
    max-width: 750px;
    margin: auto;
  }
}
@media all and (max-width: 1024px) {
  .main section .titBox figure {
    width: 100%;
  }
  .main section .titBox2 figure {
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .main section .swiper_arr .swiper-button-prev,
  .main section .swiper_arr .swiper-button-next {
    width: 35px;
    height: 35px;
  }
  .main section .swiper_arr .swiper-button-prev {
    left: 15px;
  }
  .main section .swiper_arr .swiper-button-next {
    right: 15px;
  }
  .main section .swiper_arr > div i {
    padding: 10px;
    font-size: 13px;
  }
}
@media all and (max-width: 500px) {
}

/*============================================================================================================
    SECTION01 
============================================================================================================*/

/* section01 */
.section01 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px;
}
.section01 .swiper-container {
  height: 100%;
}
.section01 .swiper-slide {
  position: relative;
  overflow: hidden;
}
.section01 .swiper-slide .bg {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  transform: scale(1.1);
  transition: all 5s ease-in-out;
  z-index: -1;
}
.section01 .swiper-slide .bg01 {
  background: url("/common/img/main/mainvisual.webp") no-repeat center / cover;
}
.section01 .swiper-slide .bg02 {
  background: url("/common/img/main/mainvisual_1.webp") no-repeat center / cover;
}

/* 추가: PC/모바일 공통 오버레이 */
.section01 .swiper-slide .bg .mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.74) 0%,
    rgba(8, 8, 8, 0.48) 45%,
    rgba(8, 8, 8, 0.28) 100%
  );
}

.section01 .swiper-slide .txtBox {
  position: absolute;
  max-width: 1440px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
  top: calc(50% - 40px);
  left: 50%;
  text-align: left;
  transform: translate(-50%, -50%);
  vertical-align: middle;
  transition: all 1s ease-in-out;
  z-index: 2;
}

.section01 .swiper-slide .txtBox h2 {
  opacity: 1;
  transition: all 1.5s ease;
}
.section01 .swiper-slide .txtBox h1 {
  margin: 22px 0 0;
  opacity: 1;
  transition: all 1.5s ease;
}

.section01 .swiper-slide .txtBox .main-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.3px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.36);
}

.section01 .swiper-slide .txtBox .main-title {
  font-size: 88px;
  font-weight: 800;
  color: #d6b36a;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.section01 .swiper-slide .txtBox .main-desc {
  margin: 28px 0 0;
  max-width: 780px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  word-break: keep-all;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.36);
}

.section01 .swiper-slide.swiper-slide-active .bg {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

/* 모션 */
.section01 .swiper-slide-active .txtBox h2 {
  animation-name: bounceInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.25s;
}

.section01 .swiper-slide-active .txtBox h1 {
  animation-name: bounceInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  60% {
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media all and (max-width: 1440px) {
  .section01 {
    padding: 0;
  }
  .section01 .swiper-slide .txtBox {
    text-align: center;
  }
  .section01 .swiper-pagination {
    padding: 0;
  }
}

@media all and (max-width: 1200px) {
  .section01 {
    min-height: 800px;
  }
  .section01 .swiper-slide .txtBox {
    width: 70%;
    max-width: 900px;
  }
  .section01 .swiper-slide .txtBox .main-title {
    font-size: 78px;
  }
  .section01 .swiper-slide .txtBox .main-desc {
    font-size: 18px;
  }
}

@media all and (max-width: 1024px) {
  .section01 {
  }
}

@media all and (max-width: 768px) {
  .section01 {
    height: 90vh;
    min-height: 460px;
  }
  .section01 .swiper-slide .txtBox {
    padding: 0 20px;
    top: calc(50% - 140px);
    width: 88%;
    max-width: 100%;
  }
  .section01 .swiper-slide .txtBox h1 {
    margin: 2vw 0 0;
  }
  .section01 .swiper-slide .txtBox .main-subtitle {
    font-size: 4vw;
  }
  .section01 .swiper-slide .txtBox .main-title {
    font-size: 11vw;
    letter-spacing: -0.25vw;
    line-height: 0.95;
  }
  .section01 .swiper-slide .txtBox .main-desc {
    margin: 4vw auto 0;
    font-size: 3.7vw;
    max-width: 92%;
    line-height: 1.65;
  }
  .section01 .swiper-pagination span.swiper-pagination-bullet {
    width: 15vw;
    margin: 0 1.5vw;
  }
  .section01 .swiper-slide .bg01 {
    background: url("/common/img/main/mainvisual.webp") no-repeat 57% / cover;
  }
  .section01 .swiper-slide .bg02 {
    background: url("/common/img/main/mainvisual_1.webp") no-repeat 57% / cover;
  }
  .section01 .swiper-slide .bg .mask {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.48) 0%,
      rgba(8, 8, 8, 0.42) 40%,
      rgba(8, 8, 8, 0.56) 100%
    );
  }
  .main .section01 .swiper_arr .swiper-button-prev,
  .main .section01 .swiper_arr .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}

@media all and (max-width: 500px) {
}

/*============================================================================================================
    SECTION02 브랜드 스토리
============================================================================================================*/
.section02 {
  padding: 180px 0 0;
  background: url("/common/img/main/sec02bg01.webp") no-repeat center / cover;
}
.section02 .txtBox {
  margin: 60px 0;
}
.section02 .txtBox p {
  font-size: 18px;
  color: #fff;
  margin: 25px 0;
  letter-spacing: -0.5px;
  line-height: 1.6;
}
.section02 .txtBox p span {
  color: #f8b62c;
  font-weight: 700;
}
.section02 .imgBox {
  position: relative;
}
.section02 .imgBox .moveAni {
  display: block;
  opacity: 1;
  position: absolute;
  left: 50%;
  bottom: 25%;
  margin: 0 0 0 -250px;
  z-index: 1;
  border-radius: 50%;
  transition: all 0.5s;
}
.section02 .imgBox .moveAni figure {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  background: #000;
  border-radius: 50%;
  border: 5px solid #e8ab29;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #957057;
}
.section02 .imgBox .moveAni .bg {
  animation: deg360 20s linear 0s infinite;
  -webkit-animation: deg360 20s linear 0s infinite;
}

@keyframes deg360 {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@media all and (max-width: 1440px) {
}
@media all and (max-width: 1200px) {
  .section02 {
    padding: 140px 0 0;
  }
  .section02 .txtBox {
    margin: 40px 0;
  }
  .section02 .txtBox p {
    font-size: 17px;
    margin: 20px 0;
  }
}
@media all and (max-width: 1024px) {
  .section02 {
    padding: 120px 0 0;
  }
}
@media all and (max-width: 768px) {
  .section02 {
    padding: 23vw 0 0;
    background: url("/common/img/main/sec02bg01.webp") no-repeat right / cover;
  }
  .section02 .txtBox {
    margin: 7vw 0;
  }
  .section02 .txtBox p {
    font-size: 3.5vw;
    margin: 5vw 0;
  }
  .section02 .imgBox .moveAni {
    margin: 0 0 0 -40vw;
  }
  .section02 .imgBox .moveAni .bg {
    width: 40vw;
  }
  .section02 .imgBox .moveAni figure {
    width: 30vw;
    height: 30vw;
    max-width: 190px;
    max-height: 190px;
    padding: 5vw;
    border: 3px solid #e8ab29;
  }
}
@media all and (max-width: 500px) {
}

/* 공통 텍스트 타이틀 */
.textTit p {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #d0112c;
  letter-spacing: 2px;
}

.textTit h2 {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  letter-spacing: -1px;
}

@media all and (max-width: 768px) {
  .textTit p {
    margin: 0 0 2vw;
    font-size: 3vw;
    letter-spacing: 1px;
  }

  .textTit h2 {
    font-size: 7vw;
  }
}

/*============================================================================================================
    SECTION03 브랜드 강점
============================================================================================================*/
/* 강점 */
.section03 .article31 {
  position: relative;
  padding: 140px 0 220px;
  background: url("/common/img/main/sec03bg01.webp") no-repeat center / cover;
}
.section03 .article31 .conBox {
  margin: 80px 0 0;
}
.section03 .article31 .conBox ul {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.section03 .article31 .conBox ul li {
  position: relative;
  width: calc(100% / 3 - 30px);
  margin: 15px;
}
.section03 .article31 .conBox ul li figure {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.section03 .article31 .conBox ul li figure img {
  transform: scale(1);
  transition: all 0.5s ease-out;
  width: 100%;
}
.section03 .article31 .conBox ul li:hover figure img {
  transform: scale(1.15);
}
.section03 .article31 .conBox ul li .txtBox {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 0 0 30px;
  text-align: left;
  color: #fff;
}
.section03 .article31 .conBox ul li .txtBox span {
  display: block;
  width: 90px;
  height: 26px;
  font-size: 16px;
  background: #e32c21;
  text-align: center;
  line-height: 29px;
  border-radius: 30px;
}
.section03 .article31 .conBox ul li .txtBox h2 {
  margin: 20px 0 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.5px;
}
.section03 .article31 .conBox ul li .txtBox h2 em {
  font-style: italic;
  font-weight: 600;
}
.section03 .article31 .conBox ul li .txtBox p {
  font-size: 18px;
}

.section03 .article31 .txtLineBox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #d0112c;
}
.section03 .article31 .txtLineBox .txtLine {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  left: 0;
  white-space: nowrap;
  animation: mrqueev1 60s linear infinite;
  line-height: 50px;
}
.section03 .article31 .txtLineBox .txtLine.t2 {
  animation-delay: -30s;
}
.section03 .article31 .txtLineBox .txtLine span {
  display: inline-block;
  box-sizing: border-box;
  margin-right: 45px;
}
@keyframes mrqueev1 {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@media all and (max-width: 1440px) {
  .section03 .article31 {
    padding: 120px 0 180px;
  }
}
@media all and (max-width: 1200px) {
  .section03 .article31 {
    padding: 100px 0 160px;
  }
  .section03 .article31 .conBox {
    margin: 60px 0 0;
  }
  .section03 .article31 .conBox ul li {
    width: calc(100% / 2 - 30px);
  }
  .section03 .article31 .conBox ul li .txtBox p {
    font-size: 17px;
  }
}
@media all and (max-width: 1024px) {
  .section03 .article31 .conBox {
    margin: 40px 0 0;
  }
  .section03 .article31 .conBox ul li .txtBox h2 {
    font-size: 22px;
  }
  .section03 .article31 .conBox ul li .txtBox p {
  }
}
@media all and (max-width: 768px) {
  .section03 .article31 {
    padding: 16vw 0 23vw;
  }
  .section03 .article31 .conBox {
    margin: 7vw auto 0;
    max-width: 650px;
  }
  .section03 .article31 .conBox ul {
    margin: 0;
  }
  .section03 .article31 .conBox ul li {
    width: 100%;
    margin: 0 0 3vw;
  }
  .section03 .article31 .conBox ul li:last-child {
    margin-bottom: 0;
  }
  .section03 .article31 .conBox ul li .txtBox {
    padding: 5vw 0 0 5vw;
  }
  .section03 .article31 .conBox ul li .txtBox span {
    width: 17vw;
    height: 6vw;
    line-height: 7vw;
    font-size: 3.4vw;
  }
  .section03 .article31 .conBox ul li .txtBox h2 {
    font-size: 4.3vw;
    margin: 3vw 0 1.5vw;
  }
  .section03 .article31 .conBox ul li .txtBox p {
    font-size: 3.4vw;
  }
  .section03 .article31 .txtLineBox {
    height: 5vw;
  }
  .section03 .article31 .txtLineBox .txtLine {
    animation: mrqueev1 30s linear infinite;
    line-height: 5vw;
  }
  .section03 .article31 .txtLineBox .txtLine.t2 {
    animation-delay: -15s;
  }
  .section03 .article31 .txtLineBox .txtLine span {
    margin-right: 7vw;
  }
}
@media all and (max-width: 500px) {
}
/*============================================================================================================
    SECTION04 창업 경쟁력
============================================================================================================*/
.section03 .article32 {
  position: relative;
  padding: 140px 0 160px;
  background: url("/common/img/main/sec04bg01.webp") no-repeat center / cover;
}
.section03 .article32 .item01 {
  position: absolute;
  left: -3%;
  top: 200px;
}
.section03 .article32 .item02 {
  position: absolute;
  right: 0;
  bottom: 50px;
}

.section03 .article32 .conBox {
  position: relative;
  padding: 100px 0;
  margin: 15px 0 50px;
}
.section03 .article32 .conBox:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #111;
  left: 50%;
  top: 0;
}
.section03 .article32 .conBox ul li .txtBox {
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px 0 0 40px;
  text-align: left;
  color: #fff;
}
.section03 .article32 .conBox ul li .txtBox span {
  font-size: 18px;
  color: #d0112c;
  font-weight: 800;
}
.section03 .article32 .conBox ul li .txtBox p {
  margin: 5px 0 3px;
  font-size: 18px;
}
.section03 .article32 .conBox ul li .txtBox h2 {
  font-weight: 800;
  font-size: 36px;
}
.section03 .article32 .conBox ul li .txtBox h2 em {
  font-style: italic;
  font-weight: 800;
}
.section03 .article32 .conBox ul li {
  position: relative;
  overflow: hidden;
}
.section03 .article32 .conBox ul li figure img {
  transform: scale(1);
  transition: all 0.5s ease-out;
  width: 100%;
}
.section03 .article32 .conBox ul li:hover figure img {
  transform: scale(1.15);
}

.section03 .article32 .swiper_arr .swiper-button-prev {
  left: 0;
}
.section03 .article32 .swiper_arr .swiper-button-next {
  right: 0;
}
.section03 .article32 .imgBox span {
}
.section03 .article32 .imgBox figure {
  display: inline-block;
  position: relative;
}
.section03 .article32 .imgBox span {
  content: "";
  position: absolute;
  width: 77px;
  height: 53px;
  top: -50px;
  right: -23px;
  background: url("/common/img/main/sec04img06.webp") no-repeat;
}

@media all and (max-width: 1440px) {
  .section03 .article32 {
    padding: 120px 0 140px;
  }
  .section03 .article32 .conBox {
    padding: 70px 0;
  }
}
@media all and (max-width: 1200px) {
  .section03 .article32 {
    padding: 100px 0 140px;
  }
  .section03 .article32 .conBox {
    padding: 60px 0;
  }
  .section03 .article32 .conBox ul li .txtBox {
    padding: 30px 0 0 30px;
  }
  .section03 .article32 .conBox ul li .txtBox p {
    font-size: 17px;
  }
  .section03 .article32 .conBox ul li .txtBox h2 {
    font-size: 30px;
  }
  .section03 .article32 .conBox ul li .txtBox span {
    font-size: 17px;
  }
}
@media all and (max-width: 1024px) {
  .section03 .article32 .item01 {
    left: -10%;
    top: 150px;
  }
  .section03 .article32 .item01 img {
    width: 80%;
  }
  .section03 .article32 .conBox {
    padding: 50px 0;
  }
  .section03 .article32 .conBox ul li .txtBox h2 {
    font-size: 26px;
  }
  .section03 .article32 .conBox ul li .txtBox span {
    font-size: 16px;
  }
  .section03 .article32 .imgBox figure {
    max-width: 500px;
    margin: auto;
  }
  .section03 .article32 .item02 {
    right: -30%;
  }
  .section03 .article32 .item02 figure {
    width: 80%;
  }
}
@media all and (max-width: 768px) {
  .section03 .article32 {
    padding: 23vw 0;
  }
  .section03 .article32 .conBox {
    padding: 7vw 0;
    margin: 3vw 0 7vw;
  }
  .section03 .article32 .item01 {
    left: -30%;
    top: 100px;
  }
  .section03 .article32 .item01 img {
    width: 60%;
  }
  .section03 .article32 .item02 {
    bottom: 0;
    right: -25%;
    opacity: 0.75;
  }
  .section03 .article32 .item02 img {
    width: 70vw;
  }
  .section03 .article32 .item02 figure {
    width: 100%;
  }
  .section03 .article32 .imgBox figure {
    width: 80%;
  }
  .section03 .article32 .imgBox span {
    width: 34px;
    height: 30px;
    background-size: cover;
    top: -27px;
    right: -9px;
  }
  .section03 .article32 .conBox ul li .txtBox {
    padding: 5vw 0 0 5vw;
  }
  .section03 .article32 .conBox ul li .txtBox span {
    font-size: 3.4vw;
  }
  .section03 .article32 .conBox ul li .txtBox p {
    font-size: 3.4vw;
    margin: 0.5vw 0;
  }
  .section03 .article32 .conBox ul li .txtBox h2 {
    font-size: 6vw;
  }
}
@media all and (max-width: 500px) {
}

/* 인테리어 */
.section03 .article33 {
  position: relative;
  padding: 140px 0;
  background: url("/common/img/main/sec05bg01.webp") no-repeat top / cover;
}
.section03 .article33 .conBox {
  margin: 80px 0 0;
}
.section03 .article33 .conBox ul li figure img {
  border: 1px solid #d0112c;
}
.section03 .article33 .swiper_arr .swiper-button-prev {
  left: 25.4%;
}
.section03 .article33 .swiper_arr .swiper-button-next {
  right: 25.4%;
}

/* 수익률 */
.section03 .article34 {
  position: relative;
  padding: 140px 0;
  background: url("/common/img/main/sec06bg01.webp") no-repeat top / cover;
}
.section03 .article34 .conBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 80px 0 0;
}

.section03 .article34 .conBox .leftBox {
  width: 50%;
}
.section03 .article34 .conBox .leftBox p {
  margin: 30px 0 0;
  font-size: 15px;
  text-align: left;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}
.section03 .article34 .conBox .leftBox figure {
  position: relative;
}
.section03 .article34 .conBox .leftBox .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: blink-effect 1s ease-in-out infinite alternate;
}
@keyframes blink-effect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes price_eff {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(2);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

@media all and (max-width: 1440px) {
  .section03 .article33 {
    padding: 120px 0;
  }
  .section03 .article33 .conBox {
    margin: 70px 0 0;
  }
  .section03 .article33 .swiper_arr .swiper-button-prev {
    left: 20px;
  }
  .section03 .article33 .swiper_arr .swiper-button-next {
    right: 20px;
  }

  .section03 .article34 {
    padding: 120px 0;
  }
  .section03 .article34 .conBox .leftBox {
    width: 47.5%;
  }
  .section03 .article34 .conBox .rightBox {
    width: 47.5%;
  }
  .section03 .article34 .conBox .leftBox p {
    font-size: 14px;
  }
}
@media all and (max-width: 1200px) {
  .section03 .article33 {
    padding: 100px 0;
  }
  .section03 .article33 .conBox {
    margin: 60px 0 0;
  }

  .section03 .article34 {
    padding: 100px 0;
  }
  .section03 .article34 .conBox .leftBox p {
    margin: 20px 0 0;
    font-size: 13px;
  }
  .section03 .article34 .conBox {
    margin: 60px 0 0;
  }
}
@media all and (max-width: 1024px) {
  .section03 .article33 .conBox {
    margin: 50px 0 0;
  }

  .section03 .article34 .conBox {
    margin: 50px 0 0;
  }
  .section03 .article34 .conBox .leftBox {
    width: 100%;
  }
  .section03 .article34 .conBox .rightBox {
    width: 100%;
    margin: 50px 0 0;
  }
  .section03 .article34 .conBox .leftBox p {
    margin: 10px 0 0;
    text-align: center;
  }
}
@media all and (max-width: 768px) {
  .section03 .article33 {
    padding: 23vw 0;
  }
  .section03 .article33 .conBox {
    margin: 7vw 0 0;
  }
  .section03 .article33 .swiper_arr .swiper-button-prev {
    left: 15px;
  }
  .section03 .article33 .swiper_arr .swiper-button-next {
    right: 15px;
  }

  .section03 .article34 {
    padding: 23vw 0;
  }
  .section03 .article34 .conBox {
    margin: 7vw 0 0;
  }
  .section03 .article34 .conBox .rightBox {
    margin: 7vw 0 0;
  }
  .section03 .article34 .conBox .leftBox p {
    margin: 3vw 0 0;
    font-size: 3.2vw;
    color: #777;
  }
}
@media all and (max-width: 500px) {
}

.section03 .article33 .swiper-container {
  overflow: hidden;
}

.section03 .article33 .conBox ul li {
  position: relative;
  overflow: hidden;
}

.section03 .article33 .conBox ul li .txtBox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 34px 36px;
  text-align: left;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.section03 .article33 .conBox ul li .txtBox span {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #f8b62c;
}

.section03 .article33 .conBox ul li .txtBox h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.section03 .article33 .conBox ul li .txtBox p {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.section03 .article34 .conBox .rightBox {
  width: 45%;
  display: flex;
  align-items: stretch;
}

.section03 .article34 .conBox .rightBox .priceCard {
  width: 100%;
  padding: 40px;
  background: #fff;
  border: 1px solid rgba(208, 17, 44, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.section03 .article34 .conBox .rightBox .priceCard ul li {
  padding: 0 0 22px;
  margin: 0 0 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.section03 .article34 .conBox .rightBox .priceCard ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.section03 .article34 .conBox .rightBox .priceCard ul li strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #111;
}

.section03 .article34 .conBox .rightBox .priceCard ul li span {
  display: block;
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: #666;
}

@media all and (max-width: 1200px) {
  .section03 .article33 .conBox ul li .txtBox {
    padding: 28px 30px;
  }

  .section03 .article33 .conBox ul li .txtBox h2 {
    font-size: 24px;
  }

  .section03 .article33 .conBox ul li .txtBox p {
    font-size: 16px;
  }

  .section03 .article34 .conBox .rightBox .priceCard {
    padding: 32px;
  }

  .section03 .article34 .conBox .rightBox .priceCard ul li strong {
    font-size: 22px;
  }

  .section03 .article34 .conBox .rightBox .priceCard ul li span {
    font-size: 16px;
  }
}

@media all and (max-width: 1024px) {
  .section03 .article34 .conBox .rightBox .priceCard {
    margin: 0 auto;
  }
}

@media all and (max-width: 768px) {
  .section03 .article33 .conBox ul li .txtBox {
    padding: 5vw;
  }

  .section03 .article33 .conBox ul li .txtBox span {
    margin: 0 0 1.5vw;
    font-size: 3vw;
  }

  .section03 .article33 .conBox ul li .txtBox h2 {
    font-size: 5vw;
  }

  .section03 .article33 .conBox ul li .txtBox p {
    margin: 2vw 0 0;
    font-size: 3.3vw;
  }

  .section03 .article34 .conBox .rightBox .priceCard {
    padding: 5vw;
  }

  .section03 .article34 .conBox .rightBox .priceCard ul li {
    padding: 0 0 4vw;
    margin: 0 0 4vw;
  }

  .section03 .article34 .conBox .rightBox .priceCard ul li strong {
    font-size: 4.4vw;
  }

  .section03 .article34 .conBox .rightBox .priceCard ul li span {
    margin: 1.5vw 0 0;
    font-size: 3.3vw;
  }
}

/*============================================================================================================
    SECTION05 대표메뉴
============================================================================================================*/
.section04 {
  padding: 140px 0;
  background: url("/common/img/main/sec05bg01.webp") no-repeat bottom center /
    cover;
}
.section04 .item01 {
  position: absolute;
  left: 50%;
  top: 15%;
  margin: 0 0 0 250px;
}
.section04 .conBox {
  margin: 80px 0 0;
}
.section04 .conBox .swiper_arr .swiper-button-next {
  right: 13%;
}
.section04 .conBox .swiper_arr .swiper-button-prev {
  left: 13%;
}

@media all and (max-width: 1440px) {
  .section04 {
    padding: 120px 0;
  }
  .section04 .conBox {
    margin: 70px 0 0;
  }
  .section04 .conBox .swiper_arr .swiper-button-prev {
    left: 20px;
  }
  .section04 .conBox .swiper_arr .swiper-button-next {
    right: 20px;
  }
}
@media all and (max-width: 1200px) {
  .section04 {
    padding: 100px 0;
  }
  .section04 .conBox {
    margin: 60px 0 0;
  }
}
@media all and (max-width: 1024px) {
  .section04 .conBox {
    margin: 50px 0 0;
  }
  .section04 .conBox ul li figure.only_pc {
    display: none;
  }
  .section04 .conBox ul li figure.only_m {
    display: block;
  }
}
@media all and (max-width: 768px) {
  .section04 {
    padding: 23vw 0;
  }
  .section04 .conBox {
    margin: 7vw 0 0;
  }
  .section04 .conBox .swiper_arr .swiper-button-prev {
    left: 15px;
  }
  .section04 .conBox .swiper_arr .swiper-button-next {
    right: 15px;
  }
}
@media all and (max-width: 500px) {
}

/*============================================================================================================
    SECTION06 창업안내
============================================================================================================*/
.section05 {
  background: #D1D1CF;
}
.section05 .article51 {
  padding: 140px 0;
  background: url("/common/img/main/sec06bg01.webp") no-repeat top center /
    cover;
}
.section05 .article51 .conBox {
  margin: 80px 0 0;
}
.section05 .article51 .conBox ul {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.section05 .article51 .conBox ul li {
  position: relative;
  width: calc(100% / 4 - 30px);
  margin: 15px;
  text-align: left;
  background: #fff;
}
.section05 .article51 .conBox ul li .txtBox {
  padding: 30px 30px 50px;
}
.section05 .article51 .conBox ul li .txtBox span {
  display: inline-block;
  width: 95px;
  height: 25px;
  line-height: 27px;
  background: #e32c21;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.section05 .article51 .conBox ul li .txtBox h2 {
  margin: 12px 0 10px;
  font-size: 24px;
  font-weight: 700;
}
.section05 .article51 .conBox ul li .txtBox .txt {
}
.section05 .article51 .conBox ul li .txtBox .txt p {
  position: relative;
  color: #666;
  margin: 0 0 7px;
  padding: 0 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}
.section05 .article51 .conBox ul li .txtBox .txt p:after {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.section05 .article51 .conBox ul li .txtBox .txt p:last-child {
  margin-bottom: 0;
}

@media all and (max-width: 1440px) {
  .section05 .article51 {
    padding: 120px 0;
  }
  .section05 .article51 .conBox {
    margin: 70px 0 0;
  }
  .section05 .article51 .conBox .swiper_arr .swiper-button-prev {
    left: 20px;
  }
  .section05 .article51 .conBox .swiper_arr .swiper-button-next {
    right: 20px;
  }
  .section05 .article51 .conBox ul {
    margin: -10px;
  }
  .section05 .article51 .conBox ul li {
    width: calc(100% / 3 - 20px);
    margin: 10px;
  }
}
@media all and (max-width: 1200px) {
  .section05 .article51 {
    padding: 100px 0;
  }
  .section05 .article51 .conBox {
    margin: 60px 0 0;
  }
  .section03 .article51 .conBox ul li .txtBox h2 {
    font-size: 22px;
  }
  .section05 .article51 .conBox ul li .txtBox .txt p {
    font-size: 17px;
  }
  .section05 .article51 .conBox ul li .txtBox span {
    width: 88px;
    font-size: 15px;
  }
}
@media all and (max-width: 1024px) {
  .section05 .article51 .conBox {
    margin: 50px 0 0;
  }
  .section05 .article51 .conBox ul li {
    width: calc(100% / 2 - 30px);
  }
  .section05 .article51 .conBox ul li .txtBox .txt p {
    font-size: 16px;
  }
  .section05 .article51 .conBox ul li .txtBox span {
    width: 80px;
    font-size: 14px;
  }
}
@media all and (max-width: 768px) {
  .section05 .article51 {
    padding: 23vw 0;
    background: url("/common/img/main/sec08bg01.webp") no-repeat top center/
      contain #000;
  }
  .section05 .article51 .conBox {
    margin: 7vw auto 0;
    max-width: 650px;
  }
  .section03 .article51 .conBox ul li .txtBox h2 {
    font-size: 4.3vw;
  }
  .section05 .article51 .conBox ul {
    margin: 0;
  }
  .section05 .article51 .conBox ul li {
    width: 100%;
    margin: 0 0 3vw;
  }
  .section05 .article51 .conBox ul li:last-child {
    margin: 0;
  }
  .section05 .article51 .conBox ul li .txtBox {
    padding: 5vw 5vw 7vw;
  }
  .section05 .article51 .conBox ul li .txtBox span {
    width: 18vw;
    height: 6vw;
    line-height: 7vw;
    font-size: 3.2vw;
  }
  .section05 .article51 .conBox ul li .txtBox h2 {
    margin: 2vw 0;
    font-size: 5vw;
  }
  .section05 .article51 .conBox ul li .txtBox .txt p {
    font-size: 3.4vw;
    margin: 0 0 1vw;
  }
}
@media all and (max-width: 500px) {
}

/*배너 */
.section05 .article52 {
  margin: 80px auto 0;
  max-width: 1800px;
}
.section05 .article52 .imgBox {
  position: relative;
}
.section05 .article52 .imgBox .mask {
  position: relative;
  display: block;
  padding: 180px 0;
  background: url("/common/img/main/sec06bg01.webp") no-repeat center fixed;
  background-size: cover;
  transition: all 1s ease;
  filter: grayscale(1);
}
.section05 .article52 .imgBox .mask:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.section05 .article52 .imgBox > figure {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section05 .article52 .imgBox .mask.go {
  filter: grayscale(0);
  transition: all 0.5s;
}
@media all and (max-width: 1440px) {
  .section05 .article52 {
    margin: 50px auto 0;
    padding: 0 50px;
  }
  .section05 .article52 .imgBox .mask {
    padding: 140px 0;
  }
  .section05 .article52 .imgBox > figure img {
    width: 80%;
    max-width: 750px;
    margin: auto;
  }
}
@media all and (max-width: 1200px) {
  .section05 .article52 {
    margin: 30px auto 0;
    padding: 0 30px;
  }
  .section05 .article52 .imgBox .mask {
    padding: 130px 0;
  }
}
@media all and (max-width: 1024px) {
  .section05 .article52 .imgBox .mask {
    padding: 120px 0;
    background: url("/common/img/main/sec09bg011.webp") no-repeat center / cover;
  }
}
@media all and (max-width: 768px) {
  .section05 .article52 {
    margin: 0;
    padding: 0;
  }
  .section05 .article52 .imgBox .mask {
    padding: 18vw 0;
  }
  .section05 .article52 .imgBox > figure img {
    width: 90%;
  }
  .section05 .article52 .imgBox .mask {
  }
}
@media all and (max-width: 500px) {
}

/*가맹비용*/
.section05 .article53 {
  padding: 140px 0;
}
.section05 .article53 .conBox {
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  margin: 60px 0 0;
  min-height: 400px;
  background: #fff;
}
.section05 .article53 .conBox h4 {
  margin: 0 0 15px;
  font-weight: 500;
  text-align: right;
  font-size: 15px;
}
.section05 .article53 .conBox .txtBox {
  margin: 15px 0 0;
  text-align: left;
}
.section05 .article53 .conBox .txtBox p {
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
}
.section05 .article53 .conBox .txtBox p:last-child {
  margin-bottom: 0;
}
.section05 .article53 .conBox .total span {
  animation: blink-effect 1s ease-in-out infinite alternate;
}

.section05 .article53 .conBox:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.section05 .article53 .conBox .newCon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.section05 .article53 .conBox .newCon figure img {
}

.section05 .article53 .conBox .bg-content-blur {
  filter: blur(8px);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}

.section05 .article53 .conBox .newCon-center {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section05 .article53 .conBox .newCon-center figure {
  width: 100%;
  max-width: 500px;
  margin: 0;
  text-align: center;
}

.section05 .article53 .conBox .newCon-center img {
  width: 90%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.section05 .article53 .conBox .newCon-center img:hover {
  transform: scale(1.05);
}

@media all and (max-width: 1440px) {
  .section05 .article53 {
    padding: 120px 0;
  }
  .section05 .article53 .conBox {
    margin: 60px 0 0;
  }
}
@media all and (max-width: 1200px) {
  .section05 .article53 {
    padding: 100px 0;
  }
  .section05 .article53 .conBox {
    margin: 50px 0 0;
  }
  .section05 .article53 .conBox h4 {
    font-size: 14px;
  }
  .section05 .article53 .conBox .txtBox p {
    font-size: 14px;
  }
}
@media all and (max-width: 1024px) {
  .section05 .article53 .conBox {
    margin: 40px 0 0;
  }
  .section05 .article53 .conBox h4 {
    font-size: 13px;
  }
  .section05 .article53 .conBox .txtBox p {
    font-size: 13px;
  }
}
@media all and (max-width: 768px) {
  .section05 .article53 {
    padding: 23vw 0;
  }
  .section05 .article53 .conBox {
    margin: 7vw 0 0;
    padding: 20px 10px;
    min-height: 500px;
  }
  .section05 .article53 .conBox h4 {
    margin: 0 0 3vw;
    font-size: 3.2vw;
  }
  .section05 .article53 .conBox .txtBox p {
    margin: 0 0 2vw;
    font-size: 3.2vw;
  }
  .section05 .article53 .conBox .newCon-center figure {
    max-width: 80%;
  }
  .section05 .article53 .conBox .newCon-center img {
    width: 90%;
  }
}
@media all and (max-width: 500px) {
}

/*============================================================================================================
    SECTION07 매장안내
============================================================================================================*/
.section06 {
  padding: 140px 0;
  background: url("/common/img/main/sec7bg01.webp") no-repeat bottom center /
    cover;
}
.section06 .conBox {
  position: relative;
  margin: 80px 0 0;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.section06 .conBox .moveAni {
  display: block;
  opacity: 1;
  position: absolute;
  top: -18%;
  right: -5%;
  z-index: 11;
  border-radius: 50%;
  transition: all 0.5s;
}
.section06 .conBox .moveAni figure {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.section06 .conBox .moveAni .bg {
  animation: deg360 20s linear 0s infinite;
  -webkit-animation: deg360 20s linear 0s infinite;
}

.section06 .conBox ul > li {
  display: flex;
  background: #fff;
}
.section06 .conBox .infoBox {
  padding: 60px;
  width: calc(100% - 50%);
  text-align: left;
}
.section06 .conBox .infoBox h2 {
  margin: 0 0 20px;
  font-size: 30px;
}
.section06 .conBox .infoBox h2 img {
  display: none;
}
.section06 .conBox .infoBox .infoList {
}
.section06 .conBox .infoBox .infoList li {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
}
.section06 .conBox .infoBox .infoList li:last-child {
  margin-bottom: 0;
}
.section06 .conBox .infoBox .infoList li i {
  margin: 0 10px 0 0;
  width: 14px;
}
.section06 .conBox .infoBox .infoList li h4 {
  font-size: 18px;
  font-weight: 500;
}

.section06 .conBox .infoBox .btnWrap {
  position: absolute;
  bottom: 80px;
}
.section06 .conBox .infoBox .btnWrap a {
  display: inline-block;
  width: 200px;
  height: 60px;
  line-height: 60px;
  box-sizing: border-box;
  text-align: center;
  font-weight: 700;
  border: 2px solid #d0112c;
  font-size: 18px;
}
.section06 .conBox .infoBox .btnWrap a.btn1 {
  margin: 0 10px 0 0;
  background: #d0112c;
  color: #fff;
}
.section06 .conBox .infoBox .btnWrap a.btn2 {
  background: #fff;
  color: #d0112c;
}

.section06 .conBox ul > li > figure {
  width: 50%;
}

.section06 .conBox ul > li > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section06 .conBox .moveAni .bg img {
  width: 220px;
}

@media all and (max-width: 1200px) {
  .section06 .conBox ul > li > figure {
    width: 40%;
  }
}

@media all and (max-width: 1024px) {
  .section06 .conBox ul > li > figure {
    width: 100%;
  }

  .section06 .conBox .moveAni {
    display: none;
  }
}

@media all and (max-width: 1440px) {
  .section06 {
    padding: 120px 0;
  }
  .section06 .conBox {
    margin: 60px 0 0;
  }
  .section06 .conBox .infoBox h2 {
    font-size: 26px;
  }
}
@media all and (max-width: 1200px) {
  .section06 {
    padding: 100px 0;
  }
  .section06 .conBox {
    margin: 50px 0 0;
  }
  .section06 .conBox h4 {
    font-size: 14px;
  }
  .section06 .conBox .infoBox {
    width: calc(100% - 40%);
  }
  .section06 .conBox .infoBox {
    padding: 40px;
  }
  .section06 .conBox .infoBox .btnWrap {
    position: relative;
    bottom: 0;
    margin: 30px 0 0;
  }
  .section06 .conBox .infoBox h2 {
    font-size: 22px;
  }
  .section06 .conBox .infoBox .infoList li h4 {
    font-size: 17px;
  }
  .section06 .conBox .moveAni {
    zoom: 0.7;
  }
  .section06 .conBox .infoBox .btnWrap a {
    width: 180px;
    height: 50px;
    line-height: 50px;
    font-size: 17px;
  }
  .section06 .conBox .swiper_arr .swiper-button-next {
    right: 0;
  }
  .section06 .conBox .swiper_arr .swiper-button-prev {
    left: 0;
  }
}
@media all and (max-width: 1024px) {
  .section06 .conBox {
    margin: 40px auto 0;
  }
  .section06 .conBox h4 {
    font-size: 13px;
  }
  .section06 .conBox ul > li {
    flex-wrap: wrap;
  }
  .section06 .conBox .infoBox {
    width: 100%;
    padding: 30px;
  }
  .section06 .conBox .infoBox h2 {
    font-size: 20px;
    margin: 0 0 15px;
  }
  .section06 .conBox .infoBox .infoList li h4 {
    font-size: 16px;
  }
  .section06 .conBox .infoBox .infoList li i {
    margin: 0 7px 0 0;
  }
  .section06 .conBox .infoBox .btnWrap {
    margin: 20px 0 0;
  }
  .section06 .conBox .infoBox .btnWrap a {
    font-size: 16px;
  }
  .section06 .conBox .infoBox .infoList li {
    margin: 0 0 7px;
  }
}
@media all and (max-width: 768px) {
  .section06 {
    padding: 23vw 0;
  }
  .section06 .conBox {
    margin: 7vw 0 0;
  }
  .section06 .conBox .infoBox {
    padding: 5vw;
  }
  .section06 .conBox .infoBox .btnWrap {
    margin: 5vw 0 0;
  }
  .section06 .conBox .infoBox h2 {
    font-size: 5vw;
    margin: 0 0 2vw;
  }
  .section06 .conBox .infoBox .infoList li {
    margin: 0 0 2vw;
  }
  .section06 .conBox .infoBox .infoList li h4 {
    font-size: 3.4vw;
  }
  .section06 .conBox .infoBox .infoList li i {
    margin: 0 1.5vw 0 0;
    width: 3vw;
  }
  .section06 .conBox .infoBox .btnWrap a {
    width: auto;
    height: auto;
    margin: 0 1.5vw 0 0;
    padding: 3vw 6vw;
    line-height: 1;
    font-size: 3.4vw;
  }
  .section06 .conBox .moveAni {
    right: -15%;
  }
}

/*============================================================================================================
    SECTION 08 가맹상담 (테두리 복구 및 중앙 정렬 완성본)
============================================================================================================*/
.section07 {
  padding: 140px 0;
  background: url("/common/img/main/sec08bg01.webp") no-repeat bottom center /
    cover;
}

/* 1. 박스 테두리 및 중앙 정렬 */
.section07 .conBox {
  position: relative;
  max-width: 1200px; /* 박스 너비 제한 */
  margin: 50px auto 0; /* 중앙 정렬 */
  border: 2px solid #222; /* 명확한 테두리 */
  padding: 80px 50px;
  text-align: center; /* 텍스트 중앙 정렬 */
  background: transparent; /* 배경색을 투명하게 변경 */
}

/* 2. 테두리 모서리 장식 복구 */
.section07 .conBox:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 52px;
  height: 52px;
  background: url("/common/img/main/sec12img01.png") no-repeat center;
  z-index: 1;
}
.section07 .conBox:after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 52px;
  height: 52px;
  background: url("/common/img/main/sec12img01.png") no-repeat center;
  transform: rotate(90deg);
  z-index: 1;
}
.section07 .conBox .conBox-inner:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 52px;
  height: 52px;
  background: url("/common/img/main/sec12img01.png") no-repeat center;
  transform: rotate(-90deg);
  z-index: 1;
}
.section07 .conBox .conBox-inner:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 52px;
  height: 52px;
  background: url("/common/img/main/sec12img01.png") no-repeat center;
  transform: rotate(-180deg);
  z-index: 1;
}

/* 3. 내부 콘텐츠 중앙 정렬 */
.section07 .conBox .conBox-inner {
  display: flex;
  flex-direction: column;
  align-items: center; /* 가로 중앙 */
}

.section07 .conBox-inner .txtBox {
  width: 100%;
  margin-bottom: 30px;
}

.section07 .conBox-inner .txtBox h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

/* 4. 전화번호 버튼 (가독성 보완) */
.section07 .conBox-inner .callBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 40px;
  padding: 0 40px;
  height: 60px;
  background: #111;
  border-radius: 30px;
  color: #fff !important;
}

.section07 .conBox-inner .callBtn i {
  filter: invert(1); /* 아이콘 흰색으로 반전 */
  margin-right: 10px;
}

.section07 .conBox-inner .callBtn span {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

/* 5. 폼 입력창 정렬 */
.section07 .formBox {
  width: 100%;
}

.section07 .formBox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 폼 요소 중앙 */
  gap: 15px;
}

.section07 .formBox ul li {
  width: 100%;
  text-align: left; /* 라벨과 입력창은 왼쪽 정렬이 사용하기 편함 */
}

.section07 .formBox ul li.w50 {
  width: calc(50% - 8px);
}

.section07 .formBox ul li span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.section07 .formBox ul li input,
.section07 .formBox ul li textarea {
  width: 100% !important;
  height: 55px;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 0 15px;
  font-size: 16px;
}

/* 6. 하단 동의 및 문의하기 버튼 */
.section07 .formBox .flexBox {
  margin-top: 30px;
  flex-direction: column;
  align-items: center;
}

.section07 .formBox .btnWrap button {
  width: 250px;
  height: 60px;
  background: #d0112c;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 20px;
  cursor: pointer;
}

/* 모바일 대응 */
@media all and (max-width: 768px) {
  .section07 .conBox {
    padding: 50px 20px;
    width: 92%;
  }
  .section07 .formBox ul li.w50 {
    width: 100%;
  }
  .section07 .conBox-inner .txtBox h3 {
    font-size: 24px;
  }
}

/*============================================================================================================
    고정상담
============================================================================================================*/

.consultWrap {
  display: none;
  transition: all 0.3s;
}
.consultWrap .txtLineBox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #18191c;
  overflow: hidden;
}
.consultWrap .txtLineBox .txtLine {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  left: 0;
  white-space: nowrap;
  animation: mrqueev1 60s linear infinite;
  line-height: 45px;
  filter: grayscale(1);
  opacity: 0.5;
}
.consultWrap .txtLineBox .txtLine.t2 {
  animation-delay: -30s;
}
.consultWrap .txtLineBox .txtLine span {
  display: inline-block;
  box-sizing: border-box;
  margin-right: 45px;
}

.consultWrap .btmForm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 75px;
}
.consultWrap .btmForm figure {
  position: absolute;
  left: 0;
  top: -63px;
  z-index: 1;
}
.consultWrap .btmForm .colorChange {
  display: inline-block;
  position: relative;
  margin: 0 0 0 110px;
}
.consultWrap .btmForm .colorChange h4 {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0;
}
.consultWrap .btmForm .colorChange h4 span {
  margin: 0 0 0 5px;
}
.consultWrap .btmForm .colorChange h4.color1 {
  animation: change_color1 1s step-end infinite;
}
.consultWrap .btmForm .colorChange h4.color2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 1px);
  z-index: 1;
  animation: change_color2 1s step-end infinite;
  -webkit-animation: change_color2 1s step-end infinite;
  color: #f8b62c;
  background: #18191c;
}
@keyframes change_color1 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes change_color2 {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.consultWrap .btmForm ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 40px;
}
.consultWrap .btmForm ul li {
  margin: 0 10px 0 0;
}
.consultWrap .btmForm ul li input {
  width: 190px;
  height: 40px;
  padding: 0 10px;
  font-size: 16px;
  background: #18191c;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.consultWrap .btmForm ul li input:hover {
  border-color: #f8b62c;
  color: #f8b62c;
}
.consultWrap .btmForm .flexBox {
  display: flex;
  flex-wrap: wrap;
}
.consultWrap .btmForm .flexBox .titBox {
  display: flex;
  align-items: center;
}
.consultWrap .btmForm .flexBox .titBox a {
  margin: 2px 0 0 4px;
  color: #fff;
  font-size: 14px;
  opacity: 0.7;
}
.consultWrap .btmForm .flexBox .inputCheck input {
  display: none;
}
.consultWrap .btmForm .flexBox .inputCheck label {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}
.consultWrap .btmForm .flexBox .inputCheck label span {
  margin: 0 0 0 2px;
  color: #fff;
}
.consultWrap .btmForm .flexBox .inputCheck label span a {
  color: #fff;
}
.consultWrap .btmForm .flexBox .inputCheck label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/common/img/layout/form_checkb.webp") no-repeat center/cover;
  opacity: 0.5;
}
.consultWrap .btmForm .flexBox .inputCheck label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: transparent;
}
.consultWrap .btmForm .flexBox .inputCheck input:checked + label:before {
  background: url("/common/img/layout/form_checkr.webp") no-repeat center/cover;
  opacity: 1;
}
.consultWrap .btmForm .flexBox .inputCheck input:checked + label span {
  color: #d0112c;
}
.consultWrap .btmForm .flexBox .btnWrap {
  margin: 0 0 0 20px;
}
.consultWrap .btmForm .flexBox .btnWrap button {
  width: 190px;
  height: 40px;
  background: #f8b62c;
  font-size: 18px;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.scroll.consultWrap {
  display: block;
  position: relative;
  background: #18191c;
  width: 100%;
  height: 120px;
  transition: all 0.3s;
}
.scroll.consultWrap.on {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
  transition: all 0.3s;
}

@media all and (max-width: 1440px) {
  .consultWrap .btmForm .colorChange h4 {
    font-size: 20px;
  }
  .consultWrap .btmForm ul li input {
    width: 160px;
  }
  .consultWrap .btmForm ul {
    margin: 0;
  }
  .consultWrap .btmForm .flexBox .btnWrap button {
    width: 160px;
  }
  .consultWrap .btmForm figure {
    width: 100px;
    top: -48px;
  }
  .consultWrap .btmForm .colorChange {
    margin: 0 0 0 80px;
  }
}
@media all and (max-width: 1200px) {
  .consultWrap .btmForm {
    justify-content: center;
  }
  .consultWrap .btmForm .colorChange {
    display: none;
  }

  .consultWrap .btmForm .flexBox .inputCheck label {
    font-size: 15px;
  }
  .consultWrap .btmForm ul {
    margin: 0 0 0 100px;
    width: 60%;
  }
  .consultWrap .btmForm ul li {
    width: 30%;
    margin: 0 1% 0 0;
  }

  .consultWrap .btmForm ul li input {
    width: 100%;
  }
  .consultWrap .btmForm .flexBox {
    width: 40%;
  }
  .consultWrap .btmForm .flexBox .btnWrap button {
    width: 140px;
    font-size: 16px;
  }
}
@media all and (max-width: 1024px) {
  .consultWrap .btmForm figure {
    display: none;
  }
  .consultWrap .btmForm ul {
    width: 55%;
    margin: 0;
  }
  .consultWrap .btmForm ul li input {
    font-size: 15px;
  }
  .consultWrap .btmForm .flexBox {
    width: 45%;
  }
  .consultWrap .btmForm .flexBox .btnWrap button {
    width: auto;
    padding: 0 20%;
    font-size: 15px;
  }
}
@media all and (max-width: 768px) {
  .scroll.consultWrap {
    display: block;
    height: auto;
    padding: 3vw 0;
  }

  .consultWrap .btmForm ul {
    width: auto;
    margin: 0 -1%;
  }
  .consultWrap .btmForm ul li {
    width: calc(100% / 3 - 1%);
  }
  .consultWrap .btmForm ul li input {
    font-size: 3vw;
    height: auto;
    padding: 1.5vw;
    border-radius: 1.5vw;
  }
  .consultWrap .btmForm .flexBox {
    justify-content: space-between;
    width: 100%;
    margin: 1.5vw 0 0;
  }
  .consultWrap .btmForm {
    flex-wrap: wrap;
    line-height: 1.3;
  }
  .consultWrap .txtLineBox {
    display: none;
  }
  .consultWrap .btmForm figure {
    display: none;
  }
  .consultWrap .btmForm .flexBox .btnWrap button {
    width: auto;
    height: auto;
    padding: 1.8vw 7vw;
    font-size: 3.3vw;
    border-radius: 1.5vw;
    animation: blink-effect 1s ease-in-out infinite alternate;
  }
  .consultWrap .btmForm .flexBox .inputCheck label {
    font-size: 3.2vw;
  }
  .consultWrap .btmForm .flexBox .titBox a {
    margin: 0 0 0 0.5vw;
    font-size: 3.2vw;
  }
}
@media all and (max-width: 500px) {
}
.is-hidden {
  display: none !important;
}
/* ================= 대표메뉴 가로 흐름 최종 ================= */

.section04 .menuMarquee {
  overflow: hidden;
  width: 100%;
}

.section04 .menuTrack {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: menuFlow 25s linear infinite;
}

.section04 .menuItem {
  width: 600px;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.section04 .menuItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 핵심 애니메이션 */
@keyframes menuFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 탭 */
.section04 .menuTabWrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0;
}

.section04 .menuTabBtn {
  min-width: 110px;
  height: 44px;
  padding: 0 18px;
  border: 2px solid #5b3725;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.section04 .menuTabBtn.active {
  background: #4a2312;
  color: #fff;
}

.section04 .menuTabContent {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.section04 .menuTabPanel {
  display: none;
}

.section04 .menuTabPanel.active {
  display: block;
}

.section04 .menuMarquee {
  overflow: hidden;
  width: 100%;
}

.section04 .menuTrack {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: menuFlow 25s linear infinite;
}

.section04 .menuItem {
  width: 600px;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.section04 .menuItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes menuFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media all and (max-width: 1024px) {
  .section04 .menuTabBtn {
    min-width: 95px;
    font-size: 16px;
    height: 42px;
    padding: 0 14px;
  }

  .section04 .menuItem {
    width: 220px;
    height: 300px;
  }

  .section04 .menuTrack {
    gap: 20px;
  }
}

@media all and (max-width: 768px) {
  .section04 .menuTabWrap {
    gap: 8px;
    margin: 25px 0 20px;
  }

  .section04 .menuTabBtn {
    min-width: auto;
    font-size: 14px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
  }

  .section04 .menuItem {
    width: 160px;
    height: 220px;
    border-radius: 16px;
  }

  .section04 .menuTrack {
    gap: 14px;
    animation-duration: 18s;
  }
}
@media all and (max-width: 768px) {
  .section01 .swiper-slide.slide-hero-center .txtBox {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: 90% !important;
    padding: 0 20px !important;
    text-align: center !important;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section01 .swiper-slide.slide-hero-center .txtBox .main-desc {
    margin-left: auto;
    margin-right: auto;
  }
}
