@charset "UTF-8";

.tit_wrap {
  text-align: center;
}
.tit_wrap .small_txt {
  color: var(--Desaturate-500, #b19490);
  text-align: center;
  font-family: 'Proza Libre';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: 0.4px;
}
.tit_wrap h3 {
  color: var(--Primary-950, #0d0302);
  text-align: center;
  font-family: 'PT Bandoche';
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
  letter-spacing: -0.96px;
}
.tit_wrap h3 .txt_red {
  color: var(--primary-500, #eb5945);
}
@media screen and (max-width: 768px) {
  .tit_wrap .small_txt {
    font-size: 14px;
    letter-spacing: 0.28px;
  }
  .tit_wrap h3 {
    font-size: 26px;
    letter-spacing: -0.52px;
  }
}
.main_1 {
  margin-top: 90px;
  position: relative;
}
.main_1_swiper .swiper-slide {
  padding: 0 60px;
  box-sizing: border-box;
}
.main_1_swiper .img_wrap {
  /* border-radius: 50px; */
  /* overflow: hidden; */
  position: relative;
}
.main_1_swiper .img_wrap img {
  border-radius: 50px;
}
.main_1_swiper .img_wrap .txt_wrap {
  position: absolute;
  bottom: 0;
  left: -1px;
}
.main_1_swiper .img_wrap .txt_wrap p {
  color: var(--grayscale-00-white, #fff);
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  font-family: Pretendard;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.64px;
  padding-left: 2.39vw;
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
  margin-bottom: 60px;
}
.main_1_swiper .swiper-slide-active .img_wrap .txt_wrap p {
  transform: translateY(0);
  opacity: 1;
}
.main_1_swiper .img_wrap .txt_wrap strong {
  color: var(--primary-500, #eb5945);
  font-family: 'PT Bandoche';
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 81.2px */
  letter-spacing: -1.16px;
  background: #fff;
  padding: 25px 2.39vw 25px;
  max-width: 600px;
  box-sizing: border-box;
  max-height: 130px;
  position: relative;
  width: fit-content;
  border-radius: 0 32px 0 0;
}

.main_1 #loading {
  width: 62px;
  height: 62px;
  margin: 30px auto;
  position: absolute;
  bottom: 20px;
  left: 50%;
}
.main_1_swiper .img_wrap .txt_wrap strong:before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  top: -28px;
  left: 0px;
  position: absolute;
  background: url('/img/main/main_1_txt.png') no-repeat center center / 100%
    100%;
}
.main_1_swiper .img_wrap .txt_wrap strong:after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  bottom: 0px;
  right: -27px;
  position: absolute;
  background: url('/img/main/main_1_txt.png') no-repeat center center / 100%
    100%;
}
.main_1 .outer-shadow,
.main_1 .inner-shadow,
.main_1 #timer {
  z-index: 6;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  /* box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2); */
}
.main_1 .outer-shadow {
  border: 1px solid #fff;
  box-sizing: border-box;
}
.main_1 .inner-shadow {
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
  border-radius: 100%;
  /* background-color: #dde6f0; */
  /* box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); */
}
.main_1 .controller {
  position: absolute;
  cursor: pointer;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 62px;
  height: 62px;
}
.main_1 .controller svg {
  overflow: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.main_1 .play_btn svg {
  fill: #fff;
}
.main_1 .controller .btn {
  position: absolute;

  /* opacity: 1; */
  transition: 0.45s;
  display: block;
  width: 100%;
  height: 100%;
}
.main_1 .controller .btn.off {
  display: none;
}

.main_1 .controller .load {
  transform: translate(-50%, -50%) rotate(-90deg);
  stroke-dasharray: 125;
  stroke-dashoffset: 0;
}
.main_1 .controller.start .load {
  opacity: 0;
}
.main_1 .controller .load circle.loading {
  animation: draw 3s linear forwards;
}
.main_1 .swiper_pagination {
  display: none;
}
@keyframes draw {
  100% {
    stroke-dashoffset: 125;
  }
}
@media screen and (max-width: 1150px) {
  .main_1_swiper .img_wrap .txt_wrap {
    width: 100%;
  }
  .main_1_swiper .img_wrap .txt_wrap strong {
    max-width: 50%;
    min-width: 50%;
  }
  .main_1_swiper .img_wrap .txt_wrap p {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .main_1_swiper .img_wrap .txt_wrap strong {
    font-size: 30px;
    letter-spacing: -0.6px;
  }
}
@media screen and (max-width: 1024px) {
  .main_1 .controller {
    display: none;
  }
  .main_1 .swiper_pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .main_1 .swiper-pagination-bullet {
    background: #d4d4d4;
    width: 6px;
    height: 6px;
    opacity: 1;
  }
  .main_1 .swiper-pagination-bullet-active {
    background: #eb5945;
  }
}
@media screen and (max-width: 768px) {
  .main_1_swiper .swiper-slide {
    padding: 0 5vw;
    height: 400px;
  }
  .main_1_swiper .img_wrap {
    height: 100%;
    border-radius: 40px;
  }
  .main_1_swiper .img_wrap .txt_wrap p {
    font-size: 16px;
    letter-spacing: -0.32px;
    margin-bottom: 10px;
  }
  .main_1_swiper .img_wrap .txt_wrap strong {
    font-size: 24px;
    max-width: unset;
    min-width: unset;
    width: fit-content;
    padding: 10px 20px;
    letter-spacing: -0.48px;
    border-radius: 0 25px 0 0;
    /* background: url('/img/main/main_1_txt_m.png') no-repeat center center / 100%
      100%; */
    background: #fff;
  }
  .main_1_swiper .img_wrap .txt_wrap strong:after {
    width: 16px;
    height: 16px;
    right: -15px;
  }
  .main_1_swiper .img_wrap .txt_wrap strong:before {
    width: 16px;
    height: 16px;
    top: -15px;
  }
  .main_1_swiper .img_wrap .txt_wrap p {
    padding: 0 24px;
  }
}
.main_3_wrap {
  overflow: visible;
  overflow-x: hidden;
  min-height: 1593px;
  margin-top: -150px;
}
.main_3 {
  padding: 360px 0 360px;
  /* margin-top: -150px; */
  position: relative;
  z-index: 1;
}
.main_3:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* min-width: 100vw; */
  width: 2600px;
  height: 1593px;
  z-index: -1;
  background: url('/img/main/main_3_bg.png') no-repeat center center / cover;
}
.main_3 .inner {
  width: 90%;
  max-width: 1290px;
  margin: 0 auto;
}
.main_3 .tit_wrap {
  margin-bottom: 100px;
}
.main_3 .con_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1290px;
  margin: 0 auto;
}
.main_3 .con:nth-child(1) {
  background: url('/img/main/main_3_con1.png') no-repeat center center / cover;
}
.main_3 .con:nth-child(2) {
  background: url('/img/main/main_3_con2.png') no-repeat center center / cover;
}
.main_3 .con:nth-child(3) {
  background: url('/img/main/main_3_con3.png') no-repeat center center / cover;
}
.main_3 .con:nth-child(4) {
  background: url('/img/main/main_3_con4.png') no-repeat center center / cover;
}
.main_3 .con {
  max-height: 320px;
  width: calc(50% - 25px);
  border-radius: 40px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  min-height: 320px;
}

.main_3 .con a {
  display: flex;
  justify-content: space-between;
  padding: 205px 2vw 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  align-items: flex-end;
  height: 100%;
}
.main_3 .con strong {
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.64px;
}
.main_3 .con p {
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.4px;
}
.main_3 .con img {
  transition: 0.45s;
}
.main_3 .con .btn {
  position: relative;
}
.main_3 .con .btn_img_hover {
  position: absolute;
  opacity: 0;
}
.main_3 .con:hover .btn_img_hover {
  opacity: 1;
}
.main_3 .con:hover .btn_img {
  opacity: 0;
}
.main_3 .con:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: 0.45s;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 38.59%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.main_3 .con:hover:after {
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .main_3 .con a {
    gap: 10px;
  }
  .main_3 .con strong {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
  .main_3 .con p {
    font-size: 15px;
    letter-spacing: -0.3px;
  }
  .main_3 .con .btn {
    max-width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .main_3 {
    padding: 100px 0;
  }
  .main_3_wrap {
    min-height: 1000px;
  }
  .main_3:after {
    background: url('/img/main/main_3_bg_m.png?v=2') no-repeat center center /
      cover;
    height: 1200px;
    width: 1960px;
  }
  .main_3 .tit_wrap {
    margin-bottom: 40px;
  }
  .main_3 .con {
    width: 100%;
    max-height: 210px;
    min-height: 210px;
  }
  .main_3 .con .btn {
    max-width: 48px;
  }
  .main_3 .con a {
    padding: 118px 20px 20px;
  }
  .main_3 .con_wrap {
    gap: 24px;
  }
}
.main_4 {
  padding-top: 100px;
  overflow: hidden;
}
.main_4 .inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
.main_4 .tit_wrap {
  margin-bottom: 100px;
}

.main_4 .con_wrap {
  display: flex;
  align-items: center;
  gap: 8.3vw;
  margin-bottom: 20px;
}

.main_4 .img_wrap {
  max-width: 600px;
}
.main_4 .txt_wrap {
  max-width: 540px;
}
.main_4 .txt_wrap .top {
  margin-bottom: 60px;
}
.main_4 .txt_wrap .top strong {
  color: var(--grayscale-800, #262626);
  font-family: 'PT Bandoche';
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
  letter-spacing: 9.6px;
}
.main_4 .txt_wrap .top strong span {
  color: var(--grayscale-800, #262626);
  font-family: 'PT Bandoche';
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 140%; /* 42px */
}
.main_4 .txt_wrap .top p {
  color: var(--Desaturate-300, #c88379);
  font-family: 'PT Bandoche';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;

  line-height: 140%; /* 28px */
}
.main_4 .txt_wrap .txt p {
  color: var(--grayscale-700, #404040);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 32px */
  letter-spacing: -0.4px;
}
.main_4 .txt_wrap .txt p:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .main_4 {
    padding-top: 80px;
  }
  .main_4 .img_wrap {
    max-width: 290px;
    margin: 0 auto;
  }
  .main_4 .tit_wrap {
    margin-bottom: 40px;
  }
  .main_4 .con_wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
  .main_4 .txt_wrap {
    max-width: 100%;
  }
  .main_4 .txt_wrap .top {
    text-align: center;
    margin-bottom: 30px;
  }
  .main_4 .txt_wrap .top strong {
    font-size: 26px;
    letter-spacing: 5.2px;
    margin-bottom: 6px;
  }
  .main_4 .txt_wrap .top strong span {
    font-size: 18px;
  }
  .main_4 .txt_wrap .top p {
    font-size: 16px;
  }
  .main_4 .txt_wrap .txt p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

.main_5 {
  padding: 220px 0;
  background: url('/img/main/main_5_bg.png') no-repeat center center / cover;
}
.main_5 .img_wrap {
  display: flex;
  gap: 4.6vw;
  justify-content: center;
  margin-bottom: 35px;
  align-items: center;
}
.main_5 .img_wrap img {
  max-width: 300px;
}
.main_5 .img_wrap img:nth-child(2) {
  margin-top: 60px;
}
.main_5 .bottom_txt {
  color: var(--grayscale-800, #241f1f);
  text-align: center;
  font-family: Pretendard;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 33px */
  letter-spacing: -0.44px;
}
@media screen and (max-width: 1280px) {
  .main_5 .img_wrap img {
    max-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .main_5 {
    padding: 50px 0 180px;
    background: url('/img/main/main_5_bg_m.png') no-repeat center bottom / cover;
  }
  .main_5 .tit_wrap {
    margin-bottom: 36px;
  }
  .main_5 .img_wrap {
    flex-direction: column;
    gap: 18px;
  }
  .main_5 .img_wrap img:nth-child(2) {
    margin-top: 0;
  }
  .main_5 .bottom_txt {
    font-size: 18px;
    letter-spacing: -0.36px;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
  }
}

.main_6 {
  /* padding: 320px 0 340px; */
}
.main_6 .inner {
  width: 90%;
  max-width: 1560px;
  margin: 0 auto;
}
.main_6_1 {
  padding: 150px 0 377px;
  background: url('/img/main/main_6_1.png') no-repeat center center / cover;
  display: flex;
  gap: 150px;
  flex-direction: column;
}
.main_6_1 .news_wrap {
  /* width: 50%; */
  padding-right: 6.2vw;
  margin-bottom: 150px;
  box-sizing: border-box;
}
.main_6 .tit_wrap {
  margin-bottom: 30px;
  text-align: left;
}
.main_6 .tit_wrap .small_txt {
  font-size: 20px;
  letter-spacing: 0.4px;
}
.main_6 .tit_wrap h3 {
  font-size: 38px;
  text-align: left;

  letter-spacing: -0.76px;
}
/* 임시 */
.main_6_news .swiper-wrapper {
  gap: 1%;
}
.main_6_news .swiper-slide {
  width: 24%;
}
/* 임시 */

.main_6_news .swiper-slide {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
}
.main_6_news .swiper-slide ._cover {
  border: 4px solid #fff;
  border-radius: 40px;
  overflow: hidden;
}
.main_6_news .txt_wrap {
  padding: 16px 20px 60px;
}
.main_6_news .txt_wrap span {
  overflow: hidden;
  color: #f9f9f9;
  text-overflow: ellipsis;
  font-family: Pretendard;
  border-radius: 6px;
  background: #568cd5;
  padding: 5px 10px;
  box-sizing: border-box;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 19.5px */
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  display: block;
  width: fit-content;
}
.main_6_news .txt_wrap strong {
  color: #303030;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.main_6_news .txt_wrap p {
  color: #6d6d6d;
  font-family: 'Spoqa Han Sans Neo';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 19.5px */
  letter-spacing: -0.3px;
}
.main_6_1 .reserve_wrap {
  /* margin-top: 300px; */
  flex: 1;
}
.main_6_1 .reserve_wrap .con_wrap {
  background: url('/img/main/main_6_bg1.png?v=2') no-repeat 100% center / cover;
  border-radius: 40px;
  padding: 50px;
}
.main_6_1 .input_wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}
.main_6_1 form {
  max-width: 330px;
}
.main_6_1 .input_wrap input {
  padding: 13px 20px;
  border-radius: 6px;
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.36px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
  border: 1px solid transparent;
  transition: 0.3s;
}
.main_6_1 .input_wrap input:focus {
  border: 1px solid #fff;
}
.main_6_1 .input_wrap input::placeholder {
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.main_6_1 .input_wrap select {
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.36px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.4) url('/img/main/main_6_1_arrow.png') no-repeat
    95% 50%;
  margin-bottom: 12px;
  position: relative;
  transition: 0.3s;
}
.main_6_1 .input_wrap select:focus {
  border: 1px solid #fff;
}
.main_6_1 .input_wrap button {
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  border-radius: 6px;
  background: var(--primary-500, #eb5945);
  padding: 13px 20px;
  letter-spacing: -0.36px;
  margin-bottom: 12px;
}
.main_6_1 .input_wrap textarea {
  resize: none;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.36px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
  transition: 0.3s;
}
.main_6_1 .input_wrap textarea:focus {
  border: 1px solid #fff;
}
.main_6_1 .input_wrap textarea::placeholder {
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.main_6_1 .input_wrap .link_wrap {
  display: flex;
  gap: 8px;
}
.main_6_1 .input_wrap .link_wrap_1 {
  margin-bottom: 8px;
}

.main_6_1 .input_wrap .link_wrap a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 11px 9px;
  box-sizing: border-box;
  flex: 1;
  justify-content: center;
  color: var(--grayscale-800, #262626);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 22.5px */
  letter-spacing: -0.3px;
}
.main_6_1 .input_wrap .link_wrap_2 a {
  width: fit-content;
  flex: unset;
  padding: 10px 20px;
}
.main_6_1 .chk {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  border: 1px solid var(--grayscale-00-white, #fff);
  background: transparent;
  width: fit-content;
  cursor: pointer;
  margin-bottom: 8px;
  color: var(--grayscale-00-white, #fff);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 22.5px */
  letter-spacing: -0.3px;
  cursor: pointer;
  user-select: none;
  padding: 5px 12px;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;
  transition: 0.45s;
}
.main_6_1 .chk.on {
  color: var(--grayscale-800, #262626);
  background: #fff;
}
.main_6_1 .chk input {
  width: 20px;
  height: 20px;
  display: block;
  background: url('/img/main/main_6_chk.png') center center/ 100% no-repeat;
  cursor: pointer;
}
.main_6_1 .chk input:checked {
  background: url('/img/main/main_6_checked.png') center center/ 100% no-repeat;
}
.main_6_1 .chk input:checked + span {
  color: var(--grayscale-800, #262626);
}

.main_6_1 .chk2_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main_6_1 .chk2_wrap a {
  color: var(--grayscale-10001, #f5f5f5);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: -0.28px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: 21.5%; /* 3.01px */
  text-underline-position: from-font;
}
.main_6_1 .sub_reserve {
  padding-left: 7.8vw;
  box-sizing: border-box;
}
.main_6_1 .sub_reserve .tit_wrap {
  text-align: right;
}
.main_6_1 .sub_reserve .tit_wrap h3 {
  text-align: right;
  font-weight: 700;
}
.main_6_1 .sub_reserve .w1280 {
  background: #fff;
  padding: 80px 2.6vw;
  box-sizing: border-box;
  border-radius: 50px;
  width: 100%;
  max-width: unset;
}

.main_6_1 .sub_reserve form {
  max-width: unset;
}
.main_6_2 {
  padding: 130px 0 110px;
}
.main_6_2 .con_wrap {
  display: flex;
  align-items: flex-end;
}
.main_6_2 .tabcontent {
  width: 80%;
}
.main_6_2 .txt_wrap {
  border-radius: 50px 0px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 57px 50px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin-left: -100px;
  flex: 1;
  margin-bottom: 70px;
}
.main_6_2 .txt_wrap .txt_inner {
  position: relative;
}
.main_6_2 .txt_wrap .txt_inner .txt {
  opacity: 0;
}

.main_6_2 .txt_wrap .txt_inner .center2_txt {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  position: absolute;
}
.main_6_2 .txt_wrap .txt_inner .txt.on {
  opacity: 1;
}
.main_6_2 .txt_wrap strong {
  color: var(--grayscale-800, #262626);
  font-family: 'PT Bandoche';
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 140%; /* 42px */
}
.main_6_2 .txt_wrap p {
  color: var(--grayscale-900, #171717);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 28px */
  letter-spacing: -0.4px;
  margin-bottom: 65px;
}
.main_6_2 .tabnav {
  display: flex;
  gap: 20px;
}
.main_6_2 .tabnav a {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #d4d4d4;
  position: relative;
}
.main_6_2 .tabnav a.active {
  background: #eb5945;
}
.main_6_2 .tabnav a:after {
  content: '';
  display: block;
  width: 200%;
  height: 200%;
  opacity: 0;
  border: 1px solid #eb5945;
  border-radius: 99px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.45s;
}
.main_6_2 .tabnav a.active:after {
  opacity: 1;
}
.main_6_2 .swiper .img_wrap {
  border-radius: 50px;
  overflow: hidden;
  height: 600px;
}
.main_6_2 .swiper .controller {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 11px 20px 13px 20px;
  box-sizing: border-box;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
}
.main_6_2 .swiper .controller .navi {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.main_6_2 .swiper-pagination-fraction {
  width: auto;
  flex: 1;
  color: var(--grayscale-00-white, #fff);
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 20px */
  letter-spacing: -0.4px;
}
@media screen and (max-width: 1280px) {
  .main_6_1 .sub_reserve {
    padding-left: 0;
  }
  .main_6_1 .news_wrap {
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .main_6_1 {
    flex-direction: column;
  }
  .main_6_1 .news_wrap {
    width: 100%;
  }
  .main_6_1 .reserve_wrap {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .main_6 {
    padding: 186px 0 218px;
  }
  .main_6_1 {
    background: url('/img/main/main_6_bg_m.png') no-repeat center center / cover;
    gap: 100px;
  }
  .main_6_1 form {
    max-width: 400px;
  }
  /* .main_6_news {
    right: -5vw;
    width: 95vw;
  } */
  .main_6_news .txt_wrap span {
    font-size: 12px;
    letter-spacing: -0.24px;
    padding: 4px 8px;
  }
  .main_6_news .txt_wrap strong {
    font-size: 16px;
    letter-spacing: -0.32px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .main_6_news .txt_wrap {
    padding: 13px 16px 45px;
  }
  .main_6_news .txt_wrap p {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
  .main_6_1 .reserve_wrap .con_wrap {
    padding: 40px 20px;
  }
  .main_6_1 .input_wrap {
    margin-bottom: 30px;
  }
  .main_6_1 .reserve_wrap .con_wrap {
    background: url('/img/main/main_6_bg1.png') no-repeat 80% center / cover;
  }
  .main_6_1 .input_wrap input,
  .main_6_1 .input_wrap input::placeholder,
  .main_6_1 .input_wrap textarea::placeholder,
  .main_6_1 .input_wrap select,
  .main_6_1 .input_wrap button,
  .main_6_1 .input_wrap textarea {
    font-size: 14px;
    letter-spacing: -0.28px;
  }
  .main_6_1 .input_wrap .link_wrap a {
    font-size: 14px;
    letter-spacing: -0.28px;
  }
  .main_6_1 .input_wrap input,
  .main_6_1 .input_wrap select,
  .main_6_1 .input_wrap textarea {
    padding: 9px 15px;
  }
  .main_6_1 .input_wrap button {
    font-size: 14px;
  }
  .main_6_2 .con_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .main_6_1 .chk {
    font-size: 12px;
    letter-spacing: -0.24px;
    padding: 3px 9px;
  }
  .main_6_1 .chk2_wrap a {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
  .main_6_2 .tabcontent {
    width: 95%;
  }
  .main_6_2 .swiper .img_wrap {
    height: 385px;
    border-radius: 30px;
  }
  .main_6_2 .swiper-pagination-fraction {
    font-size: 15px;
    letter-spacing: -0.3px;
  }
  .main_6_2 .swiper .controller .navi {
    width: 19px;
    height: 19px;
  }
  .main_6_2 .swiper .controller {
    gap: 15px;
    bottom: 50px;
  }
  .main_6_2 .txt_wrap {
    margin-top: -35px;
    margin-left: auto;
    margin-bottom: 0;
    padding: 30px 28px;
    border-radius: 28px 0px;
  }
  .main_6_2 .txt_wrap strong {
    font-size: 16px;
  }
  .main_6_2 .txt_wrap p {
    font-size: 14px;
    letter-spacing: -0.28px;
    margin-bottom: 30px;
  }
  .main_6_2 .tabnav a {
    width: 6px;
    height: 6px;
  }
  .main_6_1 .sub_reserve .w1280 {
    border-radius: 30px;
  }
  .main_6_news .swiper-slide {
    border-radius: 30px;
  }
  /* 임시 */
  .main_6_news .swiper-slide {
    width: 49%;
  }
  /* 임시 */
}
.main_2 {
  padding: 190px 0;
  background: url('/img/main/main_2_bg.png') no-repeat center center / cover;
  position: relative;
}
.main_2:after {
  content: '';
  display: block;
  width: 1171px;
  height: 804px;
  position: absolute;
  bottom: -20px;
  right: 0;
  background: url('/img/main/main_2_after.png') no-repeat center center / cover;
}
.main_2 .polygon {
  max-width: 1050px;
  margin: 0 auto;
  width: 90%;
  position: relative;
  padding-top: 110px;
  padding-bottom: 130px;
}
.main_2 .polygon_img {
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.main_2 .polygon_img .img_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main_2 .polygon_img .img_cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.45s;
}
.main_2 .polygon_img .img_cover img.on {
  opacity: 1;
}
.main_2 .polygon_img .txt_wrap {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.main_2 .polygon_img .txt_wrap span {
  color: var(--grayscale-00-white, #fff);
  text-align: center;
  font-family: 'Proza Libre';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.main_2 .polygon_img .txt_wrap strong {
  color: var(--grayscale-00-white, #fff);
  text-align: center;
  font-family: 'PT Bandoche';
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
  letter-spacing: -0.96px;
}
.main_2 .polygon_text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.main_2 .polygon_text > div {
  transition: 0.45s;
}
.main_2 .polygon_text > div:first-child {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.main_2 .polygon_text > div:first-child p:before {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.main_2 .polygon_text > div:nth-child(2) {
  position: absolute;
  top: 37%;
  right: 0%;
}
.main_2 .polygon_text > div:nth-child(2) p:before {
  top: 10px;
  left: -22px;
}
.main_2 .polygon_text > div:nth-child(3) {
  position: absolute;
  bottom: 0;
  right: 25%;
}
.main_2 .polygon_text > div:nth-child(3) p:before {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.main_2 .polygon_text > div:nth-child(4) {
  position: absolute;
  bottom: 0;
  left: 25%;
}
.main_2 .polygon_text > div:nth-child(4) p:before {
  top: -30px;
  right: 50%;
  transform: translateX(-50%);
}
.main_2 .polygon_text > div:nth-child(5) {
  position: absolute;
  top: 37%;
  left: 0%;
}
.main_2 .polygon_text > div:nth-child(5) p:before {
  top: 10px;
  right: -22px;
}
.main_2 .polygon_text p {
  color: var(--grayscale-800, #262626);
  text-align: center;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.48px;
  position: relative;
  transition: 0.45s;
}
.main_2 .polygon_text p:before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  position: absolute;
  background: #d4d4d4;
  transition: 0.45s;
}
.main_2 .polygon_text > div.active p {
  color: var(--primary-500, #eb5945);
  font-weight: 500;
}
.main_2 .polygon_text > div.active p:before {
  background: var(--primary-500, #eb5945);
}
@media screen and (max-width: 1150px) {
  .main_2 .polygon {
    max-width: 700px;
  }
  .main_2 .polygon_wrap {
    max-width: 300px;
    margin: 0 auto;
  }
  .main_2 .polygon_text p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  .main_2 .polygon_img .txt_wrap span {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  .main_2 .polygon_img .txt_wrap strong {
    font-size: 30px;
    letter-spacing: -0.6px;
  }
}
@media screen and (max-width: 768px) {
  .main_2 {
    padding: 45px 0 255px;
  }
  .main_2 .polygon {
    padding-top: 0;
    padding-bottom: 45px;
    max-width: 280px;
  }
  .main_2 .polygon_img .img_cover {
    opacity: 0;
  }
  .main_2 .polygon_img .txt_wrap span {
    font-size: 12px;
    letter-spacing: 0.24px;
  }
  .main_2 .polygon_img .txt_wrap strong {
    font-size: 26px;
    letter-spacing: -0.52px;
  }
  .main_2 .polygon_text {
    display: none;
  }

  .main_2 .polygon_text_m {
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  .main_2 .polygon_text_m p {
    margin-bottom: 20px;
    color: var(--grayscale-800, #262626);
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 25.2px */
    letter-spacing: -0.36px;
  }
  .main_2 .polygon_text_m.aos-animate p {
    color: var(--primary-500, #eb5945);
    font-weight: 500;
    transition: 0.45s;
  }
  .main_2 .polygon_text_m.aos-animate p:nth-child(2) {
    transition-delay: 0.1s;
  }
  .main_2 .polygon_text_m.aos-animate p:nth-child(3) {
    transition-delay: 0.2s;
  }
  .main_2 .polygon_text_m.aos-animate p:nth-child(4) {
    transition-delay: 0.3s;
  }
  .main_2 .polygon_text_m.aos-animate p:nth-child(5) {
    transition-delay: 0.4s;
  }
  .main_6 .tit_wrap {
    text-align: center;
  }
  .main_6 .tit_wrap .small_txt {
    font-size: 15px;
    letter-spacing: 0.3px;
  }
  .main_6 .tit_wrap h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
    text-align: center;
  }
}
