@charset "UTF-8";

@font-face {
  font-family: 'AbarMid';
  src: url('../fonts/AbarMid-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url("reset.css");


html,
body {
  height: 100%;
}


html {
  scroll-behavior: smooth;
}

:root {
  --color-brand: #192BC2;
  --color-sub-brand: #CF231C;
  --primary: #F30905;
  --timing: cubic-bezier(0.77, 0, 0.175, 1);
  --hero-outer-padding: clamp(16px, 2.4vw, 24px);
  --hero-inner-padding: clamp(16px, 3vw, 40px);
  --hero-card-radius: clamp(24px, 2.2vw, 32px);
  --hero-scoop-radius: 100px;
  --hero-text-color: #fff;
  --hero-nav-gap: clamp(16px, 3vw, 32px);
  --hero-nav-font-size: 14px;
  --hero-title-size: 30px;
  --hero-title-line-height: 1.1;
  --hero-subtitle-size: 14px;
  --hero-subtitle-line-height: 1.5;
}

.wrap {
  overflow-x: hidden;
}

body {
  position: relative;
}

#aside {
  display: none !important;
}

#hd_login_msg {
  display: none;
}

.mont {
  font-family: 'AbarMid', 'Montserrat', sans-serif;
}

br.mo {
  display: none;
}

body:has(#header.add-menu) {
  height: 100vh;
  overflow-y: hidden;
}

.play_f {
  font-family: 'AbarMid', "Playfair Display", serif;
}

.hd_pops_con {
  height: fit-content !important;
}

#foot {
  padding: 2.18vw;
  background: #434343;
  text-align: center;
}

#foot .address {
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
}

#foot .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.83vw;
}

#foot .contact li {
  position: relative;
  margin: 0 6px;
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
}

#foot .contact li+li::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #858585;
}

#foot .contact li .tit {
  margin-top: 5px;
}

#foot .contact li a {
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
}

#foot .copyright {
  color: #FFF;
  font-size: 13px;
  opacity: 0.8;
  margin-top: 1.04vw;
  font-weight: 300;
}














/* 메인 페이지 */
/* main_visual */
.mo_mainvisual {
  display: none;
}

.main_visual {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  min-height: 100vh;
  padding: var(--hero-outer-padding);
  box-sizing: border-box;
}


.main_visual {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  padding: var(--hero-outer-padding);
}

.main_visual__card {
  position: relative;
  min-height: calc(100vh - (var(--hero-outer-padding) * 2));
  border-radius: var(--hero-card-radius);
  overflow: hidden;
  -webkit-clip-path: url(#hero-clip-path);
  clip-path: url(#hero-clip-path);
}

.hero-clip-defs {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* 16:9 비율 박스 */
.main_visual .img_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  /* padding-bottom: 56.25%; */
  /* 9 / 16 * 100 → 16:9 비율 */
  border-radius: 40px 200px 40px 0;
  overflow: hidden;
}

/* 실제 이미지 */
.main_visual .img_wrap img {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main_visual picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.main_visual picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main_visual__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hero-nav-gap);
  padding: var(--hero-inner-padding);
  color: var(--hero-text-color);
  box-sizing: border-box;
}

.main_visual__logo img {
  display: block;
  height: clamp(28px, 3vw, 42px);
  width: auto;
}

.main_visual__menu-list {
  display: flex;
  align-items: center;
  gap: var(--hero-nav-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main_visual__menu-list a {
  color: var(--hero-text-color);
  font-size: var(--hero-nav-font-size);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.contents {
  position: absolute;
  left: var(--hero-inner-padding);
  bottom: var(--hero-inner-padding);
  top: auto;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
  box-sizing: border-box;
  width: fit-content;
  max-width: min(720px, 85%);

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contents.show {
  opacity: 1;
  transform: translateY(0);
}

.contents .main_text {
  width: 100%;
}

.contents .main_text h2 {
  position: relative;
  font-size: var(--hero-title-size);
  font-weight: 300;
  line-height: var(--hero-title-line-height);
  color: var(--hero-text-color);
}

.contents .main_text h2::after {
  content: none;
}

.contents .main_text b {
  font-size: var(--hero-title-size);
  font-weight: 300;
  line-height: var(--hero-title-line-height);
  color: var(--hero-text-color);
  font-family: "Playfair Display", serif;
}

.contents .main_text p {
  margin-top: 16px;
  font-size: var(--hero-subtitle-size);
  line-height: var(--hero-subtitle-line-height);
  color: var(--hero-text-color);
  font-weight: 400;
}

@media (min-width: 480px) {
  :root {
    --hero-title-size: 36px;
    --hero-subtitle-size: 15px;
    --hero-scoop-radius: 60px;
  }
}

@media (min-width: 768px) {
  :root {
    --hero-title-size: 56px;
    --hero-subtitle-size: 18px;
    --hero-nav-font-size: 14px;
    --hero-scoop-radius: 70px;
  }

  .main_visual__card {
    min-height: calc(100vh - (var(--hero-outer-padding) * 2));
  }
}

@media (min-width: 1024px) {
  :root {
    --hero-title-size: 72px;
    --hero-subtitle-size: 20px;
    --hero-nav-font-size: 15px;
    --hero-scoop-radius: 90px;
  }
}

@media (min-width: 1280px) {
  :root {
    --hero-title-size: 86px;
    --hero-subtitle-size: 22px;
    --hero-nav-font-size: 16px;
    --hero-scoop-radius: 100px;
  }
}

@media (min-width: 1440px) {
  :root {
    --hero-title-size: 96px;
    --hero-subtitle-size: 24px;
    --hero-scoop-radius: 110px;
  }
}

.contents .main_btn button {
  outline: none;
  cursor: pointer;
  border: none;
  width: 254px;
  height: 56px;
  margin-top: 76px;
  padding: 0;
  font-size: 17px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05rem;
  font-weight: 500;
  border-radius: 500px;
  overflow: hidden;
  background: #CF231C;
  color: #fff;
  font-family: 'AbarMid', "Urbanist", sans-serif;
}

.contents .main_btn button span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.contents .main_btn button img {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.contents .main_btn button:hover span {
  color: fff;
}

.contents .main_btn button::before,
.contents .main_btn button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contents .main_btn button::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.contents .main_btn button:hover::before {
  transform: translate3d(100%, 0, 0);
}






.in-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: .2s;
}

.in-left.active {
  transform: translateX(0);
  opacity: 1;
}

.animate.in-left {
  animation: slideInFromLeft 1s ease-out forwards;
  animation-fill-mode: forwards;

}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 컨트롤 */
.main_visual {
  position: relative;
  padding: var(--hero-outer-padding);
  box-sizing: border-box;
}

.main_visual .controls {
  position: absolute;
  display: flex;
  display: none;
  align-items: center;
  gap: 35px;
  left: 13.54321vw;
  bottom: 100px;
  z-index: 999;
}

.main_visual .circle {
  position: relative;
}

.main_visual .circle .autoplay-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 60px;
}

.main_visual .circle .autoplay-progress svg {
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 2px;
  stroke: #fff;
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.main_visual .circle .autoplay-progress .bg {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .5);
}

.main_visual .circle .play div {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.main_visual .circle .play span {
  cursor: pointer;
  font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 40;
  font-size: 18px;
  color: #fff;
}

.main_visual .circle .play div.swiper-pause {
  display: block;
}

.main_visual .circle .play div.swiper-play {
  display: none;
}

.main_visual .circle .play.on div.swiper-pause {
  display: none;
}

.main_visual .circle .play.on div.swiper-play {
  display: block;
}

.main_visual .arrow {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #fff;
}

.main_visual .arrow>span {
  display: flex;
}

.main_visual .arrow i {
  cursor: pointer;
  width: 40px;
  opacity: 1;
  transition: all .2s;
  color: #fff;
}

.main_visual .arrow .pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 43px;
  font-size: 15px;
  font-weight: 600;
}

.main_visual .arrow .i:hover {
  opacity: 1;
}

.main_visual .radius {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 10;
  width: 66px;
  height: 264px;
  background: #fff;
  left: 10px;
  bottom: 0;
  border-radius: 500px 500px 0 0;
}

.main_visual .radius:before {
  content: '';
  position: absolute;
  left: 0;
  top: -33px;
  z-index: -1;
  width: 33px;
  height: 33px;
  border-radius: 0 0 33px 0;
  box-shadow: 33px 33px 0 33px #fff;
  transform: rotate(90deg);
}

.main_visual .radius:after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -33px;
  bottom: 0;
  width: 33px;
  height: 33px;
  border-radius: 0 0 33px 0;
  box-shadow: 33px 33px 0 33px #fff;
  transform: rotate(90deg);
}

.scroll-down {
  text-align: center;
  opacity: 0;
  font-family: 'Malgun Gothic', dotum, sans-serif !important;
}

.scroll-down.start {
  opacity: 1;
  transform: translateY(0);
  transition: all .6s ease-in-out 1s;
}

.scroll-down p {
  color: #D8D8D8;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0;
  padding-bottom: 25px;
}

.scroll-down span {
  border: 2px solid #D8D8D8;
  height: 30px;
  width: 20px;
  padding: 10px 10px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.scroll-down span:after {
  content: "";
  position: absolute;
  z-index: 1;
  background: #111111;
  top: 8px;
  left: calc(50% - 1.9px);
  padding: 5px 2px;
  border-radius: 30px;
  animation: 1s infinite scrolling;
}

@keyframes scrolling {
  0% {
    transform: translateY(0) scaleY(1);
  }

  25% {
    transform: translateY(-3px) scaleY(0.5);
  }

  40% {
    transform: translateY(0) scaleY(1);
  }

  60% {
    transform: translateY(3px) scaleY(0.5);
  }

  100% {
    transform: translateY(0) scaleY(1);
  }
}



.section {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.sec01 {
  position: relative;
  width: 100%;
}

/* inner가 뒤집힐 때 */
.sec01 .inner.reversed {
  flex-direction: row-reverse;
}

.sec01 .inner {
  display: flex;
  gap: 146px;
  width: 1600px;
  margin: 0 auto;
  padding: 194px 0;
}

.sec01 .img_wrap {
  display: flex;
  position: relative;
  width: 602px;
  height: 544px;
}

.sec01 .img_wrap::before {
  content: "";
  position: absolute;
  right: -50px;
  top: 42px;
  width: 100px;
  /* 원하는 크기 */
  height: 100px;
  /* 원하는 크기 */
  border-radius: 500px;
  background: url(../images/main_img01_01.png) no-repeat center / contain;
  animation: floatUpDown1 5s ease-in-out infinite;
  z-index: 3;
}

.sec01 .img_wrap::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 46px;
  width: 160px;
  /* 원하는 크기 */
  height: 160px;
  /* 원하는 크기 */
  border-radius: 500px;
  background: url(../images/main_img01_02.png) no-repeat center / contain;
  animation: floatUpDown2 6s ease-in-out infinite;
  z-index: 3;
}

@keyframes floatUpDown1 {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-15px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* 두 번째 애니메이션 (조금 느리고 살짝 회전 섞음) */
@keyframes floatUpDown2 {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.sec01 .img_wrap img {
  border-radius: 150px 20px 0 20px;
}

.sec01 .img_wrap .radius {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 264px;
  height: 66px;
  border-radius: 66px 0 0 66px;
  background-color: #fff;
  z-index: 9;
}

.sec01 .img_wrap .radius:before {
  content: '';
  position: absolute;
  right: 264px;
  bottom: 0;
  width: 33px;
  height: 33px;
  border-radius: 0 0 33px 0;
  box-shadow: 33px 33px 0 33px #fff;
}

.sec01 .img_wrap .radius:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 66px;
  width: 33px;
  height: 33px;
  border-radius: 0 0 33px 0;
  box-shadow: 33px 33px 0 33px #fff;
}

.sec01 .text_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
}

.sec01 .text_wrap span {
  font-size: 48px;
  font-weight: 200;
}

.sec01 .text_wrap .sub_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 852px;
  margin-top: 32px;
  text-align: justify;
}

.sec01 .text_wrap .sub_text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.sec01 .img_wrap .radius_box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sec01 .img_wrap .radius button {
  outline: none;
  cursor: pointer;
  border: none;
  width: 254px;
  height: 56px;
  margin-top: 76px;
  padding: 0;
  font-size: 17px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05rem;
  font-weight: 500;
  border-radius: 500px;
  overflow: hidden;
  background: #CF231C;
  color: #fff;
  font-family: 'AbarMid', "Urbanist", sans-serif;
  z-index: 3;
}

.sec01 .img_wrap .radius button span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.sec01 .img_wrap .radius button img {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.sec01 .img_wrap .radius button:hover img {
  filter: brightness(100%);
}

.sec01 .img_wrap .radius button:hover span {
  color: #fff;
}

.sec01 .img_wrap .radius button::before,
.sec01 .img_wrap .radius button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sec01 .img_wrap .radius button::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.sec01 .img_wrap .radius button:hover::before {
  transform: translate3d(100%, 0, 0);
}

/* .sec01 .inner.reversed .img_wrap::before{content: url(../images/main_img01_03.png);}
.sec01 .inner.reversed .img_wrap::after{content: url(../images/main_img01_04.png);} */

.sec01 .inner.reversed .img_wrap::before {
  background: url(../images/main_img01_03.png) no-repeat center / contain;
}

.sec01 .inner.reversed .img_wrap::after {
  background: url(../images/main_img01_04.png) no-repeat center / contain;

}


.sec01 .img_wrap .img-base,
.sec01 .img_wrap .img-alt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 150px 20px 0 20px;
  will-change: opacity, transform;
  border: 1px solid #fff;
}

.sec01 .img_wrap .img-alt {
  opacity: 0;
  pointer-events: none;
}

/* 스와프 애니메이션 중 살짝 이동 효과가 보이도록 컨테이너에 will-change */
.sec01 .img_wrap,
.sec01 .text_wrap {
  will-change: transform;
}



.sec02 {
  position: relative;
  overflow: hidden;
  background-image: url(../images/main_sec02_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.sec02 .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 106px;
  width: 1600px;
  margin: 0 auto;
  padding: 215px 0;
  box-sizing: border-box;
}

.sec02 .inner .tit {
  width: 536px;
  box-sizing: border-box;
}

.sec02 .inner .tit>span {
  font-size: 42px;
  font-weight: 400;
}

.sec02 .inner .tit .sub_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 42px;
  width: 536px;
  text-align: justify;
}

.sec02 .inner .tit .sub_text p {
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.sec02 .sec02_btn button {
  outline: none;
  cursor: pointer;
  border: none;
  width: 254px;
  height: 56px;
  margin-top: 72px;
  padding: 0;
  font-size: 17px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05rem;
  font-weight: 500;
  border-radius: 500px;
  overflow: hidden;
  background: #CF231C;
  color: #fff;
  font-family: 'AbarMid', "Urbanist", sans-serif;
  z-index: 3;
}

.sec02 .sec02_btn button span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.sec02 .sec02_btn button img {
  position: relative;
  z-index: 10;
  transition: filter 0.4s;
}

.sec02 .sec02_btn button:hover img {
  filter: brightness(100%);
}

.sec02 .sec02_btn button:hover span {
  color: #fff;
}

.sec02 .sec02_btn button::before,
.sec02 .sec02_btn button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sec02 .sec02_btn button::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.sec02 .sec02_btn button:hover::before {
  transform: translate3d(100%, 0, 0);
}

.sec02 .pro_list_wrap {
  width: 1118px;
}

.sec02 .pro_list_wrap .swiper-wrapper {
  display: flex;
  width: 100%;
}

.sec02 .pro_list_wrap .swiper-slide {
  width: 310px;
  background-color: #F3F3F3;
  border-radius: 20px;
  box-sizing: border-box;
}

.sec02 .pro_list_wrap .swiper-slide.swiper-slide-active {
  background-color: #DEE6E9;
}

.sec02 .pro_list_wrap .swiper-slide .slide_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.sec02 .pro_list_wrap .swiper-slide .slide_img img {
  width: 100%;
  transition: .6s;
}

.sec02 .pro_list_wrap .swiper-slide .slide_img:hover img {
  transform: scale(1.1);
}

.sec02 .pro_list_wrap .swiper-slide .slide_img>span {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 342px;
}

.sec02 .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: none;
}

.sec02 .pro_scrollbar {
  position: absolute;
  margin: 20px auto 0;
  width: 180px;
  height: 4px;
  bottom: -16px !important;
}

.sec02 .pro_scrollbar .swiper-scrollbar-drag {
  background: #999;
  /* 원하는 색으로 변경 가능 */
}



.sec03 {
  position: relative;
  padding: 196px 0;
  box-sizing: border-box;
}

.sec03 .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1600px;
  margin: 0 auto;
}

.sec03 .inner .ce_logo {
  position: absolute;
  left: 3.211vw;
  /* 320px → 비율 변환 */
  top: 3.211vw;
  /* 160px → 비율 변환 */
  width: 65px;
  /* 65px → 비율 변환 */
}

.sec03 .inner .ce_logo img {
  width: 100%;
}

.sec03 .pro_img {
  position: relative;
  width: 505px;
  height: 505px;
}

.sec03 .pro_img img {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  animation: floatUpDown2 4s ease-in-out infinite;
}

.sec03 .pro_img .text_bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 42px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 90px;
  z-index: 0;
}

.sec03 .pro_img .text_bg p {
  font-size: 200px;
  font-weight: bold;
  color: #f3f3f3;
  line-height: 161px;
  text-align: center;
  position: relative;
  z-index: 0;
}

.sec03 .text_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.sec03 .text_wrap span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 5px;
}

.sec03 .text_wrap>img {
  margin-top: 20px;
  width: 236px;
}

.sec03 .text_wrap .sub_text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 32px;
}

.sec03 .text_wrap .sub_text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #6e6e6e;
  text-align: center;
}

.sec03 .sec03_btn {
  width: fit-content;
  height: fit-content;
}

.sec03 .sec03_btn a {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 36px;
  gap: 4px;
  width: fit-content;
  background-color: #CF231C;
  border-radius: 500px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  font-family: 'AbarMid', "Urbanist", sans-serif;
}

.sec03 .sec03_btn a {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse512 1.5s infinite;
}

@keyframes pulse512 {
  0% {
    box-shadow: 0 0 0 0 #CF231C;
  }

  70% {
    box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
  }
}

.sec04 {
  position: relative;
}

.global {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(../images/global_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.global .text_wrap {
  position: absolute;
  left: 200px;
  bottom: 96px;
  z-index: 99;
}

.global .text_wrap span {
  font-size: 64px;
  font-weight: 400;
}

.global .text_wrap p {
  font-size: 16px;
  line-height: 32px;
}

.global .container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.global .canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* 라벨 렌더러 루트는 pointer-events:none 이지만,
   개별 요소(pin/bubble)에서 다시 켤 수 있어요 */
.sec04 .labels {
  font-family: inherit;
  pointer-events: none;
}

/* 말풍선 - 좌표에서 위로 띄우기 */
.sec04 .bubble {
  position: absolute;
  --lift: 32px;
  /* 좌표에서 얼마나 위로 띄울지 */
  transform: translate(-50%, calc(-100% - var(--lift)));
  pointer-events: auto;
  /* 말풍선 위에서도 이벤트 가능하게 (원하면 none으로) */
}

.sec04 .bubble-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px;
  border-radius: 500px;
  background: #ffffff;
  color: #0b0f17;
  /* box-shadow:0 10px 28px rgba(0,0,0,.22); */
  border: 1px solid rgba(0, 0, 0, .08);
  white-space: nowrap;
  margin-bottom: 106px;
}

.sec04 .bubble-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}

.sec04 .bubble-sub {
  margin-top: 3px;
  font-weight: 600;
  font-size: 16px;
  color: #787878;
}

/* 핀(dot) - 각 나라 좌표에 정확히 놓이는 클릭/호버 타겟 */
.sec04 .pin_box {
  position: relative;
}

.sec04 .pin {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  border-radius: 50%;
  background: #00C2FF;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  z-index: 1;
}

.pin_box:has(.pin.large)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #CF231C;
  animation: wave 2s linear infinite;
  z-index: -10;
}

.pin_box:has(.pin.large)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  border-radius: 50%;
  background: #FFE5CD;
  animation: wave 3s linear infinite;
  z-index: -10;
}

.pin_box::after {
  opacity: 0;
  animation-delay: 1.5s;
  /* 두 번째 파동 지연 */
}

/* 파동 애니메이션 */
@keyframes wave {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}


/* 작은 핀 (기본값) */
.sec04 .pin.small {
  position: relative;
  width: 16px;
  height: 16px;
  background-color: #01103B !important;
}

/* .pin.small::after{position: absolute; left: 0; top: 0; transform: translate(-50%,-50%); content: "";width: 30px; height: 30px; background-color: rgba(206, 115, 30, 0.9); border-radius: 50%;} */
/* 큰 핀 (France / South Korea) */
.sec04 .pin.large {
  width: 16px;
  height: 16px;
}

.sec04 .pin:hover {
  transform: translate(-50%, -60%) scale(1.25);
  /* 살짝 위로 */
  background: #CF231C !important;
  /* 색상 바뀜 */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.sec05 {
  position: relative;
}

.sec05 .inner {
  width: 1600px;
  margin: 0 auto;
  padding: 196px 0 156px;
  box-sizing: border-box;
}

.sec05 .inner .tit {
  font-size: 42px;
  line-height: 52px;
  font-weight: 400;
}

.sec05 .inner .tit span {
  font-weight: 200;
}

.sec05 .inner .news_wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 82px;
}

.sec05 .inner .lat .lat_title {
  display: none;
}

.sec05 .inner .news_wrap .lat ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin-top: 96px;
  gap: 24px;
}

.sec05 .inner .news_wrap .lat ul li.basic_li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc((100% - 72px)/4);
  padding: 36px 42px;
  background-color: #F7F8FA;
  box-sizing: border-box;
  margin-bottom: 0;
  border-radius: 20px;
}

.sec05 .inner .news_wrap .lat ul li.basic_li .lt_info .lt_nick {
  display: none;
}

.sec05 .inner .news_wrap .lat ul li.basic_li .new_icon {
  display: none;
}

.sec05 .inner .news_wrap .lat li .content_wrap>a {
  display: block;
  height: 58px;
  font-size: 24px;
  font-weight: bold;
  line-height: normal;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: keep-all;
}

.sec05 .inner .news_wrap .lat li a:hover {
  color: var(--color-brand);
}

.sec05 .inner .news_wrap .lat li .content {
  margin-top: 28px;
  height: 180px;
}

.sec05 .inner .news_wrap .lat li .content strong {
  font-size: 16px;
  line-height: 28px;
  color: #787878;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  word-break: keep-all
}

.sec05 .inner .news_wrap .lat li .lt_info {
  margin-top: 50px;
}

.sec05 .inner .news_wrap .lat li .lt_info .lt_date {
  padding: 0;
  font-size: 18px;
  line-height: 32px;
  color: #939393;
}

.sec05 .inner .news_wrap .lt_more {
  display: none;
}

.sec05 .inner .news_wrap .lat ul li.basic_li:hover .content strong {
  color: #111;
}

.sec05 .inner .news_wrap .lat ul li.basic_li:hover .lt_date {
  color: #111;
}

/* 레이아웃 */
.latest-flex {
  display: flex;
  gap: 16px;
  width: 100%;
  height: 796px;
}

.latest-flex .left {
  position: relative;
  width: 100%;
  border-radius: 120px 50px 0 50px;
  overflow: hidden;
}

.latest-flex .left .img_wrap {
  overflow: hidden;
  width: 100%;
}

.latest-flex .left .img_wrap img {
  transform: scale(1);
  transition: .6s;
}

.latest-flex .left .news_info {
  width: 100%;
  height: calc(100% - 390px);
  background-color: #F5F5F5;
  padding: 36px;
  box-sizing: border-box;
}

.latest-flex .left .news_info>span {
  font-size: 16px;
  line-height: 24px;
}

.latest-flex .left .news_info>a {
  margin-top: 40px;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all .2s;
}

.latest-flex .left .news_info .content {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.latest-flex .left .news_info .content * {
  font-weight: 400;
}

.latest-flex .left:hover .img_wrap img {
  transform: scale(1.1);
}

.latest-flex .left:hover .news_info>a {
  color: #CF231C;
}

.latest-flex .right {
  width: 100%;
}

.latest-flex .right .right_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.latest-flex .right .right_list .list {
  position: relative;
  display: flex;
  flex-direction: row;
  border-radius: 100px 20px 0 20px;
  overflow: hidden;
  min-height: 390px;
}

.latest-flex .right .right_list .list .img_wrap {
  overflow: hidden;
  width: 390px;
}

.latest-flex .right .right_list .list .img_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #eee;
}

.latest-flex .right .right_list .list .img_wrap img {
  transform: scale(1);
  transition: .6s;
}

.latest-flex .right .right_list>.list:hover>.img_wrap img {
  transform: scale(1.1);
}

.latest-flex .right .right_list .list .news_info {
  width: calc(100% - 390px);
  background-color: #f5f5f5;
  padding: 36px;
  box-sizing: border-box;
}

.latest-flex .right .right_list .list .news_info>span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.latest-flex .right .right_list .list .news_info>a {
  margin-top: 28px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all .2s;
}

.latest-flex .right .right_list .list:hover .news_info>a {
  color: #CF231C;
}

.latest-flex .right .right_list .list .news_info .content {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.latest-flex .right .right_list .list .news_info .content * {
  font-weight: 400;
}






.latest-flex .left .radius {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66px;
  height: 66px;
  border-radius: 66px 0 0 66px;
  background-color: #fff;
}

.latest-flex .left .radius a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.latest-flex .left .radius:before {
  content: '';
  position: absolute;
  right: 66px;
  bottom: 0;
  width: 33px;
  height: 33px;
  border-radius: 0 0 33px 0;
  box-shadow: 33px 33px 0 33px #fff;
}

.latest-flex .left .radius:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 66px;
  width: 33px;
  height: 33px;
  border-radius: 0 0 33px 0;
  box-shadow: 33px 33px 0 33px #fff;
}

.latest-flex .left .radius .arrow {
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  background-color: #fff;
  /* transition: all .2s; */
}

.latest-flex .left:hover .radius .arrow {
  border: none;
  color: #fff;
  background: #CF231C;
}

.latest-flex .right .right_list .list .radius {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66px;
  height: 66px;
  border-radius: 66px 0 0 66px;
  background-color: #fff;
}

.latest-flex .right .right_list .list:last-child .radius {
  bottom: 92px;
}

.latest-flex .right .right_list .list .radius a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.latest-flex .right .right_list .list .radius:before {
  content: '';
  position: absolute;
  right: 66px;
  bottom: 0;
  width: 33px;
  height: 33px;
  border-radius: 0 0 33px 0;
  box-shadow: 33px 33px 0 33px #fff;
}

.latest-flex .right .right_list .list .radius:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 66px;
  width: 33px;
  height: 33px;
  border-radius: 0 0 33px 0;
  box-shadow: 33px 33px 0 33px #fff;
}

.latest-flex .right .right_list .list .radius .arrow {
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  background-color: #fff;
  /* transition: all .2s; */
}

.latest-flex .right .right_list .list:hover .radius .arrow {
  border: none;
  color: #fff;
  background: #CF231C;
  border: 0;
}




.sec06 {
  position: relative;
  background-image: url(../images/main_sec06_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.sec06 .inner {
  width: 1600px;
  margin: 0 auto;
  padding: 281px 0;
  box-sizing: border-box;
}

.sec06 .text_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  z-index: 2;
}

.sec06 .text_wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 653px;
  /* 원하는 넓이 */
  height: 653px;
  /* 원하는 높이 */
  transform: translate(-50%, -50%);
  background: url(../images/main_sec06_01.png) no-repeat center / contain;
  z-index: -1;
}

.sec06 .text_wrap>span {
  font-size: 82px;
  font-weight: bold;
  line-height: 106px;
}

.sec06 .text_wrap p {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.sec06 .text_wrap .sec06_btn {
  position: relative;
  margin: 0 auto;
  width: fit-content;
}

.sec06 .text_wrap .sec06_btn button {
  outline: none;
  cursor: pointer;
  border: none;
  width: 254px;
  height: 56px;
  margin-top: 72px;
  padding: 0;
  font-family: inherit;
  font-size: 17px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05rem;
  font-weight: 500;
  border-radius: 500px;
  overflow: hidden;
  background: #CF231C;
  color: #fff;
  font-family: "Urbanist", sans-serif;
  z-index: 3;
}

.sec06 .text_wrap .sec06_btn button span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.sec06 .text_wrap .sec06_btn button img {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.sec06 .text_wrap .sec06_btn button:hover img {
  filter: brightness(100%);
}

.sec06 .text_wrap .sec06_btn button:hover span {
  color: #fff;
}

.sec06 .text_wrap .sec06_btn button::before,
.sec06 .text_wrap .sec06_btn button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sec06 .text_wrap .sec06_btn button::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.sec06 .text_wrap .sec06_btn button:hover::before {
  transform: translate3d(100%, 0, 0);
}












.float_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 68px;
  width: 80px;
  height: 148px;
  bottom: 148px;
  overflow: hidden;
  border-radius: 500px;
  background-color: var(--color-sub-brand);
  z-index: 9998;
}

.float_btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 12px;
}

.float_btn span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.float_btn.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* footer */
.icon_wrap {
  width: 100%;
  border-top: 1px solid #E5E5E5;
}

.icon_wrap .inner {
  display: flex;
  width: 1400px;
  height: 160px;
  margin: 0 auto;
}

.icon_wrap .inner .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100%/6);
  height: 100%;
}

.icon_wrap .inner .box img {
  width: 100%;
}

footer {
  display: flex;
  width: 100%;
  padding: 100px 0 36px;
  box-sizing: border-box;
  background-color: #101010;
}

footer .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 72px;
  width: 1600px;
  margin: 0 auto;
}

footer .inner .footer_top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

footer .inner .footer_top .left {
  width: fit-content;
}

footer .inner .footer_top .left span {
  font-size: 64px;
  font-weight: 300;
  color: #fff;
  line-height: 76px;
}

footer .inner .footer_top .left span b {
  position: relative;
  font-size: 64px;
  font-weight: 300;
  color: #fff;
  line-height: 76px;
  font-family: "Playfair Display", serif;
  z-index: 1;
}

footer .inner .footer_top .left span b:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 230px;
  height: 50px;
  background: url(../images/main_text_line.png) no-repeat right bottom / contain;
  z-index: -1;
}

footer .inner .footer_top .right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: fit-content;
}

footer .inner .footer_top .right .info_wrap {
  display: flex;
  width: fit-content;
  gap: 196px;
}

footer .inner .footer_top .right .info_wrap .quick_links {
  display: flex;
  flex-direction: column;
  width: fit-content;
}

footer .inner .footer_top .right .info_wrap .quick_links>span {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #d2d2d2;
}

footer .inner .footer_top .right .info_wrap .quick_links>ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: fit-content;
}

footer .inner .footer_top .right .info_wrap .quick_links>ul>li {
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  color: #8d8d8d;
}

footer .inner .footer_top .right .info_wrap .contactus {
  display: flex;
  flex-direction: column;
  width: fit-content;
}

footer .inner .footer_top .right .info_wrap .contactus>span {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #d2d2d2;
}

footer .inner .footer_top .right .info_wrap .contactus>ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: fit-content;
}

footer .inner .footer_top .right .info_wrap .contactus>ul>li {
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  color: #8d8d8d;
}

footer .inner .footer_top .right .sns_wrap {
  display: flex;
  justify-content: flex-end;
}

footer .inner .footer_bot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}

footer .inner .footer_bot .copy {
  font-size: 12px;
  color: #8d8d8d;
  width: fit-content;
  margin-top: 12px;
}

footer .inner .footer_top .right .copy {
  font-size: 12px;
  color: #8d8d8d;
  width: fit-content;
}

footer .inner .footer_bot a {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* footer .inner .footer_bot a img{width: 154px;} */
footer .inner .footer_bot a img {
  width: 200px;
}

footer .inner .top_btn_wrap {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #101010;
  border-radius: 500px;
  border: 1px solid #1f1f1f;
}

footer .inner .top_btn_wrap:hover {
  background-image: linear-gradient(to right, #ff4d4d, #f9cb28);
  border: 0;
  animation: pulse 1.5s infinite;
}

.pulse-button:hover {
  animation: none;
}

footer .inner .top_btn_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(.9);
  }

  70% {
    transform: translateX(-50%) scale(1);
    /* box-shadow: 0 0 0 50px rgba(90, 153, 212, 0); */
  }

  100% {
    transform: translateX(-50%) scale(.9);
    /* box-shadow: 0 0 0 0 rgba(90, 153, 212, 0); */
  }
}



/* 마우스커서 */
.cursor {
  position: fixed;
  z-index: 1000;
  transform: translate(-50%, -50%);
  transition-property: background, transform;
  pointer-events: none
}

.cursor .bg {
  opacity: 0;
  position: absolute;
  left: -52px;
  top: -52px;
  transform: scale(0);
  width: 105px;
  height: 105px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 105px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: all .4s var(--timing);
  color: #111;
  backdrop-filter: blur(4px);
  border: 1px solid var(--color-sub-brand);
  font-weight: bold;
}

.cursor.on .bg {
  opacity: 1;
  transform: scale(1)
}

@media screen and (max-width:1660px) {

  .main_visual {
    height: 100vh;
  }

  .main_visual .img_wrap {
    position: relative;
    width: 100%;
    /* height: fit-content; */
    height: 100%;
    /* padding-bottom: 56.25%; */
    /* 9 / 16 * 100 → 16:9 비율 */
    border-radius: 40px 200px 40px 0;
    overflow: hidden;
  }



  /* 메인비쥬얼 */
  .contents {
    left: 100px;
    top: 200px;
  }

  .main_visual {
    border-radius: 40px 120px 40px 40px;
  }

  .main_visual .section {
    border-radius: 40px 120px 40px 40px;
  }

  .contents .main_text h2 {
    font-size: 64px;
    line-height: 64px;
  }

  .contents .main_text h2 b {
    font-size: 64px;
    line-height: 64px;
  }

  .contents .main_text p {
    font-size: 20px;
    line-height: 26px;
    margin-top: 16px;
  }

  .contents .main_text h2::after {
    width: 246px;
    bottom: -16px;
  }

  .contents .main_btn button {
    width: 198px;
    height: 48px;
    font-size: 16px;
    margin-top: 42px;
  }



  /* sec01 */
  .sec01 {
    display: flex;
    justify-content: center;
  }

  .sec01 .inner {
    width: 90%;
    padding: 96px 0;
    gap: 56px;
    flex-direction: column;
  }

  .sec01 .inner.reversed {
    flex-direction: column;
  }

  .sec01 .img_wrap {
    width: 100%;
  }

  .sec01 .text_wrap {
    width: 100%;
  }

  .sec01 .text_wrap .sub_text {
    width: 100%;
  }

  .sec01 .text_wrap span {
    font-size: 32px;
  }


  /* sec02 */
  .sec02 .inner {
    width: 92%;
    padding: 96px 0;
  }

  .sec02 .inner .tit>span {
    font-size: 32px;
  }

  .sec02 .inner .tit .sub_text {
    margin-top: 16px;
  }

  .sec02 .sec02_btn button {
    width: 198px;
    height: 48px;
    font-size: 16px;
    margin-top: 42px;
  }

  /* sec03 */
  .sec03 {
    padding: 96px 0;
  }

  .sec03 .inner {
    width: 92%;
  }

  /* sec04 */
  .global .text_wrap {
    left: 100px;
  }

  .global .text_wrap span {
    font-size: 32px;
  }

  .global .text_wrap p {
    line-height: 28px;
  }

  /* sec05 */
  .sec05 .inner {
    width: 92%;
    padding: 96px 0;
  }

  .sec05 .inner .tit {
    font-size: 32px;
  }

  .sec05 .inner .news_wrap {
    margin-top: 56px;
  }

  /* sec06 */
  .sec06 .inner {
    width: 92%;
  }


  /* 푸터 */
  footer .inner {
    width: 92%;
  }


}

@media screen and (max-width:1400px) {
  .sec02 .inner {
    flex-direction: column;
  }

  .sec02 .inner .pro_list_wrap {
    width: 100%;
    position: relative;
  }

  .sec02 .inner .tit {
    width: 100%;
  }

  .sec02 .inner .tit .sub_text {
    width: 100%;
  }

  .latest-flex {
    flex-direction: column;
    height: fit-content;
  }

  .latest-flex .left {
    display: flex;
    flex-direction: row;
  }

  .latest-flex .left .img_wrap {
    width: 390px;
  }

  .latest-flex .left .img_wrap a {
    display: flex;
    justify-content: center;
  }

  .latest-flex .left .news_info {
    width: calc(100% - 390px);
    height: 390px;
  }
}

@media screen and (max-width:1024px) {



  /* 메인비주얼 */
  .main_visual {
    border-radius: 20px 50px 20px 0;
  }

  .main_visual .section {
    border-radius: 20px 50px 20px 0;
  }

  .scroll-down {
    display: none;
  }

  .main_visual .radius {
    align-items: flex-end;
  }

  .scroll-down.start {
    margin-bottom: 24px;
  }



  /* sec01 */
  .sec01 .inner {
    flex-direction: column;
    padding: 96px 0;
    align-items: center;
  }

  .sec01 .inner.reversed {
    flex-direction: column;
  }

  .sec01 .text_wrap {
    width: 100%;
  }

  /* 메인-sec02 */
  .sec02 .inner {
    flex-direction: column;
  }

  .sec02 .inner .pro_list_wrap {
    width: 100%;
  }

  .sec02 .inner .tit {
    width: 100%;
    padding-top: 0;
  }

  .sec02 .inner .tit .sub_text {
    width: 100%;
  }


  /* 푸터 */
  footer .inner .footer_top .left span b:after {
    width: 148px;
    bottom: -4px;
  }

  footer .inner .top_btn_wrap {
    width: 72px;
    height: 72px;
    top: -136px;
  }

  footer .inner .footer_top {
    flex-direction: column;
    gap: 56px;
  }

  footer .inner .footer_top .left span {
    font-size: 42px;
    line-height: 48px;
  }

  footer .inner .footer_top .left span b {
    font-size: 42px;
    line-height: 48px;
  }

  .sec03 .inner .ce_logo {
    width: 56px;
    left: auto;
    right: 3.211vw;
    top: 0;
  }

  .main_visual {
    border-radius: 12px 48px 12px 12px;
  }

  .main_visual .radius {
    width: 24px;
    height: 106px;
  }

  .main_visual .radius:before {
    content: '';
    position: absolute;
    left: 0;
    top: -12px;
    z-index: -1;
    width: 12px;
    height: 12px;
    border-radius: 0 0 12px 0;
    box-shadow: 12px 12px 0 12px #fff;
    transform: rotate(90deg);
  }

  .main_visual .radius:after {
    content: '';
    position: absolute;
    z-index: -1;
    right: -12px;
    bottom: 0;
    width: 12px;
    height: 12px;
    border-radius: 0 0 12px 0;
    box-shadow: 12px 12px 0 12px #fff;
    transform: rotate(90deg);
  }
}


@media screen and (max-width:960px) {
  /* 푸터 */


}

@media screen and (max-width:768px) {
  #hd_pop {
    width: 100%;
  }

  .hd_pops {
    width: 90% !important;
  }

  .hd_pops_con {
    width: 100% !important;
  }

  .hd_pops_con img {
    width: 100% !important;
  }

  .scroll-down.start {
    display: none;
  }

  /* .main_visual .swiper-wrapper{height: 85vh !important;} */
  cursor {
    display: none !important;
  }

  .main_visual .radius {
    left: 0;
  }

  .main_visual {
    padding: 0;
  }

  .main_visual .contents {
    display: none;
  }

  .main_visual picture img {
    object-position: center;
  }

  .mo_mainvisual {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 3.211vw;
    border-bottom: 1px solid #eee;
  }

  .mo_mainvisual .main_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mo_mainvisual h2 {
    position: relative;
    width: fit-content;
    font-size: 30px;
    line-height: 30px;
    font-weight: 200;
  }

  .mo_mainvisual h2 b {
    font-size: 30px;
    line-height: 30px;
    font-family: "Playfair Display", serif;
  }

  .mo_mainvisual p {
    font-size: 14px;
    margin-top: 10px;
  }

  .mo_mainvisual .main_btn {
    width: 100%;
  }

  .mo_mainvisual .main_btn button {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    height: 42px;
    margin: 0;
    margin: 16px auto 0;
    background: #111;
    border: 0;
    outline: 0;
    box-shadow: none;
    color: #fff;
    border-radius: 500px;
  }

  .mo_mainvisual h2 b {
    font-weight: bold;
  }

  .mo_mainvisual h2::after {
    content: "";
    position: absolute;
    content: "";
    right: 6px;
    bottom: -8px;
    width: 116px;
    height: 20px;
    background: url(../images/main_text_line.png) no-repeat right bottom / contain;
    z-index: -1;
  }

  .mo_mainvisual .main_btn button img {
    width: 20px;
  }

  /* 메인비쥬얼 */

  .contents {
    width: 100%;
    top: 60px;
    left: 14%;
    transform: translateY(30px);
  }

  /* .contents.show{transform: translateX(-50%) translateY(0);} */
  .contents .main_text {
    text-align: left;
  }

  .contents .main_text h2 {
    width: fit-content;
    font-size: 24px;
    line-height: 22px;
  }

  .contents .main_text h2 b {
    font-size: 24px;
    line-height: 22px;
  }

  .contents .main_text p {
    font-size: 11px;
    line-height: 14px;
  }

  .contents .main_text h2::after {
    right: 0px;
    bottom: -8px;
    width: 96px;
    height: 20px;
  }

  .contents .main_text p {
    margin-top: 8px;
  }

  /* .main_visual .radius{left: 9px; width: 48px; height: 192px;}
    .main_visual .radius:before{width: 24px; height: 24px; top: -24px; border-radius: 0 0 24px 0; box-shadow: 24px 24px 0 24px #fff;}
    .main_visual .radius:after{width: 24px; height: 24px; bottom: 0; right: -24px; border-radius: 0 0 24px 0; box-shadow: 24px 24px 0 24px #fff;} */
  .contents .main_btn button {
    font-size: 11px;
    width: 96px;
    height: 30px;
    margin: 0;
    margin-top: 8px;
  }

  .contents .main_btn button img {
    width: 16px;
  }

  /* sec01 */
  .sec01 {
    overflow: hidden;
  }

  .sec01 .img_wrap {
    width: 100%;
  }

  .sec01 .img_wrap::before {
    width: 42px;
    height: 52px;
    top: -10px;
    right: -10px;
  }

  .sec01 .img_wrap::after {
    width: 52px;
    height: 52px;
    left: -10px;
    bottom: -24px;
  }

  .sec01 .inner {
    flex-direction: column;
    padding: 24px 0 48px;
    gap: 36px;
  }

  .sec01 .text_wrap span {
    font-size: 20px;
  }

  .sec01 .text_wrap .sub_text {
    margin-top: 10px;
    gap: 8px;
  }

  .sec01 .text_wrap .sub_text p {
    font-size: 14px;
    line-height: 20px;
  }

  .sec01 .img_wrap {
    height: auto;
    aspect-ratio: 16/9;
  }

  .sec01 .img_wrap .img-base,
  .sec01 .img_wrap .img-alt {
    border-radius: 40px 20px 0 20px;
  }

  .sec01 .img_wrap .radius button {
    font-size: 13px;
  }

  .sec01 .img_wrap .radius button img {
    width: 20px;
  }

  .sec01 .img_wrap .radius {
    width: 156px;
    height: 48px;
  }

  .sec01 .img_wrap .radius:before {
    right: 156px;
    width: 24px;
    height: 24px;
    box-shadow: 24px 24px 0 24px #fff;
  }

  .sec01 .img_wrap .radius:after {
    bottom: 48px;
    width: 24px;
    height: 24px;
    box-shadow: 24px 24px 0 24px #fff;
  }

  .sec01 .img_wrap .radius button {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }

  /* sec02 */
  .sec02 .inner {
    flex-direction: column-reverse;
    padding: 48px 0;
    gap: 36px;
  }

  /* .sec02 .inner .pro_list_wrap{width: fit-content;} */
  /* .sec02 .inner .pro_list_wrap .swiper-slide{width: 100% !important;} */
  .sec02 .inner .pro_list_wrap .swiper-slide .slide_img img {
    height: 100%;
  }

  .sec02 .inner .pro_list_wrap .swiper-slide a {
    display: block;
    height: 100%;
  }

  .sec02 .inner .pro_list_wrap .swiper-slide a .slide_img {
    height: 100%;
  }

  .sec02 .pro_list_wrap .swiper-slide .slide_img {
    aspect-ratio: 6/10;
    border-radius: 10px;
  }

  .sec02 .inner .tit>span {
    font-size: 20px;
  }

  .sec02 .inner .tit .sub_text {
    margin-top: 10px;
    gap: 8px;
  }

  .sec02 .inner .tit .sub_text p {
    font-size: 14px;
    line-height: 22px;
  }

  .sec02 .sec02_btn button {
    margin-top: 24px;
    width: 156px;
    height: 42px;
    font-size: 13px;
  }

  .sec02 .sec02_btn button img {
    width: 20px;
  }

  .swiper-horizontal>.swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    height: 2px !important;
  }

  /* sec03 */
  .sec03 {
    padding: 48px 0;
  }

  .sec03 .pro_img {
    width: 100%;
    height: fit-content;
  }

  .sec03 .pro_img .text_bg p {
    font-size: 84px;
    line-height: 90px;
  }

  .sec03 .pro_img img {
    height: fit-content;
  }

  .sec03 .text_wrap {
    width: 100%;
  }

  .sec03 .text_wrap span {
    font-size: 16px;
  }

  .sec03 .text_wrap>img {
    width: 180px;
  }

  .sec03 .text_wrap .sub_text {
    gap: 16px;
  }

  .sec03 .text_wrap .sub_text p {
    font-size: 14px;
    line-height: 22px;
  }

  .sec03 .text_wrap .sub_text p br {
    display: none;
  }

  .sec03 .sec03_btn a {
    font-size: 15px;
    padding: 8px 24px;
  }

  .sec03 .pro_img {
    width: 350px;
  }

  /* sec04 */
  .sec04 .bubble-title {
    font-size: 15px;
  }

  .sec04 .bubble-sub {
    font-size: 12px;
  }

  .sec04 .pin.large {
    width: 10px;
    height: 10px;
  }

  .sec04 .pin.small {
    width: 10px;
    height: 10px;
  }

  .global .text_wrap {
    padding: 0 3.211vw;
    width: 100%;
    left: 0;
    bottom: 36px;
  }

  .global .text_wrap span {
    font-size: 20px;
  }

  .global .text_wrap p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
  }

  .global .text_wrap p br {
    display: none;
  }


  /* sec05 */
  .sec05 .inner {
    padding: 24px 0 48px;
  }

  .sec05 .inner .tit {
    font-size: 20px;
    line-height: normal;
  }

  .sec05 .inner .news_wrap {
    margin-top: 12px;
  }

  .latest-flex .left .img_wrap {
    width: 320px;
    height: 320px;
  }

  .latest-flex .left .img_wrap img {
    width: auto;
    height: 100%;
  }

  .latest-flex .left .news_info {
    width: calc(100% - 320px);
    height: auto;
  }

  .latest-flex {
    height: fit-content;
    flex-wrap: wrap;
  }

  .latest-flex .left {
    border-radius: 40px 20px 0 20px;
  }

  .latest-flex .left .news_info>span {
    font-size: 14px;
  }

  .latest-flex .left .news_info>a {
    margin-top: 4px;
    font-size: 16px;
    line-height: 24px;
    -webkit-line-clamp: 1;
  }

  .latest-flex .left .news_info .content {
    margin-top: 10px;
    -webkit-line-clamp: 3;
  }

  .latest-flex .left .news_info {
    padding: 12px 16px 48px;
  }

  .latest-flex .left .news_info .content * {
    font-size: 14px;
    line-height: 22px;
  }

  .latest-flex .left .radius {
    width: 48px;
    height: 48px;
    border-radius: 48px 0 0 48px;
  }

  .latest-flex .left .radius:before {
    width: 24px;
    height: 24px;
    right: 48px;
    border-radius: 0 0 24px 0;
    box-shadow: 24px 24px 0 24px #fff;
  }

  .latest-flex .left .radius:after {
    width: 24px;
    height: 24px;
    bottom: 48px;
    border-radius: 0 0 24px 0;
    box-shadow: 24px 24px 0 24px #fff;
  }

  .latest-flex .left .radius .arrow {
    width: 42px;
    height: 42px;
  }

  .latest-flex .left .radius .arrow svg {
    width: 16px;
  }

  .latest-flex .right .right_list .list {
    flex-direction: row;
    min-height: auto !important;
  }

  .latest-flex .right .right_list .list .img_wrap {
    width: 320px;
  }

  .latest-flex .right .right_list .list .img_wrap a.lt_img {
    width: 100%;
  }

  .latest-flex .right .right_list .list .img_wrap img {
    transform: scale(1) !important;
  }

  .latest-flex .right .right_list .list .news_info {
    width: calc(100% - 320px);
    padding: 16px 24px;
  }

  .latest-flex .right .right_list .list .news_info>span {
    font-size: 14px;
  }

  .latest-flex .right .right_list .list .news_info>a {
    margin-top: 4px;
    font-size: 16px;
    line-height: 24px;
    -webkit-line-clamp: 1;
  }

  .latest-flex .right .right_list .list .news_info .content {
    margin-top: 0px;
    -webkit-line-clamp: 2;
    width: 80%;
  }

  .latest-flex .right .right_list .list .news_info .content * {
    font-size: 14px;
    line-height: 20px;
  }

  .latest-flex .right .right_list .list .radius {
    width: 48px;
    height: 48px;
    border-radius: 48px 0 0 48px;
  }

  .latest-flex .right .right_list .list:last-child .radius {
    bottom: 0;
  }

  .latest-flex .right .right_list .list .radius:before {
    width: 24px;
    height: 24px;
    right: 48px;
    border-radius: 0 0 24px 0;
    box-shadow: 24px 24px 0 24px #fff;
  }

  .latest-flex .right .right_list .list .radius:after {
    width: 24px;
    height: 24px;
    bottom: 48px;
    border-radius: 0 0 24px 0;
    box-shadow: 24px 24px 0 24px #fff;
  }

  .latest-flex .right .right_list .list .radius .arrow {
    width: 42px;
    height: 42px;
  }

  .latest-flex .right .right_list .list .radius .arrow svg {
    width: 16px;
  }

  .latest-flex .right .right_list .list {
    border-radius: 40px 20px 0 20px;
  }

  .global {
    height: 70vh;
  }

  /* sec06 */
  .sec06 .inner {
    padding: 48px 0 56px;
  }

  .sec06 .text_wrap {
    align-items: flex-start;
    text-align: unset;
  }

  .sec06 .text_wrap>span {
    font-size: 24px;
    line-height: 28px;
  }

  .sec06 .text_wrap p br {
    display: none;
  }

  .sec06 .text_wrap p {
    font-size: 14px;
    line-height: 20px;
  }

  .sec06 .text_wrap::after {
    width: 100%;
    /* 원하는 넓이 */
    height: 100%;
    /* 원하는 높이 */
  }

  .sec06 .text_wrap .sec06_btn button {
    font-size: 13px;
    margin-top: 24px;
    width: 156px;
    height: 42px;
  }

  .sec06 .text_wrap .sec06_btn {
    margin: 0;
  }









  /* 푸터 */
  footer .inner .footer_top .left span b:after {
    width: 124px;
  }

  footer {
    padding-top: 56px;
  }

  footer .inner .footer_top .left span {
    font-size: 36px;
    line-height: 36px;
  }

  footer .inner .footer_top .left span b {
    font-size: 36px;
    line-height: 36px;
  }

  footer .inner .footer_top .right .info_wrap {
    gap: 72px;
  }

  footer .inner .top_btn_wrap {
    width: 56px;
    height: 56px;
    top: -80px;
  }

  .sec03 .inner .ce_logo {
    width: 42px;
    left: auto;
    right: 3.211vw;
    top: 3.211vw;
  }

  .main_visual {
    border-radius: 12px 48px 12px 12px;
  }

  .main_visual .radius {
    width: 24px;
    height: 106px;
  }

  .main_visual .radius:before {
    content: '';
    position: absolute;
    left: 0;
    top: -12px;
    z-index: -1;
    width: 12px;
    height: 12px;
    border-radius: 0 0 12px 0;
    box-shadow: 12px 12px 0 12px #fff;
    transform: rotate(90deg);
  }

  .main_visual .radius:after {
    content: '';
    position: absolute;
    z-index: -1;
    right: -12px;
    bottom: 0;
    width: 12px;
    height: 12px;
    border-radius: 0 0 12px 0;
    box-shadow: 12px 12px 0 12px #fff;
    transform: rotate(90deg);
  }

  /* .main_visual .radius {
        width: 192px;
        height: 48px;
        border-radius: 48px 0 0 48px;
    }

    .main_visual .radius:before {
        right: 192px;
        width: 24px;
        height: 24px;
        border-radius: 0 0 24px 0;
        box-shadow: 24px 24px 0 24px #fff;
    }

    .main_visual .radius:after {
        bottom: 48px;
        width: 24px;
        height: 24px;
        border-radius: 0 0 24px 0;
        box-shadow: 24px 24px 0 24px #fff;
    } */
  footer .inner .footer_bot a img {
    width: 96px;
  }

  footer .inner .footer_top .right .info_wrap .quick_links>span {
    font-size: 14px;
    margin-bottom: 10px;
  }

  footer .inner .footer_top .right .info_wrap .contactus>span {
    font-size: 14px;
    margin-bottom: 10px;
  }

  footer .inner .footer_top .right .info_wrap .quick_links>ul>li {
    font-size: 12px;
  }
}

@media screen and (max-width:700px) {
  .latest-flex .left {
    flex-direction: column;
  }

  .latest-flex .left .img_wrap {
    width: 100%;
    height: fit-content;
    aspect-ratio: 16/9;
  }

  .latest-flex .left .img_wrap img {
    width: 100%;
  }

  .latest-flex .left .img_wrap a {
    height: 100%;
  }

  .latest-flex .left .news_info {
    width: 100%;
  }

  .latest-flex .right .right_list .list {
    flex-direction: column;
  }

  .latest-flex .right .right_list .list .img_wrap {
    width: 100%;
    height: fit-content;
    aspect-ratio: 16/9;
  }

  .latest-flex .right .right_list .list .news_info {
    width: 100%;
  }
}

@media screen and (max-width:475px) {


  .sec03 .pro_img {
    width: 320px;
    height: 320px;
  }

  .sec03 .pro_img img {
    height: 320px;
  }

  footer .inner .footer_top .right .copy {
    font-size: 10px;
    color: #8d8d8d;
    width: fit-content;
  }

  footer .inner .footer_bot .copy {
    font-size: 10px;
    color: #8d8d8d;
    width: fit-content;
    margin-top: 12px;
  }



}


@media screen and (max-width:1024px) {
  .main_visual .img_wrap {
    border-radius: 20px 50px 20px 0;
  }
}

@media screen and (max-width:768px) {
  .main_visual .img_wrap {
    border-radius: 12px 48px 12px 12px;
  }
}
