/* 메인 좌측 섹션네비 */
.l_f {
  position: fixed;
  left: 0;
  top: 50vh;
  transform: translateY(-50%);
  padding-left: 78px;
  box-sizing: border-box;
  z-index: 998;
  color: #fff;
  transition-duration: 0.2s;
}

.l_f .l_fix li {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.l_f .l_fix li span {
  display: block;
  width: 7px;
  height: 1px;
  background-color: #fff;
  margin-right: 10px;
  transition-duration: 0.2s;
}

.l_f .l_fix li em {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  opacity: 1;
  transform: translateX(0);
  transition-duration: 0.2s;
}

.l_f .l_fix li.on span {
  height: 7px;
}

.l_f .l_fix li.on em {
  opacity: 1;
  transform: translateX(0);
}

.l_f.end {
  opacity: 0;
  pointer-events: none;
}

.l_f.invert {
  color: #535353;
}

.l_f.invert .l_fix li span {
  background-color: #535353;
}

@media screen and (max-width: 1280px) {
  .l_f {
    display: none;
  }
}

@media screen and (min-width: 821px) {
  .l_f .l_fix li:hover span {
    height: 7px;
  }

  .l_f .l_fix li:hover em {
    opacity: 1;
    transform: translateX(0);
  }
}

@media screen and (max-width: 1600px) {
  .l_f {
    padding-left: 2.5%;
  }
}

/* 커서 */

#cursor {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
}

#cursor .cur_cir {
  width: 140px;
  height: 140px;
  margin-top: -50%;
  margin-left: -50%;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    background-image 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform: rotate(0) scale(1) !important;
  position: relative;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#cursor span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-family: 'Helvetica63-ExtendedMedium';
  font-weight: 500;
  letter-spacing: -0.04em;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition-duration: 0.2s;
}

#cursor.pointer .cur_cir {
  width: 270px;
  height: 270px;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

#cursor.pointer span {
  opacity: 1;
  font-size: 20px;
}

/* 메인컨텐츠 */

._m {
  width: 100%;
  position: relative;
  overflow: hidden;
  word-break: keep-all;
}

._m .se01 {
  width: 100%;
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

._m .se01 .visual_sw {
  position: relative;
  opacity: 0;
}

._m .se01 .visual_sw .visual {
  color: #fff;
}

._m .se01 .visual_sw .visual .swiper-slide {
  overflow: hidden;
}

._m .se01 .visual_sw .visual .vbox {
  min-height: 100vh;
  padding: 110px 0;
  box-sizing: border-box;
  position: relative;
}

._m .se01 .visual_sw .visual .wrap {
  padding: 0 calc(95 / 1700 * 100%);
  box-sizing: border-box;
}

._m .se01 .visual_sw .visual .vbox .bgWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

._m .se01 .visual_sw .visual .vbox .bgWrap .bgbx {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition-duration: 2s;
  transform: scale(1.2);
}

._m
  .se01
  .visual_sw
  .visual
  .swiper-slide.swiper-slide-active
  .vbox
  .bgWrap
  .bgbx {
  transform: scale(1);
}

._m .se01 .visual_sw .visual .vbox._1 iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

._m .se01 .visual_sw .visual .vbox._1 .wrap {
  margin-top: 160px;
}

._m .se01 .visual_sw .visual .vbox._1 video {
  height: 100%;
  object-fit: cover;
}

._m .se01 .visual_sw .visual .vbox._1 .bgbx._pc {
  display: block;
}

._m .se01 .visual_sw .visual .vbox._1 .bgbx._mo {
  display: none;
}

@media screen and (max-width: 1600px) {
  ._m .se01 .visual_sw .visual .vbox .wrap {
    padding: 0 5%;
  }
}

@media screen and (max-width: 1440px) {
  ._m .se01 .visual_sw .visual .vbox .wrap {
    padding: 0 6%;
  }
}

@media screen and (max-width: 1024px) {
  ._m .se01 .visual_sw .visual .vbox .wrap {
    padding: 0 8%;
  }

  ._m .se01 .visual_sw .visual .vbox._1 .bgbx._pc {
    display: none;
  }

  ._m .se01 .visual_sw .visual .vbox._1 .bgbx._mo {
    display: block;
  }

  ._m .se01 .visual_sw .visual .vbox._1 .wrap {
    margin-top: 0;
    position: absolute;
    bottom: 20vh;
  }
}

@media screen and (max-width: 820px) {
  ._m .se01 .visual_sw .visual .vbox {
    padding: 120px 0;
  }

  ._m .se01 .visual_sw .visual .vbox .wrap {
    padding: 0 12%;
  }
}

@media screen and (max-width: 500px) {
  ._m .se01 .visual_sw .visual .vbox .wrap {
    padding: 0 5%;
  }
}

@media screen and (max-width: 350px) {
  ._m .se01 .visual_sw .visual .vbox .wrap {
    padding: 0 5%;
  }
}

/* visual1 */
._m .se01 .visual_sw .visual .vbox._1 {
  display: flex;
  align-items: center;
}

/* ._m .se01 .visual_sw .visual .vbox._1 .bgbx{ opacity: 0; } */
._m .se01 .visual_sw .visual .vbox._1 h2 {
  font-size: 200px;
  font-weight: 700;
  font-family: 'Perpetua Titling MT';
  padding-left: 50px;
  box-sizing: border-box;
  overflow: hidden;
}

._m .se01 .visual_sw .visual .vbox._1 h2 span {
  display: inline-block;
  color: #67b5a9;
  filter: drop-shadow(2px 4px 6px rgb(122, 122, 122));
}

/* transform: translateY(100%); transition-duration: 0.8s; */

/* ._m .se01 .visual_sw .visual .swiper-slide.swiper-slide-duplicate-active .vbox._1 h1 span,
._m .se01 .visual_sw .visual .swiper-slide.swiper-slide-active .vbox._1 h1 span{ transform: translateY(0); } */

._m .se01 .visual_sw .visual .vbox._1 dl p {
  font-family: 'Perpetua Titling MT';
  font-size: 80px;
  font-weight: 300;
}

._m .se01 .visual_sw .visual .vbox._1 dl p span {
  font-size: 160px;
  font-weight: 700;
  color: #67b5a9;
  filter: drop-shadow(2px 4px 6px rgb(122, 122, 122));
}

._m .se01 .visual_sw .visual .vbox._1 dl dt {
  position: relative;
  overflow: hidden;
}

._m .se01 .visual_sw .visual .vbox._1 dl dt p span {
  display: inline-block;
  margin-right: 30px;
  color: #67b5a9;
  filter: drop-shadow(2px 4px 6px rgb(122, 122, 122));
}

._m .se01 .visual_sw .visual .vbox._1 dl dt em {
  position: absolute;
  top: 40px;
  left: 145px;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.05em;
  overflow: hidden;
}

._m .se01 .visual_sw .visual .vbox._1 dl dt em b {
  display: inline-block;
}

._m .se01 .visual_sw .visual .vbox._1 dl dt em i {
  font-weight: 600;
}

._m .se01 .visual_sw .visual .vbox._1 dl dd {
  padding-left: 18px;
  box-sizing: border-box;
  overflow: hidden;
}

@media screen and (max-width: 1440px) {
  ._m .se01 .visual_sw .visual .vbox._1 h2 {
    font-size: 150px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl p {
    font-size: 66px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl p span {
    font-size: 130px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl dt p span {
    margin-right: 20px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl dt em {
    top: 10px;
    left: 115px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se01 .visual_sw .visual .vbox._1 h2 {
    font-size: 100px;
    padding-left: 20px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl p {
    font-size: 40px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl p span {
    font-size: 80px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl dt p span {
    margin-right: 10px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl dt em {
    top: 8px;
    left: 68px;
    font-size: 16px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl dd {
    padding-left: 5px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se01 .visual_sw .visual .vbox._1 h2 {
    font-size: 120px;
    padding-left: 10px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl p {
    font-size: 39px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl p span {
    font-size: 120px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl dt p span {
    margin-right: 10px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl dt em {
    top: 40px;
    left: 26%;
    font-size: 17px;
  }
}

@media screen and (max-width: 390px) {
  ._m .se01 .visual_sw .visual .vbox._1 dl dt em {
    left: 29%;
  }
}

@media screen and (max-width: 370px) {
  ._m .se01 .visual_sw .visual .vbox._1 dl p {
    font-size: 35px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl dt em {
    top: 47px;
    left: 31%;
    font-size: 14px;
  }
}

@media screen and (max-width: 330px) {
  ._m .se01 .visual_sw .visual .vbox._1 dl p {
    font-size: 25px;
  }

  ._m .se01 .visual_sw .visual .vbox._1 dl dt em {
    top: 59px;
    left: 35%;
    font-size: 14px;
  }
}

/* visual2 */
._m .se01 .visual_sw .visual .vbox._2 {
  display: flex;
  align-items: flex-end;
}

._m .se01 .visual_sw .visual .vbox._2 .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

._m .se01 .visual_sw .visual .vbox._2 dl {
  padding-bottom: 30px;
}

._m .se01 .visual_sw .visual .vbox._2 dl dt span {
  font-size: 80px;
  margin-bottom: -20px;
  display: block;
}

._m .se01 .visual_sw .visual .vbox._2 dl dt h2 {
  font-size: 62px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

._m .se01 .visual_sw .visual .vbox._2 dl dd {
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: calc(38 / 22);
  font-weight: 300;
  padding-left: 43px;
  position: relative;
  margin-top: 30px;
}

._m .se01 .visual_sw .visual .vbox._2 dl dd span {
  position: absolute;
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  left: 0;
  top: 10px;
}

._m .se01 .visual_sw .visual .vbox._2 .rTxt {
  text-align: right;
}

._m .se01 .visual_sw .visual .vbox._2 .rTxt h3 {
  font-size: 100px;
  font-family: 'Perpetua Titling MT';
  font-weight: 300;
}

._m .se01 .visual_sw .visual .vbox._2 .rTxt h4 {
  font-size: 32px;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin-top: 25px;
  line-height: 1.3;
}

._m .se01 .visual_sw .visual .vbox._2 .rTxt h3 .ft-trans {
  font-family: 'Noto Serif KR', serif;
}

@media screen and (max-width: 1440px) {
  ._m .se01 .visual_sw .visual .vbox._2 dl dt span {
    font-size: 70px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dt h2 {
    font-size: 56px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dd {
    font-size: 18px;
    padding-left: 20px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dd span {
    top: 5px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt h3 {
    font-size: 80px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt h4 {
    font-size: 24px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 1024px) {
  ._m .se01 .visual_sw .visual .vbox._2 dl dt span {
    font-size: 60px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dt h2 {
    font-size: 50px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dd {
    font-size: 16px;
    padding-left: 15px;
    margin-top: 10px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dd span {
    top: 5px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt h3 {
    font-size: 60px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt h4 {
    font-size: 20px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 820px) {
  /* ._m .se01 .visual_sw .visual .vbox._2{ align-items: center; } */
  ._m .se01 .visual_sw .visual .vbox._2 .bgbx {
    background-position: right 21% center;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .wrap {
    flex-direction: column;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl {
    padding-bottom: 0;
    width: 100%;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dt span {
    font-size: 50px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dt h2 {
    font-size: 40px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dd {
    font-size: 14px;
    padding-left: 10px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt {
    width: 100%;
    margin-top: 50px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt h3 {
    font-size: 50px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt h4 {
    font-size: 16px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se01 .visual_sw .visual .vbox._2 .bgbx {
    background-position: 50% center;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dt span {
    font-size: 40px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 dl dt h2 {
    font-size: 35px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt {
    width: 100%;
    margin-top: 50px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt h3 {
    font-size: 40px;
  }

  ._m .se01 .visual_sw .visual .vbox._2 .rTxt h4 {
    font-size: 14px;
  }
}

/* visual3 */
._m .se01 .visual_sw .visual .vbox._3 {
  display: flex;
  align-items: center;
}

._m .se01 .visual_sw .visual .vbox._3 iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

._m .se01 .visual_sw .visual .vbox._3 dl dt {
  font-size: 62px;
  letter-spacing: -0.05em;
  line-height: calc(90 / 62);
  font-weight: 300;
}

._m .se01 .visual_sw .visual .vbox._3 dl dt span {
  font-weight: 600;
}

._m .se01 .visual_sw .visual .vbox._3 dl dd {
  font-size: 22px;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin-top: 70px;
  line-height: 1.3;
}

@media screen and (max-width: 1440px) {
  ._m .se01 .visual_sw .visual .vbox._3 {
    align-items: flex-end;
    padding: 190px 0;
  }

  ._m .se01 .visual_sw .visual .vbox._3 dl dt {
    font-size: 50px;
  }

  ._m .se01 .visual_sw .visual .vbox._3 dl dd {
    font-size: 20px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 1024px) {
  ._m .se01 .visual_sw .visual .vbox._3 dl dt {
    font-size: 34px;
  }

  ._m .se01 .visual_sw .visual .vbox._3 dl dd {
    font-size: 16px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se01 .visual_sw .visual .vbox._3 dl dt {
    font-size: 22px;
    letter-spacing: unset;
  }

  ._m .se01 .visual_sw .visual .vbox._3 dl dd {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* visual4 */
._m .se01 .visual_sw .visual .vbox._4 {
  display: flex;
  align-items: center;
}

._m .se01 .visual_sw .visual .vbox._4 .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

._m .se01 .visual_sw .visual .vbox._4 .txt h2 {
  font-size: 7.29vw;
  font-weight: 300;
  font-family: 'Perpetua Titling MT';
}

._m .se01 .visual_sw .visual .vbox._4 .txt em {
  font-size: 7.29vw;
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 300;
  font-style: italic;
  margin-left: 35px;
}

._m .se01 .visual_sw .visual .vbox._4 .txt p {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

@media screen and (min-width: 1920px) {
  ._m .se01 .visual_sw .visual .vbox._4 .txt h2 {
    font-size: 140px;
  }

  ._m .se01 .visual_sw .visual .vbox._4 .txt em {
    font-size: 140px;
  }

  /* ._m .se01 .visual_sw .visual .vbox._4 .txt p{ font-size: 24px; } */
}

._m .se01 .visual_sw .visual .vbox._4 .txt._3 {
  width: 100%;
  position: relative;
  transform: translate(0, 0);
  left: auto;
  top: auto;
}

._m .se01 .visual_sw .visual .vbox._4 .txt .fir {
  text-align: left;
  display: flex;
  align-items: baseline;
}

._m .se01 .visual_sw .visual .vbox._4 .txt .sec {
  text-align: right;
}

@media screen and (max-width: 1280px) {
  ._m .se01 .visual_sw .visual .vbox._4 .txt p {
    font-size: 18px;
  }

  ._m .se01 .visual_sw .visual .vbox._4 {
    align-items: flex-end;
  }

  ._m .se01 .visual_sw .visual .vbox._4 .txt em {
    margin-left: 10px;
    font-style: unset;
  }
}

@media screen and (max-width: 820px) {
  ._m .se01 .visual_sw .visual .vbox._4 .bgWrap .bgbx {
    opacity: 0.8;
  }

  ._m .se01 .visual_sw .visual .vbox._4 .txt p {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se01 .visual_sw .visual .vbox._4 .txt h2 {
    font-size: 10.29vw;
  }

  ._m .se01 .visual_sw .visual .vbox._4 .txt p {
    font-size: 12px;
  }
}

/* visual5 */
._m .se01 .visual_sw .visual .vbox._5 {
  display: flex;
  align-items: center;
}

._m .se01 .visual_sw .visual .vbox._5 h2 {
  transform: translateY(30px);
  transition: 0.6s;
  transition-delay: 0.5s;
  opacity: 0;
  background: linear-gradient(to bottom, #ffffff 16%, #dfcbb5 20%, #a48362 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 100px;
  font-weight: 700;
  font-family: 'Noto Serif KR', serif;
  text-align: center;
}

._m .se01 .visual_sw .visual .vbox._5 h2 span {
  display: inline-block;
  color: #67b5a9;
  filter: drop-shadow(2px 4px 6px rgb(122, 122, 122));
}

._m .se01 .visual_sw .visual .vbox._5 dl p {
  font-family: 'Pretendard';
  font-size: 62px;
  font-weight: 400;
  text-align: center;
}

._m .se01 .visual_sw .visual .vbox._5 dl p span {
  font-size: 160px;
  font-weight: 700;
  color: #67b5a9;
  filter: drop-shadow(2px 4px 6px rgb(122, 122, 122));
}

._m .se01 .visual_sw .visual .vbox._5 dl p.p_1 {
  transform: translateY(30px);
  transition: 0.6s;
  transition-delay: 0.8s;
  opacity: 0;
  margin-top: 39px;
  margin-bottom: 15px;
}

._m .se01 .visual_sw .visual .vbox._5 dl dt {
  position: relative;
  overflow: hidden;
}

._m .se01 .visual_sw .visual .vbox._5 dl dt p span {
  display: inline-block;
  margin-right: 30px;
  color: #67b5a9;
  filter: drop-shadow(2px 4px 6px rgb(122, 122, 122));
}

._m .se01 .visual_sw .visual .vbox._5 dl dt p.p_2 {
  transform: translateY(30px);
  transition: 0.6s;
  transition-delay: 1.1s;
  opacity: 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 30px;
}

._m .se01 .visual_sw .visual .vbox._5 dl dt p.p_2 b {
  display: inline-block;
}

._m .se01 .visual_sw .visual .vbox._5 dl dt p.p_2 i {
  font-weight: 600;
}

._m .se01 .visual_sw .visual .vbox._5 dl dd {
  transform: translateY(30px);
  transition: 0.6s;
  transition-delay: 1.4s;
  opacity: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 60px;
  padding-bottom: 5px;
  cursor: pointer;
}

._m .se01 .visual_sw .visual .vbox._5 dl dd p.p_1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #a48362;
  margin-top: 0;
  margin-bottom: 0;
}

._m .se01 .visual_sw .visual .vbox._5 dl dd i {
  background: url(../img/main/main_br_arr.png) no-repeat center center / contain;
  width: 22px;
  height: 22px;
  display: block;
}

._m .se01 .visual_sw .visual .vbox._5 dl dd::after {
  content: '';
  position: absolute;
  display: block;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  background-color: #a48362;
  bottom: 0;
}

._m .se01 .visual_sw .visual .vbox._5 dl dd p {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #a48362;
  margin-top: 0;
  margin-bottom: 0;
}

._m .se01 .visual_sw .visual .swiper-slide-active .vbox._5 h2 {
  opacity: 1;
  transform: translateY(0px);
}

._m .se01 .visual_sw .visual .swiper-slide-active .vbox._5 dl p.p_1 {
  opacity: 1;
  transform: translateY(0px);
}

._m .se01 .visual_sw .visual .swiper-slide-active .vbox._5 dl dt p.p_2 {
  opacity: 1;
  transform: translateY(0px);
}

._m .se01 .visual_sw .visual .swiper-slide-active .vbox._5 dl dd {
  opacity: 1;
  transform: translateY(0px);
}

._m .se01 .visual_sw .visual .vbox._5 .bgWrap .bgbx {
  background-position: top center;
}

._m .se01 .visual_sw .visual .vbox._5 .bgWrap .bglogo {
  position: absolute;
  top: 50%;
  right: -237px;
  transform: translateY(-50%);
}

@media screen and (max-width: 1440px) {
  ._m .se01 .visual_sw .visual .vbox._5 h2 {
    font-size: 70px;
  }

  ._m .se01 .visual_sw .visual .vbox._5 dl p.p_1 {
    font-size: 40px;
  }

  ._m .se01 .visual_sw .visual .vbox._5 dl dd p {
    font-size: 22px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se01 .visual_sw .visual .vbox._5 h2 {
    font-size: 62px;
  }

  ._m .se01 .visual_sw .visual .vbox._5 dl p.p_1 {
    font-size: 30px;
  }

  ._m .se01 .visual_sw .visual .vbox._5 .bgWrap .bglogo {
    right: unset;
    left: -139px;
    top: 33%;
  }

  ._m .se01 .visual_sw .visual .vbox._5 .bgWrap .bglogo img {
    width: 60%;
  }
}

@media screen and (max-width: 500px) {
  ._m .se01 .visual_sw .visual .vbox._5 h2 {
    font-size: 40px;
  }

  ._m .se01 .visual_sw .visual .vbox._5 dl p.p_1 {
    font-size: 20px;
    margin-bottom: 35px;
  }

  ._m .se01 .visual_sw .visual .vbox._5 dl dt p.p_2 {
    font-size: 18px;
    line-height: 22px;
  }
}

@media screen and (max-width: 390px) {
  ._m .se01 .visual_sw .visual .vbox._5 dl p.p_2 {
    font-size: 14px;
    line-height: 20px;
  }

  ._m .se01 .visual_sw .visual .vbox._5 dl dd p {
    font-size: 20px;
  }

  ._m .se01 .visual_sw .visual .vbox._5 dl dt p.p_2 {
    font-size: 15px;
    line-height: 22px;
  }
}

@media screen and (max-width: 370px) {
  ._m .se01 .visual_sw .visual .vbox._5 dl p {
    font-size: 35px;
  }
}

@media screen and (max-width: 330px) {
  ._m .se01 .visual_sw .visual .vbox._5 dl p {
    font-size: 25px;
  }
}

/* visual paging */
._m .se01 .visual_sw .vsPage {
  position: absolute;
  bottom: 145px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

._m .se01 .visual_sw .vsPage .btn {
  font-size: 18px;
  cursor: pointer;
}

._m .se01 .visual_sw .vsPage .pagi {
  display: flex;
  align-items: center;
  margin: 0 30px;
  box-sizing: border-box;
}

._m .se01 .visual_sw .vsPage .pagi .num {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
}

._m .se01 .visual_sw .vsPage .pagi .num.cur_ {
  color: #fff;
}

._m .se01 .visual_sw .vsPage .pagi .lineWrap {
  width: 80px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 13px;
  position: relative;
}

._m .se01 .visual_sw .vsPage .pagi .lineWrap span {
  display: block;
  position: absolute;
  width: 25%;
  height: 3px;
  top: -1px;
  left: 0;
  background-color: #fff;
  transition-duration: 0.2s;
}

@media screen and (max-width: 1440px) {
  ._m .se01 .visual_sw .vsPage {
    display: none;
  }
}

/* section2 */
._m .se02 {
  width: 100%;
  position: relative;
  background-image: url(../img/background/back_003.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  min-height: 100vh;
  padding: 110px 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

._m .se02 .wrap {
  display: flex;
  justify-content: flex-start;
  padding: 0 calc(95 / 1700 * 100%);
  box-sizing: border-box;
  max-width: 1260px;
}

._m .se02 .wrap .no1 {
  position: absolute;
  bottom: -0.4em;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 176px;
  font-family: 'Perpetua Titling MT';
  font-weight: 700;
  z-index: 2;
  background: linear-gradient(to top, #b79e8a, #e3cfbd);
  color: transparent;
  -webkit-background-clip: text;
  padding-right: 6%;
  box-sizing: border-box;
  white-space: nowrap;
}

._m .se02 .wrap .bg-group {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

._m .se02 .wrap .bg-group > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

._m .se02 .wrap .bg-group > div img {
  height: 100%;
}

._m .se02 .wrap .bg-group .bg-1 {
  z-index: 3;
}

._m .se02 .wrap .bg-group .bg-2 {
  mix-blend-mode: overlay;
  z-index: 2;
}

._m .se02 .wrap .bg-group .bg-3 {
  mix-blend-mode: overlay;
  z-index: 1;
}

._m .se02 .wrap .bg-group .bg-4 {
  z-index: 0;
}

._m .se02 .wrap .centerbx {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(50px);
  z-index: 990;
}

._m .se02 .wrap .centerbx .portrait {
  width: 80%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  mask-size: 100%;
  -webkit-mask-size: 100%;
}

._m .se02 .wrap .centerbx .portrait .__max {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform-origin: 50% 50%;
}

._m .se02 .wrap .centerbx .portrait .__max::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

._m .se02 .wrap .txtbx {
  position: relative;
  z-index: 1;
}

._m .se02 .wrap .txtbx dl dt {
  font-size: 22.5px;
  font-weight: 700;
  font-family: 'Noto Serif KR', serif;
  letter-spacing: -0.05em;
  color: #5ec3aa;
  line-height: calc(32 / 22.5);
}

._m .se02 .wrap .txtbx dl dd {
  font-weight: 100;
  font-size: 14.5px;
  letter-spacing: -0.025em;
  line-height: calc(24 / 14.5);
  margin-top: 10px;
}

._m .se02 .wrap .txtbx dl dd .no1_list li {
  position: relative;
}

._m .se02 .wrap .txtbx dl dd .bold {
  font-size: 20px;
  margin-top: 10px;
  display: block;
  font-weight: 200;
}

._m .se02 .wrap .txtbx dl dd .bold2 {
  font-size: 20px;
  font-weight: 600;
}

/* ._m .se02 .wrap .txtbx dl dd .no1_list li::before{ content: ''; display: block; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background-color: #fff; } */
._m .se02 .wrap .txtbx._2 {
  padding-top: 100px;
}

._m .se02 .wrap .pc {
  display: block;
}

._m .se02 .wrap img.pc {
  width: 90%;
  object-position: right;
  object-fit: contain;
  margin-left: auto;
}

._m .se02 .wrap .mo {
  display: none;
}

._m .se02 .wrap .txtbx._2 {
  position: absolute;
  z-index: 99;
  top: 5%;
  right: 10%;
}

._m .se02 .wrap .plusbx._1 {
  position: absolute;
  left: 0;
  transform: translateX(-105%);
  width: 400px;
}

@media screen and (max-width: 1600px) {
  ._m .se02 .wrap {
    padding: 0 5%;
  }

  ._m .se02 .wrap .no1 {
    font-size: 150px;
  }
}

@media screen and (max-width: 1440px) {
  ._m .se02 .wrap {
    padding: 0 6%;
    align-items: flex-end;
  }

  ._m .se02 .wrap .no1 {
    font-size: 130px;
  }

  ._m .se02 .wrap .txtbx._1 {
    padding-top: 0;
    padding-bottom: 20%;
  }

  ._m .se02 .wrap .txtbx._1 dl:nth-child(1) {
    margin-bottom: 0;
  }

  ._m .se02 .wrap .txtbx._2 {
    padding-top: 0;
    padding-bottom: 80px;
  }

  /* ._m .se02 .wrap .txtbx dl dd br{ display: none; } */
}

@media screen and (max-width: 1280px) {
  /* ._m .se02 .wrap .txtbx dl dt br{ display: none; } */
  ._m .se02 .wrap .plusbx._1 {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  ._m .se02 .wrap {
    padding: 0 8%;
    flex-direction: column;
    align-items: center;
  }

  ._m .se02 .wrap .txtbx {
    width: 100%;
  }

  /* ._m .se02 .wrap .centerbx{ order: 1; width: 70%; max-width: 400px; } */
  ._m .se02 .wrap .txtbx._1 {
    padding-bottom: 0;
    order: 2;
    margin-top: 70px;
    text-align: left;
  }

  ._m .se02 .wrap .txtbx._2 {
    padding-bottom: 0;
    order: 3;
    margin-top: 30px;
    position: static;
  }

  ._m .se02 .wrap .no1 {
    font-size: 12.69vw;
  }

  ._m .se02 .wrap .txtbx dl dt {
    font-size: 20px;
  }

  ._m .se02 .wrap .txtbx dl dd {
    font-size: 14px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se02 .wrap .pc {
    display: none;
  }

  ._m .se02 .wrap .mo {
    display: block;
  }

  ._m .se02 {
    padding: 70px 0 297px 0;
  }

  ._m .se02 .wrap {
    padding: 0 12%;
  }

  ._m .se02 .wrap .txtbx._1 {
    margin-top: 0px;
    text-align: center;
    margin-bottom: 0;
  }

  ._m .se02 .wrap .txtbx._2 {
    position: static;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  }

  ._m .se02 .wrap .centerbx .portrait img {
    width: 100%;
    margin: 0 auto;
  }

  ._m .se02 .wrap .bg-group > div img {
    position: absolute;
    bottom: 0;
    height: unset;
    max-width: unset;
  }
}

@media screen and (max-width: 500px) {
  ._m .se02 .wrap {
    padding: 0 5%;
  }

  ._m .se02 .wrap .txtbx dl dt {
    font-size: 18px;
  }

  ._m .se02 .wrap .txtbx dl dd {
    font-size: 13px;
  }
}

@media screen and (max-width: 350px) {
  ._m .se02 .wrap {
    padding: 0 5%;
  }
}

/* section3 */
._m .se03 {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 110px 0;
  box-sizing: border-box;
  color: #fff;
  background-image: url(../img/main/se03_bg.jpg);
  background-position: center;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-repeat: no-repeat;
}

._m .se03 .vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: circle(25%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/main/se03_bgsample.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

._m .se03 .vid video {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

._m .se03 .vid .wrap {
  position: relative;
}

._m .se03 .vid .wrap h2 {
  text-align: center;
  font-size: 3.02vw;
  letter-spacing: -0.05em;
  line-height: calc(100 / 58);
  font-weight: 300;
  padding-bottom: 2em;
}

._m .se03 .icltit {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  font-size: 3.125vw;
  letter-spacing: -0.05em;
  font-weight: 600;
  justify-content: center;
  padding-bottom: 160px;
}

._m .se03 .icltit em {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3.125vw;
  flex-shrink: 0;
}

._m .se03 .icltit em img {
  margin: 0 8px;
}

@media screen and (min-width: 1920px) {
  ._m .se03 .vid .wrap h2 {
    font-size: 58px;
  }

  ._m .se03 .icltit {
    font-size: 60px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se03 .vid .wrap h2 {
    font-size: 5.3vw;
  }

  ._m .se03 .icltit em img {
    width: 30px;
  }

  ._m .se03 .icltit {
    font-size: 5.125vw;
  }
}

@media screen and (max-width: 768px) {
}

/* section4 */
._m .se04 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 200px;
}

._m .se04 .pinWrap {
  transition: 0.3s;
  display: flex;
  justify-content: center;
  height: 100vh;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  mix-blend-mode: difference;
}

._m .se04 .pinWrap .align {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding-top: 210px;
  width: 100%;
}

._m .se04 .pinWrap dl {
  font-size: 92px;
  font-weight: 300;
  line-height: calc(120 / 100);
  font-family: 'Perpetua Titling MT';
  box-sizing: border-box;
  display: inline-block;
}

._m .se04 .pinWrap dl dt {
  color: #acacac;
  transition-duration: 0.2s;
}

._m .se04 .pinWrap dl dd {
  color: #5c7c9e;
  transition-duration: 0.2s;
}

._m .se04 .pinWrap dl dd.d_2 {
  color: #b56767;
  font-size: 68px;
  opacity: 1;
}

._m .se04 .pinWrap dl dd.d_2 .fz-tr {
  font-family: 'Pretendard';
  font-weight: 200;
  color: #acacac;
}

._m .se04 .pinWrap.on dl dt {
  color: #535353;
}

._m .se04 .pinWrap.on dl dd {
  color: #a38361;
}

._m .se04 .pinWrap.on dl dd.d_2 {
  opacity: 0;
  color: #a38361;
}

._m .se04 .pinWrap.on dl dd.d_2 .fz-tr {
  color: #535353;
}

._m .se04 .pinWrap dl dd span {
  color: #63c0a7;
}

._m .se04 .pinWrap.on dl dd span {
  color: #acacac;
}

._m .se04 .pinWrap p {
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1.3;
  font-weight: 300;
  color: #404040;
  text-align: right;
}

._m .se04 .pinWrap.on_2 {
  opacity: 0;
}

._m .se04 .scrollWrap {
  padding-top: 50vh;
}

._m .se04 .scrollWrap .imgbx {
  display: flex;
  justify-content: space-between;
}

._m .se04 .scrollWrap .imgbx .imgs {
  width: calc(735 / 1510 * 100%);
  position: relative;
}

._m .se04 .scrollWrap .imgbx .imgs .__max {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

._m .se04 .scrollWrap .imgbx .imgs .__max::after {
  content: '';
  display: block;
  padding-bottom: calc(510 / 735 * 100%);
}

._m .se04 .scrollWrap .txt04 {
  width: 100%;
  text-align: center;
  margin-top: 95px;
}

._m .se04 .scrollWrap .txt04 dl dt {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #4d4d4d;
  line-height: 1.8;
}

._m .se04 .scrollWrap .txt04 dl dt span {
  font-weight: 600;
}

._m .se04 .scrollWrap .txt04 dl dd {
  font-size: 60px;
  letter-spacing: -0.05em;
  font-weight: 600;
  line-height: 1.3;
  color: #404040;
  margin-top: 35px;
}

._m .se04 .scrollWrap .txt04 dl dd span {
  color: #a38361;
}

._m .se04 .scrollWrap .txt04 .moreArr {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin-top: 35px;
  position: relative;
  z-index: 10;
}

._m .se04 .scrollWrap .txt04 .moreArr > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  position: relative;
  border-radius: 50%;
}

._m .se04 .scrollWrap .txt04 .moreArr > a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #a38361;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition-duration: 0.2s;
  animation: bling 1s infinite;
}

._m .se04 .scrollWrap .txt04 .moreArr > a span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #a38361;
  transition-duration: 0.2s;
}

/* section4 수정 */
/* ._m .se04{padding-top: 280px;} */
._m .se04 .bg_ {
  height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

._m .se04 .se04_tit_group dl {
  font-size: 92px;
  font-weight: 300;
  line-height: calc(120 / 100);
  font-family: 'Perpetua Titling MT';
  box-sizing: border-box;
  display: inline-block;
}

._m .se04 .se04_tit_group dl dt {
  color: #535353;
}

._m .se04 .se04_tit_group dl dd {
  color: #a38361;
  transition-duration: 0.2s;
}

._m .se04 .se04_tit_group dl dd.d_2 {
  font-size: 66px;
  color: #67b5a9;
}

._m .se04 .se04_tit_group dl dd.d_2 .fz-tr {
  font-family: 'Pretendard';
  color: #535353;
}

._m .se04 .equip-box {
  position: relative;
  top: -90px;
  z-index: 1;
}

._m .se04 .img-group {
  width: 767px;
  background: #000;
  height: 100%;
  z-index: 1;
}

._m .se04 .cont-group .cont-box {
  position: relative;
  height: 490px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 70px;
  margin-top: 260px;
}

._m .se04 .cont-group .cont-box1 {
  margin-top: 200px;
}

._m .se04 .cont-group .cont-box3 {
  gap: 140px;
}

._m .se04 .cont-group .cont-box3 .equip-box {
  left: 40px;
}

._m .se04 .cont-group .cont-box img {
  object-fit: contain;
  height: 100%;
}

._m .se04 .cont-group .gif-box {
  text-align: center;
  height: 100%;
}

._m .se04 .cont-group .gif-box video {
  height: 100%;
}

._m .se04 .cont-group .cont-box .bg-num {
  font-family: 'Noto Serif', serif;
  font-size: 300px;
  font-weight: 400;
  line-height: 300px;
  color: #67b5a9;
  opacity: 20%;
}

._m .se04 .cont-group .cont-box1 .bg-num {
  position: absolute;
  right: 786px;
  top: -250px;
}

._m .se04 .cont-group .cont-box2 .bg-num {
  position: absolute;
  right: 453px;
  top: -210px;
}

._m .se04 .cont-group .cont-box3 .bg-num {
  position: absolute;
  left: 390px;
  top: -230px;
}

._m .se04 .cont-group .txt04 {
  width: 100%;
  text-align: center;
  margin-top: 95px;
}

._m .se04 .cont-group .txt04 dl dt {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #4d4d4d;
  line-height: 1.8;
}

._m .se04 .cont-group .txt04 dl dt span {
  font-weight: 600;
}

._m .se04 .cont-group .txt04 dl dd {
  font-size: 60px;
  letter-spacing: -0.05em;
  font-weight: 600;
  line-height: 1.3;
  color: #404040;
  margin-top: 35px;
}

._m .se04 .cont-group .txt04 dl dd span {
  color: #a38361;
}

._m .se04 .cont-group .txt04 .moreArr {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin-top: 35px;
  position: relative;
  z-index: 10;
}

._m .se04 .cont-group .txt04 .moreArr > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  position: relative;
  border-radius: 50%;
}

._m .se04 .cont-group .txt04 .moreArr > a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #a38361;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition-duration: 0.2s;
  animation: bling 1s infinite;
}

._m .se04 .cont-group .txt04 .moreArr > a span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #a38361;
  transition-duration: 0.2s;
}

@media screen and (min-width: 821px) {
  ._m .se04 .scrollWrap .txt04 .moreArr > a:hover::after {
    width: 45px;
    height: 45px;
  }

  ._m .se04 .scrollWrap .txt04 .moreArr > a:hover span {
    width: 70px;
    height: 70px;
  }

  ._m .se04 .cont-group .txt04 .moreArr > a:hover::after {
    width: 45px;
    height: 45px;
  }

  ._m .se04 .cont-group .txt04 .moreArr > a:hover span {
    width: 70px;
    height: 70px;
  }
}

@keyframes bling {
  0% {
    opacity: 0.8;
    width: 45px;
    height: 45px;
  }

  100% {
    opacity: 0;
    width: 70px;
    height: 70px;
  }
}

@media screen and (min-width: 1920px) {
  ._m .se04 .pinWrap dl {
    font-size: 92px;
  }
}

@media screen and (max-width: 1620px) {
  /* ._m .se04 .se04_tit_group dl dd.d_2{display: none;} */
  ._m .se04 .cont-group .cont-box img.pc {
    display: block;
  }

  ._m .se04 .cont-group .cont-box img.mo {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  ._m .se04 {
    background-attachment: fixed;
  }

  ._m .se04 .pinWrap p {
    font-size: 18px;
  }

  ._m .se04 .scrollWrap .txt04 dl dt {
    font-size: 18px;
  }

  ._m .se04 .scrollWrap .txt04 dl dd {
    font-size: 40px;
  }

  ._m .se04 .cont-group .cont-box img.pc {
    display: none;
  }

  ._m .se04 .cont-group .cont-box img.mo {
    display: block;
  }

  ._m .se04 {
    padding-top: 111px;
    padding-bottom: 157px;
  }

  ._m .se04 .cont-group .txt04 dl dt {
    font-size: 18px;
  }

  ._m .se04 .cont-group .txt04 dl dd {
    font-size: 40px;
  }

  ._m .se04 .equip-box {
    top: 0;
  }

  ._m .se04 .cont-group .cont-box3 .equip-box {
    left: unset;
  }

  ._m .se04 .cont-group .cont-box {
    height: inherit;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 70px;
    gap: 19px;
  }

  ._m .se04 .cont-group .cont-box:nth-child(1) {
    margin-top: 40px;
  }

  ._m .se04 .cont-group .cont-box:nth-child(2) {
    flex-direction: column-reverse;
  }

  ._m .se04 .se04_tit_group dl {
    font-size: 35px;
    line-height: 45px;
  }

  ._m .se04 .se04_tit_group dl dd.d_2 {
    font-size: 35px;
    line-height: 45px;
  }

  ._m .se04 .cont-group {
    padding: 0;
    margin-top: 73px;
  }

  ._m .se04 .cont-group .cont-box .img-group {
    width: 100%;
  }

  ._m .se04 .cont-group .gif-box {
    height: 400px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se04 {
    padding-bottom: 70px;
  }

  ._m .se04 .pinWrap {
    padding: 0 10%;
    height: auto;
  }

  ._m .se04 .pinWrap .align {
    padding-top: 0px;
  }

  ._m .se04 .pinWrap dl {
    font-size: 35px;
  }

  ._m .se04 .pinWrap dl dd.d_2 {
    font-size: 35px;
  }

  ._m .se04 .pinWrap p {
    font-size: 16px;
  }

  ._m .se04 .scrollWrap {
    padding-top: 0;
    margin-top: 50px;
    padding: 0 12%;
  }

  ._m .se04 .scrollWrap .txt04 {
    margin-top: 40px;
  }

  ._m .se04 .scrollWrap .txt04 dl dt {
    font-size: 16px;
  }

  ._m .se04 .scrollWrap .txt04 dl dd {
    font-size: 32px;
    margin-top: 20px;
  }

  ._m .se04 .cont-group {
    padding-top: 0;
    margin-top: 50px;
  }

  ._m .se04 .cont-group .txt04 {
    margin-top: 40px;
  }

  ._m .se04 .cont-group .txt04 dl dt {
    font-size: 16px;
  }

  ._m .se04 .cont-group .txt04 dl dd {
    font-size: 32px;
    margin-top: 20px;
  }

  ._m .se04 .cont-group .gif-box {
    height: 300px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se04 .pinWrap dl {
    font-size: 29px;
  }

  ._m .se04 .pinWrap dl dd.d_2 {
    font-size: 29px;
  }

  ._m .se04 .pinWrap p {
    font-size: 14px;
  }

  ._m .se04 .scrollWrap .txt04 {
    margin-top: 70px;
    box-sizing: border-box;
  }

  ._m .se04 .scrollWrap .txt04 dl dt {
    font-size: 14px;
  }

  ._m .se04 .scrollWrap .txt04 dl dd {
    font-size: 24px;
    margin-top: 10px;
  }

  ._m .se04 .cont-group .txt04 {
    margin-top: 70px;
    box-sizing: border-box;
  }

  ._m .se04 .cont-group .txt04 dl dt {
    font-size: 14px;
  }

  ._m .se04 .cont-group .txt04 dl dd {
    font-size: 20px;
    margin-top: 10px;
  }

  ._m .se04 .cont-group .txt04 .moreArr {
    margin-top: 25px;
  }

  ._m .se04 .cont-group .gif-box {
    height: 200px;
  }
}

@media screen and (max-width: 350px) {
  ._m .se04 .pinWrap {
    padding: 0;
    padding-top: 70px;
  }

  ._m .se04 .pinWrap dl {
    font-size: 6.5vw;
  }

  ._m .se04 .pinWrap dl dd.d_2P {
    font-size: 6.5vw;
  }

  ._m .se04 .scrollWrap .txt04 {
    padding: 0;
  }

  ._m .se04 .cont-group .txt04 {
    padding: 0;
  }
}

/* section5 */
._m .se05 {
  background-image: url(../img/main/se05_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding-bottom: 110px;
  box-sizing: border-box;
  color: #fff;
}

._m .se05 .wrap {
  display: flex;
  justify-content: space-between;
}

._m .se05 .pins {
  width: calc(580 / 1700 * 100%);
  padding-left: calc(95 / 1700 * 100%);
  box-sizing: border-box;
  padding-right: 10px;
  padding-top: 305px;
}

._m .se05 .pins dt {
  font-size: 60px;
  letter-spacing: -0.05em;
  line-height: calc(86 / 60);
  font-weight: 300;
}

._m .se05 .pins dt span {
  font-weight: 600;
}

._m .se05 .pins dd {
  font-size: 12px;
  font-weight: 600;
  margin-top: 120px;
}

._m .se05 .pins dd i {
  font-size: 16px;
}

._m .se05 .ch_List {
  padding-top: 305px;
  width: calc(1120 / 1700 * 100%);
}

._m .se05 .ch_List li {
  position: relative;
}

._m .se05 .ch_List li:nth-of-type(2n) {
  margin-left: auto;
}

._m .se05 .ch_List li .num {
  font-size: 50px;
  font-weight: 300;
  font-family: 'Perpetua Titling MT';
  border-bottom: 3px solid #fff;
  display: inline-block;
  position: absolute;
  top: -1.3em;
  left: 10px;
  z-index: 3;
}

/* ._m .se05 .ch_List .ch_List01 .num{} */
._m .se05 .ch_List li .thumb {
  overflow: hidden;
}

._m .se05 .ch_List li .thumb ._max_ {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

._m .se05 .ch_List li .thumb ._max_::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

._m .se05 .ch_List li > p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.7;
  margin-top: 25px;
}

._m .se05 .ch_List li:nth-of-type(1) {
  width: calc(475 / 1120 * 100%);
}

._m .se05 .ch_List li:nth-of-type(2) {
  margin-top: -325px;
  width: calc(540 / 1120 * 100%);
}

._m .se05 .ch_List li:nth-of-type(3) {
  margin-top: -25px;
  width: calc(425 / 1120 * 100%);
}

._m .se05 .ch_List li:nth-of-type(4) {
  margin-top: -320px;
  width: calc(510 / 1120 * 100%);
}

._m .se05 .ch_List li:nth-of-type(5) {
  margin-top: 30px;
  width: calc(505 / 1120 * 100%);
}

._m .se05 .ch_List li:nth-of-type(6) {
  margin-top: -365px;
  width: calc(465 / 1120 * 100%);
  margin-right: calc(65 / 1120 * 100%);
}

._m .se05 .ch_List li:nth-of-type(1) .thumb ._max_::after {
  padding-bottom: calc(380 / 475 * 100%);
}

._m .se05 .ch_List li:nth-of-type(2) .thumb ._max_::after {
  padding-bottom: calc(435 / 540 * 100%);
}

._m .se05 .ch_List li:nth-of-type(3) .thumb ._max_::after {
  padding-bottom: calc(430 / 425 * 100%);
}

._m .se05 .ch_List li:nth-of-type(4) .thumb ._max_::after {
  padding-bottom: calc(415 / 510 * 100%);
}

._m .se05 .ch_List li:nth-of-type(5) .thumb ._max_::after {
  padding-bottom: calc(460 / 505 * 100%);
}

._m .se05 .ch_List li:nth-of-type(6) .thumb ._max_::after {
  padding-bottom: calc(360 / 465 * 100%);
}

@media screen and (max-width: 1800px) {
  ._m .se05 .ch_List {
    padding-right: 50px;
  }
}

@media screen and (max-width: 1440px) {
  ._m .se05 .pins dt {
    font-size: 52px;
  }

  ._m .se05 .pins dd {
    margin-top: 60px;
  }

  ._m .se05 .ch_List li .num {
    font-size: 42px;
  }

  ._m .se05 .ch_List li:nth-of-type(2) {
    margin-top: -250px;
  }

  ._m .se05 .ch_List li:nth-of-type(3) {
    margin-top: -10px;
  }

  ._m .se05 .ch_List li:nth-of-type(4) {
    margin-top: -250px;
  }

  ._m .se05 .ch_List li:nth-of-type(5) {
    margin-top: 40px;
  }

  ._m .se05 .ch_List li:nth-of-type(6) {
    margin-top: -300px;
  }
}

@media screen and (max-width: 1280px) {
  ._m .se05 {
    padding-bottom: 200px;
  }

  ._m .se05 .pins {
    padding-top: 240px;
    padding-left: 70px;
  }

  ._m .se05 .pins dt {
    font-size: 38px;
  }

  ._m .se05 .pins dd {
    margin-top: 40px;
  }

  ._m .se05 .ch_List {
    padding-top: 240px;
  }

  ._m .se05 .ch_List li .num {
    font-size: 36px;
  }

  ._m .se05 .ch_List li > p {
    font-size: 18px;
    margin-top: 10px;
  }

  ._m .se05 .ch_List li > p br {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  ._m .se05 {
    padding-bottom: 200px;
  }

  ._m .se05 .pins {
    padding-top: 150px;
    padding-left: 60px;
  }

  ._m .se05 .pins dt {
    font-size: 28px;
  }

  ._m .se05 .pins dd {
    margin-top: 30px;
  }

  ._m .se05 .ch_List {
    padding-top: 150px;
  }

  ._m .se05 .ch_List li .num {
    font-size: 24px;
  }

  ._m .se05 .ch_List li > p {
    font-size: 16px;
    margin-top: 5px;
  }

  ._m .se05 .ch_List li:nth-of-type(2) {
    margin-top: -200px;
  }

  ._m .se05 .ch_List li:nth-of-type(3) {
    margin-top: 0;
  }

  ._m .se05 .ch_List li:nth-of-type(4) {
    margin-top: -200px;
  }

  ._m .se05 .ch_List li:nth-of-type(5) {
    margin-top: 50px;
  }

  ._m .se05 .ch_List li:nth-of-type(6) {
    margin-top: -250px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se05 {
    padding-top: 70px;
    padding-bottom: 180px;
  }

  ._m .se05 .wrap {
    flex-direction: column;
    padding: 0 10%;
    box-sizing: border-box;
  }

  ._m .se05 .pins {
    width: 100%;
    padding: 0;
  }

  ._m .se05 .pins dt br {
    display: none;
  }

  ._m .se05 .pins dd {
    margin-top: 20px;
  }

  ._m .se05 .ch_List {
    width: 100%;
    padding: 0;
    margin-top: 70px;
  }

  ._m .se05 .ch_List li > p {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se05 .ch_List li:nth-of-type(1) {
    width: 100%;
  }

  ._m .se05 .ch_List li:nth-of-type(2),
  ._m .se05 .ch_List li:nth-of-type(3),
  ._m .se05 .ch_List li:nth-of-type(4),
  ._m .se05 .ch_List li:nth-of-type(5),
  ._m .se05 .ch_List li:nth-of-type(6) {
    width: 100%;
    margin-top: 40px;
  }
}

@media screen and (max-width: 350px) {
  ._m .se05 .wrap {
    padding: 0;
  }
}

/* section06 */
._m .se06 {
  width: 100%;
  position: relative;
  padding-top: 20.05vw;
  padding-bottom: 5.72vw;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

._m .se06 .bg_ {
  background-image: url(../img/main/se06_bg_02.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 1920px) {
  ._m .se06 {
    padding-top: 375px;
    padding-bottom: 110px;
  }
}

._m .se06 .obj {
  position: absolute;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  background-color: rgba(163, 131, 97, 0.15);
}

._m .se06 .obj > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(163, 131, 97, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

._m .se06 .obj._1 {
  background-color: rgba(103, 181, 169, 0.15);
}

._m .se06 .obj._10 {
  background-color: rgba(103, 181, 169, 0.15);
}

._m .se06 .obj._11 {
  background-color: rgba(103, 181, 169, 0.15);
}

._m .se06 .obj._12 {
  background-color: rgba(103, 181, 169, 0.15);
}

._m .se06 .obj._13 {
  background-color: rgba(103, 181, 169, 0.15);
}

._m .se06 .obj._14 {
  background-color: rgba(103, 181, 169, 0.15);
}

._m .se06 .obj._15 {
  background-color: rgba(103, 181, 169, 0.15);
}

._m .se06 .obj::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: objs 2s infinite;
  background-color: rgba(163, 131, 97, 0.15);
  border-radius: 50%;
  animation-delay: 0.5s;
}

._m .se06 .obj span::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: objs 2s infinite;
  background-color: rgba(163, 131, 97, 0.15);
  border-radius: 50%;
}

.bg_location {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

._m .se06 .obj ._img {
  display: none;
  position: absolute;
  bottom: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
}

._m .se06 .obj:hover ._img {
  display: block;
  z-index: 9999999;
}

._m .se06 .obj ._img p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}

@keyframes objs {
  0% {
    opacity: 0.8;
    width: 0;
    height: 0;
  }

  100% {
    opacity: 0;
    width: 110px;
    height: 110px;
  }
}

._m .se06 .obj span img {
  animation: ball 0.8s infinite alternate-reverse;
}

@keyframes ball {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

._m .se06 .obj._8 .balloon {
  color: #fff;
  animation: ball 0.8s infinite alternate-reverse;
}

._m .se06 .obj._8 .balloon dl {
  width: 140px;
  height: 147px;
  background-image: url(../img/main/se06_balloon.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

._m .se06 .obj._8 .balloon dl::after {
  content: '';
  display: block;
  width: calc(238 / 203 * 100%);
  height: calc(238 / 215 * 100%);
  border-radius: 50%;
  background-color: #a38361;
  opacity: 0.15;
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

._m .se06 .obj._8 .balloon dl dt {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
}

._m .se06 .obj._8 .balloon dl dt em {
  display: inline-block;
  position: relative;
}

._m .se06 .obj._8 .balloon dl dt em::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
}

._m .se06 .obj._8 .balloon dl dd {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

._m .se06 .obj._8::after {
  display: none;
}

._m .se06 .obj._1 {
  top: calc(220 / 970 * 100%);
  left: calc(205 / 1920 * 100%);
}

._m .se06 .obj._2 {
  top: calc(475 / 970 * 100%);
  left: calc(330 / 1920 * 100%);
}

._m .se06 .obj._3 {
  bottom: calc(565 / 970 * 100%);
  left: calc(760 / 1920 * 100%);
}

._m .se06 .obj._4 {
  bottom: calc(585 / 970 * 100%);
  left: calc(800 / 1920 * 100%);
}

._m .se06 .obj._5 {
  top: calc(195 / 970 * 100%);
  left: calc(910 / 1920 * 100%);
}

._m .se06 .obj._6 {
  bottom: calc(705 / 970 * 100%);
  right: calc(520 / 1920 * 100%);
}

._m .se06 .obj._7 {
  top: calc(525 / 970 * 100%);
  right: calc(360 / 1920 * 100%);
}

._m .se06 .obj._8 {
  top: calc(235 / 970 * 100%);
  right: calc(263 / 1920 * 100%);
}

._m .se06 .obj._9 {
  top: calc(295 / 970 * 100%);
  right: calc(160 / 1920 * 100%);
}

._m .se06 .obj._10 {
  top: calc(295 / 970 * 100%);
  right: calc(630 / 1920 * 100%);
}

._m .se06 .obj._11 {
  top: calc(345 / 970 * 100%);
  right: calc(400 / 1920 * 100%);
}

._m .se06 .obj._12 {
  top: calc(265 / 970 * 100%);
  left: calc(340 / 1920 * 100%);
}

._m .se06 .obj._13 {
  top: calc(395 / 970 * 100%);
  right: calc(800 / 1920 * 100%);
}

._m .se06 .obj._14 {
  top: calc(525 / 970 * 100%);
  right: calc(530 / 1920 * 100%);
}

._m .se06 .obj._15 {
  top: calc(365 / 970 * 100%);
  left: calc(250 / 1920 * 100%);
}

._m .se06 .wrap {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(400 / 1920 * 100%);
  box-sizing: border-box;
}

._m .se06 .align {
  position: relative;
}

._m .se06 .align .balloon {
  display: none;
  position: absolute;
  left: -25px;
  color: #fff;
}

._m .se06 .align .balloon dl {
  width: 153px;
  height: 162px;
  background-image: url(../img/main/se06_balloon.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

._m .se06 .align .balloon dl::after {
  content: '';
  display: block;
  width: calc(238 / 203 * 100%);
  height: calc(238 / 215 * 100%);
  border-radius: 50%;
  background-color: #a38361;
  opacity: 0.15;
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

._m .se06 .align .balloon dl dt {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
}

._m .se06 .align .balloon dl dt em {
  display: inline-block;
  position: relative;
}

._m .se06 .align .balloon dl dt em::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
}

._m .se06 .align .balloon dl dd {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.customoverlay {
  bottom: 80px;
  position: absolute;
  transform: translateX(-50%);
}

.customoverlay a {
  font-size: 13px;
  color: #212121;
  padding: 3px 5px;
  background-color: #fff;
  border: 1px solid #212121;
}

._m .se06 .align .tit06 dt {
  font-family: 'Perpetua Titling MT';
  font-weight: 300;
  color: #535353;
  line-height: calc(160 / 140);
  font-size: 7.29vw;
}

._m .se06 .align .tit06 dd {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #4d4d4d;
  line-height: 1.7;
}

._m .se06 .align .tit06 dd span {
  font-weight: 600;
}

@media screen and (min-width: 1920px) {
  ._m .se06 .align .tit06 dt {
    font-size: 140px;
  }
}

._m .se06 .morebtn {
  position: absolute;
  bottom: 100px;
  z-index: 6;
  right: calc(50%);
  transform: translateX(50%);
}

._m .se06 .morebtn > a {
  display: inline-flex;
  align-items: center;
  padding: 5px 0;
  font-size: 18px;
  letter-spacing: -0.05em;
  color: #a38361;
  border-bottom: 1px solid #a38361;
}

._m .se06 .morebtn > a i {
  transition-duration: 0.2s;
  margin-left: 5px;
}

.pb60 {
  padding-bottom: 65px;
}

@media screen and (min-width: 821px) {
  ._m .se06 .morebtn > a:hover i {
    transform: translateX(10px);
  }
}

@media screen and (max-width: 1440px) {
  ._m .se06 .wrap {
    padding-right: 38%;
  }

  /* ._m .se06 .align .tit06 dt{ font-size: 100px; } */
  ._m .se06 .align .balloon dl {
    width: 153px;
    height: 162px;
  }

  ._m .se06 .align .balloon dl dt {
    font-size: 20px;
  }

  ._m .se06 .align .balloon dl dd {
    font-size: 22px;
  }

  ._m .se06 .align .tit06 dd {
    font-size: 18px;
  }

  ._m .se06 .morebtn > a {
    font-size: 16px;
  }

  ._m .se06 .obj {
    scale: 0.7;
  }
}

@media screen and (max-width: 1250px) {
  ._m .se06 .align .balloon {
    top: -60px;
    right: -40px;
    left: unset;
  }

  /* ._m .se06 .obj{display: none;} */
  ._m .se06 .obj._1 {
    top: calc(190 / 970 * 100%);
    left: calc(145 / 1920 * 100%);
  }

  ._m .se06 .obj._2 {
    top: calc(450 / 970 * 100%);
    left: calc(290 / 1920 * 100%);
  }

  ._m .se06 .obj._4 {
    bottom: calc(565 / 970 * 100%);
    left: calc(770 / 1920 * 100%);
  }

  ._m .se06 .obj._5 {
    top: calc(175 / 970 * 100%);
    left: calc(890 / 1920 * 100%);
  }

  ._m .se06 .obj._6 {
    bottom: calc(675 / 970 * 100%);
    right: calc(480 / 1920 * 100%);
  }

  ._m .se06 .obj._7 {
    top: calc(490 / 970 * 100%);
    right: calc(310 / 1920 * 100%);
  }

  ._m .se06 .obj._8 {
    top: calc(207 / 970 * 100%);
    right: calc(223 / 1920 * 100%);
  }

  ._m .se06 .obj._9 {
    right: calc(120 / 1920 * 100%);
  }

  ._m .se06 .obj._10 {
    top: calc(285 / 970 * 100%);
    right: calc(600 / 1920 * 100%);
  }

  ._m .se06 .obj._11 {
    right: calc(360 / 1920 * 100%);
  }

  ._m .se06 .obj._12 {
    top: calc(235 / 970 * 100%);
    left: calc(300 / 1920 * 100%);
  }

  ._m .se06 .obj._13 {
    top: calc(375 / 970 * 100%);
    right: calc(770 / 1920 * 100%);
  }

  ._m .se06 .obj._14 {
    top: calc(475 / 970 * 100%);
    right: calc(500 / 1920 * 100%);
  }

  ._m .se06 .obj._15 {
    left: calc(220 / 1920 * 100%);
  }

  /* ._m .se06 .obj:hover ._img{display: none;} */
}

@media screen and (max-width: 1024px) {
  ._m .se06 .wrap {
    position: relative;
    padding: 0;
    justify-content: center;
    padding-left: 10%;
    left: -130px;
    top: -20px;
  }

  ._m .se06 .align .tit06 dt {
    font-size: 5.29vw;
  }

  ._m .se06 .align .balloon dl {
    width: 113px;
    height: 119px;
  }

  ._m .se06 .align .balloon dl dt {
    font-size: 16px;
  }

  ._m .se06 .align .balloon dl dd {
    font-size: 18px;
  }

  ._m .se06 .obj {
    scale: 0.4;
  }

  ._m .se06 .obj._8 {
    scale: 0.6;
    top: calc(177 / 970 * 100%);
  }

  ._m .se06 .obj._8 .balloon {
    animation: unset;
  }
}

@media screen and (max-width: 820px) {
  /* ._m .se06 .align .balloon{top: -60px;} */
  ._m .se06 .align .tit06 dd {
    font-size: 16px;
  }

  ._m .se06 .obj {
    opacity: 0.4;
  }

  ._m .se06 .morebtn {
    bottom: 30px;
  }
}

@media screen and (max-width: 800px) {
  ._m .se06 .obj._8 .balloon dl dd {
    font-size: 24px;
  }

  ._m .se06 .obj._8 .balloon dl dt {
    font-size: 24px;
  }

  ._m .se06 .obj {
    scale: 0.7;
  }

  ._m .se06 .obj._1 {
    top: calc(170 / 970 * 100%);
    left: calc(95 / 1920 * 100%);
  }

  ._m .se06 .obj._2 {
    top: calc(420 / 970 * 100%);
    left: calc(250 / 1920 * 100%);
  }

  ._m .se06 .obj._4 {
    bottom: calc(535 / 970 * 100%);
    left: calc(730 / 1920 * 100%);
  }

  ._m .se06 .obj._5 {
    top: calc(145 / 970 * 100%);
    left: calc(860 / 1920 * 100%);
  }

  ._m .se06 .obj._6 {
    bottom: calc(625 / 970 * 100%);
    right: calc(400 / 1920 * 100%);
  }

  ._m .se06 .obj._7 {
    top: calc(460 / 970 * 100%);
    right: calc(280 / 1920 * 100%);
  }

  ._m .se06 .obj._8 {
    scale: 1;
    top: calc(157 / 970 * 100%);
    right: calc(183 / 1920 * 100%);
  }

  ._m .se06 .obj._9 {
    top: calc(265 / 970 * 100%);
    right: calc(80 / 1920 * 100%);
  }

  ._m .se06 .obj._10 {
    top: calc(255 / 970 * 100%);
    right: calc(570 / 1920 * 100%);
  }

  ._m .se06 .obj._11 {
    top: calc(315 / 970 * 100%);
    right: calc(310 / 1920 * 100%);
  }

  ._m .se06 .obj._12 {
    top: calc(195 / 970 * 100%);
    left: calc(270 / 1920 * 100%);
  }

  ._m .se06 .obj._13 {
    top: calc(345 / 970 * 100%);
    right: calc(740 / 1920 * 100%);
  }

  ._m .se06 .obj._14 {
    top: calc(445 / 970 * 100%);
    right: calc(460 / 1920 * 100%);
  }

  ._m .se06 .obj._15 {
    top: calc(325 / 970 * 100%);
    left: calc(180 / 1920 * 100%);
  }
}

@media screen and (max-width: 600px) {
  ._m .se06 .wrap {
    left: unset;
    top: 30px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se06 {
    align-items: center;
    padding-top: unset;
  }

  /* ._m .se06 .bg_{aspect-ratio: 16 / 9;height: unset;} */
  /* ._m .se06 .bg_{background-image: url(../img/main/se06_bg_mo.png);} */
  ._m .se06 .wrap {
    padding: 0;
    padding-top: 50px;
    left: unset;
    top: unset;
  }

  ._m .se06 .align .balloon {
    left: 34%;
    top: -100px;
  }

  ._m .se06 .align .balloon dl {
    width: 83px;
    height: 88px;
  }

  ._m .se06 .align .balloon dl dt {
    font-size: 14px;
  }

  ._m .se06 .align .balloon dl dd {
    font-size: 16px;
  }

  ._m .se06 .align .tit06 dt {
    font-size: 10.89vw;
    text-align: center;
  }

  ._m .se06 .align .tit06 dd {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
  }

  ._m .se06 .morebtn {
    bottom: 30px;
    display: none;
  }

  ._m .se06 .morebtn > a {
    font-size: 14px;
  }

  .pb60 {
    padding-bottom: 30px;
  }

  ._m .se06 .obj {
    transform: scale(0.5);
  }

  ._m .se06 .obj._1 {
    top: calc(80 / 970 * 100%);
    left: calc(5 / 1920 * 100%);
  }

  ._m .se06 .obj._2 {
    top: calc(330 / 970 * 100%);
    left: calc(160 / 1920 * 100%);
  }

  ._m .se06 .obj._4 {
    bottom: calc(445 / 970 * 100%);
    left: calc(640 / 1920 * 100%);
  }

  ._m .se06 .obj._5 {
    top: calc(55 / 970 * 100%);
    left: calc(770 / 1920 * 100%);
  }

  ._m .se06 .obj._6 {
    bottom: calc(575 / 970 * 100%);
    right: calc(310 / 1920 * 100%);
  }

  ._m .se06 .obj._7 {
    top: calc(370 / 970 * 100%);
    right: calc(190 / 1920 * 100%);
  }

  ._m .se06 .obj._8 {
    scale: 1;
    top: calc(27 / 970 * 100%);
    right: calc(93 / 1920 * 100%);
  }

  ._m .se06 .obj._9 {
    top: calc(195 / 970 * 100%);
    right: calc(-40 / 1920 * 100%);
  }

  ._m .se06 .obj._10 {
    top: calc(165 / 970 * 100%);
    right: calc(480 / 1920 * 100%);
  }

  ._m .se06 .obj._11 {
    top: calc(225 / 970 * 100%);
    right: calc(220 / 1920 * 100%);
  }

  ._m .se06 .obj._12 {
    top: calc(105 / 970 * 100%);
    left: calc(180 / 1920 * 100%);
  }

  ._m .se06 .obj._13 {
    top: calc(255 / 970 * 100%);
    right: calc(650 / 1920 * 100%);
  }

  ._m .se06 .obj._14 {
    top: calc(355 / 970 * 100%);
    right: calc(370 / 1920 * 100%);
  }

  ._m .se06 .obj._15 {
    top: calc(235 / 970 * 100%);
    left: calc(90 / 1920 * 100%);
  }
}

@media screen and (max-width: 350px) {
  ._m .se06 {
    aspect-ratio: 16 / 9;
  }

  ._m .se06 .align .balloon {
    top: -100px;
  }

  ._m .se06 .obj {
    transform: scale(0.3);
  }
}

/* section07 */
._m .se07 {
  overflow: hidden;
  min-height: 100vh;
  padding: 110px 0;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

._m .se07 .bg_ {
  width: 100%;
  position: absolute;
  top: -100vh;
  left: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

._m .se07 .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._m .se07 .tit07 {
  width: calc(850 / 1700 * 100%);
  padding-left: 95px;
  box-sizing: border-box;
}

._m .se07 .tit07 dt {
  font-family: 'Perpetua Titling MT';
  font-weight: 700;
  line-height: 1.3;
  font-size: 72px;
}

._m .se07 .tit07 dd {
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin-top: 70px;
}

._m .se07 .tit07 dd span {
  font-weight: 700;
  font-family: 'Noto Serif KR', serif;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin-bottom: 10px;
  display: inline-block;
}

._m .se07 .countWrap {
  width: calc(740 / 1700 * 100%);
}

._m .se07 .countWrap li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

._m .se07 .countWrap li .lbx {
  display: flex;
  align-items: baseline;
}

._m .se07 .countWrap li .lbx span {
  font-size: 72px;
  letter-spacing: -0.025em;
  color: #5ec3aa;
  font-family: 'Silk';
  font-weight: 600;
}

._m .se07 .countWrap li .lbx em {
  font-size: 18px;
  letter-spacing: -0.025em;
  margin: 0 10px;
}

._m .se07 .countWrap li .rbx {
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.3;
  text-align: right;
}

._m .se07 .countWrap li .lbx .count_sub_text {
  font-size: 72px;
  letter-spacing: -0.025em;
  color: #5ec3aa;
  font-family: 'Silk';
  font-weight: 600;
}

@media screen and (max-width: 1800px) {
  ._m .se07 .countWrap {
    padding-right: 80px;
    box-sizing: border-box;
    width: 47%;
  }
}

@media screen and (max-width: 1440px) {
  ._m .se07 .tit07 {
    padding-left: 70px;
  }

  ._m .se07 .tit07 dt {
    font-size: 50px;
  }

  ._m .se07 .countWrap li {
    padding: 30px 0;
  }

  ._m .se07 .countWrap li .lbx span {
    font-size: 50px;
  }

  ._m .se07 .countWrap li .lbx em {
    font-size: 16px;
  }

  ._m .se07 .countWrap li .rbx {
    font-size: 16px;
    padding-left: 10px;
    box-sizing: border-box;
  }

  ._m .se07 .tit07 dt .c-mt.num {
    position: relative;
    right: -9px;
  }
}

@media screen and (max-width: 1280px) {
  ._m .se07 .tit07 dt {
    font-size: 40px;
  }

  ._m .se07 .countWrap li .lbx {
    min-width: 170px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se07 {
    padding: 70px 0;
  }

  ._m .se07 .wrap {
    flex-direction: column;
    padding: 0 12%;
    box-sizing: border-box;
  }

  ._m .se07 .tit07 {
    width: 100%;
    padding: 0;
  }

  ._m .se07 .countWrap {
    width: 100%;
    padding: 0;
  }

  ._m .se07 .tit07 dt {
    font-size: 35px;
  }

  ._m .se07 .tit07 dd {
    margin-top: 30px;
    font-size: 14px;
  }

  ._m .se07 .countWrap li .lbx em {
    font-size: 14px;
    margin: 0 5px;
  }

  ._m .se07 .countWrap li .rbx {
    font-size: 14px;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    max-width: 180px;
  }

  ._m .se07 .tit07 dt .c-mt.num {
    position: relative;
    right: -6px;
  }

  ._m .se07 .countWrap li .lbx .count_sub_text {
    font-size: 36px;
    letter-spacing: -0.025em;
    color: #5ec3aa;
    font-family: 'Silk';
    font-weight: 600;
  }
}

@media screen and (max-width: 500px) {
  ._m .se07 .tit07 dt {
    font-size: 28px;
  }

  ._m .se07 .tit07 dd {
    margin-top: 10px;
    font-size: 14px;
  }

  ._m .se07 .countWrap li .lbx span {
    font-size: 35px;
  }

  ._m .se07 .countWrap li .lbx em {
    font-size: 12px;
    margin: 0 5px;
  }

  ._m .se07 .countWrap li .rbx {
    font-size: 14px;
    min-height: 2.6em;
    max-width: 140px;
  }
}

@media screen and (max-width: 350px) {
  ._m .se07 .wrap {
    padding: 0;
  }
}

/* section08 */
._m .se08 {
  overflow: hidden;
  padding: 270px 0;
  background-image: url(../img/main/se08_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  position: relative;
}

._m .se08 .qnamore {
  display: block;
  position: relative;
  z-index: 2;
}

._m .se08 .qnamore dl {
  font-family: 'Perpetua Titling MT';
  font-weight: 300;
  font-size: 6.77vw;
  line-height: 1.3;
  padding-left: calc(95 / 1700 * 100%);
  padding-right: calc(375 / 1700 * 100%);
  box-sizing: border-box;
}

@media screen and (min-width: 1920px) {
  ._m .se08 .qnamore dl {
    font-size: 130px;
  }
}

._m .se08 .qnamore dl dt {
  color: #e2cebc;
  width: 100%;
  box-sizing: border-box;
}

._m .se08 .qnamore dl dd {
  color: #b89f8b;
  position: relative;
  display: inline-block;
  text-align: right;
  width: 100%;
  box-sizing: border-box;
}

._m .se08 .qnamore dl dd span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: -55px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #a38361;
  font-size: 24px;
  color: #fff;
  transition-duration: 0.2s;
}

@media screen and (min-width: 821px) {
  ._m .se08 .qnamore:hover dl dd span {
    transform: translateX(50%);
  }
}

._m .se08 .qnaWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: calc(95 / 1700 * 100%);
  box-sizing: border-box;
  align-items: center;
}

._m .se08 .qnaWrap .lbx {
  width: calc(780 / 1605 * 100%);
  margin-top: -55px;
  padding-top: 59px;
}

._m .se08 .qnaWrap .lbx .vid {
  position: relative;
  width: 100%;
  overflow: hidden;
}

._m .se08 .qnaWrap .lbx .vid::after {
  content: '';
  display: block;
  padding-bottom: calc(445 / 780 * 100%);
}

._m .se08 .qnaWrap .lbx .vid iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

._m .se08 .qnaWrap .lbx .vid img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

._m .se08 .qnaWrap .lbx h5 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.05em;
  margin-top: 20px;
  line-height: 1.3;
}

._m .se08 .qnaWrap .lbx h5 span {
  font-size: 14px;
  letter-spacing: -0.05em;
  color: #5ec3aa;
  font-style: italic;
  vertical-align: super;
}

._m .se08 .qnaWrap .rbx {
  width: calc(695 / 1605 * 100%);
  height: 638px;
}

._m .se08 .qnaWrap .rbx li {
  width: 100%;
  border-bottom: 1px solid #535353;
  margin-top: 45px;
  transition-duration: 0.2s;
}

._m .se08 .qnaWrap .rbx li > a {
  display: flex;
  align-items: flex-start;
  padding: 30px 0;
  box-sizing: border-box;
}

._m .se08 .qnaWrap .rbx li > a h4 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #fff;
  transition-duration: 0.2s;
}

._m .se08 .qnaWrap .rbx li > a span {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #e2cdbb;
  font-style: italic;
  transition-duration: 0.2s;
  margin-left: 5px;
}

/* ._m .se08 .qnaWrap .rbx .swiper-slide{height: 100%; border-bottom: 1px solid #535353; margin-top: 45px; transition-duration: 0.2s; } */

@media screen and (min-width: 821px) {
  ._m .se08 .qnaWrap .rbx li:hover {
    border-color: #a38361;
  }

  ._m .se08 .qnaWrap .rbx li:hover > a h4 {
    color: #b89f8b;
  }
}

@media screen and (max-width: 1800px) {
  ._m .se08 .qnaWrap .rbx {
    padding-right: 80px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1280px) {
  ._m .se08 {
    padding: 150px 0;
  }

  ._m .se08 .qnaWrap .lbx h5 {
    font-size: 18px;
  }

  ._m .se08 .qnaWrap .rbx {
    width: 48%;
  }

  ._m .se08 .qnaWrap .rbx li {
    margin-top: 20px;
  }

  ._m .se08 .qnaWrap .rbx li > a {
    padding: 20px 0;
  }

  ._m .se08 .qnaWrap .rbx li > a h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se08 {
    padding: 70px 0;
  }

  ._m .se08 .qnamore dl {
    padding-left: 12%;
    padding-right: 20%;
  }

  ._m .se08 .qnamore dl dd span {
    top: 0;
  }

  ._m .se08 .qnaWrap {
    flex-direction: column;
    padding: 0 12%;
  }

  ._m .se08 .qnaWrap .lbx {
    width: 100%;
    margin-top: 20px;
    padding-top: 0;
  }

  ._m .se08 .qnaWrap .rbx {
    width: 100%;
    margin-top: 20px;
    padding: 0;
    height: 370px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se08 .qnaWrap .lbx h5 {
    font-size: 14px;
    margin-top: 10px;
  }

  ._m .se08 .qnaWrap .rbx li {
    margin-top: 10px;
  }

  ._m .se08 .qnaWrap .rbx li > a {
    padding: 10px 0;
  }

  ._m .se08 .qnaWrap .rbx li > a h4 {
    font-size: 14px;
  }

  ._m .se08 .qnaWrap .rbx li > a span {
    font-size: 12px;
  }
}

@media screen and (max-width: 350px) {
  ._m .se08 .qnaWrap {
    padding: 0;
  }

  ._m .se08 .qnamore dl {
    padding-left: 0;
  }

  ._m .se08 .qnamore dl dd span {
    width: 30px;
    height: 30px;
    font-size: 20px;
    right: -40px;
  }
}

/* section09 */
._m .se09 {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-top: 260px;
  padding-bottom: 105px;
}

._m .se09 .wrap09 {
  display: flex;
  padding-left: calc(110 / 1920 * 100%);
  width: 100%;
  box-sizing: border-box;
}

._m .se09 .wrap09 .lbx {
  width: calc(500 / 1810 * 100%);
  flex-shrink: 0;
  padding-left: 115px;
  box-sizing: border-box;
}

._m .se09 .wrap09 .lbx dl dt {
  font-size: 100px;
  font-family: 'Perpetua Titling MT';
  color: #3a3a3a;
  font-weight: 300;
}

._m .se09 .wrap09 .lbx dl dd {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #4d4d4d;
  line-height: 1.3;
  margin-top: 20px;
}

._m .se09 .wrap09 .lbx .tabWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 90px;
}

._m .se09 .wrap09 .lbx .tabWrap li {
  display: inline-flex;
  color: #a0a0a0;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.05em;
  padding: 5px 0;
  box-sizing: border-box;
  margin-bottom: 15px;
  cursor: pointer;
  transition-duration: 0.2s;
  position: relative;
}

._m .se09 .wrap09 .lbx .tabWrap li:last-of-type {
  margin-bottom: 0;
}

._m .se09 .wrap09 .lbx .tabWrap li span {
  margin-right: 8px;
}

._m .se09 .wrap09 .lbx .tabWrap li i {
  opacity: 0;
  transform: translateX(-10px);
  transition-duration: 0.2s;
  color: #a0a0a0;
}

._m .se09 .wrap09 .lbx .tabWrap li::after {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 0 0;
  transition-duration: 0.2s;
  transform: scaleX(0);
  height: 2px;
  background-color: #a38361;
}

@media screen and (min-width: 821px) {
  ._m .se09 .wrap09 .lbx .tabWrap li:hover {
    color: #a38361;
  }

  ._m .se09 .wrap09 .lbx .tabWrap li:hover::after {
    transform: scaleX(1);
  }

  ._m .se09 .wrap09 .lbx .tabWrap li:hover i {
    transform: translateX(0);
    opacity: 1;
    color: #a38361;
  }
}

._m .se09 .wrap09 .lbx .tabWrap li.on {
  color: #a38361;
}

._m .se09 .wrap09 .lbx .tabWrap li.on::after {
  transform: scaleX(1);
}

._m .se09 .wrap09 .lbx .tabWrap li.on i {
  transform: translateX(0);
  opacity: 1;
  color: #a38361;
}

._m .se09 .wrap09 .rbx {
  width: calc(1310 / 1810 * 100%);
  position: relative;
}

._m .se09 .wrap09 .rbx .tabCons {
  width: 100%;
  position: relative;
  min-height: 600px;
}

._m .se09 .wrap09 .rbx .tabCons .tabcon {
  width: 100%;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

._m .se09 .wrap09 .rbx .tabCons .tabcon.on {
  opacity: 1;
  z-index: 1;
}

._m .se09 .wrap09 .rbx .tabCons .tabcon .swiper {
  width: 100%;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb {
  transition: 0.4s;
  width: 100%;
  overflow: hidden;
  position: relative;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a:hover .thumb {
  transform: scale(1.1);
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb .max__ {
  width: 100%;
  background-size: contain;
  background-position: 50% 10%;
  background-repeat: no-repeat;
  transition: background-size 0.6s;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb .max__2 {
  width: 70%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: background-size 0.6s;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb .max__::after {
  content: '';
  display: block;
  padding-bottom: calc(330 / 410 * 100%);
}

/* ._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb .max__::after{ content: ''; display: block; padding-bottom: calc(330 / 410 * 100%); } */

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb span {
  display: inline-block;
  padding: 8px 20px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 13px;
  letter-spacing: -0.05em;
  font-weight: 600;
}

@media screen and (min-width: 821px) {
  ._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a:hover .thumb .max__ {
    width: 100%;
    margin-right: 15px;
  }

  /* ._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a:hover .thumb .max__{ background-size: 105%; } */
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a dl {
  margin-top: 35px;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a dl dt {
  font-size: 26px;
  letter-spacing: -0.05em;
  color: #4d4d4d;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a dl dd {
  font-size: 16px;
  letter-spacing: -0.05em;
  line-height: calc(30 / 16);
  font-weight: 300;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb.blog_ .max__::after {
  padding-bottom: calc(425 / 410 * 100%);
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb.blog_ span {
  background-color: #a38361;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb.blog_ ~ dl dd {
  display: none;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb.news_ span {
  background-color: #3b3b3b;
}

._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a .thumb.note_ span {
  background-color: #597a9c;
}

._m .se09 .pages {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

._m .se09 .pages .sw_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  opacity: 0;
  z-index: -1;
}

._m .se09 .pages .sw_nav.on {
  opacity: 1;
  z-index: 1;
}

._m .se09 .pages .sw_nav .prWrap {
  height: 100%;
  height: 4px;
  width: 80px;
  margin: 0 25px;
  position: relative;
}

._m .se09 .pages .sw_nav .btn {
  cursor: pointer;
  color: #3a3a3a;
}

.prWrap .swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 1px;
  background-color: rgba(58, 58, 58, 0.3);
}

.prWrap .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 3px;
  top: -1px;
  background-color: #3a3a3a;
}

@media screen and (max-width: 1800px) {
  ._m .se09 .wrap09 .rbx {
    padding-left: 15px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1440px) {
  ._m .se09 .wrap09 .lbx {
    padding-left: 0;
  }

  ._m .se09 .wrap09 .lbx dl dt {
    font-size: 80px;
  }

  ._m .se09 .wrap09 .lbx dl dd {
    font-size: 18px;
  }

  ._m .se09 .wrap09 .lbx .tabWrap li {
    font-size: 20px;
  }

  ._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a dl {
    margin-top: 20px;
  }

  ._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a dl dt {
    font-size: 22px;
  }
}

@media screen and (max-width: 1280px) {
  ._m .se09 {
    padding-top: 150px;
    padding-bottom: 70px;
  }

  ._m .se09 .wrap09 .lbx dl dt {
    font-size: 60px;
  }

  ._m .se09 .wrap09 .lbx dl dd {
    font-size: 16px;
  }

  ._m .se09 .wrap09 .lbx .tabWrap {
    margin-top: 70px;
  }

  ._m .se09 .wrap09 .lbx .tabWrap li {
    font-size: 18px;
  }

  ._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a dl {
    margin-top: 15px;
  }

  ._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a dl dt {
    font-size: 18px;
  }

  ._m .se09 .wrap09 .rbx .tabcon .swiper-slide > a dl dd {
    font-size: 14px;
    margin-top: 10px;
  }

  ._m .se09 .wrap09 .rbx .tabCons {
    min-height: 450px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se09 .wrap09 {
    padding-left: 70px;
  }

  ._m .se09 .wrap09 .lbx dl dt {
    font-size: 35px;
  }

  ._m .se09 .wrap09 .lbx dl dd {
    font-size: 14px;
  }

  ._m .se09 .wrap09 .lbx .tabWrap {
    margin-top: 50px;
  }

  ._m .se09 .wrap09 .lbx .tabWrap li {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se09 {
    padding-top: 100px;
  }

  ._m .se09 .wrap09 {
    flex-direction: column;
    padding: 0 12%;
    box-sizing: border-box;
  }

  ._m .se09 .wrap09 .lbx {
    width: 100%;
    padding: 0;
  }

  ._m .se09 .wrap09 .lbx .tabWrap {
    margin-top: 20px;
  }

  ._m .se09 .wrap09 .lbx .tabWrap li {
    margin-bottom: 10px;
  }

  ._m .se09 .wrap09 .rbx {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }

  ._m .se09 .wrap09 .rbx .tabCons {
    min-height: 390px;
  }
}

/* section10 */
._m .se10 {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 170px;
  box-sizing: border-box;
  background-image: url(../img/main/se10_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

._m .se10 .tit10 {
  font-size: 100px;
  font-weight: 300;
  font-family: 'Perpetua Titling MT';
  margin-bottom: -0.5em;
  text-align: center;
  position: relative;
  z-index: 3;
}

._m .se10 .swWrap {
  width: 100%;
  position: relative;
  margin-bottom: -100px;
}

._m .se10 .swWrap .sw10 {
  width: 100%;
}

._m .se10 .swWrap .sw10 .swiper-slide {
  position: relative;
  /* transition-property: none; */
}

._m .se10 .swWrap .sw10 .swiper-slide::after {
  content: '';
  display: block;
  padding-bottom: 119%;
}

._m .se10 .swWrap .sw10 .swiper-slide .inner {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition-duration: 0.4s;
  transition-property: transform, width;
  background-size: contain;
}

._m .se10 .swWrap .sw10 .swiper-slide .inner ._max {
  background-position: center;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  width: 100%;
  background-size: contain;
}

._m .se10 .swWrap .sw10 .swiper-slide .inner ._max::after {
  content: '';
  display: block;
  padding-bottom: calc(590 / 1040 * 100%);
  background-color: rgba(0, 0, 0, 0.8);
  transition-duration: 0.4s;
  /* transition-property: background-color; */
}

._m .se10 .swWrap .sw10 .swiper-slide.swiper-slide-active {
  z-index: 1;
}

._m .se10 .swWrap .sw10 .swiper-slide.swiper-slide-active .inner {
  width: 175%;
  z-index: 5;
  transform: translate(-50%, -60%);
}

._m .se10 .swWrap .sw10 .swiper-slide.swiper-slide-active .inner ._max::after {
  background-color: rgba(0, 0, 0, 0);
  transition-duration: 0.4s;
  /* transition-property: background-color; */
}

._m .se10 .swWrap ._prev,
._m .se10 .swWrap ._next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 60px;
  z-index: 10;
  cursor: pointer;
}

._m .se10 .swWrap ._prev {
  left: calc(110 / 1510 * 100%);
}

._m .se10 .swWrap ._next {
  right: calc(110 / 1510 * 100%);
}

._m .se10 .swWrap .linkbtn {
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 45px;
  height: 45px;
  transform: translate(-50%, -50%);
  z-index: 10;
}

._m .se10 .swWrap .linkbtn > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #a38361;
  position: relative;
  font-size: 24px;
}

._m .se10 .swWrap .linkbtn > a i {
  position: relative;
  z-index: 11;
}

._m .se10 .swWrap .linkbtn > a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  z-index: 9;
  transition-duration: 0.2s;
}

@media screen and (min-width: 821px) {
  ._m .se10 .swWrap .linkbtn:hover > a::after {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

._m .se10 .swWrap .locaInfo {
  margin-top: -4em;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.3;
  text-align: center;
}

._m .se10 .swWrap .locaInfo span {
  color: #b3a496;
}

@media screen and (max-width: 1280px) {
  ._m .se10 {
    padding-bottom: 150px;
  }

  ._m .se10 .tit10 {
    font-size: 80px;
  }

  ._m .se10 .swWrap .linkbtn {
    bottom: 60px;
  }

  ._m .se10 .swWrap .locaInfo {
    margin-top: 0;
  }
}

@media screen and (max-width: 820px) {
  ._m .se10 {
    padding-bottom: 170px;
    min-height: unset;
  }

  ._m .se10 .tit10 {
    font-size: 60px;
  }

  ._m .se10 .swWrap .linkbtn {
    bottom: 34px;
  }

  ._m .se10 .swWrap .locaInfo {
    font-size: 14px;
  }

  ._m .se10 .swWrap ._prev,
  ._m .se10 .swWrap ._next {
    top: 45%;
  }

  ._m .se10 .swWrap ._prev i,
  ._m .se10 .swWrap ._next i {
    font-size: 30px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se10 .tit10 {
    font-size: 40px;
  }

  ._m .se10 .swWrap .linkbtn {
    bottom: 30px;
    width: 30px;
    height: 30px;
  }

  ._m .se10 .swWrap .linkbtn > a {
    font-size: 20px;
  }

  ._m .se10 .swWrap .locaInfo {
    margin-top: 30px;
  }

  ._m .se10 .swWrap .locaInfo span {
    display: block;
  }
}

/* section11 */
._m .se11 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 115px;
  box-sizing: border-box;
  background-image: url(../img/main/se11_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}

._m .se11 .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

._m .se11 .lbx {
  width: 50%;
  padding-right: calc(130 / 1700 * 100%);
  box-sizing: border-box;
}

._m .se11 .lbx .infos {
  width: 100%;
}

._m .se11 .lbx .infos > li {
  width: 100%;
  display: flex;
  padding: 45px 0;
  border-bottom: 1px solid #494949;
}

._m .se11 .lbx .infos > li:last-of-type {
  border-bottom: 0;
}

._m .se11 .lbx .infos > li .infotit {
  display: flex;
  align-items: center;
  width: calc(280 / 785 * 100%);
}

._m .se11 .lbx .infos > li .infotit i {
  font-size: 18px;
  margin-right: 10px;
}

._m .se11 .lbx .infos > li .infotit span {
  font-size: 18px;
  letter-spacing: -0.05em;
  font-weight: 600;
}

._m .se11 .lbx .infos > li h3 {
  font-size: 48px;
  color: #a38361;
  font-weight: 300;
  font-family: 'Perpetua Titling MT';
  width: calc(505 / 785 * 100%);
}

._m .se11 .lbx .infos > li .kakao {
  display: flex;
  align-items: center;
  padding-right: 10px;
  box-sizing: border-box;
  justify-content: space-between;
  width: calc(505 / 785 * 100%);
}

._m .se11 .lbx .infos > li .kakao p {
  font-size: 18px;
  letter-spacing: -0.05em;
  line-height: calc(32 / 18);
  font-weight: 300;
}

._m .se11 .lbx .infos > li .kakao p span {
  color: #a38361;
}

._m .se11 .lbx .infos > li .kakao > a {
  display: inline-block;
  padding: 20px 35px;
  box-sizing: border-box;
  border-radius: 0 30px 30px 0;
  background-color: #fff;
  color: #404040;
  font-size: 18px;
  letter-spacing: -0.05em;
  font-weight: 600;
  position: relative;
}

._m .se11 .lbx .infos > li .kakao > a img {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translate(-50%, -50%);
}

._m .se11 .lbx .infos > li .times {
  width: calc(505 / 785 * 100%);
}

._m .se11 .lbx .infos > li .times li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  letter-spacing: -0.05em;
  line-height: 1.3;
  padding: 5px 0;
}

._m .se11 .lbx .infos > li .times li span {
  width: 135px;
  flex-shrink: 0;
  font-weight: 600;
}

._m .se11 .lbx .infos > li .times li p {
  width: 100%;
  font-weight: 300;
}

._m .se11 .lbx .infos > li .times li p em {
  color: #727272;
}

._m .se11 .rbx {
  width: 50%;
}

._m .se11 #map {
  width: 100%;
  height: 335px;
}

._m .se11 #map .root_daum_roughmap_landing {
  width: 100%;
  height: 100%;
}

._m .se11 #map .root_daum_roughmap .wrap_map {
  width: 100%;
  height: 100%;
}

._m .se11 .rbx .linkWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

._m .se11 .rbx .linkWrap li {
  width: calc(415 / 850 * 100%);
  background-color: #3b3b3b;
  transition-duration: 0.2s;
}

._m .se11 .rbx .linkWrap li > a {
  display: flex;
  width: 100%;
  padding: 25px 0;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

._m .se11 .rbx .linkWrap li > a i {
  font-size: 20px;
}

._m .se11 .rbx .linkWrap li > a span {
  font-size: 18px;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin-left: 10px;
}

@media screen and (min-width: 821px) {
  ._m .se11 .rbx .linkWrap li:hover {
    background-color: #a38361;
  }
}

@media screen and (max-width: 1440px) {
  ._m .se11 .lbx {
    padding-right: 3%;
  }

  ._m .se11 .lbx .infos > li .kakao > a {
    font-size: 14px;
    padding: 15px 20px;
  }

  ._m .se11 .lbx .infos > li .kakao > a img {
    width: 50px;
  }
}

@media screen and (max-width: 820px) {
  ._m .se11 #map {
    height: 250px;
  }

  ._m .se11 {
    padding-top: 70px;
  }

  ._m .se11 .wrap {
    flex-direction: column;
  }

  ._m .se11 .lbx {
    width: 100%;
    padding: 0;
  }

  ._m .se11 .lbx .infos > li {
    padding: 20px 0;
  }

  ._m .se11 .lbx .infos > li h3 {
    font-size: 35px;
    width: 100%;
  }

  ._m .se11 .lbx .infos > li .infotit {
    width: 150px;
    flex-shrink: 0;
  }

  ._m .se11 .lbx .infos > li .infotit span {
    font-size: 16px;
  }

  ._m .se11 .lbx .infos > li .kakao {
    width: 100%;
  }

  ._m .se11 .lbx .infos > li .kakao p {
    font-size: 16px;
  }

  ._m .se11 .lbx .infos > li .times {
    width: 100%;
  }

  ._m .se11 .rbx {
    width: 100%;
    padding: 0;
  }

  ._m .se11 .rbx .linkWrap li > a {
    padding: 15px 0;
  }

  ._m .se11 .rbx .linkWrap li > a span {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  ._m .se11 #map {
    height: 200px;
  }

  ._m .se11 .lbx .infos > li {
    flex-direction: column;
  }

  ._m .se11 .lbx .infos > li .infotit {
    width: 100%;
    margin-bottom: 20px;
  }

  ._m .se11 .lbx .infos > li .infotit span {
    font-size: 14px;
  }

  ._m .se11 .lbx .infos > li h3 {
    font-size: 28px;
  }

  ._m .se11 .lbx .infos > li .kakao p {
    font-size: 14px;
  }

  ._m .se11 .lbx .infos > li .times li {
    font-size: 14px;
  }

  ._m .se11 .lbx .infos > li .kakao > a {
    font-size: 12px;
  }

  ._m .se11 .rbx .linkWrap li > a span {
    font-size: 14px;
    margin-left: 5px;
  }

  ._m .se11 .rbx .linkWrap li > a img {
    width: 20px;
  }
}

/* main se10_plus start*/
.color-se10 {
  color: #67b5a9;
}

.c-brown {
  color: #a48362;
}

.pc {
  display: block;
}

._m .se10_plus .pc {
  display: block;
}

._m .se10_plus .mo {
  display: none;
}

._m .se10_plus {
  position: relative;
}

._m .se10_plus .video_bg_box video {
  width: 100%;
}

._m .se10_plus .video_bg_box {
  position: relative;
}

._m .se10_plus .video_bg_box .video_filter {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #00233ee0;
}

._m .se10_plus .wrap {
  max-width: 908px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

._m .se10_plus .line {
  height: 20px;
  width: 1px;
  background-color: #fff;
}

._m .se10_plus .video_bg {
  background-color: #00233e;
}

._m .se10_plus .tit-group::after {
  content: '';
  background-color: #fff;
  height: 1px;
  width: 50px;
  margin: 0 auto;
  display: block;
  margin-top: 83px;
}

._m .se10_plus .tit-box {
  flex-direction: column;
}

._m .se10_plus .tit-box h3 {
  font-family: 'Pretendard';
  font-size: 44px;
  font-weight: 400;
  line-height: 54px;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  white-space: nowrap;
}

._m .se10_plus .tit-box p {
  font-family: 'Pretendard';
  font-weight: 400;
  line-height: 23px;
  color: #fff;
  text-align: center;
}

._m .se10_plus .tit-box p .bold {
  font-weight: 700;
}

._m .se10_plus .cont-group {
  margin-top: 70px;
}

._m .se10_plus .top-form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

._m .se10_plus .top-form-group .form-box:nth-child(1) {
  width: 20%;
}

._m .se10_plus .top-form-group .form-box:nth-child(2) {
  width: 40%;
}

._m .se10_plus .top-form-group .form-box:nth-child(3) {
  width: 20%;
}

._m .se10_plus .top-form-group .form-box:nth-child(4) {
  width: 20%;
}

._m .se10_plus .form-box {
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: rgba(5, 7, 20, 0.507);
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  gap: 10px;
}

._m .se10_plus .form-box label {
  font-family: 'Pretendard';
  font-weight: 400;
  line-height: 22px;
  font-size: 22px;
  color: #fff;
}

._m .se10_plus .form-box input {
  background-color: transparent;
  border: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 22px;
  font-family: 'Pretendard';
  font-weight: 400;
  line-height: 22px;
}

._m .se10_plus .form-box input::placeholder {
  font-family: 'Pretendard';
  font-weight: 400;
  line-height: 22px;
  font-size: 22px;
  color: #fff;
  opacity: 0.3;
}

._m .se10_plus .form-box select {
  font-family: 'Pretendard';
  font-weight: 400;
  line-height: 22px;
  font-size: 22px;
  color: #fff;
  background-color: transparent;
  width: 100%;
  border: 0;
  background: url(/img/main/se10_plus_arr.png) calc(100% - 5px) center no-repeat;
}

._m .se10_plus .form-box option {
  font-family: 'Pretendard';
  font-weight: 400;
  line-height: 22px;
  font-size: 22px;
  color: #000;
  width: 100%;
}

._m .se10_plus .form-box.textArea {
  height: 130px;
  display: flex;
  align-items: start;
  padding: 14px 20px;
}

._m .se10_plus .form-box textarea {
  width: 100%;
  background-color: transparent;
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: #fff;
  border: 0;
  height: 100%;
  padding: 0;
}

._m .se10_plus .check-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

._m .se10_plus .check-group p {
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
}

._m .se10_plus .check-group .c-view-btn {
  cursor: pointer;
}

._m .se10_plus .check-group .c-view-btn p {
  background-color: #bbbcba46;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #fff;
  height: 24px;
  width: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

._m .se10_plus .check-group label {
  display: flex;
  align-items: center;
}

._m .se10_plus .submit-wrap {
  transition: 0.2s;
  background-color: #67b5a9;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-top: 20px;
  cursor: pointer;
}

._m .se10_plus .submit-wrap input {
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  font-family: 'Pretendard';
  font-size: 700px;
  font-size: 22px;
  line-height: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

._m .se10_plus .submit-wrap:hover {
  background-color: #4d8a81;
}

.checkbox-wrapper-1 *,
.checkbox-wrapper-1 ::after,
.checkbox-wrapper-1 ::before {
  box-sizing: border-box;
}

.checkbox-wrapper-1 [type='checkbox'].substituted {
  margin: 0;
  width: 0;
  height: 0;
  display: inline;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.checkbox-wrapper-1 [type='checkbox'].substituted + label:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  height: 1.15em;
  width: 1.15em;
  margin-right: 0.6em;
  color: rgba(0, 0, 0, 0.275);
  border: solid 0.06em #fff;
  box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em inset,
    0 0 0 0.07em transparent inset;
  border-radius: 0.2em;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="white" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>')
      no-repeat center,
    white;
  background-color: #05071477;
  background-size: 0;
  will-change: color, border, background, background-size, box-shadow;
  transform: translate3d(0, 0, 0);
  transition: color 0.1s, border 0.1s, background 0.15s, box-shadow 0.1s;
}

.checkbox-wrapper-1 [type='checkbox'].substituted:enabled:active + label:before,
.checkbox-wrapper-1
  [type='checkbox'].substituted:enabled
  + label:active:before {
  box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset,
    0 0 0 0.07em rgba(0, 0, 0, 0.1) inset;
  background-color: #f0f0f0;
}

.checkbox-wrapper-1 [type='checkbox'].substituted:checked + label:before {
  background-color: #3b99fc;
  background-size: 0.75em;
  color: rgba(0, 0, 0, 0.075);
}

.checkbox-wrapper-1
  [type='checkbox'].substituted:checked:enabled:active
  + label:before,
.checkbox-wrapper-1
  [type='checkbox'].substituted:checked:enabled
  + label:active:before {
  background-color: #0a7ffb;
  color: rgba(0, 0, 0, 0.275);
}

.checkbox-wrapper-1 [type='checkbox'].substituted:focus + label:before {
  box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset,
    0 0 0 0.07em rgba(0, 0, 0, 0.1) inset, 0 0 0 3.3px rgba(65, 159, 255, 0.55),
    0 0 0 5px rgba(65, 159, 255, 0.3);
}

.checkbox-wrapper-1 [type='checkbox'].substituted:focus:active + label:before,
.checkbox-wrapper-1 [type='checkbox'].substituted:focus + label:active:before {
  box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset,
    0 0 0 0.07em rgba(0, 0, 0, 0.1) inset, 0 0 0 3.3px rgba(65, 159, 255, 0.55),
    0 0 0 5px rgba(65, 159, 255, 0.3);
}

.checkbox-wrapper-1 [type='checkbox'].substituted:disabled + label:before {
  opacity: 0.5;
}

.checkbox-wrapper-1 [type='checkbox'].substituted.dark + label:before {
  color: rgba(255, 255, 255, 0.275);
  background-color: #222;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="rgba(34, 34, 34, 0.999)" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>');
}

.checkbox-wrapper-1
  [type='checkbox'].substituted.dark:enabled:active
  + label:before,
.checkbox-wrapper-1
  [type='checkbox'].substituted.dark:enabled
  + label:active:before {
  background-color: #444;
  box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset,
    0 0 0 0.07em rgba(255, 255, 255, 0.1) inset;
}

.checkbox-wrapper-1 [type='checkbox'].substituted.dark:checked + label:before {
  background-color: #a97035;
  color: rgba(255, 255, 255, 0.075);
}

.checkbox-wrapper-1
  [type='checkbox'].substituted.dark:checked:enabled:active
  + label:before,
.checkbox-wrapper-1
  [type='checkbox'].substituted.dark:checked:enabled
  + label:active:before {
  background-color: #c68035;
  color: rgba(0, 0, 0, 0.275);
}

@media screen and (max-width: 1440px) {
  .pc {
    display: none;
  }

  ._m .se10_plus .pc {
    display: none;
  }

  ._m .se10_plus .mo {
    display: block;
  }

  ._m .se10_plus {
    min-height: 1000px;
  }

  ._m .se10_plus .tit-box {
    flex-direction: column;
  }

  ._m .se10_plus .tit-box h3 {
    font-family: 'Pretendard';
    font-size: 500px;
    line-height: 24px;
    font-size: 24px;
    margin-bottom: 20px;
  }

  ._m .se10_plus .tit-group::after {
    margin-top: 59px;
  }

  ._m .se10_plus .cont-group {
    margin-top: 54px;
  }

  ._m .se10_plus .form-box {
    padding: 0;
  }

  ._m .se10_plus .form-box label {
    font-size: 20px;
    margin-left: 20px;
  }

  ._m .se10_plus .form-box input {
    font-size: 16px;
  }

  ._m .se10_plus .form-box input::placeholder {
    font-size: 16px;
  }

  ._m .se10_plus .form-box select {
    font-size: 20px;
    margin-left: 20px;
    background: url(/img/main/se10_plus_arr.png) calc(100% - 15px) center
      no-repeat;
  }

  ._m .se10_plus .form-box option {
    font-size: 20px;
  }

  ._m .se10_plus .form-box.textArea {
    padding-left: 0;
    padding-right: 0;
  }

  ._m .se10_plus .form-box textarea {
    font-size: 16px;
  }

  ._m .se10_plus .top-form-group {
    flex-direction: column;
  }

  ._m .se10_plus .top-form-group .form-box:nth-child(1) {
    width: 100%;
  }

  ._m .se10_plus .top-form-group .form-box:nth-child(2) {
    width: 100%;
  }

  ._m .se10_plus .top-form-group .form-box:nth-child(3) {
    width: 100%;
  }

  ._m .se10_plus .top-form-group .form-box:nth-child(4) {
    width: 100%;
  }

  ._m .se10_plus .video_bg_box video {
    object-fit: cover;
    min-height: 1000px;
  }
}

._m .se09_plus {
  background-image: url(../img/main/se08_bg.jpg);
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

._m .se09_plus .video_wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
}

._m .se09_plus iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1280px) {
  ._m .se09_plus .wrap[max='1280'] {
    width: 95%;
  }

  ._m .se09_plus {
    padding: 60px 0;
  }

  /* ._m .se09_plus .video_wrap{aspect-ratio: 4 / 5;} */
}

@media screen and (max-width: 320px) {
  ._m .se10_plus .check-group p {
    font-size: 13px;
  }

  ._m .se10_plus .check-group .c-view-btn p {
    font-size: 13px;
    width: 60px;
  }
}

/* main se10_plus end */

/* main sec6 swiper start */
._m .se06_swiper_box {
  background-color: #fff;
  padding: 15px 0;
}

._m .se06_swiper_box .img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  overflow: hidden;
}

._m .se06_swiper_box .img-box img {
  width: 100%;
}

._m .se06_swiper_box .txt-box {
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
  line-height: 1.4;
}

._m .se06 .obj ._img .fz_c_tr {
  color: #fff;
  line-height: 1.5;
}

@media screen and (max-width: 350px) {
  ._m .se06_swiper_box .txt-box {
    font-size: 0.8rem;
  }
}

/* main sec6 swiper end */

/* 메인 추가섹션 */
.doc_new_sec {
  overflow: hidden;
  padding: 200px 0 100px;
  background: url(/img/main/dns_bg.png) no-repeat center / cover;
  position: relative;
}

.dn_con {
  position: relative;
  z-index: 9;
  max-width: 1401px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.dn1 {
}

.dn2 {
  display: flex;
  gap: 45px;
  margin-bottom: 30px;
  justify-content: center;
}

.dn3 {
  display: flex;
  flex-direction: column;
  gap: 41px;
  line-height: 1.5;
  text-align: center;
}

.dn3_txt1 {
  color: #fff;
  font-size: 20px;
}

.dn3_txt1 span {
  color: #64c0a7;
  font-size: 24px;
  font-weight: 700;
}

.dn3_txt2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.dn3_txt2 span {
  color: #64c0a7;
}

.doc_new_sec_bgani {
}

.dns_bgani_img {
  position: absolute;
  height: 100%;
  bottom: 0;
  opacity: 0;
  transition: 0.8s ease;
}

.dns_bgani_img img {
  height: 100%;
}

.dns_bgani_img:nth-child(1) {
  left: 50%;
  z-index: 4;
}

.dns_bgani_img:nth-child(2) {
  left: 70%;
  z-index: 3;
}

.dns_bgani_img:nth-child(3) {
  z-index: 2;
  left: 90%;
}

.dns_bgani_img:nth-child(4) {
  z-index: 1;
  left: 100%;
}

.doc_new_sec.on .dns_bgani_img:nth-child(1) {
  left: -100%;
  opacity: 1;
  transition-delay: 0s;
}

.doc_new_sec.on .dns_bgani_img:nth-child(2) {
  left: -90%;
  opacity: 1;
  transition-delay: 0.1s;
}

.doc_new_sec.on .dns_bgani_img:nth-child(3) {
  left: -70%;
  opacity: 1;
  transition-delay: 0.2s;
}

.doc_new_sec.on .dns_bgani_img:nth-child(4) {
  left: -40%;
  opacity: 1;
  transition-delay: 0.3s;
}

@media screen and (max-width: 1580px) {
  .doc_new_sec.on .dns_bgani_img:nth-child(1) {
    left: -130%;
  }

  .doc_new_sec.on .dns_bgani_img:nth-child(2) {
    left: -120%;
  }

  .doc_new_sec.on .dns_bgani_img:nth-child(3) {
    left: -100%;
  }

  .doc_new_sec.on .dns_bgani_img:nth-child(4) {
    left: -70%;
  }
}

@media screen and (max-width: 1280px) {
  .dns_bgani_img {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .n_1024 {
    display: none;
  }

  .dn3_txt2 {
    font-size: 30px;
  }

  .dn3_txt1 {
    font-size: 16px;
  }

  .dn3_txt1 span {
    font-size: 20px;
  }

  .doc_new_sec {
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .dn3_txt2 {
    font-size: 22px;
  }

  .dn3 {
    gap: 20px;
  }

  .dn2 {
    margin-bottom: 0;
    flex-direction: column;
    gap: 20px;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* 메인 추가섹션2 */

.doc_new_sec2 {
  height: 448px;
  position: relative;
  background: url(/img/main/dns2_bg.png) no-repeat center / cover;
}

.dns2_center_img {
  z-index: 1;
  height: 100%;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .dns2_center_img img{height: 100%;object-fit: cover;} */
.dns2_swiper_con {
  position: relative;
  z-index: 2;
}

.dns2_swiper .swiper-slide {
  width: max-content;
  max-width: 90%;
  height: 270px;
  filter: grayscale(1);
  transform: scale(0.7);
  transform-origin: bottom;
  opacity: 0.8;
  transition: 0.8s;
  display: flex;
  align-items: flex-end;
}

.dns2_swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  filter: grayscale(0);
}

.dns2_swiper_con {
  padding-top: 40px;
}

.dns2_swiper {
  overflow: visible;
}

.dns2_txt_group {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}

.dns2_txt_list {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: 0.8s;
  opacity: 0;
}

.dns2_txt_list:nth-child(1) {
  position: relative;
}

.dns2_txt_list.on {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .dns2_txt_group {
    font-size: 18px;
    max-width: 90%;
    margin: 0 auto;
    bottom: 15px;
  }

  .dns2_txt_list {
    white-space: inherit;
    line-height: 1.3;
    width: 90vw;
  }
}

/* 20250619 예약주의문구 추가 */
._m .se10_plus .video_bg_box video {
  min-height: 1100px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1440px) {
  ._m .se10_plus .video_bg_box video {
    min-height: 1200px;
  }
}

/* doc_new_sec3 추가 섹션 */
.doc_new_sec3 {
  background: url('/img/main/doc_new_sec3_bg.png?v=2') no-repeat 80% 50% / cover;
  padding: 235px 0 247px;
}
.doc_new_sec3 .inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.doc_new_sec3 .txt_wrap {
  max-width: 845px;
}
.doc_new_sec3 .tit {
  margin-bottom: 80px;
}
.doc_new_sec3 .tit p {
  color: #fff;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 36px */
  margin-bottom: 20px;
}
.doc_new_sec3 .tit strong {
  color: #fff;
  font-family: Pretendard;
  display: block;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.doc_new_sec3 .tit strong span {
  color: #64c0a7;
}
.doc_new_sec3 .tit strong span.eng {
  font-family: 'Noto Serif KR';
}
.doc_new_sec3 dl dt {
  color: #fff;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%;
}
.doc_new_sec3 dl dt > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.doc_new_sec3 dl dt b {
  font-weight: 700;
}
.doc_new_sec3 dl dt:after {
  content: '';
  display: block;
  width: 100%;
  max-width: 626px;
  height: 1px;
  opacity: 0.1;
  background-color: #fff;
  margin: 30px 0;
}
.doc_new_sec3 dl dd {
  color: #fff;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
.mobile_block {
  display: none;
}
@media screen and (max-width: 1024px) {
  .doc_new_sec3 .tit p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .doc_new_sec3 .tit strong {
    font-size: 35px;
  }
  .doc_new_sec3 .tit {
    margin-bottom: 40px;
  }
  .doc_new_sec3 dl dt {
    font-size: 20px;
  }
  .doc_new_sec3 dl dt img {
    max-width: 134px;
  }
  .doc_new_sec3 dl dt:after {
    margin: 15px 0;
    max-width: 296px;
  }
  .doc_new_sec3 dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .mobile_block {
    display: block;
  }
  .doc_new_sec3 {
    padding: 410px 0 86px;
    background: url('/img/main/doc_new_sec3_bg_m.png') no-repeat 50% 10% / cover;
  }
}
